├── .gitignore ├── App.fs ├── ItemRandomizer ├── CasualLocations.fs ├── HardLocations.fs ├── ItemRandomizer.fsproj ├── Items.fs ├── Locations.fs ├── OpenLocations.fs ├── Patches.fs ├── Randomizer.fs ├── Randomizers.fs ├── Resources.fs ├── TournamentLocations.fs ├── Types.fs └── patches │ ├── animal_enemies.ips │ ├── animals.ips │ ├── bt_door.ips │ ├── colorblind_v1.1.ips │ ├── credits.ips │ ├── dachora.ips │ ├── decompression.ips │ ├── draygonimals.ips │ ├── early_super_bridge.ips │ ├── escapimals.ips │ ├── g4_skip.ips │ ├── gameend.ips │ ├── grey_door_animals.ips │ ├── high_jump.ips │ ├── introskip_doorflags.ips │ ├── introskip_doorflags_open.ips │ ├── low_timer.ips │ ├── max_ammo_display.ips │ ├── metalimals.ips │ ├── moat.ips │ ├── no_animals.ips │ ├── nova_boost_platform.ips │ ├── open_mode.ips │ ├── phantoonimals.ips │ ├── red_tower.ips │ ├── retro_brin_etank_missile_swap.ips │ ├── ridleyimals.ips │ ├── seed_display.ips │ ├── spazer.ips │ ├── spc_play.ips │ ├── src │ ├── bt_door.asm │ ├── build.bat │ ├── credits.asm │ ├── draygonimals.asm │ ├── escapimals.asm │ ├── g4_skip.asm │ ├── gameend.asm │ ├── introskip_doorflags.asm │ ├── introskip_doorflags_open.asm │ ├── low_timer.asm │ ├── metalimals.asm │ ├── phantoonimals.asm │ ├── ridleyimals.asm │ ├── seed_display.asm │ ├── song.spc │ ├── spc_play.asm │ ├── tables │ │ ├── big.tbl │ │ ├── blue.tbl │ │ ├── cyan.tbl │ │ ├── green.tbl │ │ ├── orange.tbl │ │ ├── pink.tbl │ │ ├── purple.tbl │ │ └── yellow.tbl │ ├── tracking.asm │ ├── tracking.txt │ ├── wake_zebes.asm │ └── xkas.exe │ ├── tracking.ips │ └── wake_zebes.ips ├── Program.fs ├── README.md ├── favicon.ico ├── itemrandomizerweb.fsproj ├── static ├── css │ ├── bootstrap.min.css │ └── navbar-static-top.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ └── bootstrap.min.js └── templates ├── contact.html ├── index.html ├── information.html ├── randomize.html └── test.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/.gitignore -------------------------------------------------------------------------------- /App.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/App.fs -------------------------------------------------------------------------------- /ItemRandomizer/CasualLocations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/CasualLocations.fs -------------------------------------------------------------------------------- /ItemRandomizer/HardLocations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/HardLocations.fs -------------------------------------------------------------------------------- /ItemRandomizer/ItemRandomizer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/ItemRandomizer.fsproj -------------------------------------------------------------------------------- /ItemRandomizer/Items.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Items.fs -------------------------------------------------------------------------------- /ItemRandomizer/Locations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Locations.fs -------------------------------------------------------------------------------- /ItemRandomizer/OpenLocations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/OpenLocations.fs -------------------------------------------------------------------------------- /ItemRandomizer/Patches.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Patches.fs -------------------------------------------------------------------------------- /ItemRandomizer/Randomizer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Randomizer.fs -------------------------------------------------------------------------------- /ItemRandomizer/Randomizers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Randomizers.fs -------------------------------------------------------------------------------- /ItemRandomizer/Resources.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Resources.fs -------------------------------------------------------------------------------- /ItemRandomizer/TournamentLocations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/TournamentLocations.fs -------------------------------------------------------------------------------- /ItemRandomizer/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/Types.fs -------------------------------------------------------------------------------- /ItemRandomizer/patches/animal_enemies.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/animal_enemies.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/animals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/animals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/bt_door.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/bt_door.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/colorblind_v1.1.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/colorblind_v1.1.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/credits.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/credits.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/dachora.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/dachora.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/decompression.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/decompression.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/draygonimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/draygonimals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/early_super_bridge.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/early_super_bridge.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/escapimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/escapimals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/g4_skip.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/g4_skip.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/gameend.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/gameend.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/grey_door_animals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/grey_door_animals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/high_jump.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/high_jump.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/introskip_doorflags.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/introskip_doorflags.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/introskip_doorflags_open.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/introskip_doorflags_open.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/low_timer.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/low_timer.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/max_ammo_display.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/max_ammo_display.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/metalimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/metalimals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/moat.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/moat.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/no_animals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/no_animals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/nova_boost_platform.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/nova_boost_platform.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/open_mode.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/open_mode.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/phantoonimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/phantoonimals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/red_tower.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/red_tower.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/retro_brin_etank_missile_swap.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/retro_brin_etank_missile_swap.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/ridleyimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/ridleyimals.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/seed_display.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/seed_display.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/spazer.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/spazer.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/spc_play.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/spc_play.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/bt_door.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/bt_door.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/build.bat -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/credits.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/draygonimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/draygonimals.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/escapimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/escapimals.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/g4_skip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/g4_skip.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/gameend.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/gameend.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/introskip_doorflags.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/introskip_doorflags.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/introskip_doorflags_open.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/introskip_doorflags_open.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/low_timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/low_timer.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/metalimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/metalimals.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/phantoonimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/phantoonimals.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/ridleyimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/ridleyimals.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/seed_display.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/seed_display.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/song.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/song.spc -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/spc_play.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/spc_play.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/big.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/big.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/blue.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/blue.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/cyan.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/cyan.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/green.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/green.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/orange.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/orange.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/pink.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/pink.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/purple.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/purple.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tables/yellow.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tables/yellow.tbl -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tracking.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tracking.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/tracking.txt -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/wake_zebes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/wake_zebes.asm -------------------------------------------------------------------------------- /ItemRandomizer/patches/src/xkas.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/src/xkas.exe -------------------------------------------------------------------------------- /ItemRandomizer/patches/tracking.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/tracking.ips -------------------------------------------------------------------------------- /ItemRandomizer/patches/wake_zebes.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/ItemRandomizer/patches/wake_zebes.ips -------------------------------------------------------------------------------- /Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/Program.fs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/favicon.ico -------------------------------------------------------------------------------- /itemrandomizerweb.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/itemrandomizerweb.fsproj -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/navbar-static-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/css/navbar-static-top.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/templates/information.html -------------------------------------------------------------------------------- /templates/randomize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/templates/randomize.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tewtal/itemrandomizerweb/HEAD/templates/test.html --------------------------------------------------------------------------------