├── .dockerignore ├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── suggestion.yml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── actions │ └── pnpm-install │ │ └── action.yml ├── commit-message.instructions.md └── workflows │ ├── clean_cache.yml │ ├── release.yml │ └── website.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── changelog.config.ts ├── commitlint.config.ts ├── eslint.config.ts ├── nginx.conf ├── orval.config.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── app.css ├── app.d.ts ├── app.html ├── context │ ├── createContext.svelte.ts │ └── index.ts ├── hooks.client.ts ├── hooks.server.ts ├── instrumentation.server.ts ├── lib │ ├── components │ │ ├── APINotice.svelte │ │ ├── AdditionStat.svelte │ │ ├── BetaNotice.svelte │ │ ├── Bonus.svelte │ │ ├── Chip.svelte │ │ ├── ContainedItem.svelte │ │ ├── EmptyEquipment.svelte │ │ ├── Item.svelte │ │ ├── Navbar.svelte │ │ ├── Notice.svelte │ │ ├── PerformanceMode.svelte │ │ ├── SEO.svelte │ │ ├── ScrollAreaPrimitive.svelte │ │ ├── Section.svelte │ │ ├── SectionSubtitle.svelte │ │ ├── SectionTitle.svelte │ │ ├── Skillbar.svelte │ │ ├── Skin3D.svelte │ │ ├── Stat.svelte │ │ ├── Wardrobe.svelte │ │ ├── header │ │ │ ├── Header.svelte │ │ │ ├── Info.svelte │ │ │ ├── settings │ │ │ │ ├── Misc.svelte │ │ │ │ ├── Order.svelte │ │ │ │ ├── Packs.svelte │ │ │ │ ├── Settings.svelte │ │ │ │ ├── Themes.svelte │ │ │ │ └── index.ts │ │ │ └── types.ts │ │ ├── item │ │ │ └── item-content.svelte │ │ └── scroll-items.svelte │ ├── hooks │ │ ├── is-hover.svelte.ts │ │ └── is-mobile.svelte.ts │ ├── layouts │ │ └── stats │ │ │ ├── AdditionalStats.svelte │ │ │ ├── Items.svelte │ │ │ ├── Main.svelte │ │ │ ├── PlayerProfile.svelte │ │ │ ├── Skills.svelte │ │ │ └── Stats.svelte │ ├── sections │ │ ├── Sections.svelte │ │ ├── constants.ts │ │ ├── stats │ │ │ ├── Accessories.svelte │ │ │ ├── Bestiary.svelte │ │ │ ├── Collections.svelte │ │ │ ├── CrimsonIsle.svelte │ │ │ ├── Dungeons.svelte │ │ │ ├── Gear.svelte │ │ │ ├── Inventory.svelte │ │ │ ├── Minions.svelte │ │ │ ├── MiscSection.svelte │ │ │ ├── Pets.svelte │ │ │ ├── Rift.svelte │ │ │ ├── SkillsSection.svelte │ │ │ ├── Slayer.svelte │ │ │ ├── farming │ │ │ │ └── garden.svelte │ │ │ ├── misc │ │ │ │ ├── auctions.svelte │ │ │ │ ├── claimed.svelte │ │ │ │ ├── damage.svelte │ │ │ │ ├── dragons.svelte │ │ │ │ ├── endstone.svelte │ │ │ │ ├── essence.svelte │ │ │ │ ├── gifts.svelte │ │ │ │ ├── jerry.svelte │ │ │ │ ├── kills.svelte │ │ │ │ ├── mythological.svelte │ │ │ │ ├── pet.svelte │ │ │ │ ├── potions.svelte │ │ │ │ ├── races.svelte │ │ │ │ ├── uncategorized.svelte │ │ │ │ └── upgrades.svelte │ │ │ └── skills │ │ │ │ ├── enchanting.svelte │ │ │ │ ├── farming.svelte │ │ │ │ ├── fishing.svelte │ │ │ │ └── mining.svelte │ │ └── types.ts │ ├── shared │ │ ├── api │ │ │ ├── mutator │ │ │ │ └── custom-instance.ts │ │ │ ├── orval-generated-zod.ts │ │ │ ├── orval-generated.ts │ │ │ ├── skycrypt-api.remote.ts │ │ │ └── themes.remote.ts │ │ ├── constants │ │ │ ├── enchantments.ts │ │ │ ├── packs.ts │ │ │ ├── rarities.ts │ │ │ ├── stats.ts │ │ │ └── themes │ │ │ │ ├── april-fools-2024.json │ │ │ │ ├── burning-cinnabar.json │ │ │ │ ├── candycane.json │ │ │ │ ├── default.json │ │ │ │ ├── draconic.json │ │ │ │ ├── index.ts │ │ │ │ ├── light.json │ │ │ │ ├── minionah.json │ │ │ │ ├── nightblue.json │ │ │ │ ├── skylea.json │ │ │ │ ├── sunrise.json │ │ │ │ └── warpwing.json │ │ ├── embedGenerator.ts │ │ ├── helper.ts │ │ ├── mc-text │ │ │ ├── index.ts │ │ │ ├── obfuscated │ │ │ │ └── index.ts │ │ │ └── parser │ │ │ │ ├── index.ts │ │ │ │ ├── mcTextToHTML.ts │ │ │ │ ├── styleLibrary.ts │ │ │ │ └── utils.ts │ │ └── utils.ts │ ├── stores │ │ ├── favorites.ts │ │ ├── index.ts │ │ ├── internal.ts │ │ ├── packs.ts │ │ ├── preferences.ts │ │ ├── searches.ts │ │ ├── themes.ts │ │ └── wiki.ts │ └── types │ │ ├── index.ts │ │ └── types.d.ts ├── plugins │ └── themes.ts ├── routes │ ├── contributors.remote.ts │ ├── +error.svelte │ ├── +layout.svelte │ ├── +page.svelte │ ├── api │ │ └── tunnel │ │ │ └── +server.ts │ ├── enums.ts │ ├── og │ │ └── [ign] │ │ │ └── [[profile]] │ │ │ ├── +error.svelte │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ ├── schema.ts │ └── stats │ │ └── [ign] │ │ └── [[profile]] │ │ ├── +error.svelte │ │ └── +page.svelte ├── service-worker.ts └── tests │ └── mc-text │ └── mc-text.svelte.spec.ts ├── static ├── apple-touch-icon-precomposed.png ├── favicon.ico ├── favicon.png ├── fonts │ ├── icomoon │ │ ├── README.md │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ ├── icomoon.woff2 │ │ └── selection.json │ └── montserrat │ │ ├── montserrat-italic.woff2 │ │ └── montserrat-normal.woff2 ├── img │ ├── app-icons │ │ ├── 192.avif │ │ ├── 192.png │ │ ├── 512.avif │ │ ├── 512.png │ │ ├── maskable-192.avif │ │ ├── maskable-192.png │ │ ├── maskable-512.avif │ │ ├── maskable-512.png │ │ ├── maskable-svg.svg │ │ ├── monochrome-192.avif │ │ ├── monochrome-192.png │ │ ├── monochrome-512.avif │ │ ├── monochrome-512.png │ │ ├── monochrome-svg.svg │ │ ├── square-180.png │ │ ├── square-512.png │ │ └── svg.svg │ ├── bg.avif │ ├── enable-api-thumbnail.avif │ ├── enchanted-glint-legacy.avif │ ├── enchanted-glint.avif │ ├── icons │ │ ├── discord.svg │ │ ├── google-forms.svg │ │ ├── hypixel.avif │ │ ├── instagram.svg │ │ ├── minionah.avif │ │ ├── patreon.svg │ │ ├── technoblade.svg │ │ ├── tiktok.svg │ │ ├── twitch.svg │ │ ├── x-twitter.svg │ │ └── youtube.svg │ ├── logo.avif │ ├── logo_black.avif │ ├── screenshots │ │ └── desktop.avif │ ├── sea_creatures │ │ ├── agarimoo.avif │ │ ├── baby_magma_slug.avif │ │ ├── blue_shark.avif │ │ ├── carrot_king.avif │ │ ├── catfish.avif │ │ ├── deep_sea_protector.avif │ │ ├── fire_eel.avif │ │ ├── flaming_worm.avif │ │ ├── frosty_the_snowman.avif │ │ ├── frozen_steve.avif │ │ ├── great_white_shark.avif │ │ ├── grim_reaper.avif │ │ ├── grinch.avif │ │ ├── guardian_defender.avif │ │ ├── lava_blaze.avif │ │ ├── lava_flame.avif │ │ ├── lava_leech.avif │ │ ├── lava_pigman.avif │ │ ├── lord_jawbus.avif │ │ ├── magma_slug.avif │ │ ├── monster_of_the_deep.avif │ │ ├── moogma.avif │ │ ├── night_squid.avif │ │ ├── nightmare.avif │ │ ├── nurse_shark.avif │ │ ├── nutcracker.avif │ │ ├── oasis_rabbit.avif │ │ ├── oasis_sheep.avif │ │ ├── phantom_fisherman.avif │ │ ├── pig_rider.avif │ │ ├── plhlegblast.avif │ │ ├── poisoned_water_worm.avif │ │ ├── pond_squid.avif │ │ ├── pyroclastic_worm.avif │ │ ├── scarecrow.avif │ │ ├── sea_archer.avif │ │ ├── sea_emperor.avif │ │ ├── sea_guardian.avif │ │ ├── sea_leech.avif │ │ ├── sea_walker.avif │ │ ├── sea_witch.avif │ │ ├── thunder.avif │ │ ├── tiger_shark.avif │ │ ├── water_hydra.avif │ │ ├── water_worm.avif │ │ ├── werewolf.avif │ │ ├── yeti.avif │ │ └── zombie_miner.avif │ ├── textures │ │ └── item │ │ │ ├── empty_armor_slot_boots.avif │ │ │ ├── empty_armor_slot_chestplate.avif │ │ │ ├── empty_armor_slot_helmet.avif │ │ │ ├── empty_armor_slot_leggings.avif │ │ │ ├── leather_boots.png │ │ │ ├── leather_boots_overlay.png │ │ │ ├── leather_chestplate.png │ │ │ ├── leather_chestplate_overlay.png │ │ │ ├── leather_helmet.png │ │ │ ├── leather_helmet_overlay.png │ │ │ ├── leather_leggings.png │ │ │ ├── leather_leggings_overlay.png │ │ │ ├── potion.png │ │ │ ├── potion_overlay.png │ │ │ └── splash_potion.png │ └── themes │ │ ├── april-fools-2024 │ │ └── bg.avif │ │ ├── burning-cinnabar │ │ └── bg.avif │ │ ├── candycane │ │ └── bg.avif │ │ ├── draconic │ │ └── bg.avif │ │ ├── light │ │ └── bg.avif │ │ ├── nightblue │ │ └── bg.avif │ │ ├── skylea │ │ └── bg.avif │ │ └── sunrise │ │ └── bg.avif ├── manifest.webmanifest ├── robots.txt └── video │ ├── enable-api-av1.mp4 │ ├── enable-api-av1.webm │ ├── enable-api-h264.mp4 │ ├── enable-api-vp9.mp4 │ └── enable-api-vp9.webm ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts └── vitest-setup-client.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/actions/pnpm-install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/actions/pnpm-install/action.yml -------------------------------------------------------------------------------- /.github/commit-message.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/commit-message.instructions.md -------------------------------------------------------------------------------- /.github/workflows/clean_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/workflows/clean_cache.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelog.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/changelog.config.ts -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/nginx.conf -------------------------------------------------------------------------------- /orval.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/orval.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/app.html -------------------------------------------------------------------------------- /src/context/createContext.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/context/createContext.svelte.ts -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./createContext.svelte"; 2 | -------------------------------------------------------------------------------- /src/hooks.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/hooks.client.ts -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/instrumentation.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/instrumentation.server.ts -------------------------------------------------------------------------------- /src/lib/components/APINotice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/APINotice.svelte -------------------------------------------------------------------------------- /src/lib/components/AdditionStat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/AdditionStat.svelte -------------------------------------------------------------------------------- /src/lib/components/BetaNotice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/BetaNotice.svelte -------------------------------------------------------------------------------- /src/lib/components/Bonus.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Bonus.svelte -------------------------------------------------------------------------------- /src/lib/components/Chip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Chip.svelte -------------------------------------------------------------------------------- /src/lib/components/ContainedItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/ContainedItem.svelte -------------------------------------------------------------------------------- /src/lib/components/EmptyEquipment.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/EmptyEquipment.svelte -------------------------------------------------------------------------------- /src/lib/components/Item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Item.svelte -------------------------------------------------------------------------------- /src/lib/components/Navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Navbar.svelte -------------------------------------------------------------------------------- /src/lib/components/Notice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Notice.svelte -------------------------------------------------------------------------------- /src/lib/components/PerformanceMode.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/PerformanceMode.svelte -------------------------------------------------------------------------------- /src/lib/components/SEO.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/SEO.svelte -------------------------------------------------------------------------------- /src/lib/components/ScrollAreaPrimitive.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/ScrollAreaPrimitive.svelte -------------------------------------------------------------------------------- /src/lib/components/Section.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Section.svelte -------------------------------------------------------------------------------- /src/lib/components/SectionSubtitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/SectionSubtitle.svelte -------------------------------------------------------------------------------- /src/lib/components/SectionTitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/SectionTitle.svelte -------------------------------------------------------------------------------- /src/lib/components/Skillbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Skillbar.svelte -------------------------------------------------------------------------------- /src/lib/components/Skin3D.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Skin3D.svelte -------------------------------------------------------------------------------- /src/lib/components/Stat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Stat.svelte -------------------------------------------------------------------------------- /src/lib/components/Wardrobe.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/Wardrobe.svelte -------------------------------------------------------------------------------- /src/lib/components/header/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/Header.svelte -------------------------------------------------------------------------------- /src/lib/components/header/Info.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/Info.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/Misc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/Misc.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/Order.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/Order.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/Packs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/Packs.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/Settings.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/Themes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/Themes.svelte -------------------------------------------------------------------------------- /src/lib/components/header/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/settings/index.ts -------------------------------------------------------------------------------- /src/lib/components/header/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/header/types.ts -------------------------------------------------------------------------------- /src/lib/components/item/item-content.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/item/item-content.svelte -------------------------------------------------------------------------------- /src/lib/components/scroll-items.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/components/scroll-items.svelte -------------------------------------------------------------------------------- /src/lib/hooks/is-hover.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/hooks/is-hover.svelte.ts -------------------------------------------------------------------------------- /src/lib/hooks/is-mobile.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/hooks/is-mobile.svelte.ts -------------------------------------------------------------------------------- /src/lib/layouts/stats/AdditionalStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/AdditionalStats.svelte -------------------------------------------------------------------------------- /src/lib/layouts/stats/Items.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/Items.svelte -------------------------------------------------------------------------------- /src/lib/layouts/stats/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/Main.svelte -------------------------------------------------------------------------------- /src/lib/layouts/stats/PlayerProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/PlayerProfile.svelte -------------------------------------------------------------------------------- /src/lib/layouts/stats/Skills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/Skills.svelte -------------------------------------------------------------------------------- /src/lib/layouts/stats/Stats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/layouts/stats/Stats.svelte -------------------------------------------------------------------------------- /src/lib/sections/Sections.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/Sections.svelte -------------------------------------------------------------------------------- /src/lib/sections/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/constants.ts -------------------------------------------------------------------------------- /src/lib/sections/stats/Accessories.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Accessories.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Bestiary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Bestiary.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Collections.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Collections.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/CrimsonIsle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/CrimsonIsle.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Dungeons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Dungeons.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Gear.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Gear.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Inventory.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Inventory.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Minions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Minions.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/MiscSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/MiscSection.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Pets.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Pets.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Rift.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Rift.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/SkillsSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/SkillsSection.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/Slayer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/Slayer.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/farming/garden.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/farming/garden.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/auctions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/auctions.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/claimed.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/claimed.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/damage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/damage.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/dragons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/dragons.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/endstone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/endstone.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/essence.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/essence.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/gifts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/gifts.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/jerry.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/jerry.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/kills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/kills.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/mythological.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/mythological.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/pet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/pet.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/potions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/potions.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/races.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/races.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/uncategorized.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/uncategorized.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/misc/upgrades.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/misc/upgrades.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/skills/enchanting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/skills/enchanting.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/skills/farming.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/skills/farming.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/skills/fishing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/skills/fishing.svelte -------------------------------------------------------------------------------- /src/lib/sections/stats/skills/mining.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/stats/skills/mining.svelte -------------------------------------------------------------------------------- /src/lib/sections/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/sections/types.ts -------------------------------------------------------------------------------- /src/lib/shared/api/mutator/custom-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/api/mutator/custom-instance.ts -------------------------------------------------------------------------------- /src/lib/shared/api/orval-generated-zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/api/orval-generated-zod.ts -------------------------------------------------------------------------------- /src/lib/shared/api/orval-generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/api/orval-generated.ts -------------------------------------------------------------------------------- /src/lib/shared/api/skycrypt-api.remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/api/skycrypt-api.remote.ts -------------------------------------------------------------------------------- /src/lib/shared/api/themes.remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/api/themes.remote.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/enchantments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/enchantments.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/packs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/packs.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/rarities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/rarities.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/stats.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/april-fools-2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/april-fools-2024.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/burning-cinnabar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/burning-cinnabar.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/candycane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/candycane.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/default.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/draconic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/draconic.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/index.ts -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/light.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/minionah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/minionah.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/nightblue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/nightblue.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/skylea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/skylea.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/sunrise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/sunrise.json -------------------------------------------------------------------------------- /src/lib/shared/constants/themes/warpwing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/constants/themes/warpwing.json -------------------------------------------------------------------------------- /src/lib/shared/embedGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/embedGenerator.ts -------------------------------------------------------------------------------- /src/lib/shared/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/helper.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/index.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/obfuscated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/obfuscated/index.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/parser/index.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/parser/mcTextToHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/parser/mcTextToHTML.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/parser/styleLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/parser/styleLibrary.ts -------------------------------------------------------------------------------- /src/lib/shared/mc-text/parser/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/mc-text/parser/utils.ts -------------------------------------------------------------------------------- /src/lib/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/shared/utils.ts -------------------------------------------------------------------------------- /src/lib/stores/favorites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/favorites.ts -------------------------------------------------------------------------------- /src/lib/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/index.ts -------------------------------------------------------------------------------- /src/lib/stores/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/internal.ts -------------------------------------------------------------------------------- /src/lib/stores/packs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/packs.ts -------------------------------------------------------------------------------- /src/lib/stores/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/preferences.ts -------------------------------------------------------------------------------- /src/lib/stores/searches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/searches.ts -------------------------------------------------------------------------------- /src/lib/stores/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/themes.ts -------------------------------------------------------------------------------- /src/lib/stores/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/stores/wiki.ts -------------------------------------------------------------------------------- /src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/types/index.ts -------------------------------------------------------------------------------- /src/lib/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/lib/types/types.d.ts -------------------------------------------------------------------------------- /src/plugins/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/plugins/themes.ts -------------------------------------------------------------------------------- /src/routes/ contributors.remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/ contributors.remote.ts -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/api/tunnel/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/api/tunnel/+server.ts -------------------------------------------------------------------------------- /src/routes/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/enums.ts -------------------------------------------------------------------------------- /src/routes/og/[ign]/[[profile]]/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/og/[ign]/[[profile]]/+error.svelte -------------------------------------------------------------------------------- /src/routes/og/[ign]/[[profile]]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/og/[ign]/[[profile]]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/og/[ign]/[[profile]]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/og/[ign]/[[profile]]/+page.svelte -------------------------------------------------------------------------------- /src/routes/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/schema.ts -------------------------------------------------------------------------------- /src/routes/stats/[ign]/[[profile]]/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/stats/[ign]/[[profile]]/+error.svelte -------------------------------------------------------------------------------- /src/routes/stats/[ign]/[[profile]]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/routes/stats/[ign]/[[profile]]/+page.svelte -------------------------------------------------------------------------------- /src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/service-worker.ts -------------------------------------------------------------------------------- /src/tests/mc-text/mc-text.svelte.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/src/tests/mc-text/mc-text.svelte.spec.ts -------------------------------------------------------------------------------- /static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/icomoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/README.md -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/icomoon.woff2 -------------------------------------------------------------------------------- /static/fonts/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/icomoon/selection.json -------------------------------------------------------------------------------- /static/fonts/montserrat/montserrat-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/montserrat/montserrat-italic.woff2 -------------------------------------------------------------------------------- /static/fonts/montserrat/montserrat-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/fonts/montserrat/montserrat-normal.woff2 -------------------------------------------------------------------------------- /static/img/app-icons/192.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/192.avif -------------------------------------------------------------------------------- /static/img/app-icons/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/192.png -------------------------------------------------------------------------------- /static/img/app-icons/512.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/512.avif -------------------------------------------------------------------------------- /static/img/app-icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/512.png -------------------------------------------------------------------------------- /static/img/app-icons/maskable-192.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/maskable-192.avif -------------------------------------------------------------------------------- /static/img/app-icons/maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/maskable-192.png -------------------------------------------------------------------------------- /static/img/app-icons/maskable-512.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/maskable-512.avif -------------------------------------------------------------------------------- /static/img/app-icons/maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/maskable-512.png -------------------------------------------------------------------------------- /static/img/app-icons/maskable-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/maskable-svg.svg -------------------------------------------------------------------------------- /static/img/app-icons/monochrome-192.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/monochrome-192.avif -------------------------------------------------------------------------------- /static/img/app-icons/monochrome-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/monochrome-192.png -------------------------------------------------------------------------------- /static/img/app-icons/monochrome-512.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/monochrome-512.avif -------------------------------------------------------------------------------- /static/img/app-icons/monochrome-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/monochrome-512.png -------------------------------------------------------------------------------- /static/img/app-icons/monochrome-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/monochrome-svg.svg -------------------------------------------------------------------------------- /static/img/app-icons/square-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/square-180.png -------------------------------------------------------------------------------- /static/img/app-icons/square-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/square-512.png -------------------------------------------------------------------------------- /static/img/app-icons/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/app-icons/svg.svg -------------------------------------------------------------------------------- /static/img/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/bg.avif -------------------------------------------------------------------------------- /static/img/enable-api-thumbnail.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/enable-api-thumbnail.avif -------------------------------------------------------------------------------- /static/img/enchanted-glint-legacy.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/enchanted-glint-legacy.avif -------------------------------------------------------------------------------- /static/img/enchanted-glint.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/enchanted-glint.avif -------------------------------------------------------------------------------- /static/img/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/discord.svg -------------------------------------------------------------------------------- /static/img/icons/google-forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/google-forms.svg -------------------------------------------------------------------------------- /static/img/icons/hypixel.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/hypixel.avif -------------------------------------------------------------------------------- /static/img/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/instagram.svg -------------------------------------------------------------------------------- /static/img/icons/minionah.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/minionah.avif -------------------------------------------------------------------------------- /static/img/icons/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/patreon.svg -------------------------------------------------------------------------------- /static/img/icons/technoblade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/technoblade.svg -------------------------------------------------------------------------------- /static/img/icons/tiktok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/tiktok.svg -------------------------------------------------------------------------------- /static/img/icons/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/twitch.svg -------------------------------------------------------------------------------- /static/img/icons/x-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/x-twitter.svg -------------------------------------------------------------------------------- /static/img/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/icons/youtube.svg -------------------------------------------------------------------------------- /static/img/logo.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/logo.avif -------------------------------------------------------------------------------- /static/img/logo_black.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/logo_black.avif -------------------------------------------------------------------------------- /static/img/screenshots/desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/screenshots/desktop.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/agarimoo.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/agarimoo.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/baby_magma_slug.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/baby_magma_slug.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/blue_shark.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/blue_shark.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/carrot_king.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/carrot_king.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/catfish.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/catfish.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/deep_sea_protector.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/deep_sea_protector.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/fire_eel.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/fire_eel.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/flaming_worm.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/flaming_worm.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/frosty_the_snowman.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/frosty_the_snowman.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/frozen_steve.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/frozen_steve.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/great_white_shark.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/great_white_shark.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/grim_reaper.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/grim_reaper.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/grinch.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/grinch.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/guardian_defender.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/guardian_defender.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/lava_blaze.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/lava_blaze.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/lava_flame.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/lava_flame.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/lava_leech.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/lava_leech.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/lava_pigman.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/lava_pigman.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/lord_jawbus.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/lord_jawbus.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/magma_slug.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/magma_slug.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/monster_of_the_deep.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/monster_of_the_deep.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/moogma.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/moogma.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/night_squid.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/night_squid.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/nightmare.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/nightmare.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/nurse_shark.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/nurse_shark.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/nutcracker.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/nutcracker.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/oasis_rabbit.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/oasis_rabbit.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/oasis_sheep.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/oasis_sheep.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/phantom_fisherman.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/phantom_fisherman.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/pig_rider.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/pig_rider.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/plhlegblast.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/plhlegblast.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/poisoned_water_worm.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/poisoned_water_worm.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/pond_squid.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/pond_squid.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/pyroclastic_worm.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/pyroclastic_worm.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/scarecrow.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/scarecrow.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_archer.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_archer.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_emperor.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_emperor.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_guardian.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_guardian.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_leech.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_leech.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_walker.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_walker.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/sea_witch.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/sea_witch.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/thunder.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/thunder.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/tiger_shark.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/tiger_shark.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/water_hydra.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/water_hydra.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/water_worm.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/water_worm.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/werewolf.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/werewolf.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/yeti.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/yeti.avif -------------------------------------------------------------------------------- /static/img/sea_creatures/zombie_miner.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/sea_creatures/zombie_miner.avif -------------------------------------------------------------------------------- /static/img/textures/item/empty_armor_slot_boots.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/empty_armor_slot_boots.avif -------------------------------------------------------------------------------- /static/img/textures/item/empty_armor_slot_chestplate.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/empty_armor_slot_chestplate.avif -------------------------------------------------------------------------------- /static/img/textures/item/empty_armor_slot_helmet.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/empty_armor_slot_helmet.avif -------------------------------------------------------------------------------- /static/img/textures/item/empty_armor_slot_leggings.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/empty_armor_slot_leggings.avif -------------------------------------------------------------------------------- /static/img/textures/item/leather_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_boots.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_boots_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_boots_overlay.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_chestplate.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_chestplate_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_chestplate_overlay.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_helmet.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_helmet_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_helmet_overlay.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_leggings.png -------------------------------------------------------------------------------- /static/img/textures/item/leather_leggings_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/leather_leggings_overlay.png -------------------------------------------------------------------------------- /static/img/textures/item/potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/potion.png -------------------------------------------------------------------------------- /static/img/textures/item/potion_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/potion_overlay.png -------------------------------------------------------------------------------- /static/img/textures/item/splash_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/textures/item/splash_potion.png -------------------------------------------------------------------------------- /static/img/themes/april-fools-2024/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/april-fools-2024/bg.avif -------------------------------------------------------------------------------- /static/img/themes/burning-cinnabar/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/burning-cinnabar/bg.avif -------------------------------------------------------------------------------- /static/img/themes/candycane/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/candycane/bg.avif -------------------------------------------------------------------------------- /static/img/themes/draconic/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/draconic/bg.avif -------------------------------------------------------------------------------- /static/img/themes/light/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/light/bg.avif -------------------------------------------------------------------------------- /static/img/themes/nightblue/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/nightblue/bg.avif -------------------------------------------------------------------------------- /static/img/themes/skylea/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/skylea/bg.avif -------------------------------------------------------------------------------- /static/img/themes/sunrise/bg.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/img/themes/sunrise/bg.avif -------------------------------------------------------------------------------- /static/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/manifest.webmanifest -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/video/enable-api-av1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/video/enable-api-av1.mp4 -------------------------------------------------------------------------------- /static/video/enable-api-av1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/video/enable-api-av1.webm -------------------------------------------------------------------------------- /static/video/enable-api-h264.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/video/enable-api-h264.mp4 -------------------------------------------------------------------------------- /static/video/enable-api-vp9.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/video/enable-api-vp9.mp4 -------------------------------------------------------------------------------- /static/video/enable-api-vp9.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/static/video/enable-api-vp9.webm -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyCryptWebsite/SkyCrypt-Frontend/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest-setup-client.ts: -------------------------------------------------------------------------------- 1 | /// 2 | --------------------------------------------------------------------------------