├── .github └── workflows │ ├── auto_approve.yml │ └── update_lootpool.yml ├── LICENSE ├── README.md ├── data └── outdated │ ├── changelogs │ ├── ingredient_change_2_0_4_HF1.log │ ├── ingredient_changelog_2024-05-16.md │ ├── item_change.log │ ├── item_change_2_0_2_HF2.log │ ├── item_change_2_0_2_HF3.log │ ├── item_change_2_0_3.log │ ├── item_change_2_0_3_HF5.log │ ├── item_changelog_2024-05-16.md │ └── log_template.log │ ├── guilds.json │ ├── ingredient │ └── ingredients_2_0_2_HF2.json │ └── item │ ├── items_2_0_2_HF2.json │ ├── items_2_0_2_HF3.json │ ├── items_2_0_3.json │ └── items_2_0_4.json ├── docs ├── README.md ├── nori.png ├── nori_logo.png └── tower │ └── readme.md ├── documents ├── Privacy └── TOS.md └── src ├── bot ├── bot.py └── lib │ ├── 5x5_logic.py │ ├── async_wrapper.py │ ├── basic_wrapper.py │ ├── changelog_generate.py │ ├── constants.py │ ├── decoders.py │ ├── guild_display.py │ ├── guild_xp.py │ ├── item_manager.py │ ├── item_renderer.py │ ├── item_utils.py │ ├── item_weight.py │ ├── item_wrapper.py │ ├── leaderboard_display.py │ ├── pdf_scan.py │ ├── player_display.py │ ├── price_estimator.py │ └── txt_to_img.py ├── db ├── main.py └── tester │ ├── data_fetch.py │ └── tracker.py └── web ├── changelog.md ├── chat ├── index.html └── styles.css ├── commands.md ├── css_global ├── dark_theme.css ├── default.css ├── index.html └── sidebar.css ├── demo ├── claw2d │ ├── index.html │ └── styles.css ├── claw3d │ ├── claw3d.js │ ├── index.html │ └── styles.css ├── drive │ └── index.html ├── drone │ └── index.html ├── index.html └── rc │ ├── index.html │ ├── rc.js │ └── styles.css ├── docs ├── api.md ├── commands.md ├── index.html ├── placeholder.md ├── styles.css └── tower.md ├── drones └── index.html ├── fish_logo.png ├── index.html ├── js_global ├── analytics.js ├── build_search.js ├── config.js ├── demo_claw.js ├── demo_claw2d.js ├── demo_claw3d.js ├── fetch_aspects.js ├── fetch_guild.js ├── fetch_lootpool.js ├── fetch_player.js ├── gpt_process.js ├── home.js ├── index.html ├── item_analysis.js ├── item_changelog.js ├── item_decode.js ├── item_rendering.js ├── item_rerolling.js ├── item_weights.js ├── layout.js ├── leaderboard.js ├── load_showcase.js ├── mythic_item.js ├── online_servers.js ├── recipe_search.js ├── sidebar.js ├── theme_button.js └── uptime.js ├── license └── index.html ├── resources ├── aspect.gif ├── aspect_archer.gif ├── aspect_assassin.gif ├── aspect_mage.gif ├── aspect_shaman.gif ├── aspect_warrior.gif ├── boots.png ├── bow.png ├── bracelet.png ├── chestplate.png ├── dagger.png ├── food.png ├── helmet.png ├── index.html ├── insulator.png ├── leggings.png ├── necklace.png ├── nori.png ├── nori_logo.png ├── potion.png ├── relik.png ├── ring.png ├── scroll.png ├── shiny.png ├── simulator.png ├── spear.png ├── static_archer.png ├── static_assassin.png ├── static_mage.png ├── static_shaman.png ├── static_warrior.png └── wand.png ├── robotics └── index.html ├── styles.css └── wynn ├── aspects ├── index.html └── styles.css ├── build ├── index.html └── styles.css ├── credit └── index.html ├── guild ├── index.html └── styles.css ├── index.html ├── item ├── analysis │ ├── index.html │ └── styles.css ├── changelog │ ├── index.html │ └── styles.css ├── index.html ├── lootpool │ ├── index.html │ └── styles.css ├── mythic │ ├── index.html │ └── styles.css ├── simulation │ ├── index.html │ └── styles.css └── styles.css ├── leaderboard ├── index.html └── styles.css ├── online ├── index.html └── styles.css ├── player ├── index.html └── styles.css ├── recipe ├── index.html └── styles.css ├── showcase ├── index.html └── styles.css ├── styles.css ├── uptime ├── index.html ├── styles.css └── uptime.js └── wynn.js /.github/workflows/auto_approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/.github/workflows/auto_approve.yml -------------------------------------------------------------------------------- /.github/workflows/update_lootpool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/.github/workflows/update_lootpool.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/README.md -------------------------------------------------------------------------------- /data/outdated/changelogs/ingredient_change_2_0_4_HF1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/ingredient_change_2_0_4_HF1.log -------------------------------------------------------------------------------- /data/outdated/changelogs/ingredient_changelog_2024-05-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/ingredient_changelog_2024-05-16.md -------------------------------------------------------------------------------- /data/outdated/changelogs/item_change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_change.log -------------------------------------------------------------------------------- /data/outdated/changelogs/item_change_2_0_2_HF2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_change_2_0_2_HF2.log -------------------------------------------------------------------------------- /data/outdated/changelogs/item_change_2_0_2_HF3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_change_2_0_2_HF3.log -------------------------------------------------------------------------------- /data/outdated/changelogs/item_change_2_0_3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_change_2_0_3.log -------------------------------------------------------------------------------- /data/outdated/changelogs/item_change_2_0_3_HF5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_change_2_0_3_HF5.log -------------------------------------------------------------------------------- /data/outdated/changelogs/item_changelog_2024-05-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/changelogs/item_changelog_2024-05-16.md -------------------------------------------------------------------------------- /data/outdated/changelogs/log_template.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/outdated/guilds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/guilds.json -------------------------------------------------------------------------------- /data/outdated/ingredient/ingredients_2_0_2_HF2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/ingredient/ingredients_2_0_2_HF2.json -------------------------------------------------------------------------------- /data/outdated/item/items_2_0_2_HF2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/item/items_2_0_2_HF2.json -------------------------------------------------------------------------------- /data/outdated/item/items_2_0_2_HF3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/item/items_2_0_2_HF3.json -------------------------------------------------------------------------------- /data/outdated/item/items_2_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/item/items_2_0_3.json -------------------------------------------------------------------------------- /data/outdated/item/items_2_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/data/outdated/item/items_2_0_4.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/nori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/docs/nori.png -------------------------------------------------------------------------------- /docs/nori_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/docs/nori_logo.png -------------------------------------------------------------------------------- /docs/tower/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/docs/tower/readme.md -------------------------------------------------------------------------------- /documents/Privacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/documents/Privacy -------------------------------------------------------------------------------- /documents/TOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/documents/TOS.md -------------------------------------------------------------------------------- /src/bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/bot.py -------------------------------------------------------------------------------- /src/bot/lib/5x5_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/5x5_logic.py -------------------------------------------------------------------------------- /src/bot/lib/async_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/async_wrapper.py -------------------------------------------------------------------------------- /src/bot/lib/basic_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/basic_wrapper.py -------------------------------------------------------------------------------- /src/bot/lib/changelog_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/changelog_generate.py -------------------------------------------------------------------------------- /src/bot/lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/constants.py -------------------------------------------------------------------------------- /src/bot/lib/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/decoders.py -------------------------------------------------------------------------------- /src/bot/lib/guild_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/guild_display.py -------------------------------------------------------------------------------- /src/bot/lib/guild_xp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/guild_xp.py -------------------------------------------------------------------------------- /src/bot/lib/item_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/item_manager.py -------------------------------------------------------------------------------- /src/bot/lib/item_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/item_renderer.py -------------------------------------------------------------------------------- /src/bot/lib/item_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/item_utils.py -------------------------------------------------------------------------------- /src/bot/lib/item_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/item_weight.py -------------------------------------------------------------------------------- /src/bot/lib/item_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/item_wrapper.py -------------------------------------------------------------------------------- /src/bot/lib/leaderboard_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/leaderboard_display.py -------------------------------------------------------------------------------- /src/bot/lib/pdf_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/pdf_scan.py -------------------------------------------------------------------------------- /src/bot/lib/player_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/player_display.py -------------------------------------------------------------------------------- /src/bot/lib/price_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/price_estimator.py -------------------------------------------------------------------------------- /src/bot/lib/txt_to_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/bot/lib/txt_to_img.py -------------------------------------------------------------------------------- /src/db/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/db/main.py -------------------------------------------------------------------------------- /src/db/tester/data_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/db/tester/data_fetch.py -------------------------------------------------------------------------------- /src/db/tester/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/db/tester/tracker.py -------------------------------------------------------------------------------- /src/web/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/changelog.md -------------------------------------------------------------------------------- /src/web/chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/chat/index.html -------------------------------------------------------------------------------- /src/web/chat/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/chat/styles.css -------------------------------------------------------------------------------- /src/web/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/commands.md -------------------------------------------------------------------------------- /src/web/css_global/dark_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/css_global/dark_theme.css -------------------------------------------------------------------------------- /src/web/css_global/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/css_global/default.css -------------------------------------------------------------------------------- /src/web/css_global/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/css_global/index.html -------------------------------------------------------------------------------- /src/web/css_global/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/css_global/sidebar.css -------------------------------------------------------------------------------- /src/web/demo/claw2d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/claw2d/index.html -------------------------------------------------------------------------------- /src/web/demo/claw2d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/claw2d/styles.css -------------------------------------------------------------------------------- /src/web/demo/claw3d/claw3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/claw3d/claw3d.js -------------------------------------------------------------------------------- /src/web/demo/claw3d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/claw3d/index.html -------------------------------------------------------------------------------- /src/web/demo/claw3d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/claw3d/styles.css -------------------------------------------------------------------------------- /src/web/demo/drive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/drive/index.html -------------------------------------------------------------------------------- /src/web/demo/drone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/drone/index.html -------------------------------------------------------------------------------- /src/web/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/index.html -------------------------------------------------------------------------------- /src/web/demo/rc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/rc/index.html -------------------------------------------------------------------------------- /src/web/demo/rc/rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/rc/rc.js -------------------------------------------------------------------------------- /src/web/demo/rc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/demo/rc/styles.css -------------------------------------------------------------------------------- /src/web/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/docs/api.md -------------------------------------------------------------------------------- /src/web/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/docs/commands.md -------------------------------------------------------------------------------- /src/web/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/docs/index.html -------------------------------------------------------------------------------- /src/web/docs/placeholder.md: -------------------------------------------------------------------------------- 1 | ## WIP -------------------------------------------------------------------------------- /src/web/docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/docs/styles.css -------------------------------------------------------------------------------- /src/web/docs/tower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/docs/tower.md -------------------------------------------------------------------------------- /src/web/drones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/drones/index.html -------------------------------------------------------------------------------- /src/web/fish_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/fish_logo.png -------------------------------------------------------------------------------- /src/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/index.html -------------------------------------------------------------------------------- /src/web/js_global/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/analytics.js -------------------------------------------------------------------------------- /src/web/js_global/build_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/build_search.js -------------------------------------------------------------------------------- /src/web/js_global/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/config.js -------------------------------------------------------------------------------- /src/web/js_global/demo_claw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/demo_claw.js -------------------------------------------------------------------------------- /src/web/js_global/demo_claw2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/demo_claw2d.js -------------------------------------------------------------------------------- /src/web/js_global/demo_claw3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/demo_claw3d.js -------------------------------------------------------------------------------- /src/web/js_global/fetch_aspects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/fetch_aspects.js -------------------------------------------------------------------------------- /src/web/js_global/fetch_guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/fetch_guild.js -------------------------------------------------------------------------------- /src/web/js_global/fetch_lootpool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/fetch_lootpool.js -------------------------------------------------------------------------------- /src/web/js_global/fetch_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/fetch_player.js -------------------------------------------------------------------------------- /src/web/js_global/gpt_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/gpt_process.js -------------------------------------------------------------------------------- /src/web/js_global/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/home.js -------------------------------------------------------------------------------- /src/web/js_global/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/index.html -------------------------------------------------------------------------------- /src/web/js_global/item_analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_analysis.js -------------------------------------------------------------------------------- /src/web/js_global/item_changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_changelog.js -------------------------------------------------------------------------------- /src/web/js_global/item_decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_decode.js -------------------------------------------------------------------------------- /src/web/js_global/item_rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_rendering.js -------------------------------------------------------------------------------- /src/web/js_global/item_rerolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_rerolling.js -------------------------------------------------------------------------------- /src/web/js_global/item_weights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/item_weights.js -------------------------------------------------------------------------------- /src/web/js_global/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/layout.js -------------------------------------------------------------------------------- /src/web/js_global/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/leaderboard.js -------------------------------------------------------------------------------- /src/web/js_global/load_showcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/load_showcase.js -------------------------------------------------------------------------------- /src/web/js_global/mythic_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/mythic_item.js -------------------------------------------------------------------------------- /src/web/js_global/online_servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/online_servers.js -------------------------------------------------------------------------------- /src/web/js_global/recipe_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/recipe_search.js -------------------------------------------------------------------------------- /src/web/js_global/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/sidebar.js -------------------------------------------------------------------------------- /src/web/js_global/theme_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/theme_button.js -------------------------------------------------------------------------------- /src/web/js_global/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/js_global/uptime.js -------------------------------------------------------------------------------- /src/web/license/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/license/index.html -------------------------------------------------------------------------------- /src/web/resources/aspect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect.gif -------------------------------------------------------------------------------- /src/web/resources/aspect_archer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect_archer.gif -------------------------------------------------------------------------------- /src/web/resources/aspect_assassin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect_assassin.gif -------------------------------------------------------------------------------- /src/web/resources/aspect_mage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect_mage.gif -------------------------------------------------------------------------------- /src/web/resources/aspect_shaman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect_shaman.gif -------------------------------------------------------------------------------- /src/web/resources/aspect_warrior.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/aspect_warrior.gif -------------------------------------------------------------------------------- /src/web/resources/boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/boots.png -------------------------------------------------------------------------------- /src/web/resources/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/bow.png -------------------------------------------------------------------------------- /src/web/resources/bracelet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/bracelet.png -------------------------------------------------------------------------------- /src/web/resources/chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/chestplate.png -------------------------------------------------------------------------------- /src/web/resources/dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/dagger.png -------------------------------------------------------------------------------- /src/web/resources/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/food.png -------------------------------------------------------------------------------- /src/web/resources/helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/helmet.png -------------------------------------------------------------------------------- /src/web/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/index.html -------------------------------------------------------------------------------- /src/web/resources/insulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/insulator.png -------------------------------------------------------------------------------- /src/web/resources/leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/leggings.png -------------------------------------------------------------------------------- /src/web/resources/necklace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/necklace.png -------------------------------------------------------------------------------- /src/web/resources/nori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/nori.png -------------------------------------------------------------------------------- /src/web/resources/nori_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/nori_logo.png -------------------------------------------------------------------------------- /src/web/resources/potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/potion.png -------------------------------------------------------------------------------- /src/web/resources/relik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/relik.png -------------------------------------------------------------------------------- /src/web/resources/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/ring.png -------------------------------------------------------------------------------- /src/web/resources/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/scroll.png -------------------------------------------------------------------------------- /src/web/resources/shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/shiny.png -------------------------------------------------------------------------------- /src/web/resources/simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/simulator.png -------------------------------------------------------------------------------- /src/web/resources/spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/spear.png -------------------------------------------------------------------------------- /src/web/resources/static_archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/static_archer.png -------------------------------------------------------------------------------- /src/web/resources/static_assassin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/static_assassin.png -------------------------------------------------------------------------------- /src/web/resources/static_mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/static_mage.png -------------------------------------------------------------------------------- /src/web/resources/static_shaman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/static_shaman.png -------------------------------------------------------------------------------- /src/web/resources/static_warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/static_warrior.png -------------------------------------------------------------------------------- /src/web/resources/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/resources/wand.png -------------------------------------------------------------------------------- /src/web/robotics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/robotics/index.html -------------------------------------------------------------------------------- /src/web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/styles.css -------------------------------------------------------------------------------- /src/web/wynn/aspects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/aspects/index.html -------------------------------------------------------------------------------- /src/web/wynn/aspects/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/aspects/styles.css -------------------------------------------------------------------------------- /src/web/wynn/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/build/index.html -------------------------------------------------------------------------------- /src/web/wynn/build/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/build/styles.css -------------------------------------------------------------------------------- /src/web/wynn/credit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/credit/index.html -------------------------------------------------------------------------------- /src/web/wynn/guild/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/guild/index.html -------------------------------------------------------------------------------- /src/web/wynn/guild/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/guild/styles.css -------------------------------------------------------------------------------- /src/web/wynn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/analysis/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/analysis/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/analysis/styles.css -------------------------------------------------------------------------------- /src/web/wynn/item/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/changelog/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/changelog/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/changelog/styles.css -------------------------------------------------------------------------------- /src/web/wynn/item/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/lootpool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/lootpool/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/lootpool/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/lootpool/styles.css -------------------------------------------------------------------------------- /src/web/wynn/item/mythic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/mythic/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/mythic/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/mythic/styles.css -------------------------------------------------------------------------------- /src/web/wynn/item/simulation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/simulation/index.html -------------------------------------------------------------------------------- /src/web/wynn/item/simulation/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/simulation/styles.css -------------------------------------------------------------------------------- /src/web/wynn/item/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/item/styles.css -------------------------------------------------------------------------------- /src/web/wynn/leaderboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/leaderboard/index.html -------------------------------------------------------------------------------- /src/web/wynn/leaderboard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/leaderboard/styles.css -------------------------------------------------------------------------------- /src/web/wynn/online/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/online/index.html -------------------------------------------------------------------------------- /src/web/wynn/online/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/online/styles.css -------------------------------------------------------------------------------- /src/web/wynn/player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/player/index.html -------------------------------------------------------------------------------- /src/web/wynn/player/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/player/styles.css -------------------------------------------------------------------------------- /src/web/wynn/recipe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/recipe/index.html -------------------------------------------------------------------------------- /src/web/wynn/recipe/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/recipe/styles.css -------------------------------------------------------------------------------- /src/web/wynn/showcase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/showcase/index.html -------------------------------------------------------------------------------- /src/web/wynn/showcase/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/showcase/styles.css -------------------------------------------------------------------------------- /src/web/wynn/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/styles.css -------------------------------------------------------------------------------- /src/web/wynn/uptime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/uptime/index.html -------------------------------------------------------------------------------- /src/web/wynn/uptime/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/uptime/styles.css -------------------------------------------------------------------------------- /src/web/wynn/uptime/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RawFish69/Nori/HEAD/src/web/wynn/uptime/uptime.js -------------------------------------------------------------------------------- /src/web/wynn/wynn.js: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------