├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ ├── docker.yml │ ├── production.yml │ └── pullrequest.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Randomizer.CLI ├── FileData │ ├── Rdc.cs │ ├── Rom.cs │ └── Zspr.cs ├── FileHelper.cs ├── ListExtensions.cs ├── ManifestResource.cs ├── Program.cs ├── Randomizer.CLI.csproj ├── Resources │ ├── link.png │ └── samus.png └── Verbs │ ├── CheckCaseLogic.cs │ ├── CheckCaseLogic.md │ ├── GenSeed.cs │ ├── SpriteTasks.cs │ └── ZsprToRdc.cs ├── Randomizer.SMZ3.Tests ├── EmbeddedStream.cs ├── Logic │ ├── Case.cs │ ├── LogicCases.cs │ ├── LogicTests.cs │ ├── SMHard.cs │ ├── SMHardKeysanity.cs │ ├── SMNormal.cs │ └── SMNormalKeysanity.cs ├── Randomizer.SMZ3.Tests.csproj └── Text │ └── DialogTests.cs ├── Randomizer.SMZ3 ├── .editorconfig ├── Assembly.cs ├── Config.cs ├── Filler.cs ├── Item.cs ├── Location.cs ├── Patch.cs ├── Playthrough.cs ├── Randomizer.SMZ3.csproj ├── Randomizer.cs ├── RandomizerOptions.cs ├── Region.cs ├── Regions │ ├── SuperMetroid │ │ ├── Brinstar │ │ │ ├── Blue.cs │ │ │ ├── Green.cs │ │ │ ├── Kraid.cs │ │ │ ├── Pink.cs │ │ │ └── Red.cs │ │ ├── Crateria │ │ │ ├── Central.cs │ │ │ ├── East.cs │ │ │ └── West.cs │ │ ├── Maridia │ │ │ ├── Inner.cs │ │ │ └── Outer.cs │ │ ├── NorfairLower │ │ │ ├── East.cs │ │ │ └── West.cs │ │ ├── NorfairUpper │ │ │ ├── Crocomire.cs │ │ │ ├── East.cs │ │ │ └── West.cs │ │ └── WreckedShip.cs │ └── Zelda │ │ ├── CastleTower.cs │ │ ├── DarkWorld │ │ ├── DeathMountain │ │ │ ├── East.cs │ │ │ └── West.cs │ │ ├── Mire.cs │ │ ├── NorthEast.cs │ │ ├── NorthWest.cs │ │ └── South.cs │ │ ├── DesertPalace.cs │ │ ├── EasternPalace.cs │ │ ├── GanonsTower.cs │ │ ├── HyruleCastle.cs │ │ ├── IcePalace.cs │ │ ├── LightWorld │ │ ├── DeathMountain │ │ │ ├── East.cs │ │ │ └── West.cs │ │ ├── NorthEast.cs │ │ ├── NorthWest.cs │ │ └── South.cs │ │ ├── MiseryMire.cs │ │ ├── PalaceOfDarkness.cs │ │ ├── SkullWoods.cs │ │ ├── SwampPalace.cs │ │ ├── ThievesTown.cs │ │ ├── TowerOfHera.cs │ │ └── TurtleRock.cs ├── Text │ ├── Dialog.cs │ ├── Scripts │ │ ├── Blind.txt │ │ ├── Ganon.txt │ │ ├── General.yaml │ │ ├── StringTable.yaml │ │ ├── TavernMan.txt │ │ └── TriforceRoom.txt │ ├── StringTable.cs │ └── Texts.cs ├── World.cs ├── WorldState.cs └── util │ ├── EmbeddedStream.cs │ ├── EnumExtensions.cs │ ├── Extensions.cs │ ├── HexGuid.cs │ └── ListExtensions.cs ├── Randomizer.Service ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Protos │ └── randomizer.proto ├── Randomizer.Service.csproj ├── Services │ ├── EventService.cs │ ├── MetadataService.cs │ └── SessionService.cs ├── appsettings.Development.json └── appsettings.json ├── Randomizer.Shared ├── Contracts │ └── IRandomizer.cs ├── Migrations │ ├── 20200411210203_InitializeDatabase.Designer.cs │ ├── 20200411210203_InitializeDatabase.cs │ ├── 20220119171851_UpdateToEFv6.Designer.cs │ ├── 20220119171851_UpdateToEFv6.cs │ ├── 20220119223524_AddWorldState.Designer.cs │ ├── 20220119223524_AddWorldState.cs │ ├── 20220213192149_AddSessionEvents.Designer.cs │ ├── 20220213192149_AddSessionEvents.cs │ ├── 20220213193815_AddConfirmedEvents.Designer.cs │ ├── 20220213193815_AddConfirmedEvents.cs │ ├── 20220215202021_FixSessionEvents.Designer.cs │ ├── 20220215202021_FixSessionEvents.cs │ ├── 20220216205938_AddIndexes.Designer.cs │ ├── 20220216205938_AddIndexes.cs │ ├── 20220218001141_AddWorldState.Designer.cs │ ├── 20220218001141_AddWorldState.cs │ ├── 20220218145338_AddSramBackup.Designer.cs │ ├── 20220218145338_AddSramBackup.cs │ ├── 20220218170959_RemoveEvents.Designer.cs │ ├── 20220218170959_RemoveEvents.cs │ └── RandomizerContextModelSnapshot.cs ├── Models │ ├── Client.cs │ ├── Location.cs │ ├── RandomizerContext.cs │ ├── Seed.cs │ ├── Session.cs │ ├── SessionEvent.cs │ └── World.cs └── Randomizer.Shared.csproj ├── Randomizer.SuperMetroid.Tests ├── Logic │ ├── Case.cs │ ├── CasualCases.cs │ ├── LogicCases.cs │ ├── LogicTests.cs │ └── TournamentCases.cs └── Randomizer.SuperMetroid.Tests.csproj ├── Randomizer.SuperMetroid ├── .editorconfig ├── Assembly.cs ├── Config.cs ├── EnumExtensions.cs ├── Filler.cs ├── HexGuid.cs ├── Item.cs ├── Location.cs ├── Patch.cs ├── Playthrough.cs ├── Randomizer.SuperMetroid.csproj ├── Randomizer.cs ├── RandomizerOptions.cs ├── Region.cs ├── Regions │ ├── Brinstar │ │ ├── Blue.cs │ │ ├── Green.cs │ │ ├── Kraid.cs │ │ ├── Pink.cs │ │ └── Red.cs │ ├── Crateria │ │ ├── Central.cs │ │ ├── East.cs │ │ └── West.cs │ ├── Maridia │ │ ├── Inner.cs │ │ └── Outer.cs │ ├── NorfairLower │ │ ├── East.cs │ │ └── West.cs │ ├── NorfairUpper │ │ ├── Crocomire.cs │ │ ├── East.cs │ │ └── West.cs │ └── WreckedShip.cs └── World.cs ├── WebGameService ├── Controllers │ └── MultiworldController.cs ├── Dockerfile ├── Hubs │ └── MultiworldHub.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WebGameService.csproj ├── appsettings.Development.json └── appsettings.json ├── WebRandomizer.sln ├── WebRandomizer ├── .editorconfig ├── .gitignore ├── ClientApp │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── craco.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── index.html │ │ ├── lua │ │ │ └── multibridge_smz3_r2.lua │ │ ├── manifest.json │ │ ├── sprites │ │ │ ├── jump_screw.png │ │ │ ├── jump_space.png │ │ │ ├── sm.png │ │ │ ├── sm │ │ │ │ ├── 140.sm.rdc.gz │ │ │ │ ├── 8_bit_mario.1.sm.rdc.gz │ │ │ │ ├── agender-samus.rdc.gz │ │ │ │ ├── alcoon.rdc.gz │ │ │ │ ├── alice_margatroid.1.sm.rdc.gz │ │ │ │ ├── alucard.1.sm.rdc.gz │ │ │ │ ├── arcana.rdc.gz │ │ │ │ ├── aroace-samus-ii.rdc.gz │ │ │ │ ├── aroace-samus.rdc.gz │ │ │ │ ├── b.o.b..rdc.gz │ │ │ │ ├── brad-fang.rdc.gz │ │ │ │ ├── bruno.rdc.gz │ │ │ │ ├── buffed-eggplant.rdc.gz │ │ │ │ ├── buffed-pug.rdc.gz │ │ │ │ ├── buffed_kirby.1.sm.rdc.gz │ │ │ │ ├── captaion_novolin.1.sm.rdc.gz │ │ │ │ ├── ceroba-ketsukane.rdc.gz │ │ │ │ ├── chairdeep.1.sm.rdc.gz │ │ │ │ ├── charizard.rdc.gz │ │ │ │ ├── charlotte-aulin.rdc.gz │ │ │ │ ├── crewmate.1.sm.rdc.gz │ │ │ │ ├── cuphead.1.sm.rdc.gz │ │ │ │ ├── dark_samus.2.sm.rdc.gz │ │ │ │ ├── diddy_kong.1.sm.rdc.gz │ │ │ │ ├── dread.rdc.gz │ │ │ │ ├── dream-team-mario.rdc.gz │ │ │ │ ├── earthworm_jim.1.sm.rdc.gz │ │ │ │ ├── enby_pride.1.sm.rdc.gz │ │ │ │ ├── federation_trooper.1.sm.rdc.gz │ │ │ │ ├── fight.rdc.gz │ │ │ │ ├── fusion_green.1.sm.rdc.gz │ │ │ │ ├── goku.rdc.gz │ │ │ │ ├── inkling-girl-v2.rdc.gz │ │ │ │ ├── janky.rdc.gz │ │ │ │ ├── junko.rdc.gz │ │ │ │ ├── justin_bailey.1.sm.rdc.gz │ │ │ │ ├── kiara.rdc.gz │ │ │ │ ├── king-graham.rdc.gz │ │ │ │ ├── kirby.1.sm.rdc.gz │ │ │ │ ├── knuckles.rdc.gz │ │ │ │ ├── leading-edge-samus.rdc.gz │ │ │ │ ├── left-leg-samus.rdc.gz │ │ │ │ ├── link-2-the-past.rdc.gz │ │ │ │ ├── link_oot.1.sm.rdc.gz │ │ │ │ ├── luigi.1.sm.rdc.gz │ │ │ │ ├── madeline.rdc.gz │ │ │ │ ├── maria-pollo.rdc.gz │ │ │ │ ├── maria-renard.rdc.gz │ │ │ │ ├── mario-(smw).rdc.gz │ │ │ │ ├── mario-dreamteam.rdc.gz │ │ │ │ ├── master-hand.rdc.gz │ │ │ │ ├── maxim-kischine.rdc.gz │ │ │ │ ├── mega_man_x.1.sm.rdc.gz │ │ │ │ ├── megaman-x-(bearded).rdc.gz │ │ │ │ ├── metroid.1.sm.rdc.gz │ │ │ │ ├── mini-samus.rdc.gz │ │ │ │ ├── missingno.rdc.gz │ │ │ │ ├── mooncliff.1.sm.rdc.gz │ │ │ │ ├── opposition.rdc.gz │ │ │ │ ├── outline-samus.rdc.gz │ │ │ │ ├── ped-suit-samus.rdc.gz │ │ │ │ ├── plissken.rdc.gz │ │ │ │ ├── protogen-laso.rdc.gz │ │ │ │ ├── pyronett.rdc.gz │ │ │ │ ├── ronald-mcdonald.rdc.gz │ │ │ │ ├── samus-maid.rdc.gz │ │ │ │ ├── samus-returns.rdc.gz │ │ │ │ ├── sans.1.sm.rdc.gz │ │ │ │ ├── sfc-contoller.rdc.gz │ │ │ │ ├── shaktool.1.sm.rdc.gz │ │ │ │ ├── shaktool_jr.1.sm.rdc.gz │ │ │ │ ├── shantae.rdc.gz │ │ │ │ ├── sonic.rdc.gz │ │ │ │ ├── sprite.1.sm.rdc.gz │ │ │ │ ├── super_controid_pg.1.sm.rdc.gz │ │ │ │ ├── tails.rdc.gz │ │ │ │ ├── tallink.rdc.gz │ │ │ │ ├── tetris.rdc.gz │ │ │ │ ├── thomcrow-corbin.rdc.gz │ │ │ │ ├── trans_pride.1.sm.rdc.gz │ │ │ │ ├── wario.rdc.gz │ │ │ │ ├── win95_cursor.1.sm.rdc.gz │ │ │ │ ├── yarn-kirby.rdc.gz │ │ │ │ ├── yoshi-&-baby-mario.rdc.gz │ │ │ │ └── zero_mission.1.sm.rdc.gz │ │ │ ├── z3.png │ │ │ └── z3 │ │ │ │ ├── abigail.1.z3.rdc │ │ │ │ ├── adol.1.z3.rdc │ │ │ │ ├── adventure-2600.rdc │ │ │ │ ├── aggretsuko.1.z3.rdc │ │ │ │ ├── alex.rdc │ │ │ │ ├── alice.1.z3.rdc │ │ │ │ ├── angry-video-game-nerd.rdc │ │ │ │ ├── annalavellan.rdc │ │ │ │ ├── arcane.1.z3.rdc │ │ │ │ ├── archen.rdc │ │ │ │ ├── arcticartemisfox.rdc │ │ │ │ ├── arcturuschusky.rdc │ │ │ │ ├── aria.rdc │ │ │ │ ├── ark-(no-cape).rdc │ │ │ │ ├── ark.1.z3.rdc │ │ │ │ ├── arrghus.rdc │ │ │ │ ├── astor.rdc │ │ │ │ ├── astronaut.1.z3.rdc │ │ │ │ ├── asuna.rdc │ │ │ │ ├── b.o.b..rdc │ │ │ │ ├── baba.rdc │ │ │ │ ├── baby-fro.rdc │ │ │ │ ├── baby-metroid.rdc │ │ │ │ ├── badeline.rdc │ │ │ │ ├── bailey.rdc │ │ │ │ ├── bananas_in_pyjamas.1.z3.rdc │ │ │ │ ├── bandit.1.z3.rdc │ │ │ │ ├── batman.1.z3.rdc │ │ │ │ ├── beau.rdc │ │ │ │ ├── bee.rdc │ │ │ │ ├── bel.rdc │ │ │ │ ├── bewp.1.z3.rdc │ │ │ │ ├── big-key.rdc │ │ │ │ ├── birb-of-paradise.rdc │ │ │ │ ├── birb.1.z3.rdc │ │ │ │ ├── birdfruit.rdc │ │ │ │ ├── birdo.1.z3.rdc │ │ │ │ ├── black-mage.rdc │ │ │ │ ├── blacksmith_link.1.z3.rdc │ │ │ │ ├── blazer.rdc │ │ │ │ ├── blossom.rdc │ │ │ │ ├── blue.rdc │ │ │ │ ├── bob-ross.rdc │ │ │ │ ├── bob.rdc │ │ │ │ ├── boco-the-chocobo.rdc │ │ │ │ ├── boo-2.rdc │ │ │ │ ├── boo.rdc │ │ │ │ ├── bottle-o'-goo.rdc │ │ │ │ ├── botw-link.rdc │ │ │ │ ├── botw-zelda.rdc │ │ │ │ ├── bowser.1.z3.rdc │ │ │ │ ├── bowsette-red.rdc │ │ │ │ ├── bowsette.rdc │ │ │ │ ├── branch.rdc │ │ │ │ ├── brian.1.z3.rdc │ │ │ │ ├── broccoli.rdc │ │ │ │ ├── bronzor.rdc │ │ │ │ ├── bs_boy.1.z3.rdc │ │ │ │ ├── bs_girl.1.z3.rdc │ │ │ │ ├── bubblen.rdc │ │ │ │ ├── bubbles.rdc │ │ │ │ ├── bullet-bill.rdc │ │ │ │ ├── buttercup.rdc │ │ │ │ ├── cactuar.rdc │ │ │ │ ├── cadence.1.z3.rdc │ │ │ │ ├── captain-novolin.rdc │ │ │ │ ├── captain_toadette.1.z3.rdc │ │ │ │ ├── casual-zelda.rdc │ │ │ │ ├── cat-boo.rdc │ │ │ │ ├── cdi_link.1.z3.rdc │ │ │ │ ├── celes.1.z3.rdc │ │ │ │ ├── centaur-enos.rdc │ │ │ │ ├── charizard.1.z3.rdc │ │ │ │ ├── cheep-cheep.rdc │ │ │ │ ├── chef-pepper.rdc │ │ │ │ ├── chibity.1.z3.rdc │ │ │ │ ├── chrizzz.rdc │ │ │ │ ├── chrono.rdc │ │ │ │ ├── cinna.rdc │ │ │ │ ├── cirno.1.z3.rdc │ │ │ │ ├── clifford.1.z3.rdc │ │ │ │ ├── clippy.rdc │ │ │ │ ├── cloud.rdc │ │ │ │ ├── clyde.rdc │ │ │ │ ├── conker-neo.rdc │ │ │ │ ├── conker.1.z3.rdc │ │ │ │ ├── cool-90s-bun.rdc │ │ │ │ ├── cool-90s-link.rdc │ │ │ │ ├── cornelius.1.z3.rdc │ │ │ │ ├── corona.1.z3.rdc │ │ │ │ ├── cousin-knol.rdc │ │ │ │ ├── crewmate.rdc │ │ │ │ ├── cucco.rdc │ │ │ │ ├── cursor.rdc │ │ │ │ ├── d_owls.1.z3.rdc │ │ │ │ ├── dark-link-damien.rdc │ │ │ │ ├── dark-matter.rdc │ │ │ │ ├── dark_panda.1.z3.rdc │ │ │ │ ├── deadpool_mythic.1.z3.rdc │ │ │ │ ├── deadpool_sirczah.1.z3.rdc │ │ │ │ ├── deadrock.rdc │ │ │ │ ├── decidueye.1.z3.rdc │ │ │ │ ├── dekar.rdc │ │ │ │ ├── dennsen86.rdc │ │ │ │ ├── diddy-kong.rdc │ │ │ │ ├── dig-dug.rdc │ │ │ │ ├── dipper.rdc │ │ │ │ ├── discord.rdc │ │ │ │ ├── dot_lvl.rdc │ │ │ │ ├── dq-slime.rdc │ │ │ │ ├── dr.-treymond-spyre-spyreson-iii.rdc │ │ │ │ ├── dragonair.rdc │ │ │ │ ├── dragonite.2.z3.rdc │ │ │ │ ├── drake_dragon.1.z3.rdc │ │ │ │ ├── drawcia.rdc │ │ │ │ ├── eevee.rdc │ │ │ │ ├── eggplant.1.z3.rdc │ │ │ │ ├── eirika.rdc │ │ │ │ ├── elfilin.rdc │ │ │ │ ├── ema-skye.rdc │ │ │ │ ├── espeon.rdc │ │ │ │ ├── ezlo.rdc │ │ │ │ ├── fi.rdc │ │ │ │ ├── fierce_deity_link.1.z3.rdc │ │ │ │ ├── figaro_merchant.1.z3.rdc │ │ │ │ ├── finn_merten.1.z3.rdc │ │ │ │ ├── finny_bear.1.z3.rdc │ │ │ │ ├── flareon.rdc │ │ │ │ ├── flavor_guy.1.z3.rdc │ │ │ │ ├── floodgate-fish.rdc │ │ │ │ ├── four-swords-link.rdc │ │ │ │ ├── fox_link.1.z3.rdc │ │ │ │ ├── fransen.rdc │ │ │ │ ├── freya-crescent.rdc │ │ │ │ ├── frisk.rdc │ │ │ │ ├── frog_link.rdc │ │ │ │ ├── fujin.2.z3.rdc │ │ │ │ ├── future_trunks.1.z3.rdc │ │ │ │ ├── gamer.1.z3.rdc │ │ │ │ ├── ganondorf.1.z3.rdc │ │ │ │ ├── garfield.2.z3.rdc │ │ │ │ ├── garnet.1.z3.rdc │ │ │ │ ├── garo_master.1.z3.rdc │ │ │ │ ├── gbc-link.rdc │ │ │ │ ├── geno.1.z3.rdc │ │ │ │ ├── gina-lestrade.rdc │ │ │ │ ├── gliitchwiitch.rdc │ │ │ │ ├── go-mode.rdc │ │ │ │ ├── gobli.rdc │ │ │ │ ├── goemon.rdc │ │ │ │ ├── gooey.rdc │ │ │ │ ├── goomba.rdc │ │ │ │ ├── goose.rdc │ │ │ │ ├── graalian-noob.rdc │ │ │ │ ├── grandpoobear.rdc │ │ │ │ ├── gretis.rdc │ │ │ │ ├── growlithe.rdc │ │ │ │ ├── gruncle-stan.rdc │ │ │ │ ├── guiz.rdc │ │ │ │ ├── hainz-the-blåhaj.rdc │ │ │ │ ├── hamtaro.rdc │ │ │ │ ├── hanna.rdc │ │ │ │ ├── hardhat-beetle.rdc │ │ │ │ ├── hat_kid.1.z3.rdc │ │ │ │ ├── head-link.rdc │ │ │ │ ├── headless-link.rdc │ │ │ │ ├── heem.rdc │ │ │ │ ├── hello_kitty.1.z3.rdc │ │ │ │ ├── hero-of-awakening.rdc │ │ │ │ ├── hero-of-hyrule.rdc │ │ │ │ ├── hidari.1.z3.rdc │ │ │ │ ├── hint-tile.rdc │ │ │ │ ├── hitsuyan1337.1.z3.rdc │ │ │ │ ├── hoarder-(bush).rdc │ │ │ │ ├── hoarder-(pot).rdc │ │ │ │ ├── hoarder-(rock).rdc │ │ │ │ ├── hollow-knight-(malmo+winter).rdc │ │ │ │ ├── hollow-knight.rdc │ │ │ │ ├── homer_simpson.1.z3.rdc │ │ │ │ ├── hornet.rdc │ │ │ │ ├── horseman.rdc │ │ │ │ ├── hotdog.rdc │ │ │ │ ├── hyrule-knight.rdc │ │ │ │ ├── hyrule-soldier.rdc │ │ │ │ ├── ignignokt.rdc │ │ │ │ ├── informant_woman.1.z3.rdc │ │ │ │ ├── inkling.1.z3.rdc │ │ │ │ ├── invisible-link.rdc │ │ │ │ ├── jack-frost.rdc │ │ │ │ ├── jason_frudnick.1.z3.rdc │ │ │ │ ├── jasp.rdc │ │ │ │ ├── jogurt.rdc │ │ │ │ ├── jolteon.rdc │ │ │ │ ├── joshtriangles.rdc │ │ │ │ ├── juste-belmont.rdc │ │ │ │ ├── juzcook.rdc │ │ │ │ ├── kaguya.rdc │ │ │ │ ├── kain.rdc │ │ │ │ ├── kakyoin.rdc │ │ │ │ ├── katsura.rdc │ │ │ │ ├── kecleon.1.z3.rdc │ │ │ │ ├── kefka.rdc │ │ │ │ ├── kenny_mccormick.1.z3.rdc │ │ │ │ ├── ketchup.rdc │ │ │ │ ├── kholdstare.rdc │ │ │ │ ├── king_gothalion.1.z3.rdc │ │ │ │ ├── king_graham.1.z3.rdc │ │ │ │ ├── kinu.rdc │ │ │ │ ├── kira.rdc │ │ │ │ ├── kirby-(dreamland-3).rdc │ │ │ │ ├── kirby.rdc │ │ │ │ ├── kite.rdc │ │ │ │ ├── koda.rdc │ │ │ │ ├── koragi.rdc │ │ │ │ ├── kore8.1.z3.rdc │ │ │ │ ├── korok.rdc │ │ │ │ ├── kris.rdc │ │ │ │ ├── krissy.rdc │ │ │ │ ├── kriv.rdc │ │ │ │ ├── kromb.rdc │ │ │ │ ├── lakitu.rdc │ │ │ │ ├── lapras.1.z3.rdc │ │ │ │ ├── latias.rdc │ │ │ │ ├── latios.rdc │ │ │ │ ├── leafeon.rdc │ │ │ │ ├── leongar.rdc │ │ │ │ ├── lest.1.z3.rdc │ │ │ │ ├── lestat.rdc │ │ │ │ ├── lily.1.z3.rdc │ │ │ │ ├── linja.1.z3.rdc │ │ │ │ ├── link-redrawn.rdc │ │ │ │ ├── little-hylian.rdc │ │ │ │ ├── locke.rdc │ │ │ │ ├── love-shak.rdc │ │ │ │ ├── lucario.1.z3.rdc │ │ │ │ ├── lucas.rdc │ │ │ │ ├── luckwurstjoe.rdc │ │ │ │ ├── luigi.1.z3.rdc │ │ │ │ ├── lumberjack.rdc │ │ │ │ ├── luna-maindo.rdc │ │ │ │ ├── lycanroc.rdc │ │ │ │ ├── lynea.rdc │ │ │ │ ├── lynel-(botw).rdc │ │ │ │ ├── mad_tears.rdc │ │ │ │ ├── madeline.rdc │ │ │ │ ├── magus.1.z3.rdc │ │ │ │ ├── maiden.rdc │ │ │ │ ├── majora's-mask.rdc │ │ │ │ ├── mallow_cat.1.z3.rdc │ │ │ │ ├── manga_link.1.z3.rdc │ │ │ │ ├── maple_queen.2.z3.rdc │ │ │ │ ├── marin.2.z3.rdc │ │ │ │ ├── mario_cappy.1.z3.rdc │ │ │ │ ├── mario_classic.2.z3.rdc │ │ │ │ ├── marisa_kirisame.1.z3.rdc │ │ │ │ ├── marvin_cat.3.z3.rdc │ │ │ │ ├── matthias.1.z3.rdc │ │ │ │ ├── meatwad.rdc │ │ │ │ ├── medallions.rdc │ │ │ │ ├── medli.1.z3.rdc │ │ │ │ ├── mega-man-(classic).rdc │ │ │ │ ├── megaman-x2.rdc │ │ │ │ ├── megaman_x.2.z3.rdc │ │ │ │ ├── meta-knight.rdc │ │ │ │ ├── meteion.rdc │ │ │ │ ├── mewlp.1.z3.rdc │ │ │ │ ├── mike_jones.2.z3.rdc │ │ │ │ ├── milly.rdc │ │ │ │ ├── mimic.rdc │ │ │ │ ├── mimikyu.rdc │ │ │ │ ├── mini_ganon.1.z3.rdc │ │ │ │ ├── minish-link.rdc │ │ │ │ ├── minish_cap_link.2.z3.rdc │ │ │ │ ├── mipha.rdc │ │ │ │ ├── missingno.rdc │ │ │ │ ├── moblin.rdc │ │ │ │ ├── moechicken.rdc │ │ │ │ ├── mog.2.z3.rdc │ │ │ │ ├── momiji_inubashiri.1.z3.rdc │ │ │ │ ├── moosh.1.z3.rdc │ │ │ │ ├── mouse.1.z3.rdc │ │ │ │ ├── ms_paint_dog.1.z3.rdc │ │ │ │ ├── mushy.1.z3.rdc │ │ │ │ ├── navi.rdc │ │ │ │ ├── navirou.rdc │ │ │ │ ├── nayada.rdc │ │ │ │ ├── necrosky90.rdc │ │ │ │ ├── ned-flanders.rdc │ │ │ │ ├── nekoni-hoozuki.rdc │ │ │ │ ├── neosad.rdc │ │ │ │ ├── nepgear.rdc │ │ │ │ ├── neptune.rdc │ │ │ │ ├── nes-link.rdc │ │ │ │ ├── ness_earthbound.1.z3.rdc │ │ │ │ ├── nia.1.z3.rdc │ │ │ │ ├── niddraig.rdc │ │ │ │ ├── niko.rdc │ │ │ │ ├── ninten.rdc │ │ │ │ ├── octorok.rdc │ │ │ │ ├── old-man.rdc │ │ │ │ ├── olde-man.rdc │ │ │ │ ├── ori.2.z3.rdc │ │ │ │ ├── outline-link.rdc │ │ │ │ ├── paper-mario.rdc │ │ │ │ ├── parallel_worlds_link.1.z3.rdc │ │ │ │ ├── patia.rdc │ │ │ │ ├── paul-the-woodsman.rdc │ │ │ │ ├── paula.1.z3.rdc │ │ │ │ ├── penguin_link.1.z3.rdc │ │ │ │ ├── pete_harvest_moon.1.z3.rdc │ │ │ │ ├── phoenix_wright.1.z3.rdc │ │ │ │ ├── pikachu.1.z3.rdc │ │ │ │ ├── pinkribbonlink.2.z3.rdc │ │ │ │ ├── plague_knight.1.z3.rdc │ │ │ │ ├── plouni.rdc │ │ │ │ ├── poc-link.rdc │ │ │ │ ├── pokey.rdc │ │ │ │ ├── pony.1.z3.rdc │ │ │ │ ├── popoi.1.z3.rdc │ │ │ │ ├── poppy.1.z3.rdc │ │ │ │ ├── porg-knight.rdc │ │ │ │ ├── power-ranger.rdc │ │ │ │ ├── powerpuff_girl.1.z3.rdc │ │ │ │ ├── pridelink.2.z3.rdc │ │ │ │ ├── primm.1.z3.rdc │ │ │ │ ├── princess-bubblegum.rdc │ │ │ │ ├── princess_peach.1.z3.rdc │ │ │ │ ├── prof.-renderer-grizzleton.rdc │ │ │ │ ├── protogen.rdc │ │ │ │ ├── psyduck.2.z3.rdc │ │ │ │ ├── pug.1.z3.rdc │ │ │ │ ├── purple-chest.rdc │ │ │ │ ├── pyro.1.z3.rdc │ │ │ │ ├── quadbanger.rdc │ │ │ │ ├── rainbow-link.rdc │ │ │ │ ├── randi.rdc │ │ │ │ ├── rash.rdc │ │ │ │ ├── rat.rdc │ │ │ │ ├── red-mage.rdc │ │ │ │ ├── red.rdc │ │ │ │ ├── reimu-hakurei-(hoxnorf).rdc │ │ │ │ ├── reimu-hakurei-(rickyofkokiri).rdc │ │ │ │ ├── remeer.rdc │ │ │ │ ├── remus-r-black.rdc │ │ │ │ ├── rick.rdc │ │ │ │ ├── robot_link_9000.1.z3.rdc │ │ │ │ ├── rocko.1.z3.rdc │ │ │ │ ├── roronoa-zoro.rdc │ │ │ │ ├── rottytops.1.z3.rdc │ │ │ │ ├── rover.rdc │ │ │ │ ├── roy_koopa.1.z3.rdc │ │ │ │ ├── rozalyndis.rdc │ │ │ │ ├── rumia.rdc │ │ │ │ ├── rydia.1.z3.rdc │ │ │ │ ├── ryu.1.z3.rdc │ │ │ │ ├── sailor-jupiter.rdc │ │ │ │ ├── sailor-mars.rdc │ │ │ │ ├── sailor-mercury.rdc │ │ │ │ ├── sailor-saturn.rdc │ │ │ │ ├── sailor-venus.rdc │ │ │ │ ├── sailor_moon.1.z3.rdc │ │ │ │ ├── saitama.1.z3.rdc │ │ │ │ ├── salty-squiddy.rdc │ │ │ │ ├── samurott.rdc │ │ │ │ ├── samus.2.z3.rdc │ │ │ │ ├── samus_classic.1.z3.rdc │ │ │ │ ├── samus_super_metroid.1.z3.rdc │ │ │ │ ├── santa_link.2.z3.rdc │ │ │ │ ├── saria.rdc │ │ │ │ ├── scholar.1.z3.rdc │ │ │ │ ├── selan.1.z3.rdc │ │ │ │ ├── sevens1ns.1.z3.rdc │ │ │ │ ├── shade.rdc │ │ │ │ ├── shadow.1.z3.rdc │ │ │ │ ├── shaktool.rdc │ │ │ │ ├── shantae.1.z3.rdc │ │ │ │ ├── shiluna.rdc │ │ │ │ ├── shin.rdc │ │ │ │ ├── shinmyoumaru-sukuna.rdc │ │ │ │ ├── shopkeeper-link.rdc │ │ │ │ ├── shuppet.1.z3.rdc │ │ │ │ ├── shy-gal.rdc │ │ │ │ ├── shy_guy.1.z3.rdc │ │ │ │ ├── sighnwaive.1.z3.rdc │ │ │ │ ├── skunk.rdc │ │ │ │ ├── slowpoke.rdc │ │ │ │ ├── snes-controller.rdc │ │ │ │ ├── sobble.rdc │ │ │ │ ├── soda-can.rdc │ │ │ │ ├── sokka.rdc │ │ │ │ ├── solaire_astora.1.z3.rdc │ │ │ │ ├── sonic_hedgehog.1.z3.rdc │ │ │ │ ├── sora.rdc │ │ │ │ ├── sora_kh1.1.z3.rdc │ │ │ │ ├── spamton-g.-spamton.rdc │ │ │ │ ├── spat.rdc │ │ │ │ ├── spiked-roller.rdc │ │ │ │ ├── spongebob-squarepants.rdc │ │ │ │ ├── spyro-the-dragon.rdc │ │ │ │ ├── squall.1.z3.rdc │ │ │ │ ├── squirrel.1.z3.rdc │ │ │ │ ├── squirtle.1.z3.rdc │ │ │ │ ├── stalfos.rdc │ │ │ │ ├── stan.rdc │ │ │ │ ├── steamed-ham.rdc │ │ │ │ ├── stick-man.rdc │ │ │ │ ├── super-bomb.rdc │ │ │ │ ├── super-meat-boy.rdc │ │ │ │ ├── super_bunny.2.z3.rdc │ │ │ │ ├── susie.rdc │ │ │ │ ├── swiper.rdc │ │ │ │ ├── swirldrop.rdc │ │ │ │ ├── tanooki_mario.1.z3.rdc │ │ │ │ ├── tasbot.rdc │ │ │ │ ├── tea-time.rdc │ │ │ │ ├── teddiursa.rdc │ │ │ │ ├── terra_esper.1.z3.rdc │ │ │ │ ├── terry.rdc │ │ │ │ ├── tetra.1.z3.rdc │ │ │ │ ├── tgh.1.z3.rdc │ │ │ │ ├── the-professor.rdc │ │ │ │ ├── the-robot.rdc │ │ │ │ ├── thief.rdc │ │ │ │ ├── thinkdorm.rdc │ │ │ │ ├── thomcrow.1.z3.rdc │ │ │ │ ├── tile.rdc │ │ │ │ ├── tingle.1.z3.rdc │ │ │ │ ├── tmnt.1.z3.rdc │ │ │ │ ├── toad.2.z3.rdc │ │ │ │ ├── toadette.2.z3.rdc │ │ │ │ ├── totemlinks.rdc │ │ │ │ ├── tp_zelda.2.z3.rdc │ │ │ │ ├── trogdor-the-burninator.rdc │ │ │ │ ├── tueffel.rdc │ │ │ │ ├── tunic.rdc │ │ │ │ ├── twofaced.rdc │ │ │ │ ├── ty_tasmanian_tiger.1.z3.rdc │ │ │ │ ├── ufo-kirby.rdc │ │ │ │ ├── ultros.1.z3.rdc │ │ │ │ ├── umbreon.rdc │ │ │ │ ├── valeera.1.z3.rdc │ │ │ │ ├── vanillalink.rdc │ │ │ │ ├── vaporeon.1.z3.rdc │ │ │ │ ├── vegeta.1.z3.rdc │ │ │ │ ├── vera.1.z3.rdc │ │ │ │ ├── vitreous.rdc │ │ │ │ ├── vivi.1.z3.rdc │ │ │ │ ├── vivian.rdc │ │ │ │ ├── wario.1.z3.rdc │ │ │ │ ├── white-mage.rdc │ │ │ │ ├── will.1.z3.rdc │ │ │ │ ├── wolf-link.rdc │ │ │ │ ├── wolf-o'donnell.rdc │ │ │ │ ├── wolf_link_tp.1.z3.rdc │ │ │ │ ├── wuzaiiii.rdc │ │ │ │ ├── xman101.rdc │ │ │ │ ├── yoshi.1.z3.rdc │ │ │ │ ├── yunica_tovah.1.z3.rdc │ │ │ │ ├── zagreus.rdc │ │ │ │ ├── zandra.1.z3.rdc │ │ │ │ ├── zaruvyen.rdc │ │ │ │ ├── zebra_unicorn.1.z3.rdc │ │ │ │ ├── zeckemyro.1.z3.rdc │ │ │ │ ├── zekrom.rdc │ │ │ │ ├── zelda.1.z3.rdc │ │ │ │ ├── zero_suit_samus.2.z3.rdc │ │ │ │ └── zora.rdc │ │ └── ui │ │ │ └── logic_list_item.svg │ ├── scss │ │ └── custom.scss │ └── src │ │ ├── App.jsx │ │ ├── crate │ │ └── index.js │ │ ├── game │ │ ├── big_text_table.js │ │ ├── item_lookup.js │ │ ├── rdc.js │ │ ├── rom.js │ │ ├── snes.js │ │ └── traits.js │ │ ├── generate │ │ ├── Configure.jsx │ │ └── Permalink.jsx │ │ ├── index.js │ │ ├── logiclog │ │ ├── LogicLog.jsx │ │ ├── brinstar │ │ │ ├── Blue │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankBrinstarCeiling │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── MissileBlueBrinstarBillyMays │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── MissileBlueBrinstarBottom.md │ │ │ │ ├── MissileBlueBrinstarMiddle │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── MorphingBall.md │ │ │ │ └── PowerBombBlueBrinstar.md │ │ │ ├── Green │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── GreenBrinstarBottomCorridors │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── GreenBrinstarTopPassedGates │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileGreenBrinstarBehindMissile │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileGreenBrinstarBehindReserveTank │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileGreenBrinstarBelowSuperMissile.md │ │ │ │ └── SuperMissileGreenBrinstarBottom │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ ├── Kraid │ │ │ │ ├── BehindKraid │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── MissileKraid.md │ │ │ ├── Pink │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── ChargeBeam.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankBrinstarGate │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── EnergyTankWaterway.md │ │ │ │ ├── MissileGreenBrinstarPipe.md │ │ │ │ ├── MissilePinkBrinstarRoom.md │ │ │ │ ├── PowerBombPinkBrinstar │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── SuperMissilePinkBrinstar │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── NormalKs.md │ │ │ │ │ └── Regular.md │ │ │ ├── Red │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── RedBrinstarAlpha.md │ │ │ │ ├── RedBrinstarBeta │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── Spazer.md │ │ │ │ └── XRayScope │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ └── index.js │ │ ├── common │ │ │ ├── Aliases │ │ │ │ ├── CanDestroyBombWalls.md │ │ │ │ ├── CanExtendMagic.md │ │ │ │ ├── CanFly.md │ │ │ │ ├── CanHellRun.md │ │ │ │ ├── CanIbj.md │ │ │ │ ├── CanKillManyEnemies.md │ │ │ │ ├── CanLiftHeavy.md │ │ │ │ ├── CanLiftLight.md │ │ │ │ ├── CanLightTorches.md │ │ │ │ ├── CanMeltFreezors.md │ │ │ │ ├── CanOpenRedDoors.md │ │ │ │ ├── CanPassBombPassages.md │ │ │ │ ├── CanSpringBallJump.md │ │ │ │ ├── CanUsePowerBombs.md │ │ │ │ └── Content.jsx │ │ │ ├── Portals │ │ │ │ ├── CanAccessDarkWorldPortal │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanAccessDeathMountainPortal.md │ │ │ │ ├── CanAccessMaridiaPortal │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── CanAccessMiseryMirePortal │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanAccessNorfairLowerPortal.md │ │ │ │ ├── CanAccessNorfairUpperPortal.md │ │ │ │ └── Content.jsx │ │ │ └── index.js │ │ ├── content.js │ │ ├── crateria │ │ │ ├── Central │ │ │ │ ├── Bombs │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── MissileCrateriaBottom.md │ │ │ │ ├── MissileCrateriaMiddle.md │ │ │ │ ├── PowerBombCrateriaSurface │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ └── SuperMissileCrateria.md │ │ │ ├── East │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── MissileCrateriaMoat.md │ │ │ │ ├── MissileOutsideWreckedShipBottom │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── MissilesOutsideWreckedShipTopHalf │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ ├── West │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankGauntlet │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── EnergyTankTerminator.md │ │ │ │ ├── EnterAndLeaveGauntlet │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ └── MissileCrateriaGauntlet │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ └── index.js │ │ ├── darkworld │ │ │ ├── DeathMountainEast │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── HookshotCave.md │ │ │ │ ├── HookshotCaveBottomRight.md │ │ │ │ └── SuperbunnyCave.md │ │ │ ├── DeathMountainWest │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── SpikeCave.md │ │ │ ├── Mire │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── MireShed.md │ │ │ ├── NorthEast │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Catfish.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── Pyramid.md │ │ │ │ └── PyramidFairy.md │ │ │ ├── NorthWest │ │ │ │ ├── BlacksmithChain.md │ │ │ │ ├── BumperCave.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── HammerPegs.md │ │ │ │ └── VillageOfOutcasts.md │ │ │ ├── South │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── FreeLocations.md │ │ │ └── index.js │ │ ├── dungeons │ │ │ ├── CastleTower │ │ │ │ ├── Agahnim.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CastleTowerDarkMaze.md │ │ │ │ ├── CastleTowerFoyer.md │ │ │ │ └── Content.jsx │ │ │ ├── DesertPalace │ │ │ │ ├── BigChest.md │ │ │ │ ├── CanBeatBoss.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EastWing.md │ │ │ │ ├── Lanmolas.md │ │ │ │ ├── MapChest.md │ │ │ │ └── Torch.md │ │ │ ├── EasternPalace │ │ │ │ ├── ArmosKnights.md │ │ │ │ ├── BigChest.md │ │ │ │ ├── BigKeyChest.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── FreeLocations.md │ │ │ ├── GanonsTower │ │ │ │ ├── Ascent.md │ │ │ │ ├── BigChest.md │ │ │ │ ├── BigKeyRoom.md │ │ │ │ ├── BobsChest.md │ │ │ │ ├── BobsTorch.md │ │ │ │ ├── CanBeatArmos.md │ │ │ │ ├── CanBeatMoldorm.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CompassRoom.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── DMsRoom.md │ │ │ │ ├── FiresnakeRoom.md │ │ │ │ ├── HopeRoom.md │ │ │ │ ├── MapChest.md │ │ │ │ ├── MoldormChest.md │ │ │ │ ├── RandomizerRoom.md │ │ │ │ └── TileRoom.md │ │ │ ├── HyruleCastle │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── HyruleCastleFront.md │ │ │ │ ├── HyruleCastleMapChest.md │ │ │ │ ├── Sanctuary.md │ │ │ │ ├── SecretPassage.md │ │ │ │ ├── SewersDarkCross.md │ │ │ │ └── SewersSecretRoom.md │ │ │ ├── IcePalace │ │ │ │ ├── BigChest.md │ │ │ │ ├── BigKeyChest.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CanNotWasteKeysBeforeAccessible.md │ │ │ │ ├── CompassChest.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── FreeLocations.md │ │ │ │ ├── Kholdstare.md │ │ │ │ ├── MapChest.md │ │ │ │ └── SpikeRoom.md │ │ │ ├── MiseryMire │ │ │ │ ├── BigChest.md │ │ │ │ ├── BigKeyChest.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CompassChest.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── FreeLocations.md │ │ │ │ ├── MainLobby.md │ │ │ │ └── Vitreous.md │ │ │ ├── PalaceOfDarkness │ │ │ │ ├── BigChest │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── BigKeyChest │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CenterRooms.md │ │ │ │ ├── CompassChest │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── DarkBasement │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── DarkMaze │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── EastWing.md │ │ │ │ ├── HarmlessHellway │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── HelmasaurKing.md │ │ │ │ └── ShooterRoom.md │ │ │ ├── SkullWoods │ │ │ │ ├── BigChest.md │ │ │ │ ├── BigKeyChest.md │ │ │ │ ├── BridgeRoom.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── FreeLocations.md │ │ │ │ ├── Mothula.md │ │ │ │ └── PinballRoom.md │ │ │ ├── SwampPalace │ │ │ │ ├── BigChest.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── Entrance.md │ │ │ │ ├── MapChest.md │ │ │ │ ├── NorthWing.md │ │ │ │ └── WestWing.md │ │ │ ├── ThievesTown │ │ │ │ ├── Attic.md │ │ │ │ ├── BigChest.md │ │ │ │ ├── Blind.md │ │ │ │ ├── BlindsCell.md │ │ │ │ ├── CanBeatBoss.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ └── Courtyard.md │ │ │ ├── TowerOfHera │ │ │ │ ├── AfterBigKeyDoor.md │ │ │ │ ├── BigKeyChest.md │ │ │ │ ├── CanBeatBoss.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── FreeLocations.md │ │ │ │ └── Moldorm.md │ │ │ ├── TurtleRock │ │ │ │ ├── AfterSecondEntrance.md │ │ │ │ ├── BigKeyChest │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── CanBeatBoss.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── ChainChomps.md │ │ │ │ ├── CompassChest.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EyeBridge.md │ │ │ │ ├── RollerRoom.md │ │ │ │ └── Trinexx.md │ │ │ └── index.js │ │ ├── index.js │ │ ├── intro.md │ │ ├── lightworld │ │ │ ├── DeathMountainEast │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── FloatingIsland.md │ │ │ │ ├── FreeLocations.md │ │ │ │ └── MimicCave.md │ │ │ ├── DeathMountainWest │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EtherTablet.md │ │ │ │ ├── OldMan.md │ │ │ │ ├── SpectacleRock.md │ │ │ │ └── SpectacleRockCave.md │ │ │ ├── NorthEast │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── KingZora.md │ │ │ │ ├── PotionShop.md │ │ │ │ ├── Sahasrahla.md │ │ │ │ ├── SahasrahlasHut.md │ │ │ │ └── ZorasDomain.md │ │ │ ├── NorthWest │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── GraveyardLedge.md │ │ │ │ ├── KakarikoVillage.md │ │ │ │ ├── KingsTomb.md │ │ │ │ ├── LostWoods.md │ │ │ │ ├── LumberjackTree.md │ │ │ │ ├── MagicBat.md │ │ │ │ ├── MasterSwordPedestal.md │ │ │ │ ├── PegasusRocks.md │ │ │ │ └── SickKid.md │ │ │ ├── South │ │ │ │ ├── BombosTablet.md │ │ │ │ ├── CanEnter.md │ │ │ │ ├── CheckerboardCave.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── DesertLedge.md │ │ │ │ ├── Floodgate.md │ │ │ │ ├── FluteSpot.md │ │ │ │ ├── FreeLocations.md │ │ │ │ ├── Hobo.md │ │ │ │ ├── IceRodCave.md │ │ │ │ ├── LakeHyliaIsland.md │ │ │ │ ├── Library.md │ │ │ │ ├── MazeRace.md │ │ │ │ └── SouthOfGrove.md │ │ │ └── index.js │ │ ├── maridia │ │ │ ├── Inner │ │ │ │ ├── CanDefeatBotwoon │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── CanDefeatDraygon │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── CanReachAqueduct │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankBotwoon │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── LeftMaridiaSandPitRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileDraygon │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── MissileRightMaridiaSandPitRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── PinkMaridia │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── PlasmaBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── PowerBombRightMaridiaSandPitRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── SpaceJump.md │ │ │ │ ├── SpringBall │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── YellowMaridia │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ ├── Outer │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankMamaTurtle │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileGreenMaridiaShinespark │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileGreenMaridiaTatori.md │ │ │ │ └── SuperMissileGreenMaridia.md │ │ │ └── index.js │ │ ├── norfairlower │ │ │ ├── East │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanExit │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankFirefleas.md │ │ │ │ ├── EnergyTankRidley │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── MissileLowerNorfairAboveFireFleaRoom.md │ │ │ │ ├── MissileLowerNorfairNearWaveBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── PowerBombLowerNorfairAboveFireFleaRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── PowerBombPowerBombsOfShame.md │ │ │ ├── West │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── MissileGoldTorizo │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileMickeyMouseRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── ScrewAttack │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── SuperMissileGoldTorizo │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ └── index.js │ │ ├── norfairupper │ │ │ ├── Crocomire │ │ │ │ ├── CanAccessCrocomire │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankCrocomire │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── GrapplingBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileAboveCrocomire │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ ├── MissileBelowCrocomire.md │ │ │ │ ├── MissileGrapplingBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ │ └── PowerBombCrocomire │ │ │ │ │ ├── Hard.md │ │ │ │ │ └── Normal.md │ │ │ ├── East │ │ │ │ ├── BubbleCliff │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── CanEnter │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── MissileBubbleNorfair │ │ │ │ │ ├── Ks.md │ │ │ │ │ └── Regular.md │ │ │ │ ├── MissileBubbleNorfairGreenDoor │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── MissileWaveBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── SpeedBooster │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ └── WaveBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ ├── West │ │ │ │ ├── CanEnter.md │ │ │ │ ├── Content.jsx │ │ │ │ ├── EnergyTankHiJumpBoots.md │ │ │ │ ├── HiJumpBoots.md │ │ │ │ ├── IceBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── MissileBelowIceBeam │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ │ ├── MissileHiJumpBoots.md │ │ │ │ └── MissileLavaRoom │ │ │ │ │ ├── Hard.md │ │ │ │ │ ├── HardKs.md │ │ │ │ │ ├── Normal.md │ │ │ │ │ └── NormalKs.md │ │ │ └── index.js │ │ ├── styled.js │ │ └── wreckedship │ │ │ ├── AfterShipUnlocked.md │ │ │ ├── CanEnter │ │ │ ├── Hard.md │ │ │ ├── HardKs.md │ │ │ ├── Normal.md │ │ │ └── NormalKs.md │ │ │ ├── CanUnlockShip │ │ │ ├── Ks.md │ │ │ └── Regular.md │ │ │ ├── Content.jsx │ │ │ ├── EnergyTankWreckedShip │ │ │ ├── Hard.md │ │ │ └── Normal.md │ │ │ ├── GravitySuit │ │ │ ├── Hard.md │ │ │ ├── HardKs.md │ │ │ ├── Normal.md │ │ │ └── NormalKs.md │ │ │ ├── MissileWreckedShipMiddle.md │ │ │ └── ReserveTankWreckedShip │ │ │ ├── Hard.md │ │ │ ├── HardKs.md │ │ │ ├── Normal.md │ │ │ └── NormalKs.md │ │ ├── multiworld │ │ ├── Connection.jsx │ │ ├── Game.jsx │ │ ├── Multiworld.jsx │ │ ├── Session.jsx │ │ ├── index.js │ │ └── styled.js │ │ ├── patch │ │ ├── DownloadInfoTooltip.jsx │ │ ├── Patch.jsx │ │ ├── Upload.jsx │ │ └── index.js │ │ ├── polyfill │ │ └── TextDecoder.js │ │ ├── registerServiceWorker.js │ │ ├── resources │ │ ├── markdown │ │ │ ├── mwinstructions.md │ │ │ ├── resources.md │ │ │ ├── smchangelog.md │ │ │ ├── sminformation.md │ │ │ ├── smz3changelog.md │ │ │ └── smz3information.md │ │ ├── sm.ips.gz │ │ ├── sprite │ │ │ └── inventory.json │ │ ├── zsm.ips.gz │ │ └── zsm.v11.2.ips.gz │ │ ├── site │ │ ├── GlobalStyle.js │ │ ├── SmHome.jsx │ │ ├── Smz3Home.jsx │ │ └── domain.js │ │ ├── spoiler │ │ ├── Spoiler.jsx │ │ ├── index.js │ │ ├── region_ordering.js │ │ └── styled.js │ │ ├── ui │ │ ├── BootstrapIcon.jsx │ │ ├── ColoredIcon.jsx │ │ ├── DropdownSelect.jsx │ │ ├── InputWithoutSpinner.js │ │ ├── Markdown.jsx │ │ ├── MessageCard.jsx │ │ ├── NavMenu.jsx │ │ ├── PlainList.jsx │ │ └── PrefixInputGroup.jsx │ │ └── util.js ├── Controllers │ ├── Helpers.cs │ ├── RandomizerController.cs │ ├── SeedController.cs │ └── SpoilerController.cs ├── DB │ └── .gitignore ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WebRandomizer.csproj ├── appsettings.Development.json └── appsettings.json ├── docker-entrypoint.sh └── randomizer-client-wasm ├── package.json ├── randomizer_client.d.ts ├── randomizer_client.js ├── randomizer_client_bg.js ├── randomizer_client_bg.wasm ├── randomizer_client_bg.wasm.d.ts └── snippets └── wasm-streams-8c20110b5d812e48 └── inline0.js /Randomizer.CLI/Resources/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/Randomizer.CLI/Resources/link.png -------------------------------------------------------------------------------- /Randomizer.CLI/Resources/samus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/Randomizer.CLI/Resources/samus.png -------------------------------------------------------------------------------- /Randomizer.SMZ3/Assembly.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Randomizer.SMZ3.Tests")] 4 | -------------------------------------------------------------------------------- /Randomizer.Service/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Randomizer.SuperMetroid/Assembly.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Randomizer.SuperMetroid.Tests")] 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/.env: -------------------------------------------------------------------------------- 1 | EXTEND_ESLINT=true 2 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/jump_screw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/jump_screw.png -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/jump_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/jump_space.png -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm.png -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/140.sm.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/140.sm.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/alcoon.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/alcoon.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/arcana.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/arcana.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/b.o.b..rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/b.o.b..rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/brad-fang.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/brad-fang.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/bruno.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/bruno.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/buffed-pug.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/buffed-pug.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/charizard.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/charizard.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/dread.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/dread.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/fight.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/fight.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/goku.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/goku.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/janky.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/janky.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/junko.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/junko.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/kiara.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/kiara.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/king-graham.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/king-graham.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/kirby.1.sm.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/kirby.1.sm.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/knuckles.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/knuckles.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/luigi.1.sm.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/luigi.1.sm.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/madeline.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/madeline.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/maria-pollo.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/maria-pollo.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/mario-(smw).rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/mario-(smw).rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/master-hand.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/master-hand.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/mini-samus.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/mini-samus.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/missingno.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/missingno.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/opposition.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/opposition.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/plissken.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/plissken.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/pyronett.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/pyronett.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/samus-maid.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/samus-maid.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/sans.1.sm.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/sans.1.sm.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/shantae.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/shantae.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/sonic.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/sonic.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/sprite.1.sm.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/sprite.1.sm.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/tails.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/tails.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/tallink.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/tallink.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/tetris.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/tetris.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/wario.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/wario.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/sm/yarn-kirby.rdc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/sm/yarn-kirby.rdc.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3.png -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/abigail.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/abigail.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/adol.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/adol.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/adventure-2600.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/adventure-2600.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/alex.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/alex.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/alice.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/alice.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/annalavellan.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/annalavellan.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/arcane.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/arcane.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/archen.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/archen.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/arcturuschusky.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/arcturuschusky.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/aria.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/aria.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ark-(no-cape).rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ark-(no-cape).rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ark.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ark.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/arrghus.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/arrghus.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/astor.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/astor.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/astronaut.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/astronaut.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/asuna.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/asuna.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/b.o.b..rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/b.o.b..rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/baba.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/baba.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/baby-fro.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/baby-fro.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/baby-metroid.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/baby-metroid.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/badeline.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/badeline.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bailey.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bailey.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bandit.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bandit.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/batman.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/batman.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/beau.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/beau.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bee.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bee.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bel.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bel.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bewp.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bewp.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/big-key.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/big-key.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/birb.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/birb.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/birdfruit.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/birdfruit.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/birdo.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/birdo.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/black-mage.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/black-mage.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/blazer.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/blazer.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/blossom.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/blossom.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/blue.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/blue.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bob-ross.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bob-ross.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bob.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bob.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/boo-2.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/boo-2.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/boo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/boo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bottle-o'-goo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bottle-o'-goo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/botw-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/botw-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/botw-zelda.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/botw-zelda.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bowser.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bowser.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bowsette-red.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bowsette-red.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bowsette.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bowsette.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/branch.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/branch.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/brian.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/brian.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/broccoli.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/broccoli.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bronzor.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bronzor.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bs_boy.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bs_boy.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bs_girl.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bs_girl.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bubblen.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bubblen.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bubbles.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bubbles.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/bullet-bill.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/bullet-bill.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/buttercup.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/buttercup.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cactuar.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cactuar.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cadence.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cadence.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/casual-zelda.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/casual-zelda.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cat-boo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cat-boo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cdi_link.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cdi_link.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/celes.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/celes.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/centaur-enos.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/centaur-enos.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/charizard.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/charizard.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cheep-cheep.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cheep-cheep.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/chef-pepper.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/chef-pepper.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/chibity.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/chibity.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/chrizzz.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/chrizzz.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/chrono.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/chrono.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cinna.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cinna.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cirno.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cirno.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/clifford.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/clifford.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/clippy.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/clippy.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cloud.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cloud.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/clyde.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/clyde.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/conker-neo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/conker-neo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/conker.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/conker.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cool-90s-bun.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cool-90s-bun.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cool-90s-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cool-90s-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cornelius.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cornelius.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/corona.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/corona.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cousin-knol.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cousin-knol.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/crewmate.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/crewmate.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cucco.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cucco.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/cursor.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/cursor.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/d_owls.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/d_owls.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dark-matter.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dark-matter.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/deadrock.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/deadrock.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/decidueye.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/decidueye.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dekar.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dekar.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dennsen86.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dennsen86.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/diddy-kong.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/diddy-kong.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dig-dug.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dig-dug.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dipper.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dipper.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/discord.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/discord.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dot_lvl.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dot_lvl.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dq-slime.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dq-slime.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dragonair.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dragonair.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/dragonite.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/dragonite.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/drawcia.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/drawcia.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/eevee.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/eevee.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/eggplant.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/eggplant.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/eirika.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/eirika.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/elfilin.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/elfilin.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ema-skye.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ema-skye.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/espeon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/espeon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ezlo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ezlo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/fi.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/fi.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/flareon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/flareon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/floodgate-fish.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/floodgate-fish.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/fox_link.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/fox_link.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/fransen.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/fransen.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/freya-crescent.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/freya-crescent.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/frisk.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/frisk.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/frog_link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/frog_link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/fujin.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/fujin.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gamer.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gamer.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ganondorf.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ganondorf.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/garfield.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/garfield.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/garnet.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/garnet.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gbc-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gbc-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/geno.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/geno.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gina-lestrade.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gina-lestrade.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gliitchwiitch.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gliitchwiitch.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/go-mode.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/go-mode.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gobli.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gobli.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/goemon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/goemon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gooey.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gooey.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/goomba.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/goomba.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/goose.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/goose.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/graalian-noob.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/graalian-noob.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/grandpoobear.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/grandpoobear.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gretis.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gretis.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/growlithe.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/growlithe.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/gruncle-stan.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/gruncle-stan.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/guiz.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/guiz.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hamtaro.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hamtaro.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hanna.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hanna.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hardhat-beetle.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hardhat-beetle.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hat_kid.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hat_kid.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/head-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/head-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/headless-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/headless-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/heem.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/heem.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hero-of-hyrule.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hero-of-hyrule.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hidari.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hidari.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hint-tile.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hint-tile.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hoarder-(bush).rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hoarder-(bush).rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hoarder-(pot).rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hoarder-(pot).rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hoarder-(rock).rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hoarder-(rock).rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hollow-knight.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hollow-knight.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hornet.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hornet.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/horseman.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/horseman.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hotdog.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hotdog.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hyrule-knight.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hyrule-knight.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/hyrule-soldier.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/hyrule-soldier.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ignignokt.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ignignokt.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/inkling.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/inkling.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/invisible-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/invisible-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/jack-frost.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/jack-frost.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/jasp.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/jasp.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/jogurt.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/jogurt.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/jolteon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/jolteon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/joshtriangles.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/joshtriangles.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/juste-belmont.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/juste-belmont.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/juzcook.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/juzcook.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kaguya.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kaguya.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kain.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kain.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kakyoin.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kakyoin.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/katsura.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/katsura.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kecleon.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kecleon.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kefka.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kefka.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ketchup.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ketchup.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kholdstare.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kholdstare.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kinu.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kinu.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kira.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kira.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kirby.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kirby.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kite.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kite.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/koda.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/koda.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/koragi.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/koragi.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kore8.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kore8.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/korok.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/korok.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kris.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kris.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/krissy.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/krissy.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kriv.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kriv.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/kromb.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/kromb.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lakitu.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lakitu.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lapras.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lapras.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/latias.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/latias.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/latios.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/latios.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/leafeon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/leafeon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/leongar.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/leongar.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lest.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lest.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lestat.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lestat.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lily.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lily.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/linja.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/linja.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/link-redrawn.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/link-redrawn.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/little-hylian.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/little-hylian.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/locke.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/locke.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/love-shak.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/love-shak.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lucario.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lucario.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lucas.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lucas.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/luckwurstjoe.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/luckwurstjoe.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/luigi.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/luigi.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lumberjack.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lumberjack.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/luna-maindo.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/luna-maindo.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lycanroc.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lycanroc.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lynea.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lynea.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/lynel-(botw).rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/lynel-(botw).rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mad_tears.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mad_tears.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/madeline.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/madeline.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/magus.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/magus.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/maiden.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/maiden.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/majora's-mask.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/majora's-mask.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/marin.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/marin.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/matthias.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/matthias.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/meatwad.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/meatwad.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/medallions.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/medallions.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/medli.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/medli.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/megaman-x2.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/megaman-x2.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/megaman_x.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/megaman_x.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/meta-knight.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/meta-knight.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/meteion.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/meteion.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mewlp.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mewlp.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/milly.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/milly.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mimic.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mimic.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mimikyu.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mimikyu.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/minish-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/minish-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mipha.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mipha.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/missingno.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/missingno.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/moblin.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/moblin.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/moechicken.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/moechicken.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mog.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mog.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/moosh.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/moosh.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mouse.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mouse.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/mushy.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/mushy.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/navi.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/navi.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/navirou.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/navirou.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/nayada.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/nayada.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/necrosky90.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/necrosky90.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ned-flanders.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ned-flanders.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/nekoni-hoozuki.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/nekoni-hoozuki.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/neosad.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/neosad.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/nepgear.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/nepgear.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/neptune.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/neptune.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/nes-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/nes-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/nia.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/nia.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/niddraig.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/niddraig.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/niko.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/niko.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ninten.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ninten.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/octorok.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/octorok.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/old-man.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/old-man.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/olde-man.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/olde-man.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ori.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ori.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/outline-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/outline-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/paper-mario.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/paper-mario.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/patia.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/patia.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/paula.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/paula.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pikachu.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pikachu.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/plouni.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/plouni.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/poc-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/poc-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pokey.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pokey.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pony.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pony.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/popoi.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/popoi.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/poppy.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/poppy.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/porg-knight.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/porg-knight.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/power-ranger.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/power-ranger.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pridelink.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pridelink.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/primm.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/primm.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/protogen.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/protogen.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/psyduck.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/psyduck.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pug.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pug.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/purple-chest.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/purple-chest.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/pyro.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/pyro.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/quadbanger.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/quadbanger.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rainbow-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rainbow-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/randi.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/randi.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rash.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rash.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rat.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rat.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/red-mage.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/red-mage.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/red.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/red.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/remeer.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/remeer.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/remus-r-black.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/remus-r-black.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rick.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rick.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rocko.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rocko.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/roronoa-zoro.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/roronoa-zoro.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rottytops.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rottytops.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rover.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rover.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/roy_koopa.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/roy_koopa.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rozalyndis.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rozalyndis.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rumia.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rumia.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/rydia.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/rydia.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ryu.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ryu.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sailor-jupiter.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sailor-jupiter.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sailor-mars.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sailor-mars.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sailor-mercury.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sailor-mercury.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sailor-saturn.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sailor-saturn.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sailor-venus.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sailor-venus.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/saitama.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/saitama.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/salty-squiddy.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/salty-squiddy.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/samurott.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/samurott.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/samus.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/samus.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/saria.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/saria.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/scholar.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/scholar.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/selan.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/selan.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sevens1ns.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sevens1ns.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shade.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shade.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shadow.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shadow.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shaktool.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shaktool.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shantae.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shantae.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shiluna.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shiluna.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shin.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shin.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shuppet.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shuppet.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shy-gal.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shy-gal.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/shy_guy.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/shy_guy.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/skunk.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/skunk.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/slowpoke.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/slowpoke.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sobble.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sobble.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/soda-can.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/soda-can.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sokka.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sokka.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sora.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sora.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/sora_kh1.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/sora_kh1.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/spat.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/spat.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/spiked-roller.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/spiked-roller.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/squall.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/squall.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/squirrel.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/squirrel.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/squirtle.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/squirtle.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/stalfos.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/stalfos.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/stan.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/stan.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/steamed-ham.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/steamed-ham.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/stick-man.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/stick-man.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/super-bomb.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/super-bomb.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/super-meat-boy.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/super-meat-boy.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/susie.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/susie.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/swiper.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/swiper.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/swirldrop.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/swirldrop.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tasbot.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tasbot.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tea-time.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tea-time.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/teddiursa.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/teddiursa.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/terry.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/terry.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tetra.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tetra.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tgh.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tgh.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/the-professor.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/the-professor.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/the-robot.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/the-robot.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/thief.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/thief.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/thinkdorm.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/thinkdorm.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/thomcrow.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/thomcrow.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tile.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tile.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tingle.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tingle.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tmnt.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tmnt.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/toad.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/toad.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/toadette.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/toadette.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/totemlinks.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/totemlinks.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tp_zelda.2.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tp_zelda.2.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tueffel.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tueffel.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/tunic.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/tunic.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/twofaced.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/twofaced.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ufo-kirby.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ufo-kirby.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/ultros.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/ultros.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/umbreon.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/umbreon.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/valeera.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/valeera.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vanillalink.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vanillalink.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vaporeon.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vaporeon.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vegeta.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vegeta.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vera.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vera.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vitreous.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vitreous.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vivi.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vivi.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/vivian.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/vivian.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/wario.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/wario.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/white-mage.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/white-mage.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/will.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/will.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/wolf-link.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/wolf-link.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/wolf-o'donnell.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/wolf-o'donnell.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/wuzaiiii.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/wuzaiiii.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/xman101.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/xman101.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/yoshi.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/yoshi.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zagreus.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zagreus.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zandra.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zandra.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zaruvyen.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zaruvyen.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zeckemyro.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zeckemyro.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zekrom.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zekrom.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zelda.1.z3.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zelda.1.z3.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/public/sprites/z3/zora.rdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/public/sprites/z3/zora.rdc -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/scss/custom.scss -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/crate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/src/crate/index.js -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/EnergyTankBrinstarCeiling/Hard.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Ceiling** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/EnergyTankBrinstarCeiling/HardKs.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Ceiling** 2 | 3 | Brinstar L1 Keycard 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/EnergyTankBrinstarCeiling/Normal.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Ceiling** 2 | 3 | CanFly *or* HiJump *or* SpeedBooster *or* Ice 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/MissileBlueBrinstarBillyMays/Regular.md: -------------------------------------------------------------------------------- 1 | **Missile (blue Brinstar top)** 2 | **Missile (blue Brinstar behind missile)** 3 | 4 | CanUsePowerBombs 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/MissileBlueBrinstarBottom.md: -------------------------------------------------------------------------------- 1 | **Missile (blue Brinstar bottom)** 2 | 3 | Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/MissileBlueBrinstarMiddle/Ks.md: -------------------------------------------------------------------------------- 1 | **Missile (blue Brinstar middle)** 2 | 3 | Brinstar L1 Keycard *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/MissileBlueBrinstarMiddle/Regular.md: -------------------------------------------------------------------------------- 1 | **Missile (blue Brinstar middle)** 2 | 3 | Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/MorphingBall.md: -------------------------------------------------------------------------------- 1 | **Morphing Ball** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Blue/PowerBombBlueBrinstar.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (blue Brinstar)** 2 | 3 | CanUsePowerBombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | CanDestroyBombWalls *or* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/GreenBrinstarBottomCorridors/Regular.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (green Brinstar bottom)** 2 | **Energy Tank, Etecoons** 3 | 4 | CanUsePowerBombs 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/GreenBrinstarTopPassedGates/Normal.md: -------------------------------------------------------------------------------- 1 | **Super Missile (green Brinstar top)** 2 | **Reserve Tank, Brinstar** 3 | 4 | CanOpenRedDoors *and* SpeedBooster 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/MissileGreenBrinstarBehindReserveTank/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (green Brinstar behind reserve tank)** 2 | 3 | CanOpenRedDoors *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/MissileGreenBrinstarBehindReserveTank/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (green Brinstar behind reserve tank)** 2 | 3 | CanOpenRedDoors *and* SpeedBooster *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/MissileGreenBrinstarBelowSuperMissile.md: -------------------------------------------------------------------------------- 1 | **Missile (green Brinstar below super missile)** 2 | 3 | CanPassBombPassages *and* CanOpenRedDoors 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/SuperMissileGreenBrinstarBottom/Ks.md: -------------------------------------------------------------------------------- 1 | **Super Missile (green Brinstar bottom)** 2 | 3 | Brinstar L2 Keycard *and* CanUsePowerBombs *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Green/SuperMissileGreenBrinstarBottom/Regular.md: -------------------------------------------------------------------------------- 1 | **Super Missile (green Brinstar bottom)** 2 | 3 | CanUsePowerBombs *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Kraid/BehindKraid/Ks.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Kraid** 2 | **Varia Suit** 3 | 4 | Brinstar Boss Keycard 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Kraid/BehindKraid/Regular.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Kraid** 2 | **Varia Suit** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Kraid/MissileKraid.md: -------------------------------------------------------------------------------- 1 | **Missile (Kraid)** 2 | 3 | CanUsePowerBombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/ChargeBeam.md: -------------------------------------------------------------------------------- 1 | **Charge Beam** 2 | 3 | CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/EnergyTankBrinstarGate/Hard.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Gate** 2 | 3 | CanUsePowerBombs *and either* Wave *or* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/EnergyTankBrinstarGate/HardKs.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Gate** 2 | 3 | Brinstar L2 Keycard *and* CanUsePowerBombs *and either* Wave *or* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/EnergyTankBrinstarGate/Normal.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Gate** 2 | 3 | CanUsePowerBombs *and* Wave *and* 1 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/EnergyTankBrinstarGate/NormalKs.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Brinstar Gate** 2 | 3 | Brinstar L2 Keycard *and* CanUsePowerBombs *and* Wave *and* 1 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/EnergyTankWaterway.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Waterway** 2 | 3 | CanUsePowerBombs *and* CanOpenRedDoors *and* SpeedBooster *and either* 1 Energy Reserve *or* Gravity 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/MissileGreenBrinstarPipe.md: -------------------------------------------------------------------------------- 1 | **Missile (green Brinstar pipe)** 2 | 3 | Morph *and either* PowerBomb *or* Super *or* CanAccessNorfairUpperPortal 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/MissilePinkBrinstarRoom.md: -------------------------------------------------------------------------------- 1 | **Missile (pink Brinstar top)** 2 | **Missile (pink Brinstar bottom)** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/PowerBombPinkBrinstar/Hard.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (pink Brinstar)** 2 | 3 | CanUsePowerBombs *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/PowerBombPinkBrinstar/Normal.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (pink Brinstar)** 2 | 3 | CanUsePowerBombs *and* Super *and* 1 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/SuperMissilePinkBrinstar/NormalKs.md: -------------------------------------------------------------------------------- 1 | **Super Missile (pink Brinstar)** 2 | 3 | Brinstar Boss Keycard *and* CanPassBombPassages *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Pink/SuperMissilePinkBrinstar/Regular.md: -------------------------------------------------------------------------------- 1 | **Super Missile (pink Brinstar)** 2 | 3 | CanPassBombPassages *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Red/RedBrinstarAlpha.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (red Brinstar sidehopper room)** 2 | **Missile (red Brinstar spike room)** 3 | 4 | CanUsePowerBombs *and* Super 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Red/RedBrinstarBeta/Hard.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (red Brinstar spike room)** 2 | 3 | Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Red/RedBrinstarBeta/Normal.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (red Brinstar spike room)** 2 | 3 | *either* CanUsePowerBombs *or* Ice *and also* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Red/Spazer.md: -------------------------------------------------------------------------------- 1 | **Spazer** 2 | 3 | CanPassBombPassages *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/brinstar/Red/XRayScope/Normal.md: -------------------------------------------------------------------------------- 1 | **X-Ray Scope** 2 | 3 | CanUsePowerBombs *and* CanOpenRedDoors *and either* Grapple *or* SpaceJump 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanDestroyBombWalls.md: -------------------------------------------------------------------------------- 1 | **CanDestroyBombWalls** 2 | 3 | CanPassBombPassages *or* ScrewAttack 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanFly.md: -------------------------------------------------------------------------------- 1 | **CanFly** 2 | 3 | SpaceJump *or* CanIbj 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanHellRun.md: -------------------------------------------------------------------------------- 1 | **CanHellRun** 2 | 3 | Varia *or* 5 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanIbj.md: -------------------------------------------------------------------------------- 1 | **CanIbj** 2 | 3 | Morph *and* Bombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanLiftHeavy.md: -------------------------------------------------------------------------------- 1 | **CanLiftHeavy** 2 | 3 | Mitt 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanLiftLight.md: -------------------------------------------------------------------------------- 1 | **CanLiftLight** 2 | 3 | Glove 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanLightTorches.md: -------------------------------------------------------------------------------- 1 | **CanLightTorches** 2 | 3 | Firerod *or* Lamp 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanMeltFreezors.md: -------------------------------------------------------------------------------- 1 | **CanMeltFreezors** 2 | 3 | Firerod *or* Bombos *with* Sword 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanOpenRedDoors.md: -------------------------------------------------------------------------------- 1 | **CanOpenRedDoors** 2 | 3 | Missile *or* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanPassBombPassages.md: -------------------------------------------------------------------------------- 1 | **CanPassBombPassages** 2 | 3 | Morph *and either* Bombs *or* PowerBomb 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanSpringBallJump.md: -------------------------------------------------------------------------------- 1 | **CanSpringBallJump** 2 | 3 | Morph *and* SpringBall 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Aliases/CanUsePowerBombs.md: -------------------------------------------------------------------------------- 1 | **CanUsePowerBombs** 2 | 3 | Morph *and* PowerBomb 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Portals/CanAccessDarkWorldPortal/Normal.md: -------------------------------------------------------------------------------- 1 | **CanAccessDarkWorldPortal** 2 | 3 | CanUsePowerBombs *and* Super *and* Gravity *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Portals/CanAccessDeathMountainPortal.md: -------------------------------------------------------------------------------- 1 | **CanAccessDeathMountainPortal** 2 | 3 | *either* CanDestroyBombWalls *or* SpeedBooster *and also* Super *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Portals/CanAccessMiseryMirePortal/Normal.md: -------------------------------------------------------------------------------- 1 | **CanAccessMiseryMirePortal** 2 | 3 | Varia *and* Super *and* Gravity *and* SpaceJump *and* CanUsePowerBombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Portals/CanAccessNorfairLowerPortal.md: -------------------------------------------------------------------------------- 1 | **CanAccessNorfairLowerPortal** 2 | 3 | Flute *and* CanLiftHeavy 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/common/Portals/CanAccessNorfairUpperPortal.md: -------------------------------------------------------------------------------- 1 | **CanAccessNorfairUpperPortal** 2 | 3 | - *one of* 4 | - Flute 5 | - CanLiftLight *and* Lamp 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/Bombs/Hard.md: -------------------------------------------------------------------------------- 1 | **Bombs** 2 | 3 | CanOpenRedDoors *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/Bombs/HardKs.md: -------------------------------------------------------------------------------- 1 | **Bombs** 2 | 3 | Crateria Boss Keycard *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/Bombs/Normal.md: -------------------------------------------------------------------------------- 1 | **Bombs** 2 | 3 | CanOpenRedDoors *and* CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/Bombs/NormalKs.md: -------------------------------------------------------------------------------- 1 | **Bombs** 2 | 3 | Crateria Boss Keycard *and* CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/MissileCrateriaBottom.md: -------------------------------------------------------------------------------- 1 | **Missile (Crateria bottom)** 2 | 3 | CanDestroyBombWalls 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/MissileCrateriaMiddle.md: -------------------------------------------------------------------------------- 1 | **Missile (Crateria middle)** 2 | 3 | CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/PowerBombCrateriaSurface/Ks.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (Crateria surface)** 2 | 3 | Crateria L1 Keycard *and either* SpeedBooster *or* CanFly 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/PowerBombCrateriaSurface/Regular.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (Crateria surface)** 2 | 3 | CanUsePowerBombs *and either* SpeedBooster *or* CanFly 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/Central/SuperMissileCrateria.md: -------------------------------------------------------------------------------- 1 | **Super Missile (Crateria)** 2 | 3 | CanUsePowerBombs *and* 2 Energy Reserves *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/East/MissileCrateriaMoat.md: -------------------------------------------------------------------------------- 1 | **Missile (Crateria moat)** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/East/MissileOutsideWreckedShipBottom/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (outside Wrecked Ship bottom)** 2 | 3 | Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/West/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | CanDestroyBombWalls *or* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/West/EnergyTankGauntlet/Hard.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Gauntlet** 2 | 3 | CanEnterAndLeaveGauntlet 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/West/EnergyTankGauntlet/Normal.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Gauntlet** 2 | 3 | CanEnterAndLeaveGauntlet *and* 1 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/crateria/West/EnergyTankTerminator.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Terminator** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/DeathMountainEast/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | CanLiftHeavy *and* *can enter* **Light World Death Mountain East** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/DeathMountainEast/HookshotCaveBottomRight.md: -------------------------------------------------------------------------------- 1 | **Hookshot Cave - Bottom Right** 2 | 3 | MoonPearl *and either* Hookshot *or* Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/DeathMountainEast/SuperbunnyCave.md: -------------------------------------------------------------------------------- 1 | **Superbunny Cave - Top** 2 | **Superbunny Cave - Bottom** 3 | 4 | MoonPearl 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/DeathMountainWest/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/Mire/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | - *one of* 4 | - Flute *and* CanLiftHeavy 5 | - CanAccessMiseryMirePortal 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/Mire/MireShed.md: -------------------------------------------------------------------------------- 1 | **Mire Shed - Left** 2 | **Mire Shed - Right** 3 | 4 | MoonPearl 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthEast/Catfish.md: -------------------------------------------------------------------------------- 1 | **Catfish** 2 | 3 | MoonPearl *and* CanLiftLight 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthEast/Pyramid.md: -------------------------------------------------------------------------------- 1 | **Pyramid** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthWest/BlacksmithChain.md: -------------------------------------------------------------------------------- 1 | **Blacksmith** 2 | **Purple Chest** 3 | 4 | CanLiftHeavy 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthWest/BumperCave.md: -------------------------------------------------------------------------------- 1 | **Bumper Cave** 2 | 3 | CanLiftLight *and* Cape 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthWest/HammerPegs.md: -------------------------------------------------------------------------------- 1 | **Hammer Pegs** 2 | 3 | CanLiftHeavy *and* Hammer 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/darkworld/NorthWest/VillageOfOutcasts.md: -------------------------------------------------------------------------------- 1 | **Chest Game** 2 | **C-Shaped House** 3 | **Brewery** 4 | 5 | *Available* 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/CastleTower/Agahnim.md: -------------------------------------------------------------------------------- 1 | **Agahnim** 2 | 3 | Lamp *and* 2 Castle Tower Keys *and* Sword 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/CastleTower/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | CanKillManyEnemies *and either* Cape *or* MasterSword 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/CastleTower/CastleTowerDarkMaze.md: -------------------------------------------------------------------------------- 1 | **Castle Tower - Dark Maze** 2 | 3 | Lamp *and* 1 Castle Tower Key 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/CastleTower/CastleTowerFoyer.md: -------------------------------------------------------------------------------- 1 | **Castle Tower - Foyer** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/DesertPalace/BigChest.md: -------------------------------------------------------------------------------- 1 | **Desert Palace - Big Chest** 2 | 3 | BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/DesertPalace/EastWing.md: -------------------------------------------------------------------------------- 1 | **Desert Palace - Big Key Chest** 2 | **Desert Palace - Compass Chest** 3 | 4 | Key 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/DesertPalace/MapChest.md: -------------------------------------------------------------------------------- 1 | **Desert Palace - Map Chest** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/DesertPalace/Torch.md: -------------------------------------------------------------------------------- 1 | **Desert Palace - Torch** 2 | 3 | Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/EasternPalace/ArmosKnights.md: -------------------------------------------------------------------------------- 1 | **Eastern Palace - Armos Knights** 2 | 3 | BigKey *and* Bow *and* Lamp 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/EasternPalace/BigChest.md: -------------------------------------------------------------------------------- 1 | **Eastern Palace - Big Chest** 2 | 3 | BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/EasternPalace/BigKeyChest.md: -------------------------------------------------------------------------------- 1 | **Eastern Palace - Big Key Chest** 2 | 3 | Lamp 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/EasternPalace/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/BobsTorch.md: -------------------------------------------------------------------------------- 1 | **Ganon's Tower - Bob's Torch** 2 | 3 | Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/CanBeatMoldorm.md: -------------------------------------------------------------------------------- 1 | **CanBeatMoldorm** 2 | 3 | Sword *or* Hammer 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* *can enter* **Dark World Death Mountain East** *and* 7 Crystals *and* GoldenFourBosses 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/HopeRoom.md: -------------------------------------------------------------------------------- 1 | **Ganon's Tower - Hope Room - Left** 2 | **Ganon's Tower - Hope Room - Right** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/MoldormChest.md: -------------------------------------------------------------------------------- 1 | **Ganon's Tower - Moldorm Chest** 2 | 3 | BigKey *and* 4 Keys *and* Bow *and* CanLightTorches *and* CanBeatMoldorm *and* Hookshot 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/GanonsTower/TileRoom.md: -------------------------------------------------------------------------------- 1 | **Ganon's Tower - Tile Room** 2 | 3 | Somaria 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/HyruleCastleFront.md: -------------------------------------------------------------------------------- 1 | **Hyrule Castle - Boomerang Chest** 2 | **Hyrule Castle - Zelda's Cell** 3 | 4 | Hyrule Castle Key 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/HyruleCastleMapChest.md: -------------------------------------------------------------------------------- 1 | **Hyrule Castle - Map Chest** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/Sanctuary.md: -------------------------------------------------------------------------------- 1 | **Sanctuary** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/SecretPassage.md: -------------------------------------------------------------------------------- 1 | **Link's Uncle** 2 | **Secret Passage** 3 | 4 | (Can not have Hyrule Castle Key/Map in non-keysanity) 5 | 6 | *Available* 7 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/HyruleCastle/SewersDarkCross.md: -------------------------------------------------------------------------------- 1 | **Sewers - Dark Cross** 2 | 3 | Lamp 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/BigChest.md: -------------------------------------------------------------------------------- 1 | **Ice Palace - Big Chest** 2 | 3 | BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* Flippers *and* CanLiftHeavy *and* CanMeltFreezors 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/CanNotWasteKeysBeforeAccessible.md: -------------------------------------------------------------------------------- 1 | **CanNotWasteKeysBeforeAccessible** 2 | 3 | Missing BigKeyIP *or* *any specified location* *has* BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/CompassChest.md: -------------------------------------------------------------------------------- 1 | **Ice Palace - Compass Chest** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/FreeLocations.md: -------------------------------------------------------------------------------- 1 | **Ice Palace - Iced T Room** 2 | **Ice Palace - Freezor Chest** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/IcePalace/Kholdstare.md: -------------------------------------------------------------------------------- 1 | **Ice Palace - Kholdstare** 2 | 3 | BigKey *and* Hammer *and* CanLiftLight *and also* 1 Key *if* Somaria, *otherwise* 2 Keys 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/MiseryMire/BigChest.md: -------------------------------------------------------------------------------- 1 | **Misery Mire - Big Chest** 2 | 3 | BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/MiseryMire/FreeLocations.md: -------------------------------------------------------------------------------- 1 | **Misery Mire - Bridge Chest** 2 | **Misery Mire - Spike Chest** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/MiseryMire/MainLobby.md: -------------------------------------------------------------------------------- 1 | **Misery Mire - Main Lobby** 2 | **Misery Mire - Map Chest** 3 | 4 | BigKey *or* 1 Key 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/MiseryMire/Vitreous.md: -------------------------------------------------------------------------------- 1 | **Misery Mire - Vitreous** 2 | 3 | BigKey *and* Lamp *and* Somaria 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/BigChest/Ks.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Big Chest** 2 | 3 | BigKey *and* Lamp *and* 6 Keys 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/BigChest/Regular.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Big Chest** 2 | 3 | BigKey *and* Lamp *and also* 6 Keys *if* Hammer *and* Bow, *otherwise* 5 Keys 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* *can enter* **Dark World North East** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/CompassChest/Ks.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Compass Chest** 2 | 3 | 4 Key 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/CompassChest/Regular.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Compass Chest** 2 | 3 | 4 Key *if* Hammer *and* Bow *and* Lamp, *otherwise* 3 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/DarkBasement/Ks.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Dark Basement - Left** 2 | **Palace of Darkness - Dark Basement - Right** 3 | 4 | Lamp *and* 4 Keys 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/DarkMaze/Ks.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Dark Maze - Top** 2 | **Palace of Darkness - Dark Maze - Bottom** 3 | 4 | Lamp *and* 6 Keys 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/EastWing.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - The Arena - Ledge** 2 | **Palace of Darkness - Map Chest** 3 | 4 | Bow 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/HelmasaurKing.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Helmasaur King** 2 | 3 | Lamp *and* Hammer *and* Bow *and* BigKey *and* 6 Keys 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/PalaceOfDarkness/ShooterRoom.md: -------------------------------------------------------------------------------- 1 | **Palace of Darkness - Shooter Room** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/BigChest.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Big Chest** 2 | 3 | (Can always hold the BigKey) 4 | 5 | BigKey 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/BigKeyChest.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Big Key Chest** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/BridgeRoom.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Bridge Room** 2 | 3 | Firerod 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* *can enter* **Dark World North West** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/FreeLocations.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Pot Prison** 2 | **Skull Woods - Compass Chest** 3 | **Skull Woods - Map Chest** 4 | 5 | *Available* 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/Mothula.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Mothula** 2 | 3 | Firerod *and* Sword *and* 3 Keys 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SkullWoods/PinballRoom.md: -------------------------------------------------------------------------------- 1 | **Skull Woods - Pinball Room** 2 | 3 | (Must always hold a Key) 4 | 5 | *Available* 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SwampPalace/BigChest.md: -------------------------------------------------------------------------------- 1 | **Swamp Palace - Big Chest** 2 | 3 | (Can always hold the BigKey) 4 | 5 | BigKey *and* Key *and* Hammer 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SwampPalace/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* Mirror *and* Flippers *and* *can enter* **Dark World South** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SwampPalace/Entrance.md: -------------------------------------------------------------------------------- 1 | **Swamp Palace - Entrance** 2 | 3 | (Must hold the Key if non-Keysanity) 4 | 5 | *Available* 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SwampPalace/MapChest.md: -------------------------------------------------------------------------------- 1 | **Swamp Palace - Map Chest** 2 | 3 | Key 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/SwampPalace/WestWing.md: -------------------------------------------------------------------------------- 1 | **Swamp Palace - Compass Chest** 2 | **Swamp Palace - West Chest** 3 | **Swamp Palace - Big Key Chest** 4 | 5 | Key *and* Hammer 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/ThievesTown/Attic.md: -------------------------------------------------------------------------------- 1 | **Thieves' Town - Attic** 2 | 3 | BigKey *and* Key 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/ThievesTown/Blind.md: -------------------------------------------------------------------------------- 1 | **Thieves' Town - Blind** 2 | 3 | BigKey *and* Key *and* CanBeatBoss 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/ThievesTown/BlindsCell.md: -------------------------------------------------------------------------------- 1 | **Thieves' Town - Blind's Cell** 2 | 3 | BigKey 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/ThievesTown/CanBeatBoss.md: -------------------------------------------------------------------------------- 1 | **CanBeatBoss** 2 | 3 | - *one of* 4 | - Sword 5 | - Hammer 6 | - Somaria 7 | - Byrna 8 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/ThievesTown/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | MoonPearl *and* *can enter* **Dark World North West** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TowerOfHera/AfterBigKeyDoor.md: -------------------------------------------------------------------------------- 1 | **Tower of Hera - Compass Chest** 2 | **Tower of Hera - Big Chest** 3 | 4 | BigKey 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TowerOfHera/BigKeyChest.md: -------------------------------------------------------------------------------- 1 | **Tower of Hera - Big Key Chest** 2 | 3 | (Can always hold the Key) 4 | 5 | Key *and* CanLightTorches 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TowerOfHera/CanBeatBoss.md: -------------------------------------------------------------------------------- 1 | **CanBeatBoss** 2 | 3 | Sword *or* Hammer 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TowerOfHera/FreeLocations.md: -------------------------------------------------------------------------------- 1 | **Tower of Hera - Basement Cage** 2 | **Tower of Hera - Map Chest** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TowerOfHera/Moldorm.md: -------------------------------------------------------------------------------- 1 | **Tower of Hera - Moldorm** 2 | 3 | BigKey *and* CanBeatBoss 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/AfterSecondEntrance.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Big Chest** 2 | **Turtle Rock - Crystaroller Room** 3 | 4 | BigKey *and* 2 Keys 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/BigKeyChest/Regular.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Big Key Chest** 2 | 3 | (Can always hold a Key if having 3 Keys) 4 | 5 | 2 Keys 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/CanBeatBoss.md: -------------------------------------------------------------------------------- 1 | **CanBeatBoss** 2 | 3 | Firerod *and* Icerod 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/ChainChomps.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Chain Chomps** 2 | 3 | 1 Key 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/CompassChest.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Compass Chest** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/RollerRoom.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Roller Room - Left** 2 | **Turtle Rock - Roller Room - Right** 3 | 4 | Firerod 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/dungeons/TurtleRock/Trinexx.md: -------------------------------------------------------------------------------- 1 | **Turtle Rock - Trinexx** 2 | 3 | BigKey *and* 4 Keys *and* Lamp *and* CanBeatBoss 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LogicLog'; 2 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainEast/FloatingIsland.md: -------------------------------------------------------------------------------- 1 | **Floating Island** 2 | 3 | Mirror *and* MoonPearl *and* CanLiftHeavy 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainEast/MimicCave.md: -------------------------------------------------------------------------------- 1 | **Mimic Cave** 2 | 3 | Mirror *and* 2 Turtle Rock Keys *and* *can enter* **Turtle Rock** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainWest/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | - *one of* 4 | - Flute 5 | - CanLiftLight *and* Lamp 6 | - CanAccessDeathMountainPortal 7 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainWest/EtherTablet.md: -------------------------------------------------------------------------------- 1 | **Ether Tablet** 2 | 3 | - Book *and* MasterSword *and one of* 4 | - Mirror 5 | - Hammer *and* Hookshot 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainWest/OldMan.md: -------------------------------------------------------------------------------- 1 | **Old Man** 2 | 3 | Lamp 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainWest/SpectacleRock.md: -------------------------------------------------------------------------------- 1 | **Spectacle Rock** 2 | 3 | Mirror 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/DeathMountainWest/SpectacleRockCave.md: -------------------------------------------------------------------------------- 1 | **Spectacle Rock Cave** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/KingZora.md: -------------------------------------------------------------------------------- 1 | **King Zora** 2 | 3 | CanLiftLight *or* Flippers 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/PotionShop.md: -------------------------------------------------------------------------------- 1 | **Potion Shop** 2 | 3 | Mushroom 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/Sahasrahla.md: -------------------------------------------------------------------------------- 1 | **Sahasrahla** 2 | 3 | Green Pendant 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/SahasrahlasHut.md: -------------------------------------------------------------------------------- 1 | **Sahasrahla's Hut - Left** 2 | **Sahasrahla's Hut - Middle** 3 | **Sahasrahla's Hut - Right** 4 | 5 | *Available* 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthEast/ZorasDomain.md: -------------------------------------------------------------------------------- 1 | **Zora's Ledge** 2 | **Waterfall Fairy - Left** 3 | **Waterfall Fairy - Right** 4 | 5 | Flippers 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/GraveyardLedge.md: -------------------------------------------------------------------------------- 1 | **Graveyard Ledge** 2 | 3 | Mirror *and* MoonPearl *and* *can enter* **Dark World North West** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/LostWoods.md: -------------------------------------------------------------------------------- 1 | **Mushroom** 2 | **Lost Woods Hideout** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/LumberjackTree.md: -------------------------------------------------------------------------------- 1 | **Lumberjack Tree** 2 | 3 | Agahnim *and* Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/MagicBat.md: -------------------------------------------------------------------------------- 1 | **Magic Bat** 2 | 3 | - Powder *and one of* 4 | - Hammer 5 | - MoonPearl *and* Mirror *and* CanLiftHeavy 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/MasterSwordPedestal.md: -------------------------------------------------------------------------------- 1 | **Master Sword Pedestal** 2 | 3 | Three Pendants 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/PegasusRocks.md: -------------------------------------------------------------------------------- 1 | **Pegasus Rocks** 2 | 3 | Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/NorthWest/SickKid.md: -------------------------------------------------------------------------------- 1 | **Sick Kid** 2 | 3 | Bottle 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/BombosTablet.md: -------------------------------------------------------------------------------- 1 | **Bombos Tablet** 2 | 3 | Book *and* MasterSword *and* Mirror *and* *can enter* **Dark World South** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/CanEnter.md: -------------------------------------------------------------------------------- 1 | ***can enter*** 2 | 3 | *Always* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/DesertLedge.md: -------------------------------------------------------------------------------- 1 | **Desert Ledge** 2 | 3 | *can enter* **Desert Palace** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/Floodgate.md: -------------------------------------------------------------------------------- 1 | **Floodgate Chest** 2 | **Sunken Treasure** 3 | 4 | *Available* 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/FluteSpot.md: -------------------------------------------------------------------------------- 1 | **Flute Spot** 2 | 3 | Shovel 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/Hobo.md: -------------------------------------------------------------------------------- 1 | **Hobo** 2 | 3 | Flippers 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/IceRodCave.md: -------------------------------------------------------------------------------- 1 | **Ice Rod Cave** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/Library.md: -------------------------------------------------------------------------------- 1 | **Library** 2 | 3 | Boots 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/MazeRace.md: -------------------------------------------------------------------------------- 1 | **Maze Race** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/lightworld/South/SouthOfGrove.md: -------------------------------------------------------------------------------- 1 | **South of Grove** 2 | 3 | Mirror *and* *can enter* **Dark World South** 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/CanDefeatBotwoon/Hard.md: -------------------------------------------------------------------------------- 1 | **CanDefeatBotwoon** 2 | 3 | Ice *or* SpeedBooster *with* Gravity *or* CanAccessMaridiaPortal 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/CanDefeatBotwoon/Normal.md: -------------------------------------------------------------------------------- 1 | **CanDefeatBotwoon** 2 | 3 | SpeedBooster *or* CanAccessMaridiaPortal 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/CanReachAqueduct/Normal.md: -------------------------------------------------------------------------------- 1 | **CanReachAqueduct** 2 | 3 | - *one of* 4 | - CanFly *or* SpeedBooster *or* Grapple 5 | - CanAccessMaridiaPortal 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/EnergyTankBotwoon/Regular.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Botwoon** 2 | 3 | - *one of* 4 | - CanDefeatBotwoon 5 | - CanAccessMaridiaPortal 6 | 7 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/MissileDraygon/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (Draygon)** 2 | 3 | - *one of* 4 | - CanDefeatBotwoon 5 | - CanAccessMaridiaPortal 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/MissileRightMaridiaSandPitRoom/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (right Maridia sand pit room)** 2 | 3 | CanReachAqueduct *and* Super *and either* HiJump *or* Gravity 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/MissileRightMaridiaSandPitRoom/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (right Maridia sand pit room)** 2 | 3 | CanReachAqueduct *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/PinkMaridia/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (pink Maridia)** 2 | **Super Missile (pink Maridia)** 3 | 4 | CanReachAqueduct *and* Gravity 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/PinkMaridia/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (pink Maridia)** 2 | **Super Missile (pink Maridia)** 3 | 4 | CanReachAqueduct *and* SpeedBooster 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/PlasmaBeam/Normal.md: -------------------------------------------------------------------------------- 1 | **Plasma Beam** 2 | 3 | - *each of* 4 | - CanDefeatDraygon 5 | - ScrewAttack *or* Plasma 6 | - HiJump *or* CanFly 7 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/PowerBombRightMaridiaSandPitRoom/Normal.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (right Maridia sand pit room)** 2 | 3 | CanReachAqueduct *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/SpaceJump.md: -------------------------------------------------------------------------------- 1 | **Space Jump** 2 | 3 | CanDefeatDraygon 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Inner/SpringBall/Normal.md: -------------------------------------------------------------------------------- 1 | **Spring Ball** 2 | 3 | Super *and* Grapple *and* CanUsePowerBombs *and either* SpaceJump *or* HiJump 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Outer/EnergyTankMamaTurtle/Normal.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Mama turtle** 2 | 3 | CanOpenRedDoors *and either* CanFly *or* SpeedBooster *or* Grapple 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Outer/MissileGreenMaridiaShinespark/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (green Maridia shinespark)** 2 | 3 | Gravity *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Outer/MissileGreenMaridiaShinespark/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (green Maridia shinespark)** 2 | 3 | SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Outer/MissileGreenMaridiaTatori.md: -------------------------------------------------------------------------------- 1 | **Missile (green Maridia tatori)** 2 | 3 | CanOpenRedDoors 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/maridia/Outer/SuperMissileGreenMaridia.md: -------------------------------------------------------------------------------- 1 | **Super Missile (green Maridia)** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/CanExit/Hard.md: -------------------------------------------------------------------------------- 1 | **CanExit** 2 | 3 | - *one of* 4 | - Morph 5 | - 5 Energy Reserves 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/CanExit/Normal.md: -------------------------------------------------------------------------------- 1 | **CanExit** 2 | 3 | Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/EnergyTankFirefleas.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Firefleas** 2 | 3 | CanExit 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/EnergyTankRidley/Ks.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Ridley** 2 | 3 | CanExit *and* Lower Norfair Boss Keycard *and* CanUsePowerBombs *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/EnergyTankRidley/Regular.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Ridley** 2 | 3 | CanExit *and* CanUsePowerBombs *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/MissileLowerNorfairAboveFireFleaRoom.md: -------------------------------------------------------------------------------- 1 | **Missile (lower Norfair above fire flea room)** 2 | 3 | CanExit 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/MissileLowerNorfairNearWaveBeam/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (lower Norfair near Wave Beam)** 2 | 3 | CanExit *and* Morph *and* CanDestroyBombWalls 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/MissileLowerNorfairNearWaveBeam/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (lower Norfair near Wave Beam)** 2 | 3 | CanExit 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/PowerBombLowerNorfairAboveFireFleaRoom/Hard.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (lower Norfair above fire flea room)** 2 | 3 | CanExit *and* CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/PowerBombLowerNorfairAboveFireFleaRoom/Normal.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (lower Norfair above fire flea room)** 2 | 3 | CanExit 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/East/PowerBombPowerBombsOfShame.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (Power Bombs of shame)** 2 | 3 | CanExit *and* CanUsePowerBombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/West/MissileGoldTorizo/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (Gold Torizo)** 2 | 3 | CanUsePowerBombs *and* SpaceJump *and* Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/West/MissileMickeyMouseRoom/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (Mickey Mouse room)** 2 | 3 | Morph *and* Super *and* CanFly *and* CanUsePowerBombs 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/West/ScrewAttack/Hard.md: -------------------------------------------------------------------------------- 1 | **Screw Attack** 2 | 3 | - CanDestroyBombWalls *and one of* 4 | - CanAccessNorfairLowerPortal 5 | - Varia 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairlower/West/SuperMissileGoldTorizo/Hard.md: -------------------------------------------------------------------------------- 1 | **Super Missile (Gold Torizo)** 2 | 3 | CanDestroyBombWalls *and* Varia *and either* Super *or* Charge 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/CanAccessCrocomire/Ks.md: -------------------------------------------------------------------------------- 1 | **CanAccessCrocomire** 2 | 3 | Upper Norfair Boss Keycard 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/CanAccessCrocomire/Regular.md: -------------------------------------------------------------------------------- 1 | **CanAccessCrocomire** 2 | 3 | Super 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/EnergyTankCrocomire/Hard.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Crocomire** 2 | 3 | CanAccessCrocomire 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/EnergyTankCrocomire/Normal.md: -------------------------------------------------------------------------------- 1 | **Energy Tank, Crocomire** 2 | 3 | CanAccessCrocomire *and either* 1 Energy Reserves *or* SpaceJump *or* Grapple 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/GrapplingBeam/Hard.md: -------------------------------------------------------------------------------- 1 | **Grapple Beam** 2 | 3 | CanAccessCrocomire *and either* SpaceJump *or* Morph *or* Grapple *or* HiJump *with* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/MissileAboveCrocomire/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (above Crocomire)** 2 | 3 | CanFly *or* Grapple *or* HiJump *with* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/MissileBelowCrocomire.md: -------------------------------------------------------------------------------- 1 | **Missile (below Crocomire)** 2 | 3 | CanAccessCrocomire *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/PowerBombCrocomire/Hard.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (Crocomire)** 2 | 3 | CanAccessCrocomire 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/Crocomire/PowerBombCrocomire/Normal.md: -------------------------------------------------------------------------------- 1 | **Power Bomb (Crocomire)** 2 | 3 | CanAccessCrocomire *and either* CanFly *or* HiJump *or* Grapple 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/BubbleCliff/Hard.md: -------------------------------------------------------------------------------- 1 | **Reserve Tank, Norfair** 2 | **Missile (Norfair Reserve Tank)** 3 | 4 | Morph *and* Super 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/BubbleCliff/HardKs.md: -------------------------------------------------------------------------------- 1 | **Reserve Tank, Norfair** 2 | **Missile (Norfair Reserve Tank)** 3 | 4 | Upper Norfair L2 Keycard *and* Morph *and* Super 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/MissileBubbleNorfair/Ks.md: -------------------------------------------------------------------------------- 1 | **Missile (bubble Norfair)** 2 | 3 | Upper Norfair L2 Keycard 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/MissileBubbleNorfair/Regular.md: -------------------------------------------------------------------------------- 1 | **Missile (bubble Norfair)** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/MissileWaveBeam/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (Wave Beam)** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/MissileWaveBeam/HardKs.md: -------------------------------------------------------------------------------- 1 | **Missile (Wave Beam)** 2 | 3 | Upper Norfair L2 Keycard *or* Varia 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/SpeedBooster/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (Speed Booster)** 2 | **Speed Booster** 3 | 4 | Super 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/SpeedBooster/HardKs.md: -------------------------------------------------------------------------------- 1 | **Missile (Speed Booster)** 2 | **Speed Booster** 3 | 4 | Upper Norfair L2 Keycard *and* Super 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/East/WaveBeam/Hard.md: -------------------------------------------------------------------------------- 1 | **Wave Beam** 2 | 3 | CanOpenRedDoors *and either* Morph *or* Grapple *or* HiJump *with* Varia *or* SpaceJump 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/EnergyTankHiJumpBoots.md: -------------------------------------------------------------------------------- 1 | **Energy Tank (Hi-Jump Boots)** 2 | 3 | CanOpenRedDoors 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/HiJumpBoots.md: -------------------------------------------------------------------------------- 1 | **Hi-Jump Boots** 2 | 3 | CanOpenRedDoors *and* CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/IceBeam/Hard.md: -------------------------------------------------------------------------------- 1 | **Ice Beam** 2 | 3 | Super *and* Morph *and either* Varia *or* 3 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/IceBeam/HardKs.md: -------------------------------------------------------------------------------- 1 | **Ice Beam** 2 | 3 | Upper Norfair L1 Keycard *and* Morph *and either* Varia *or* 3 Energy Reserves 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/IceBeam/Normal.md: -------------------------------------------------------------------------------- 1 | **Ice Beam** 2 | 3 | Super *and* CanPassBombPassages *and* Varia *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/IceBeam/NormalKs.md: -------------------------------------------------------------------------------- 1 | **Ice Beam** 2 | 3 | Upper Norfair L1 Keycard *and* CanPassBombPassages *and* Varia *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/MissileBelowIceBeam/Normal.md: -------------------------------------------------------------------------------- 1 | **Missile (below Ice Beam)** 2 | 3 | Super *and* CanUsePowerBombs *and* Varia *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/MissileBelowIceBeam/NormalKs.md: -------------------------------------------------------------------------------- 1 | **Missile (below Ice Beam)** 2 | 3 | Upper Norfair L1 Keycard *and* CanUsePowerBombs *and* Varia *and* SpeedBooster 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/norfairupper/West/MissileHiJumpBoots.md: -------------------------------------------------------------------------------- 1 | **Missile (Hi-Jump Boots)** 2 | 3 | CanOpenRedDoors *and* Morph 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/wreckedship/AfterShipUnlocked.md: -------------------------------------------------------------------------------- 1 | **Missile (Wrecked Ship top)** 2 | **Super Missile (Wrecked Ship left)** 3 | **Right Super, Wrecked Ship** 4 | 5 | CanUnlockShip 6 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/wreckedship/CanUnlockShip/Ks.md: -------------------------------------------------------------------------------- 1 | **CanUnlockShip** 2 | 3 | Wrecked Ship Boss Keycard *and* CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/wreckedship/CanUnlockShip/Regular.md: -------------------------------------------------------------------------------- 1 | **CanUnlockShip** 2 | 3 | CanPassBombPassages 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/wreckedship/GravitySuit/Hard.md: -------------------------------------------------------------------------------- 1 | **Missile (Gravity Suit)** 2 | **Gravity Suit** 3 | 4 | CanUnlockShip *and also either* Varia *or* 1 Energy Reserves 5 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/logiclog/wreckedship/MissileWreckedShipMiddle.md: -------------------------------------------------------------------------------- 1 | **Missile (Wrecked Ship middle)** 2 | 3 | *Available* 4 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/multiworld/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Multiworld'; 2 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/patch/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Patch'; 2 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/resources/sm.ips.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/src/resources/sm.ips.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/resources/zsm.ips.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/src/resources/zsm.ips.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/resources/zsm.v11.2.ips.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/WebRandomizer/ClientApp/src/resources/zsm.v11.2.ips.gz -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/spoiler/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Spoiler'; 2 | -------------------------------------------------------------------------------- /WebRandomizer/ClientApp/src/ui/PlainList.jsx: -------------------------------------------------------------------------------- 1 | import styled from 'styled-components'; 2 | 3 | export default styled.ul` 4 | margin: 0; 5 | padding: 0; 6 | list-style: none; 7 | `; 8 | -------------------------------------------------------------------------------- /WebRandomizer/DB/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /WebRandomizer/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebRandomizer 2 | @namespace WebRandomizer.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Run application 4 | cd /app 5 | dotnet WebRandomizer.dll -------------------------------------------------------------------------------- /randomizer-client-wasm/randomizer_client.js: -------------------------------------------------------------------------------- 1 | import * as wasm from "./randomizer_client_bg.wasm"; 2 | export * from "./randomizer_client_bg.js"; -------------------------------------------------------------------------------- /randomizer-client-wasm/randomizer_client_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/SMZ3Randomizer/d53be76dc18c3d89d560f7912757b9d068762ac9/randomizer-client-wasm/randomizer_client_bg.wasm -------------------------------------------------------------------------------- /randomizer-client-wasm/snippets/wasm-streams-8c20110b5d812e48/inline0.js: -------------------------------------------------------------------------------- 1 | export function bytes_literal() { return "bytes"; } --------------------------------------------------------------------------------