-
Notifications
You must be signed in to change notification settings - Fork 8
GO Backend rewrite from dev #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
b8c4920
Add gtihub pipeline
MartinNemi03 e628025
feat(dev): added conn pool with sync.RWMutex
WarpWing 43d32c7
exp: try disabling prefork mode
MartinNemi03 a409e9a
refactor: small changes, wiki links & resource pack links
DuckySoLucky a45798f
fix: warp's sill issue
DuckySoLucky 4188b29
Merge pull request #1 from WarpWing/patch-1
DuckySoLucky 4b18779
refactor: small changes to the nw calc and types
DuckySoLucky eec6f62
refactor: enable prefork, do not copy deps
DuckySoLucky fbbb5c7
fix: uncomment this since my wifi works fine now-
DuckySoLucky 882cdd4
fix: gh actions
DuckySoLucky d901acf
refactor: change the way we pass in URLs
DuckySoLucky 7d513e9
wth was i doing here?
DuckySoLucky 40292b1
fix: resource packs
DuckySoLucky 60addf3
fix: yes
DuckySoLucky 385185a
yes
DuckySoLucky eb29dc6
fix: leather endpoint
DuckySoLucky eec1cfa
fix: potions
DuckySoLucky b95ec66
feat: yes
DuckySoLucky b2bc858
fix: it's not localhost anymore
DuckySoLucky 8acefd2
refactor: implement cache into base64 decoding
DuckySoLucky 6f9542f
feat: bump sh-nw
DuckySoLucky f1fca96
fix: bump sh-nw again cuz I forgot to push-
DuckySoLucky e195c62
fix: garden images, and some other fixes
DuckySoLucky 81730c1
fix: fix discord embed, equipment and nw errors
DuckySoLucky 7b243f4
refactor: enable embed
DuckySoLucky b7dc721
feat: improve embed endpoint
DuckySoLucky 79fcb41
feat: add the most scuffed players stats implementation, cba to do it…
DuckySoLucky aaf4989
fix: we need only these two
DuckySoLucky a75edb0
fix: remove /api/items/ endpoint and add logs for /api/item
DuckySoLucky e4a5a40
feat: deez nuts
DuckySoLucky 22caa5b
perf: instead of fetching on server, redirect user
DuckySoLucky eadc917
feat: bump sh-nw
DuckySoLucky 66650cb
feat: add swagger/scalar docs support, bump sh-nw
DuckySoLucky 8e986a8
fix: errors, fairy souls count on ironman
DuckySoLucky 96d0aaf
fix: potion textures
DuckySoLucky 4810ae4
fix: bug fixes
DuckySoLucky 692377f
fix: enable back cache
DuckySoLucky 04aed3a
fix: remove print msg
DuckySoLucky a086a2e
fix: minor bugs
DuckySoLucky dd39c5f
feat: bump sh-nw
DuckySoLucky fdb8d6e
fix: undefined playerData, perf: fetch prices & items on startup
DuckySoLucky 0e47271
feat: add item value, add prices to misssing accessories and few fixes
DuckySoLucky 66ee0fe
fix: remove unused
DuckySoLucky 10c4e2e
perf: bump sh-nw
DuckySoLucky 11d1e2d
fix: skill issue
DuckySoLucky db5ff25
feat: bump openapi
DuckySoLucky fb495cc
fix: invalid pet data in profiel
DuckySoLucky 6d829b0
feat: add option to disable furfsky pack, query param for now
DuckySoLucky a341fce
feat: add check for cookies
DuckySoLucky 7d9e5e3
feat: add cookie support, use queries in dev
DuckySoLucky dc4dab0
feat: add docs to dockerfile
DuckySoLucky 1d22d00
feat: add HYPIXEL_PLUS resource pack, multi pack support, few fixes
DuckySoLucky 4f8f304
feat: add resourcepacks to openapi
DuckySoLucky a017795
feat: yes
DuckySoLucky 121aa9d
fix: remove debug
DuckySoLucky 242b7f0
Add CodeQL to pipeline
MartinNemi03 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| HYPIXEL_API_KEY="" | ||
| DISCORD_WEBHOOK="" | ||
| DEV="true" | ||
| DEV="true" | ||
| ENABLE_ARMOR_HEX="false" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| name: Website | ||
|
|
||
| on: | ||
| push: | ||
| paths: ["src/**", "Dockerfile", ".github/workflows/website.yml"] | ||
| workflow_dispatch: | ||
|
|
||
| env: | ||
| CONTAINER_REGISTRY: ghcr.io | ||
| IMAGE_NAME: ${{ github.repository }} | ||
|
|
||
| jobs: | ||
| analyze: | ||
| name: Analyze | ||
| runs-on: ubuntu-latest | ||
| if: | | ||
| (github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/dev') | ||
| && github.repository_owner == 'SkyCryptWebsite' | ||
| && github.event_name != 'pull_request' | ||
|
|
||
| permissions: | ||
| security-events: write | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v3 | ||
| with: | ||
| languages: go | ||
|
|
||
| - name: Perform CodeQL Analysis | ||
| uses: github/codeql-action/analyze@v3 | ||
|
|
||
| build: | ||
| name: Go Build | ||
| runs-on: ubuntu-latest | ||
| if: | | ||
| (github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/dev') | ||
| && github.repository_owner == 'SkyCryptWebsite' | ||
| && github.event_name != 'pull_request' | ||
|
|
||
| steps: | ||
| - name: Git checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Clone NotEnoughUpdates-REPO | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: NotEnoughUpdates/NotEnoughUpdates-REPO | ||
| path: NotEnoughUpdates-REPO/ | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Go Setup | ||
| uses: actions/setup-go@v6 | ||
| with: | ||
| go-version: '1.25' | ||
|
|
||
| - name: Install packages | ||
| run: go mod download | ||
|
|
||
| - name: Build | ||
| run: go build -v ./... | ||
|
|
||
| package: | ||
| name: Package into Container | ||
| runs-on: ubuntu-latest | ||
| needs: [analyze, build] | ||
| if: | | ||
| (github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/dev') | ||
| && github.repository_owner == 'SkyCryptWebsite' | ||
| && github.event_name != 'pull_request' | ||
|
|
||
| permissions: | ||
| packages: write | ||
| contents: read | ||
|
|
||
| steps: | ||
| - name: Git checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Registry login | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| registry: ${{ env.CONTAINER_REGISTRY }} | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Extract metadata | ||
| id: meta | ||
| uses: docker/metadata-action@v5 | ||
| with: | ||
| images: ${{ env.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
|
||
| - name: Build and Push | ||
| uses: docker/build-push-action@v6 | ||
| with: | ||
| context: . | ||
| push: true | ||
| tags: ${{ steps.meta.outputs.tags }} | ||
| labels: ${{ steps.meta.outputs.labels }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule NotEnoughUpdates-REPO
updated
5867 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "id": "FURFSKY_REBORN", | ||
| "name": "FurfSky Reborn", | ||
| "version": "v1.9.0", | ||
| "author": "The Reborn Team", | ||
| "url": "https://furfsky.net/" | ||
| } |
Binary file added
BIN
+215 Bytes
...cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+123 Bytes
...ittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+217 Bytes
...cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+126 Bytes
...ittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+211 Bytes
...ittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+136 Bytes
...ttofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+217 Bytes
.../cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_red_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+134 Bytes
...cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_red_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+209 Bytes
...ttofirmgenerated/textures/item/accessories/abicase/abicase_blue_yellow_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+136 Bytes
...tofirmgenerated/textures/item/accessories/abicase/abicase_blue_yellow_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+196 Bytes
...ets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+129 Bytes
...ts/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+230 Bytes
...cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+198 Bytes
...ittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+230 Bytes
...cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+198 Bytes
...ittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+189 Bytes
...ets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_artifact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+207 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_ring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+209 Bytes
...ets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_talisman.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+280 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/anita/anita_artifact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+193 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_ring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+212 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/anita/anita_talisman.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+206 Bytes
...s/assets/cittofirmgenerated/textures/item/accessories/archaeologist_compass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+214 Bytes
...ated/textures/item/accessories/atmospheric_filter/atmospheric_filter_spring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+214 Bytes
...ated/textures/item/accessories/atmospheric_filter/atmospheric_filter_summer.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ated/textures/item/accessories/atmospheric_filter/atmospheric_filter_winter.png
Oops, something went wrong.
Binary file added
BIN
+256 Bytes
...lus/assets/cittofirmgenerated/textures/item/accessories/auto_recombobulator.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
...lus/assets/cittofirmgenerated/textures/item/accessories/bait_ring/bait_ring.png
Oops, something went wrong.
Binary file added
BIN
+239 Bytes
...sets/cittofirmgenerated/textures/item/accessories/bait_ring/spiked_atrocity.png
Oops, something went wrong.
Binary file added
BIN
+195 Bytes
...pixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_ring.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_talisman.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_ring.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...cittofirmgenerated/textures/item/accessories/bat_person/bat_person_talisman.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...erated/textures/item/accessories/beastmaster_crest/beastmaster_crest_common.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...enerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_epic.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...ted/textures/item/accessories/beastmaster_crest/beastmaster_crest_legendary.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...enerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_rare.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...ated/textures/item/accessories/beastmaster_crest/beastmaster_crest_uncommon.png
Oops, something went wrong.
Binary file added
BIN
+218 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_artifact.png
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
...ts/cittofirmgenerated/textures/item/accessories/bingo/bingo_combat_talisman.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_heirloom.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
..._Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_relic.png
Oops, something went wrong.
Binary file added
BIN
+213 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_ring.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_talisman.png
Oops, something went wrong.
Binary file added
BIN
+202 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bits_talisman.png
Oops, something went wrong.
Binary file added
BIN
+201 Bytes
...xel_Plus/assets/cittofirmgenerated/textures/item/accessories/blaze_talisman.png
Oops, something went wrong.
Binary file added
BIN
+190 Bytes
...ttofirmgenerated/textures/item/accessories/blood_donor/blood_donor_artifact.png
Oops, something went wrong.
Binary file added
BIN
+218 Bytes
...s/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_ring.png
Oops, something went wrong.
Binary file added
BIN
+231 Bytes
...ttofirmgenerated/textures/item/accessories/blood_donor/blood_donor_talisman.png
Oops, something went wrong.
Binary file added
BIN
+235 Bytes
...generated/textures/item/accessories/book_of_progression/book_of_progression.png
Oops, something went wrong.
Binary file added
BIN
+239 Bytes
...ated/textures/item/accessories/book_of_progression/book_of_progression_epic.png
Oops, something went wrong.
Binary file added
BIN
+240 Bytes
...textures/item/accessories/book_of_progression/book_of_progression_legendary.png
Oops, something went wrong.
Binary file added
BIN
+240 Bytes
...ed/textures/item/accessories/book_of_progression/book_of_progression_mythic.png
Oops, something went wrong.
Binary file added
BIN
+240 Bytes
...ated/textures/item/accessories/book_of_progression/book_of_progression_rare.png
Oops, something went wrong.
Binary file added
BIN
+240 Bytes
.../textures/item/accessories/book_of_progression/book_of_progression_uncommon.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_aquamarine.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_archfiend.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bingo_blue.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bone.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_brick_red.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_byzantium.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_carmine.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celadon.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celeste.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_chocolate.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_copper.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...irmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_cyclamen.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...generated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dark_purple.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dung.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_emerald.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_flame.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_fossil.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...generated/textures/item/accessories/bucket_of_dye/bucket_of_dye_frostbitten.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_holly.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_iceberg.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_jade.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.../cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1,2,1],"frametime":20,"interpolate":true}} |
Binary file added
BIN
+214 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_livid.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lucky.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lucky.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frametime":30,"interpolate":true}} |
Binary file added
BIN
+214 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mango.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_matcha.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...irmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_midnight.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...tofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mocha.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nadeshiko.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_necron.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nyanza.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frametime":20,"interpolate":true}} |
Binary file added
BIN
+214 Bytes
...generated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pearlescent.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pelt.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_periwinkle.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...ittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frametime":30,"interpolate":true}} |
Binary file added
BIN
+165 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_black.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...rmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_blue.png
Oops, something went wrong.
Binary file added
BIN
+183 Bytes
...mgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_white.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...generated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_yellow.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...ttofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.../cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frametime":30,"interpolate":true}} |
Binary file added
BIN
+214 Bytes
...firmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_sangria.png
Oops, something went wrong.
Binary file added
BIN
+184 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_secret.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...irmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_tentacle.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...irmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_treasure.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...ofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...ittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frametime":30,"interpolate":true}} |
Binary file added
BIN
+214 Bytes
...rated/textures/item/accessories/bucket_of_dye/bucket_of_dye_wild_strawberry.png
Oops, something went wrong.
Binary file added
BIN
+166 Bytes
...ofirmgenerated/textures/item/accessories/burststopper/burststopper_artifact.png
Oops, something went wrong.
Binary file added
BIN
+234 Bytes
...ofirmgenerated/textures/item/accessories/burststopper/burststopper_talisman.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...rmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_1.png
Oops, something went wrong.
Binary file added
BIN
+216 Bytes
...rmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_2.png
Oops, something went wrong.
Binary file added
BIN
+234 Bytes
...rmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_3.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
...rmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_4.png
Oops, something went wrong.
Binary file added
BIN
+242 Bytes
...rmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_5.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...erated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_1.png
Oops, something went wrong.
Binary file added
BIN
+216 Bytes
...erated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_2.png
Oops, something went wrong.
Binary file added
BIN
+234 Bytes
...erated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_3.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
...erated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_4.png
Oops, something went wrong.
Binary file added
BIN
+242 Bytes
...erated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_5.png
Oops, something went wrong.
Binary file added
BIN
+242 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/candy/candy_artifact.png
Oops, something went wrong.
Binary file added
BIN
+248 Bytes
..._Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_relic.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_ring.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/candy/candy_talisman.png
Oops, something went wrong.
Binary file added
BIN
+294 Bytes
...firmgenerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag.png
Oops, something went wrong.
Binary file added
BIN
+240 Bytes
...nerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag_empty.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...s/assets/cittofirmgenerated/textures/item/accessories/catacombs_expert_ring.png
Oops, something went wrong.
Binary file added
BIN
+220 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/century/century_ring.png
Oops, something went wrong.
Binary file added
BIN
+238 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/century/century_talisman.png
Oops, something went wrong.
Binary file added
BIN
+230 Bytes
...irmgenerated/textures/item/accessories/chocolate_bar/ganache_chocolate_slab.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...irmgenerated/textures/item/accessories/chocolate_bar/nibble_chocolate_stick.png
Oops, something went wrong.
Binary file added
BIN
+230 Bytes
...mgenerated/textures/item/accessories/chocolate_bar/prestige_chocolate_realm.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...ofirmgenerated/textures/item/accessories/chocolate_bar/rich_chocolate_chunk.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
...ofirmgenerated/textures/item/accessories/chocolate_bar/smooth_chocolate_bar.png
Oops, something went wrong.
Binary file added
BIN
+203 Bytes
..._Plus/assets/cittofirmgenerated/textures/item/accessories/chumming_talisman.png
Oops, something went wrong.
Binary file added
BIN
+200 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/coin/artifact_of_coins.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/coin/coin_talisman.png
Oops, something went wrong.
Binary file added
BIN
+242 Bytes
...lus/assets/cittofirmgenerated/textures/item/accessories/coin/relic_of_coins.png
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/coin/ring_of_coins.png
Oops, something went wrong.
Binary file added
BIN
+234 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/cropie/cropie_talisman.png
Oops, something went wrong.
Binary file added
BIN
+224 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/cropie/fermento_artifact.png
Oops, something went wrong.
Binary file added
BIN
+224 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/squash_ring.png
Oops, something went wrong.
Binary file added
BIN
+202 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_1.png
Oops, something went wrong.
Binary file added
BIN
+218 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_2.png
Oops, something went wrong.
Binary file added
BIN
+252 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_3.png
Oops, something went wrong.
Binary file added
BIN
+280 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_4.png
Oops, something went wrong.
Binary file added
BIN
+307 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_5.png
Oops, something went wrong.
Binary file added
BIN
+333 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_6.png
Oops, something went wrong.
Binary file added
BIN
+354 Bytes
.../cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
...firmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7_maxed.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/dante/dante_ring.png
Oops, something went wrong.
Binary file added
BIN
+238 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/dante/dante_talisman.png
Oops, something went wrong.
Binary file added
BIN
+190 Bytes
.../cittofirmgenerated/textures/item/accessories/dark_auction/crooked_artifact.png
Oops, something went wrong.
Binary file added
BIN
+201 Bytes
...cittofirmgenerated/textures/item/accessories/dark_auction/hegemony_artifact.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...ittofirmgenerated/textures/item/accessories/dark_auction/hocus_pocus_cipher.png
Oops, something went wrong.
Binary file added
BIN
+203 Bytes
...sets/cittofirmgenerated/textures/item/accessories/dark_auction/magic_8_ball.png
Oops, something went wrong.
Binary file added
BIN
+201 Bytes
...ittofirmgenerated/textures/item/accessories/dark_auction/seal_of_the_family.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...assets/cittofirmgenerated/textures/item/accessories/dark_auction/shady_ring.png
Oops, something went wrong.
Binary file added
BIN
+205 Bytes
...assets/cittofirmgenerated/textures/item/accessories/day_crystal/day_crystal.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
...ts/cittofirmgenerated/textures/item/accessories/day_crystal/eternal_crystal.png
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
...sets/cittofirmgenerated/textures/item/accessories/day_crystal/night_crystal.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...ypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/devour_ring.png
Oops, something went wrong.
Binary file added
BIN
+188 Bytes
...ets/cittofirmgenerated/textures/item/accessories/draconic/draconic_artifact.png
Oops, something went wrong.
Binary file added
BIN
+220 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_ring.png
Oops, something went wrong.
Binary file added
BIN
+225 Bytes
...ets/cittofirmgenerated/textures/item/accessories/draconic/draconic_talisman.png
Oops, something went wrong.
Binary file added
BIN
+226 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dwarven_metal.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/emerald/emerald_artifact.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/emerald/emerald_ring.png
Oops, something went wrong.
Binary file added
BIN
+222 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/emperor/emperor_artifact.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_ring.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/emperor/emperor_talisman.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...lus/assets/cittofirmgenerated/textures/item/accessories/experience_artifact.png
Oops, something went wrong.
Binary file added
BIN
+270 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/farming_talisman.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/feather/feather_ring.png
Oops, something went wrong.
Binary file added
BIN
+213 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/feather/feather_talisman.png
Oops, something went wrong.
Binary file added
BIN
+251 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fire_talisman.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/fish_affinity_talisman.png
Oops, something went wrong.
Binary file added
BIN
+276 Bytes
...sets/cittofirmgenerated/textures/item/accessories/fish_bowl/large_fish_bowl.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
...ets/cittofirmgenerated/textures/item/accessories/fish_bowl/medium_fish_bowl.png
Oops, something went wrong.
Binary file added
BIN
+231 Bytes
...sets/cittofirmgenerated/textures/item/accessories/fish_bowl/small_fish_bowl.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
..._Plus/assets/cittofirmgenerated/textures/item/accessories/general_medallion.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...ttofirmgenerated/textures/item/accessories/gift_talisman/blue_gift_talisman.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...ttofirmgenerated/textures/item/accessories/gift_talisman/gold_gift_talisman.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...tofirmgenerated/textures/item/accessories/gift_talisman/green_gift_talisman.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...ofirmgenerated/textures/item/accessories/gift_talisman/purple_gift_talisman.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...tofirmgenerated/textures/item/accessories/gift_talisman/white_gift_talisman.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_ring.png
Oops, something went wrong.
Binary file added
BIN
+213 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/glacial/glacial_talisman.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/gravity_talisman.png
Oops, something went wrong.
Binary file added
BIN
+283 Bytes
...ttofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.../cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+286 Bytes
...irmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...tofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+283 Bytes
...s/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...sets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+283 Bytes
...ttofirmgenerated/textures/item/accessories/great_spook/great_spook_ring_1st.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.../cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring_1st.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+293 Bytes
...ttofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.../cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+294 Bytes
...irmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...tofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png.mcmeta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} |
Binary file added
BIN
+198 Bytes
...lus/assets/cittofirmgenerated/textures/item/accessories/handy_blood_chalice.png
Oops, something went wrong.
Binary file added
BIN
+170 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/haste/haste_artifact.png
Oops, something went wrong.
Binary file added
BIN
+204 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_ring.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/healing/healing_ring.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/healing/healing_talisman.png
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/hunter/hunter_ring.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
.../assets/cittofirmgenerated/textures/item/accessories/hunter/hunter_talisman.png
Oops, something went wrong.
Binary file added
BIN
+249 Bytes
...ofirmgenerated/textures/item/accessories/intimidation/intimidation_artifact.png
Oops, something went wrong.
Binary file added
BIN
+248 Bytes
...ittofirmgenerated/textures/item/accessories/intimidation/intimidation_relic.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...cittofirmgenerated/textures/item/accessories/intimidation/intimidation_ring.png
Oops, something went wrong.
Binary file added
BIN
+226 Bytes
...ofirmgenerated/textures/item/accessories/intimidation/intimidation_talisman.png
Oops, something went wrong.
Binary file added
BIN
+199 Bytes
...l_Plus/assets/cittofirmgenerated/textures/item/accessories/jacobus_register.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...pixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jake_plushie.png
Oops, something went wrong.
Binary file added
BIN
+220 Bytes
...sets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_blue.png
Oops, something went wrong.
Binary file added
BIN
+239 Bytes
...ts/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_golden.png
Oops, something went wrong.
Binary file added
BIN
+222 Bytes
...ets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_green.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...ts/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_purple.png
Oops, something went wrong.
Binary file added
BIN
+218 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jungle_amulet.png
Oops, something went wrong.
Binary file added
BIN
+252 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_artifact.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...xel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_ring.png
Oops, something went wrong.
Binary file added
BIN
+234 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_talisman.png
Oops, something went wrong.
Binary file added
BIN
+217 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/king_talisman.png
Oops, something went wrong.
Binary file added
BIN
+183 Bytes
...ittofirmgenerated/textures/item/accessories/kuudra_core/burning_kuudra_core.png
Oops, something went wrong.
Binary file added
BIN
+204 Bytes
.../cittofirmgenerated/textures/item/accessories/kuudra_core/fiery_kuudra_core.png
Oops, something went wrong.
Binary file added
BIN
+224 Bytes
...ttofirmgenerated/textures/item/accessories/kuudra_core/infernal_kuudra_core.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...enerated/textures/item/accessories/kuudra_follower/kuudra_follower_artifact.png
Oops, something went wrong.
Binary file added
BIN
+225 Bytes
...rmgenerated/textures/item/accessories/kuudra_follower/kuudra_follower_relic.png
Oops, something went wrong.
Binary file added
BIN
+238 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lava_talisman.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/luck_talisman.png
Oops, something went wrong.
Binary file added
BIN
+188 Bytes
...assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/eternal_hoof.png
Oops, something went wrong.
Binary file added
BIN
+184 Bytes
...s/assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/lucky_hoof.png
Oops, something went wrong.
Binary file added
BIN
+225 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_artifact.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...xel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_ring.png
Oops, something went wrong.
Binary file added
BIN
+221 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_talisman.png
Oops, something went wrong.
Binary file added
BIN
+189 Bytes
..._Plus/assets/cittofirmgenerated/textures/item/accessories/magnetic_talisman.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_1.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...tofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_10.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_2.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_3.png
Oops, something went wrong.
Binary file added
BIN
+211 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_4.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_5.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_6.png
Oops, something went wrong.
Binary file added
BIN
+196 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_7.png
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_8.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...ttofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_9.png
Oops, something went wrong.
Binary file added
BIN
+218 Bytes
...ypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/melody_hair.png
Oops, something went wrong.
Binary file added
BIN
+238 Bytes
...ixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mine_talisman.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...ittofirmgenerated/textures/item/accessories/mineral/glossy_mineral_talisman.png
Oops, something went wrong.
Binary file added
BIN
+222 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/mineral/mineral_talisman.png
Oops, something went wrong.
Binary file added
BIN
+245 Bytes
...s/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_artifact.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_ring.png
Oops, something went wrong.
Binary file added
BIN
+226 Bytes
...s/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_talisman.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...ts/cittofirmgenerated/textures/item/accessories/netherrack_looking_sunshade.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
...firmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
...nerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag_empty.png
Oops, something went wrong.
Binary file added
BIN
+252 Bytes
...enerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag_full.png
Oops, something went wrong.
Binary file added
BIN
+231 Bytes
...Plus/assets/cittofirmgenerated/textures/item/accessories/night_vision_charm.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ttofirmgenerated/textures/item/accessories/odgers_tooth/odgers_bronze_tooth.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...tofirmgenerated/textures/item/accessories/odgers_tooth/odgers_diamond_tooth.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_gold_tooth.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ttofirmgenerated/textures/item/accessories/odgers_tooth/odgers_silver_tooth.png
Oops, something went wrong.
Binary file added
BIN
+826 Bytes
...erated/textures/item/accessories/personal_compactor/personal_compactor_4000.png
Oops, something went wrong.
Binary file added
BIN
+827 Bytes
...erated/textures/item/accessories/personal_compactor/personal_compactor_5000.png
Oops, something went wrong.
Binary file added
BIN
+776 Bytes
...erated/textures/item/accessories/personal_compactor/personal_compactor_6000.png
Oops, something went wrong.
Binary file added
BIN
+801 Bytes
...erated/textures/item/accessories/personal_compactor/personal_compactor_7000.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...mgenerated/textures/item/accessories/personal_deletor/personal_deletor_4000.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
...mgenerated/textures/item/accessories/personal_deletor/personal_deletor_5000.png
Oops, something went wrong.
Binary file added
BIN
+229 Bytes
...mgenerated/textures/item/accessories/personal_deletor/personal_deletor_6000.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
...mgenerated/textures/item/accessories/personal_deletor/personal_deletor_7000.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_artifact.png
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
...ts/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_badge.png
Oops, something went wrong.
Binary file added
BIN
+207 Bytes
...ets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_ring.png
Oops, something went wrong.
Binary file added
BIN
+213 Bytes
...s/cittofirmgenerated/textures/item/accessories/piggy_bank/broken_piggy_bank.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
.../cittofirmgenerated/textures/item/accessories/piggy_bank/cracked_piggy_bank.png
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
...s/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/piggy_bank.png
Oops, something went wrong.
Binary file added
BIN
+249 Bytes
...assets/cittofirmgenerated/textures/item/accessories/pocket_espresso_machine.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
...enerated/textures/item/accessories/potion_affinity/artifact_potion_affinity.png
Oops, something went wrong.
Binary file added
BIN
+223 Bytes
...enerated/textures/item/accessories/potion_affinity/potion_affinity_talisman.png
Oops, something went wrong.
Binary file added
BIN
+238 Bytes
...irmgenerated/textures/item/accessories/potion_affinity/ring_potion_affinity.png
Oops, something went wrong.
Binary file added
BIN
+277 Bytes
...tofirmgenerated/textures/item/accessories/power/old/power_artifact_full_old.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...s/cittofirmgenerated/textures/item/accessories/power/old/power_artifact_old.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
...cittofirmgenerated/textures/item/accessories/power/old/power_relic_full_old.png
Oops, something went wrong.
Binary file added
BIN
+219 Bytes
...sets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_old.png
Oops, something went wrong.
Binary file added
BIN
+253 Bytes
.../cittofirmgenerated/textures/item/accessories/power/old/power_ring_full_old.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...ssets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_old.png
Oops, something went wrong.
Binary file added
BIN
+211 Bytes
...tofirmgenerated/textures/item/accessories/power/old/power_talisman_full_old.png
Oops, something went wrong.
Binary file added
BIN
+192 Bytes
...s/cittofirmgenerated/textures/item/accessories/power/old/power_talisman_old.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...us/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact.png
Oops, something went wrong.
Binary file added
BIN
+91 Bytes
...ets/cittofirmgenerated/textures/item/accessories/power/power_artifact_amber.png
Oops, something went wrong.
Binary file added
BIN
+93 Bytes
.../cittofirmgenerated/textures/item/accessories/power/power_artifact_amethyst.png
Oops, something went wrong.
Binary file added
BIN
+93 Bytes
...sets/cittofirmgenerated/textures/item/accessories/power/power_artifact_jade.png
Oops, something went wrong.
Binary file added
BIN
+92 Bytes
...ts/cittofirmgenerated/textures/item/accessories/power/power_artifact_jasper.png
Oops, something went wrong.
Binary file added
BIN
+91 Bytes
...sets/cittofirmgenerated/textures/item/accessories/power/power_artifact_ruby.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.