From b8c49209708c4e49210821b3061884b11aa8cec9 Mon Sep 17 00:00:00 2001 From: MartinNemi03 Date: Fri, 5 Sep 2025 19:14:31 +0200 Subject: [PATCH 01/55] Add gtihub pipeline --- .github/workflows/website.yml | 79 +++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .github/workflows/website.yml diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml new file mode 100644 index 000000000..592fbc063 --- /dev/null +++ b/.github/workflows/website.yml @@ -0,0 +1,79 @@ +name: Website + +on: + push: + paths: ["src/**", "Dockerfile", ".github/workflows/website.yml"] + workflow_dispatch: + +env: + CONTAINER_REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + 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.24' + + - name: Install packages + run: go mod download + + - name: Build + run: go build -v ./... + + package: + name: Package into Container + runs-on: ubuntu-latest + needs: [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 }} From e6280253a048c7d62581bfa8f87c700be0b8c9a2 Mon Sep 17 00:00:00 2001 From: Ty Chermsirivatana Date: Fri, 5 Sep 2025 20:36:16 -0400 Subject: [PATCH 02/55] feat(dev): added conn pool with sync.RWMutex Added synchronization for Redis client initialization and access. --- src/db/redis.go | 227 ++++++++++++++++++++++++++++++------------------ 1 file changed, 142 insertions(+), 85 deletions(-) diff --git a/src/db/redis.go b/src/db/redis.go index 9e7d0757f..ba8455ced 100644 --- a/src/db/redis.go +++ b/src/db/redis.go @@ -1,11 +1,12 @@ package redis import ( - "context" - "fmt" - "time" + "context" + "fmt" + "sync" + "time" - "github.com/go-redis/redis/v8" + "github.com/go-redis/redis/v8" ) var ctx = context.Background() @@ -13,105 +14,161 @@ var redisClient *redis.Client var redisAddr string var redisPassword string var redisDB int +var clientMutex sync.RWMutex type RedisClient struct { - client *redis.Client + client *redis.Client } func InitRedis(addr string, password string, db int) error { - redisAddr = addr - redisPassword = password - redisDB = db - - // Don't use sync.Once with prefork mode - each process needs its own connection - redisClient = redis.NewClient(&redis.Options{ - Addr: addr, - Password: password, - DB: db, - }) - - _, err := redisClient.Ping(ctx).Result() - if err != nil { - return fmt.Errorf("could not connect to Redis: %v", err) - } - - // fmt.Print("Redis connected successfully\n") - return nil + clientMutex.Lock() + defer clientMutex.Unlock() + + redisAddr = addr + redisPassword = password + redisDB = db + + // Don't use sync.Once with prefork mode - each process needs its own connection + redisClient = redis.NewClient(&redis.Options{ + Addr: addr, + Password: password, + DB: db, + PoolSize: 10, + MinIdleConns: 5, + MaxRetries: 3, + RetryDelay: time.Millisecond * 100, + PoolTimeout: time.Second * 4, + IdleTimeout: time.Minute * 5, + ConnMaxLifetime: time.Hour, + DialTimeout: time.Second * 5, + ReadTimeout: time.Second * 3, + WriteTimeout: time.Second * 3, + PoolFIFO: false, + }) + + ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) + defer cancel() + + _, err := redisClient.Ping(ctxTimeout).Result() + if err != nil { + redisClient.Close() + redisClient = nil + return fmt.Errorf("could not connect to Redis: %v", err) + } + + fmt.Print("Redis connected successfully\n") + return nil } func (r *RedisClient) Set(key string, value interface{}, expirationSeconds int) error { - expiration := time.Duration(expirationSeconds) * time.Second - err := r.client.Set(ctx, key, value, expiration).Err() - if err != nil { - return fmt.Errorf("could not set value in Redis: %v", err) - } - return nil + expiration := time.Duration(expirationSeconds) * time.Second + err := r.client.Set(ctx, key, value, expiration).Err() + if err != nil { + return fmt.Errorf("could not set value in Redis: %v", err) + } + return nil } func Get(key string) (string, error) { - if redisClient == nil { - if redisAddr != "" { - err := InitRedis(redisAddr, redisPassword, redisDB) - if err != nil { - return "", fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) - } - } else { - return "", fmt.Errorf("redis client not initialized. Call InitRedis() first") - } - } - - val, err := redisClient.Get(ctx, key).Result() - if err != nil { - if err == redis.Nil { - return "", nil - } - return "", fmt.Errorf("could not get value from Redis: %v", err) - } - return val, nil + clientMutex.RLock() + client := redisClient + clientMutex.RUnlock() + + if client == nil { + clientMutex.Lock() + if redisClient == nil { + if redisAddr != "" { + err := InitRedis(redisAddr, redisPassword, redisDB) + if err != nil { + clientMutex.Unlock() + return "", fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) + } + } else { + clientMutex.Unlock() + return "", fmt.Errorf("redis client not initialized. Call InitRedis() first") + } + } + client = redisClient + clientMutex.Unlock() + } + + val, err := client.Get(ctx, key).Result() + if err != nil { + if err == redis.Nil { + return "", nil + } + return "", fmt.Errorf("could not get value from Redis: %v", err) + } + return val, nil } func NewRedisClient(addr string, password string, db int) *RedisClient { - rdb := redis.NewClient(&redis.Options{ - Addr: addr, - Password: password, - DB: db, - }) - - _, err := rdb.Ping(ctx).Result() - if err != nil { - panic(fmt.Errorf("could not connect to Redis: %v", err)) - } - - return &RedisClient{client: rdb} + rdb := redis.NewClient(&redis.Options{ + Addr: addr, + Password: password, + DB: db, + PoolSize: 10, + MinIdleConns: 5, + MaxRetries: 3, + RetryDelay: time.Millisecond * 100, + PoolTimeout: time.Second * 4, + IdleTimeout: time.Minute * 5, + ConnMaxLifetime: time.Hour, + DialTimeout: time.Second * 5, + ReadTimeout: time.Second * 3, + WriteTimeout: time.Second * 3, + PoolFIFO: false, + }) + + ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) + defer cancel() + + _, err := rdb.Ping(ctxTimeout).Result() + if err != nil { + panic(fmt.Errorf("could not connect to Redis: %v", err)) + } + + return &RedisClient{client: rdb} } func Set(key string, value interface{}, expirationSeconds int) error { - if redisClient == nil { - if redisAddr != "" { - err := InitRedis(redisAddr, redisPassword, redisDB) - if err != nil { - return fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) - } - } else { - return fmt.Errorf("redis client not initialized. Call InitRedis() first") - } - } - - expiration := time.Duration(expirationSeconds) * time.Second - err := redisClient.Set(ctx, key, value, expiration).Err() - if err != nil { - return fmt.Errorf("could not set value in Redis: %v", err) - } - return nil + clientMutex.RLock() + client := redisClient + clientMutex.RUnlock() + + if client == nil { + clientMutex.Lock() + if redisClient == nil { + if redisAddr != "" { + err := InitRedis(redisAddr, redisPassword, redisDB) + if err != nil { + clientMutex.Unlock() + return fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) + } + } else { + clientMutex.Unlock() + return fmt.Errorf("redis client not initialized. Call InitRedis() first") + } + } + client = redisClient + clientMutex.Unlock() + } + + expiration := time.Duration(expirationSeconds) * time.Second + err := client.Set(ctx, key, value, expiration).Err() + if err != nil { + return fmt.Errorf("could not set value in Redis: %v", err) + } + return nil } func (r *RedisClient) Get(key string) (string, error) { - val, err := r.client.Get(ctx, key).Result() - if err != nil { - if err == redis.Nil { - return "", nil - } - return "", fmt.Errorf("could not get value from Redis: %v", err) - } - return val, nil + val, err := r.client.Get(ctx, key).Result() + if err != nil { + if err == redis.Nil { + return "", nil + } + return "", fmt.Errorf("could not get value from Redis: %v", err) + } + return val, nil } From 43d32c73d1378b480c819a8e3be8de1e63b6e643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20N=C4=9Bme=C4=8Dek?= Date: Thu, 11 Sep 2025 21:44:25 +0200 Subject: [PATCH 03/55] exp: try disabling prefork mode --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f2206f1c0..809be41f3 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( func main() { app := fiber.New(fiber.Config{ - Prefork: true, // Fork processes for max CPU utilization + Prefork: false, // Fork processes for max CPU utilization ServerHeader: "", // Remove server header for slight perf gain DisableKeepalive: false, // Keep connections alive DisableDefaultDate: true, // Disable date header From a409e9a9fb53769cd695dd656f7d69773cc7f0c2 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 15 Sep 2025 13:54:58 +0200 Subject: [PATCH 04/55] refactor: small changes, wiki links & resource pack links --- NotEnoughUpdates-REPO | 2 +- main.go | 2 +- src/NotEnoughUpdates/constants.go | 2 ++ src/constants/accessories.go | 2 +- src/models/items.go | 29 +++++++++++++++++++---------- src/routes.go | 16 ++++++++-------- src/routes/networth.go | 12 ++++++++---- src/stats/items/processing.go | 28 ++++++++++++++++++++++++++++ src/stats/items/stripping.go | 8 ++++++++ 9 files changed, 76 insertions(+), 25 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 62e9b85da..974b327ed 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 62e9b85dad69a99c2ffef31cef9f795d80f24c6e +Subproject commit 974b327ed9d0680be67ab2cce1df498e40cf7179 diff --git a/main.go b/main.go index 809be41f3..f2206f1c0 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( func main() { app := fiber.New(fiber.Config{ - Prefork: false, // Fork processes for max CPU utilization + Prefork: true, // Fork processes for max CPU utilization ServerHeader: "", // Remove server header for slight perf gain DisableKeepalive: false, // Keep connections alive DisableDefaultDate: true, // Disable date header diff --git a/src/NotEnoughUpdates/constants.go b/src/NotEnoughUpdates/constants.go index 3eab67ff8..deb4f88d5 100644 --- a/src/NotEnoughUpdates/constants.go +++ b/src/NotEnoughUpdates/constants.go @@ -17,9 +17,11 @@ func GetItem(name string) (models.NEUItem, error) { } itemsPath := "NotEnoughUpdates-REPO/items" + /* if _, err := os.Stat(itemsPath); os.IsNotExist(err) { return models.NEUItem{}, fmt.Errorf("items directory does not exist: %w", err) } + */ itemPath := fmt.Sprintf("%s/%s.json", itemsPath, name) data, err := os.ReadFile(itemPath) diff --git a/src/constants/accessories.go b/src/constants/accessories.go index 2f61a1815..399a948d6 100644 --- a/src/constants/accessories.go +++ b/src/constants/accessories.go @@ -271,7 +271,7 @@ func GetAllAccessories() []Accessory { Name: item.Name, } output = append(output, specialAccessoryItem) - fmt.Printf("[ACCESSORIES] Added special accessory %s with rarity %s\n", specialAccessoryItem.SkyBlockID, specialAccessoryItem.Rarity) + // fmt.Printf("[ACCESSORIES] Added special accessory %s with rarity %s\n", specialAccessoryItem.SkyBlockID, specialAccessoryItem.Rarity) } } } diff --git a/src/models/items.go b/src/models/items.go index 19883e270..9aa17a7cc 100644 --- a/src/models/items.go +++ b/src/models/items.go @@ -96,6 +96,7 @@ type DecodedInventory struct { type ProcessedItem struct { Item Texture string `json:"texture_path,omitempty"` + TexturePack string `json:"texture_pack,omitempty"` DisplayName string `json:"display_name,omitempty"` Lore []string `json:"lore,omitempty"` Rarity string `json:"rarity,omitempty"` @@ -106,6 +107,12 @@ type ProcessedItem struct { Id string `json:"id,omitempty"` IsInactive *bool `json:"isInactive,omitempty"` Shiny bool `json:"shiny,omitempty"` + Wiki *WikipediaLinks `json:"wiki,omitempty"` +} + +type WikipediaLinks struct { + Official string `json:"official,omitempty"` + Fandom string `json:"fandom,omitempty"` } type SkillToolsResult struct { @@ -126,14 +133,16 @@ type EquipmentResult struct { } type StrippedItem struct { - DisplayName string `json:"display_name,omitempty"` - Lore []string `json:"lore,omitempty"` - Rarity string `json:"rarity,omitempty"` - Recombobulated bool `json:"recombobulated,omitempty"` - ContainsItems []StrippedItem `json:"containsItems,omitempty"` - Source string `json:"source,omitempty"` - Texture string `json:"texture_path,omitempty"` - IsInactive *bool `json:"isInactive,omitempty"` - Count *int `json:"Count,omitempty"` - Shiny bool `json:"shiny,omitempty"` + DisplayName string `json:"display_name,omitempty"` + Lore []string `json:"lore,omitempty"` + Rarity string `json:"rarity,omitempty"` + Recombobulated bool `json:"recombobulated,omitempty"` + ContainsItems []StrippedItem `json:"containsItems,omitempty"` + Source string `json:"source,omitempty"` + Texture string `json:"texture_path,omitempty"` + IsInactive *bool `json:"isInactive,omitempty"` + Count *int `json:"Count,omitempty"` + Shiny bool `json:"shiny,omitempty"` + Wiki *WikipediaLinks `json:"wiki,omitempty"` + TexturePack string `json:"texture_pack,omitempty"` } diff --git a/src/routes.go b/src/routes.go index ff1419dfc..d3d2d59dd 100644 --- a/src/routes.go +++ b/src/routes.go @@ -8,12 +8,9 @@ import ( "skycrypt/src/api" redis "skycrypt/src/db" "skycrypt/src/routes" - "time" "github.com/gofiber/fiber/v2" - "github.com/gofiber/fiber/v2/middleware/cache" "github.com/gofiber/fiber/v2/middleware/compress" - "github.com/gofiber/fiber/v2/middleware/etag" "github.com/joho/godotenv" ) @@ -78,11 +75,14 @@ func SetupRoutes(app *fiber.App) { if os.Getenv("DEV") != "true" { fmt.Println("[ENVIROMENT] Running in production mode") - app.Use(etag.New()) - app.Use("/api", cache.New(cache.Config{ - Expiration: 5 * time.Minute, - CacheControl: true, - })) + + /* + app.Use(etag.New()) + app.Use("/api", cache.New(cache.Config{ + Expiration: 5 * time.Minute, + CacheControl: true, + }) + */ } api := app.Group("/api") diff --git a/src/routes/networth.go b/src/routes/networth.go index 91a414a55..a1830ad7b 100644 --- a/src/routes/networth.go +++ b/src/routes/networth.go @@ -1,11 +1,17 @@ package routes import ( + "fmt" + "skycrypt/src/api" + "skycrypt/src/stats" + "time" + + skyhelpernetworthgo "github.com/DuckySoLucky/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" ) func NetworthHandler(c *fiber.Ctx) error { - /*timeNow := time.Now() + timeNow := time.Now() uuid := c.Params("uuid") profileId := c.Params("profileId") @@ -67,8 +73,6 @@ func NetworthHandler(c *fiber.Ctx) error { "normal": networth, "nonCosmetic": nonCosmeticNetworth, }, - })*/ - return c.JSON(fiber.Map{ - "networth": nil, }) + } diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index bd79c0012..a64a9fa36 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -2,11 +2,13 @@ package stats import ( "fmt" + notenoughupdates "skycrypt/src/NotEnoughUpdates" "skycrypt/src/constants" "skycrypt/src/lib" "skycrypt/src/models" "skycrypt/src/utility" "slices" + "strings" ) func ProcessItems(items *[]models.Item, source string) []models.ProcessedItem { @@ -129,6 +131,10 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { } processedItem.Texture = lib.ApplyTexture(TextureItem) + if strings.HasPrefix(processedItem.Texture, "http://localhost:8080/assets/resourcepacks/FurfSky/") { + processedItem.TexturePack = "FURFSKY_REBORN" + } + if processedItem.Texture == "" { fmt.Printf("[CUSTOM_RESOURCES] Found no textures for item: %s\n", item.Tag.ExtraAttributes.ID) } @@ -138,6 +144,28 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { processedItem.ContainsItems = ProcessItems(&item.ContainsItems, source) } + if item.Tag.ExtraAttributes.ID != "" { + NEUItem, err := notenoughupdates.GetItem(item.Tag.ExtraAttributes.ID) + if err == nil && len(NEUItem.Wiki) > 0 { + processedItem.Wiki = &models.WikipediaLinks{} + if len(NEUItem.Wiki) == 1 { + if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { + processedItem.Wiki.Official = NEUItem.Wiki[0] + } else { + processedItem.Wiki.Fandom = NEUItem.Wiki[0] + } + } else { + if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { + processedItem.Wiki.Official = NEUItem.Wiki[0] + processedItem.Wiki.Fandom = NEUItem.Wiki[1] + } else { + processedItem.Wiki.Fandom = NEUItem.Wiki[0] + processedItem.Wiki.Official = NEUItem.Wiki[1] + } + } + } + } + // TODO: add cake bag & legacy backpack support return processedItem diff --git a/src/stats/items/stripping.go b/src/stats/items/stripping.go index 2ebb586f1..311958add 100644 --- a/src/stats/items/stripping.go +++ b/src/stats/items/stripping.go @@ -44,6 +44,14 @@ func StripItem(item *models.ProcessedItem, search ...bool) *models.StrippedItem output.Count = item.Count } + if item.Wiki != nil { + output.Wiki = item.Wiki + } + + if item.TexturePack != "" { + output.TexturePack = item.TexturePack + } + return output } From a45798f1dc52eb8e517acbfa5df117f158daaa37 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 15 Sep 2025 14:04:45 +0200 Subject: [PATCH 05/55] fix: warp's sill issue --- NotEnoughUpdates-REPO | 2 +- src/db/redis.go | 282 +++++++++++++++++++++--------------------- 2 files changed, 142 insertions(+), 142 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 62e9b85da..974b327ed 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 62e9b85dad69a99c2ffef31cef9f795d80f24c6e +Subproject commit 974b327ed9d0680be67ab2cce1df498e40cf7179 diff --git a/src/db/redis.go b/src/db/redis.go index ba8455ced..bab72aa9c 100644 --- a/src/db/redis.go +++ b/src/db/redis.go @@ -1,12 +1,13 @@ package redis import ( - "context" - "fmt" - "sync" - "time" + "context" + "fmt" + "os" + "sync" + "time" - "github.com/go-redis/redis/v8" + "github.com/go-redis/redis/v8" ) var ctx = context.Background() @@ -17,158 +18,157 @@ var redisDB int var clientMutex sync.RWMutex type RedisClient struct { - client *redis.Client + client *redis.Client } func InitRedis(addr string, password string, db int) error { - clientMutex.Lock() - defer clientMutex.Unlock() - - redisAddr = addr - redisPassword = password - redisDB = db - - // Don't use sync.Once with prefork mode - each process needs its own connection - redisClient = redis.NewClient(&redis.Options{ - Addr: addr, - Password: password, - DB: db, - PoolSize: 10, - MinIdleConns: 5, - MaxRetries: 3, - RetryDelay: time.Millisecond * 100, - PoolTimeout: time.Second * 4, - IdleTimeout: time.Minute * 5, - ConnMaxLifetime: time.Hour, - DialTimeout: time.Second * 5, - ReadTimeout: time.Second * 3, - WriteTimeout: time.Second * 3, - PoolFIFO: false, - }) - - ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) - defer cancel() - - _, err := redisClient.Ping(ctxTimeout).Result() - if err != nil { - redisClient.Close() - redisClient = nil - return fmt.Errorf("could not connect to Redis: %v", err) - } - - fmt.Print("Redis connected successfully\n") - return nil + clientMutex.Lock() + defer clientMutex.Unlock() + + redisAddr = addr + redisPassword = password + redisDB = db + + // Don't use sync.Once with prefork mode - each process needs its own connection + redisClient = redis.NewClient(&redis.Options{ + Addr: addr, + Password: password, + DB: db, + PoolSize: 10, + MinIdleConns: 5, + MaxRetries: 3, + PoolTimeout: time.Second * 4, + IdleTimeout: time.Minute * 5, + DialTimeout: time.Second * 5, + ReadTimeout: time.Second * 3, + WriteTimeout: time.Second * 3, + PoolFIFO: false, + }) + + ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) + defer cancel() + + _, err := redisClient.Ping(ctxTimeout).Result() + if err != nil { + redisClient.Close() + redisClient = nil + return fmt.Errorf("could not connect to Redis: %v", err) + } + + if os.Getenv("FIBER_PREFORK_CHILD") == "" { + fmt.Print("Redis connected successfully\n") + } + + return nil } func (r *RedisClient) Set(key string, value interface{}, expirationSeconds int) error { - expiration := time.Duration(expirationSeconds) * time.Second - err := r.client.Set(ctx, key, value, expiration).Err() - if err != nil { - return fmt.Errorf("could not set value in Redis: %v", err) - } - return nil + expiration := time.Duration(expirationSeconds) * time.Second + err := r.client.Set(ctx, key, value, expiration).Err() + if err != nil { + return fmt.Errorf("could not set value in Redis: %v", err) + } + return nil } func Get(key string) (string, error) { - clientMutex.RLock() - client := redisClient - clientMutex.RUnlock() - - if client == nil { - clientMutex.Lock() - if redisClient == nil { - if redisAddr != "" { - err := InitRedis(redisAddr, redisPassword, redisDB) - if err != nil { - clientMutex.Unlock() - return "", fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) - } - } else { - clientMutex.Unlock() - return "", fmt.Errorf("redis client not initialized. Call InitRedis() first") - } - } - client = redisClient - clientMutex.Unlock() - } - - val, err := client.Get(ctx, key).Result() - if err != nil { - if err == redis.Nil { - return "", nil - } - return "", fmt.Errorf("could not get value from Redis: %v", err) - } - return val, nil + clientMutex.RLock() + client := redisClient + clientMutex.RUnlock() + + if client == nil { + clientMutex.Lock() + if redisClient == nil { + if redisAddr != "" { + err := InitRedis(redisAddr, redisPassword, redisDB) + if err != nil { + clientMutex.Unlock() + return "", fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) + } + } else { + clientMutex.Unlock() + return "", fmt.Errorf("redis client not initialized. Call InitRedis() first") + } + } + client = redisClient + clientMutex.Unlock() + } + + val, err := client.Get(ctx, key).Result() + if err != nil { + if err == redis.Nil { + return "", nil + } + return "", fmt.Errorf("could not get value from Redis: %v", err) + } + return val, nil } func NewRedisClient(addr string, password string, db int) *RedisClient { - rdb := redis.NewClient(&redis.Options{ - Addr: addr, - Password: password, - DB: db, - PoolSize: 10, - MinIdleConns: 5, - MaxRetries: 3, - RetryDelay: time.Millisecond * 100, - PoolTimeout: time.Second * 4, - IdleTimeout: time.Minute * 5, - ConnMaxLifetime: time.Hour, - DialTimeout: time.Second * 5, - ReadTimeout: time.Second * 3, - WriteTimeout: time.Second * 3, - PoolFIFO: false, - }) - - ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) - defer cancel() - - _, err := rdb.Ping(ctxTimeout).Result() - if err != nil { - panic(fmt.Errorf("could not connect to Redis: %v", err)) - } - - return &RedisClient{client: rdb} + rdb := redis.NewClient(&redis.Options{ + Addr: addr, + Password: password, + DB: db, + PoolSize: 10, + MinIdleConns: 5, + MaxRetries: 3, + PoolTimeout: time.Second * 4, + IdleTimeout: time.Minute * 5, + DialTimeout: time.Second * 5, + ReadTimeout: time.Second * 3, + WriteTimeout: time.Second * 3, + PoolFIFO: false, + }) + + ctxTimeout, cancel := context.WithTimeout(ctx, time.Second*5) + defer cancel() + + _, err := rdb.Ping(ctxTimeout).Result() + if err != nil { + panic(fmt.Errorf("could not connect to Redis: %v", err)) + } + + return &RedisClient{client: rdb} } func Set(key string, value interface{}, expirationSeconds int) error { - clientMutex.RLock() - client := redisClient - clientMutex.RUnlock() - - if client == nil { - clientMutex.Lock() - if redisClient == nil { - if redisAddr != "" { - err := InitRedis(redisAddr, redisPassword, redisDB) - if err != nil { - clientMutex.Unlock() - return fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) - } - } else { - clientMutex.Unlock() - return fmt.Errorf("redis client not initialized. Call InitRedis() first") - } - } - client = redisClient - clientMutex.Unlock() - } - - expiration := time.Duration(expirationSeconds) * time.Second - err := client.Set(ctx, key, value, expiration).Err() - if err != nil { - return fmt.Errorf("could not set value in Redis: %v", err) - } - return nil + clientMutex.RLock() + client := redisClient + clientMutex.RUnlock() + + if client == nil { + clientMutex.Lock() + if redisClient == nil { + if redisAddr != "" { + err := InitRedis(redisAddr, redisPassword, redisDB) + if err != nil { + clientMutex.Unlock() + return fmt.Errorf("redis client not initialized and re-initialization failed: %v", err) + } + } else { + clientMutex.Unlock() + return fmt.Errorf("redis client not initialized. Call InitRedis() first") + } + } + client = redisClient + clientMutex.Unlock() + } + + expiration := time.Duration(expirationSeconds) * time.Second + err := client.Set(ctx, key, value, expiration).Err() + if err != nil { + return fmt.Errorf("could not set value in Redis: %v", err) + } + return nil } func (r *RedisClient) Get(key string) (string, error) { - val, err := r.client.Get(ctx, key).Result() - if err != nil { - if err == redis.Nil { - return "", nil - } - return "", fmt.Errorf("could not get value from Redis: %v", err) - } - return val, nil + val, err := r.client.Get(ctx, key).Result() + if err != nil { + if err == redis.Nil { + return "", nil + } + return "", fmt.Errorf("could not get value from Redis: %v", err) + } + return val, nil } From 4b1877966556654e2808f91fba376b11af64ea16 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 16 Sep 2025 23:34:10 +0200 Subject: [PATCH 06/55] refactor: small changes to the nw calc and types --- NotEnoughUpdates-REPO | 2 +- go.mod | 21 +- go.sum | 74 ++-- src/NotEnoughUpdates/NBTParser.go | 15 +- src/api/hypixel.go | 17 +- src/lib/renderer.go | 4 +- src/models/custom_resources.go | 20 +- src/models/garden.go | 21 +- src/models/items.go | 93 +---- src/models/museum.go | 25 +- src/models/notenoughupdates.go | 20 +- src/models/player.go | 50 +-- src/models/profiles.go | 591 +----------------------------- src/routes.go | 16 +- src/routes/accessories.go | 4 +- src/routes/gear.go | 3 +- src/routes/inventory.go | 3 +- src/routes/networth.go | 11 +- src/routes/rift.go | 3 +- src/routes/skills.go | 3 +- src/stats/accessories.go | 6 +- src/stats/api_settings.go | 8 +- src/stats/bestiary.go | 8 +- src/stats/collections.go | 6 +- src/stats/crimson_isle.go | 10 +- src/stats/discord_embed.go | 6 +- src/stats/dungeons.go | 22 +- src/stats/enchanting.go | 8 +- src/stats/farming.go | 6 +- src/stats/fishing.go | 8 +- src/stats/garden.go | 14 +- src/stats/items.go | 24 +- src/stats/items/helper.go | 10 +- src/stats/items/museum.go | 26 +- src/stats/items/processing.go | 176 +++++---- src/stats/leveling/leveling.go | 6 +- src/stats/mining.go | 22 +- src/stats/minions.go | 8 +- src/stats/misc.go | 31 +- src/stats/missing.go | 6 +- src/stats/other.go | 10 +- src/stats/pets.go | 16 +- src/stats/rank.go | 4 +- src/stats/rift.go | 14 +- src/stats/skills.go | 4 +- src/stats/skyblock_level.go | 4 +- src/stats/slayer.go | 10 +- src/stats/stats.go | 41 ++- 48 files changed, 434 insertions(+), 1076 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 974b327ed..ffecddf65 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 974b327ed9d0680be67ab2cce1df498e40cf7179 +Subproject commit ffecddf654a8dd45a75500a44255801a0d1f4e68 diff --git a/go.mod b/go.mod index 97afd6ec3..6fe046873 100644 --- a/go.mod +++ b/go.mod @@ -1,41 +1,37 @@ module skycrypt -go 1.24.6 +go 1.25.1 -require github.com/gofiber/fiber/v2 v2.52.8 +require ( + github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 + github.com/go-git/go-git/v5 v5.16.2 + github.com/gofiber/fiber/v2 v2.52.8 + github.com/joho/godotenv v1.5.1 +) require ( dario.cat/mergo v1.0.0 // indirect - github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.8 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect github.com/ProtonMail/go-crypto v1.1.6 // indirect github.com/cespare/xxhash/v2 v2.1.2 // indirect github.com/cloudflare/circl v1.6.1 // indirect github.com/cyphar/filepath-securejoin v0.4.1 // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect - github.com/ebitengine/gomobile v0.0.0-20240911145611-4856209ac325 // indirect - github.com/ebitengine/hideconsole v1.0.0 // indirect - github.com/ebitengine/purego v0.8.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.6.2 // indirect - github.com/go-git/go-git/v5 v5.16.2 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect - github.com/jezek/xgb v1.1.1 // indirect - github.com/joho/godotenv v1.5.1 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect github.com/pjbgf/sha1cd v0.3.2 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/skeema/knownhosts v1.3.1 // indirect - github.com/tinylib/msgp v1.2.5 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect golang.org/x/crypto v0.37.0 // indirect golang.org/x/net v0.39.0 // indirect - golang.org/x/sync v0.16.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect ) @@ -44,7 +40,6 @@ require ( github.com/andybalholm/brotli v1.1.0 // indirect github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.6.0 // indirect - github.com/hajimehoshi/ebiten/v2 v2.8.8 github.com/json-iterator/go v1.1.12 github.com/kettek/apng v0.0.0-20220823221153-ff692776a607 github.com/klauspost/compress v1.17.9 // indirect diff --git a/go.sum b/go.sum index 9e629f2fa..bfa9d06f8 100644 --- a/go.sum +++ b/go.sum @@ -1,22 +1,24 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.1 h1:8nc7oFO7fsfH88PRmf5RoSiMQQ3gZBL5QzvYS/3+BkQ= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.1/go.mod h1:cyAFoRKoX8kppvD0VnqgnzRI9gd5XTyaf1Yds1I9bIM= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.2 h1:5/arJQXiwLKcCTUU6v/am4u2UXGP+zrdrnjCfOWyq+U= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.2/go.mod h1:cyAFoRKoX8kppvD0VnqgnzRI9gd5XTyaf1Yds1I9bIM= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.5 h1:uQFgYL6qUpPKfYPjafPuNl3m1pFjmQka6hzxXBJhCQY= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.5/go.mod h1:cyAFoRKoX8kppvD0VnqgnzRI9gd5XTyaf1Yds1I9bIM= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.8 h1:kYXr6XWcTcxXkErGnGCUu80+04tdmP6dG13I4ehV/vc= -github.com/DuckySoLucky/SkyHelper-Networth-Go v1.0.8/go.mod h1:cyAFoRKoX8kppvD0VnqgnzRI9gd5XTyaf1Yds1I9bIM= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.3 h1:cCuLooqGJ7eN+Te4XP80M8on8fm8NEyZ2RPBOijweqY= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.3/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 h1:DKT6w8JRmrqLTUswfP+e+894Tz6e1P0VTWsU2FTEELM= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.4/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 h1:PIWPYiBc4lyZl6CfM3lBPmtUc68u09ClPqnnjm1OSIw= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0/go.mod h1:EJS4Lny3qbaN1wRJ7Q816LsXASdf6YmFba4BT4eo6rU= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY= +github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= +github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ0= @@ -24,23 +26,24 @@ github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZ github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s= github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= -github.com/duckysolucky/skyhelper-networth-go v1.0.0 h1:j91iff59zqP7bpbi5l+hSlEuMn6Cyw4kOQlULVAz9TU= -github.com/duckysolucky/skyhelper-networth-go v1.0.0/go.mod h1:3slQHY/oObt/1QJGUNxH15pINgrm28djFIMvKjiaFus= -github.com/ebitengine/gomobile v0.0.0-20240911145611-4856209ac325 h1:Gk1XUEttOk0/hb6Tq3WkmutWa0ZLhNn/6fc6XZpM7tM= -github.com/ebitengine/gomobile v0.0.0-20240911145611-4856209ac325/go.mod h1:ulhSQcbPioQrallSuIzF8l1NKQoD7xmMZc5NxzibUMY= -github.com/ebitengine/hideconsole v1.0.0 h1:5J4U0kXF+pv/DhiXt5/lTz0eO5ogJ1iXb8Yj1yReDqE= -github.com/ebitengine/hideconsole v1.0.0/go.mod h1:hTTBTvVYWKBuxPr7peweneWdkUwEuHuB3C1R/ielR1A= -github.com/ebitengine/purego v0.8.0 h1:JbqvnEzRvPpxhCJzJJ2y0RbiZ8nyjccVUrSM3q+GvvE= -github.com/ebitengine/purego v0.8.0/go.mod h1:iIjxzd6CiRiOG0UyXP+V1+jWqUXVjPKLAI0mRfJZTmQ= +github.com/elazarl/goproxy v1.7.2 h1:Y2o6urb7Eule09PjlhQRGNsqRfPmYI3KKQLFpCAV3+o= +github.com/elazarl/goproxy v1.7.2/go.mod h1:82vkLNir0ALaW14Rc399OTTjyNREgmdL2cVoIbS6XaE= github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= +github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= +github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/gliderlabs/ssh v0.3.8 h1:a4YXD1V7xMF9g5nTkdfnja3Sxy1PVDCj1Zg4Wb8vY6c= +github.com/gliderlabs/ssh v0.3.8/go.mod h1:xYoytBv1sV0aL3CavoDuJIQNURXkkfPA/wxQ1pL1fAU= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= github.com/go-git/go-billy/v5 v5.6.2 h1:6Q86EsPXMa7c3YZ3aLAQsMA0VlWmy43r6FHqa/UNbRM= github.com/go-git/go-billy/v5 v5.6.2/go.mod h1:rcFC2rAsp/erv7CMz9GczHcuD0D32fWzH+MJAU+jaUU= +github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= +github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= github.com/go-git/go-git/v5 v5.16.2 h1:fT6ZIOjE5iEnkzKyxTHK1W4HGAsPhqEqiSAssSO77hM= github.com/go-git/go-git/v5 v5.16.2/go.mod h1:4Ge4alE/5gPs30F2H1esi2gPd69R0C39lolkucHBOp8= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= @@ -49,15 +52,13 @@ github.com/gofiber/fiber/v2 v2.52.8 h1:xl4jJQ0BV5EJTA2aWiKw/VddRpHrKeZLF0QPUxqn0 github.com/gofiber/fiber/v2 v2.52.8/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 h1:f+oWsMOmNPc8JmEHVZIycC7hBoQxHH9pNKQORJNozsQ= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8/go.mod h1:wcDNUvekVysuuOpQKo3191zZyTpiI6se1N1ULghS0sw= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/hajimehoshi/ebiten/v2 v2.8.8 h1:xyMxOAn52T1tQ+j3vdieZ7auDBOXmvjUprSrxaIbsi8= -github.com/hajimehoshi/ebiten/v2 v2.8.8/go.mod h1:durJ05+OYnio9b8q0sEtOgaNeBEQG7Yr7lRviAciYbs= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= -github.com/jezek/xgb v1.1.1 h1:bE/r8ZZtSv7l9gk6nU0mYx51aXrvnyb44892TwSaqS4= -github.com/jezek/xgb v1.1.1/go.mod h1:nrhwO0FX/enq75I7Y7G8iN1ubpSGZEiA3v9e9GyRFlk= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= @@ -69,8 +70,12 @@ github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= @@ -82,14 +87,22 @@ github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OH github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c h1:dAMKvw0MlJT1GshSTtih8C2gDs04w8dReiOGXrGLNoY= -github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c/go.mod h1:RqIHx9QI14HlwKwm98g9Re5prTQ6LdeRQn+gXJFxsJM= +github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= +github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= +github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= +github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= +github.com/onsi/gomega v1.34.1 h1:EUMJIKUjM8sKjYbtxQI9A4z2o+rruxnzNvpknOXie6k= +github.com/onsi/gomega v1.34.1/go.mod h1:kU1QgUvBDLXBJq618Xvm2LUX6rSAfRaFRTcdOeDLwwY= github.com/pjbgf/sha1cd v0.3.2 h1:a9wb0bp1oC2TGwStyn0Umc/IGKQnEgF0vVaZ8QF8eo4= github.com/pjbgf/sha1cd v0.3.2/go.mod h1:zQWigSxVmsHEZow5qaLtPYxpcKMMQpa09ixqBxuCS6A= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ= +github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= @@ -99,8 +112,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/tinylib/msgp v1.2.5 h1:WeQg1whrXRFiZusidTQqzETkRpGjFjcIhW6uqWH09po= -github.com/tinylib/msgp v1.2.5/go.mod h1:ykjzy2wzgrlvpDCRc4LA8UXy6D8bzMSuAF3WD57Gok0= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasthttp v1.51.0 h1:8b30A5JlZ6C7AS81RsWjYMQmrZG6feChmgAolCl1SqA= @@ -117,10 +130,6 @@ golang.org/x/exp v0.0.0-20250718183923-645b1fa84792/go.mod h1:A+z0yzpGtvnG90cToK golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY= golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E= -golang.org/x/sync v0.15.0 h1:KWH3jNZsfyT6xfAfKiz6MRNmd46ByHDYaZ7KSkCtdW8= -golang.org/x/sync v0.15.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= -golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= -golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -129,19 +138,24 @@ golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= -golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20= golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.31.0 h1:erwDkOK1Msy6offm1mOgvspSkslFnIGsFnxOKoufg3o= +golang.org/x/term v0.31.0/go.mod h1:R4BeIy7D95HzImkxGkTW1UQTtP54tio2RyHz7PwK0aw= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M= golang.org/x/text v0.26.0/go.mod h1:QK15LZJUUQVJxhz7wXgxSy/CJaTFjd0G+YLonydOVQA= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/src/NotEnoughUpdates/NBTParser.go b/src/NotEnoughUpdates/NBTParser.go index 63af88cc7..4a702a98a 100644 --- a/src/NotEnoughUpdates/NBTParser.go +++ b/src/NotEnoughUpdates/NBTParser.go @@ -9,10 +9,11 @@ import ( "encoding/json" "fmt" "regexp" - "skycrypt/src/models" "strconv" "strings" "unicode" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) type TagParsingException struct { @@ -340,28 +341,28 @@ func (p *NBTTagParser) ParseIdentifier() string { }) } -func ParseNBTToItem(nbtString string) (models.Tag, bool) { +func ParseNBTToItem(nbtString string) (skycrypttypes.Tag, bool) { defer func() { if r := recover(); r != nil { fmt.Printf("Error parsing NBT: %v\n", r) } }() - try := func() (models.Tag, bool) { + try := func() (skycrypttypes.Tag, bool) { parsed := ParseNBT(nbtString) if tagMap, ok := parsed.(map[string]interface{}); ok { // Marshal the map to JSON, then unmarshal into the struct (So we can cast it as models.Tag) data, err := json.Marshal(tagMap) if err != nil { - return models.Tag{}, false + return skycrypttypes.Tag{}, false } - var item models.Tag + var item skycrypttypes.Tag if err := json.Unmarshal(data, &item); err != nil { - return models.Tag{}, false + return skycrypttypes.Tag{}, false } return item, true } - return models.Tag{}, false + return skycrypttypes.Tag{}, false } return try() diff --git a/src/api/hypixel.go b/src/api/hypixel.go index 07d2d2c42..a7ca17857 100644 --- a/src/api/hypixel.go +++ b/src/api/hypixel.go @@ -9,14 +9,15 @@ import ( "skycrypt/src/models" "skycrypt/src/utility" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" jsoniter "github.com/json-iterator/go" ) var HYPIXEL_API_KEY = os.Getenv("HYPIXEL_API_KEY") -func GetPlayer(uuid string) (*models.Player, error) { +func GetPlayer(uuid string) (*skycrypttypes.Player, error) { var rawReponse models.HypixelPlayerResponse - var response models.Player + var response skycrypttypes.Player if !utility.IsUUID(uuid) { respUUID, err := GetUUID(uuid) @@ -103,16 +104,16 @@ func GetProfiles(uuid string) (*models.HypixelProfilesResponse, error) { return &response, nil } -func GetProfile(uuid string, profileId ...string) (*models.Profile, error) { +func GetProfile(uuid string, profileId ...string) (*skycrypttypes.Profile, error) { profiles, err := GetProfiles(uuid) if err != nil { - return &models.Profile{}, err + return &skycrypttypes.Profile{}, err } // If no profileId provided, return the first profile or selected profile if len(profileId) == 0 || (len(profileId) == 1 && profileId[0] == "") { if len(profiles.Profiles) == 0 { - return &models.Profile{}, fmt.Errorf("no profiles found for UUID %s", uuid) + return &skycrypttypes.Profile{}, fmt.Errorf("no profiles found for UUID %s", uuid) } for _, profile := range profiles.Profiles { @@ -132,10 +133,10 @@ func GetProfile(uuid string, profileId ...string) (*models.Profile, error) { } } - return &models.Profile{}, fmt.Errorf("profile with ID %s not found for UUID %s", targetProfileId, uuid) + return &skycrypttypes.Profile{}, fmt.Errorf("profile with ID %s not found for UUID %s", targetProfileId, uuid) } -func GetMuseum(profileId string) (map[string]*models.Museum, error) { +func GetMuseum(profileId string) (map[string]*skycrypttypes.Museum, error) { var rawReponse models.HypixelMuseumResponse cache, err := redis.Get(fmt.Sprintf(`museum:%s`, profileId)) @@ -168,7 +169,7 @@ func GetMuseum(profileId string) (map[string]*models.Museum, error) { return rawReponse.Members, nil } -func GetGarden(profileId string) (*models.GardenRaw, error) { +func GetGarden(profileId string) (*skycrypttypes.Garden, error) { var rawReponse models.HypixelGardenResponse cache, err := redis.Get(fmt.Sprintf(`garden:%s`, profileId)) diff --git a/src/lib/renderer.go b/src/lib/renderer.go index 7333e0487..d852b510a 100644 --- a/src/lib/renderer.go +++ b/src/lib/renderer.go @@ -24,6 +24,8 @@ import ( "skycrypt/src/utility" "strconv" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) var textureDir = "assets/static" @@ -737,7 +739,7 @@ func RenderItem(itemID string) ([]byte, error) { TextureItem := models.TextureItem{ Damage: &itemData.Damage, ID: &itemData.ItemId, - Tag: models.TextureItemExtraAttributes{ + Tag: skycrypttypes.TextureItemExtraAttributes{ ExtraAttributes: map[string]interface{}{ "id": itemData.SkyblockID, }, diff --git a/src/models/custom_resources.go b/src/models/custom_resources.go index 23c53b44f..e165e13ae 100644 --- a/src/models/custom_resources.go +++ b/src/models/custom_resources.go @@ -1,5 +1,7 @@ package models +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + type ItemTexture struct { Parent string `json:"parent"` Textures map[string]string `json:"textures"` @@ -12,18 +14,12 @@ type Override struct { } type TextureItem struct { - Count *int `nbt:"Count" json:"Count,omitempty"` - Damage *int `nbt:"Damage" json:"Damage,omitempty"` - ID *int `nbt:"id" json:"id,omitempty"` - Tag TextureItemExtraAttributes `nbt:"tag" json:"tag,omitempty"` - RawId string `nbt:"raw_id" json:"raw_id,omitempty"` - Texture string `nbt:"texture" json:"texture,omitempty"` -} - -type TextureItemExtraAttributes struct { - ExtraAttributes map[string]interface{} `nbt:"ExtraAttributes" json:"ExtraAttributes,omitempty"` - Display Display `nbt:"display" json:"display"` - SkullOwner *SkullOwner `nbt:"SkullOwner" json:"SkullOwner,omitempty"` + Count *int `nbt:"Count" json:"Count,omitempty"` + Damage *int `nbt:"Damage" json:"Damage,omitempty"` + ID *int `nbt:"id" json:"id,omitempty"` + Tag skycrypttypes.TextureItemExtraAttributes `nbt:"tag" json:"tag,omitempty"` + RawId string `nbt:"raw_id" json:"raw_id,omitempty"` + Texture string `nbt:"texture" json:"texture,omitempty"` } type VanillaTexture struct { diff --git a/src/models/garden.go b/src/models/garden.go index 4435a512e..a71874893 100644 --- a/src/models/garden.go +++ b/src/models/garden.go @@ -1,25 +1,10 @@ package models +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + type HypixelGardenResponse struct { Success bool `json:"success"` Cause string `json:"cause,omitempty"` - Garden GardenRaw `json:"garden"` + Garden skycrypttypes.Garden `json:"garden"` } -type GardenRaw struct { - UnlockedPlotsIds []string `json:"unlocked_plots_ids"` - CommissionData struct { - Visits map[string]int `json:"visits"` - Completed map[string]int `json:"completed"` - TotalCompleted int `json:"total_completed"` - UniqueNpcsServed int `json:"unique_npcs_served"` - } `json:"commission_data"` - ResourcesCollected map[string]float64 `json:"resources_collected"` - ComposterData struct { - Upgrades map[string]int `json:"upgrades"` - } `json:"composter_data"` - Experience float64 `json:"garden_experience"` - SelectedBarnSkin string `json:"selected_barn_skin"` - CropUpgradeLevels map[string]int `json:"crop_upgrade_levels"` - UnlockedBarnSkins []string `json:"unlocked_barn_skins"` -} diff --git a/src/models/items.go b/src/models/items.go index 9aa17a7cc..23690d985 100644 --- a/src/models/items.go +++ b/src/models/items.go @@ -1,100 +1,13 @@ package models -type Item struct { - Count *int `nbt:"Count" json:"Count,omitempty"` - Damage *int `nbt:"Damage" json:"Damage,omitempty"` - ID *int `nbt:"id" json:"id,omitempty"` - Tag *Tag `nbt:"tag" json:"tag,omitempty"` - ContainsItems []Item `json:"containsItems,omitempty"` -} - -type Tag struct { - // HideFlags int `nbt:"HideFlags" json:"HideFlags,omitempty"` - // Unbreakable int `nbt:"Unbreakable" json:"Unbreakable,omitempty"` - // Enchantments []Enchantment `nbt:"ench" json:"ench,omitempty"` - ExtraAttributes ExtraAttributes `nbt:"ExtraAttributes" json:"ExtraAttributes,omitempty"` - Display Display `nbt:"display" json:"display"` - SkullOwner *SkullOwner `nbt:"SkullOwner" json:"SkullOwner,omitempty"` -} - -func (t *Tag) ToMap() TextureItemExtraAttributes { - return TextureItemExtraAttributes{ - ExtraAttributes: t.ExtraAttributes.ToMap(), - Display: t.Display, - SkullOwner: t.SkullOwner, - } -} - -type ExtraAttributes struct { - // OriginTag string `nbt:"originTag" json:"originTag,omitempty"` - // Enchantments map[string]int `nbt:"enchantments" json:"enchantments,omitempty"` - ID string `nbt:"id" json:"id,omitempty"` - UUID string `nbt:"uuid" json:"uuid,omitempty"` - Timestamp any `nbt:"timestamp" json:"timestamp,omitempty"` - Recombobulated int `nbt:"rarity_upgrades" json:"rarity_upgrades,omitempty"` - Enchantments map[string]int `nbt:"enchantments" json:"enchantments,omitempty"` - Gems map[string]any `nbt:"gems" json:"gems,omitempty"` - HecatombSRuns *int `nbt:"hecatomb_s_runs" json:"hecatomb_s_runs,omitempty"` - ChampionCombatXP *float64 `nbt:"champion_combat_xp" json:"champion_combat_xp,omitempty"` - FarmedCultivating *int `nbt:"farmed_cultivating" json:"farmed_cultivating,omitempty"` - ExpertiseKills *int `nbt:"expertise_kills" json:"expertise_kills,omitempty"` - CompactBlocks *int `nbt:"compact_blocks" json:"compact_blocks,omitempty"` - Modifier string `nbt:"modifier" json:"modifier,omitempty"` - Model string `nbt:"model" json:"model,omitempty"` - TalismanEnrichment string `nbt:"talisman_enrichment" json:"talisman_enrichment,omitempty"` - Dye string `nbt:"dye_item" json:"dye_item,omitempty"` -} - -func (t *ExtraAttributes) ToMap() map[string]interface{} { - return map[string]interface{}{ - "id": t.ID, - "uuid": t.UUID, - "timestamp": t.Timestamp, - "recombobulated": t.Recombobulated, - "enchantments": t.Enchantments, - "gems": t.Gems, - "hecatomb_s_runs": t.HecatombSRuns, - "champion_combat_xp": t.ChampionCombatXP, - "farmed_cultivating": t.FarmedCultivating, - "expertise_kills": t.ExpertiseKills, - "compact_blocks": t.CompactBlocks, - "modifier": t.Modifier, - "model": t.Model, - "talisman_enrichment": t.TalismanEnrichment, - } -} - -type Display struct { - Name string `nbt:"Name" json:"Name,omitempty"` - Lore []string `nbt:"Lore" json:"Lore,omitempty"` - Color int `nbt:"color" json:"color,omitempty"` -} - -type Enchantment struct { - ID int `nbt:"id" json:"id,omitempty"` - Level int `nbt:"lvl" json:"lvl,omitempty"` -} - -type SkullOwner struct { - ID string `nbt:"Id" json:"Id,omitempty"` - Properties Properties `nbt:"Properties" json:"Properties"` -} - -type Properties struct { - Textures []Texture `nbt:"textures" json:"textures,omitempty"` -} - -type Texture struct { - Value string `nbt:"Value" json:"Value,omitempty"` - Signature string `nbt:"Signature" json:"Signature,omitempty"` -} +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" type DecodedInventory struct { - Items []Item `nbt:"i"` + Items []skycrypttypes.Item `nbt:"i"` } type ProcessedItem struct { - Item + skycrypttypes.Item Texture string `json:"texture_path,omitempty"` TexturePack string `json:"texture_pack,omitempty"` DisplayName string `json:"display_name,omitempty"` diff --git a/src/models/museum.go b/src/models/museum.go index 386cc6c97..9585cda3a 100644 --- a/src/models/museum.go +++ b/src/models/museum.go @@ -1,28 +1,11 @@ package models -type EncodedItem struct { - Type int `json:"type"` - Data string `json:"data"` -} +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" type HypixelMuseumResponse struct { - Success bool `json:"success"` - Cause string `json:"cause,omitempty"` - Members map[string]*Museum `json:"members"` -} - -type Museum struct { - Value int64 `json:"value"` - Appraisal bool `json:"appraisal,omitempty"` - Items map[string]*RawMuseumItem `json:"items,omitempty"` - Special []RawMuseumItem `json:"special,omitempty"` -} - -type RawMuseumItem struct { - DonatedTime int64 `json:"donated_time"` - FeaturedSlot *string `json:"featured_slot"` - Borrowing bool `json:"borrowing"` - Items EncodedItem `json:"items"` + Success bool `json:"success"` + Cause string `json:"cause,omitempty"` + Members map[string]*skycrypttypes.Museum `json:"members"` } type MuseumInventoryItem struct { diff --git a/src/models/notenoughupdates.go b/src/models/notenoughupdates.go index 355ecdb18..21fdd57e2 100644 --- a/src/models/notenoughupdates.go +++ b/src/models/notenoughupdates.go @@ -1,15 +1,19 @@ package models -import neu "skycrypt/src/models/NEU" +import ( + neu "skycrypt/src/models/NEU" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" +) type NEUItem struct { - MinecraftId string `json:"itemid,omitempty"` - Name string `json:"displayname,omitempty"` - Damage int `json:"damage,omitempty"` - Lore []string `json:"lore,omitempty"` - NEUId string `json:"internalname,omitempty"` - NBT Tag `json:"nbttag"` - Wiki []string `json:"info,omitempty"` + MinecraftId string `json:"itemid,omitempty"` + Name string `json:"displayname,omitempty"` + Damage int `json:"damage,omitempty"` + Lore []string `json:"lore,omitempty"` + NEUId string `json:"internalname,omitempty"` + NBT skycrypttypes.Tag `json:"nbttag"` + Wiki []string `json:"info,omitempty"` } type RawNEUItem struct { diff --git a/src/models/player.go b/src/models/player.go index 9574fd02e..8c85db230 100644 --- a/src/models/player.go +++ b/src/models/player.go @@ -1,49 +1,9 @@ package models -type HypixelPlayerResponse struct { - Success bool `json:"success"` - Cause string `json:"cause,omitempty"` - Player Player `json:"player"` -} - -type Player struct { - DisplayName string `json:"displayname"` - UUID string `json:"uuid"` - SocialMedia struct { - Links SocialMediaLinks `json:"links"` - } `json:"socialMedia"` - NewPackageRank string `json:"newPackageRank,omitempty"` - MonthlyRankColor string `json:"monthlyRankColor,omitempty"` - MonthlyPackageRank string `json:"monthlyPackageRank,omitempty"` - Prefix string `json:"prefix"` - Rank string `json:"rank"` - RankPlusColor string `json:"rankPlusColor,omitempty"` - PackageRank string `json:"packageRank,omitempty"` - Achievements achievements `json:"achievements,omitempty"` - ClaimedPotatoTalisman int64 `json:"claimed_potato_talisman,omitempty"` - ClaimedPotatoBasket int64 `json:"claimed_potato_basket,omitempty"` - ClaimPotatoWarSilverMedal int64 `json:"claim_potato_war_silver_medal,omitempty"` - ClaimPotatoWarCrown int64 `json:"claim_potato_war_crown,omitempty"` - SkyblockFreeCookie int64 `json:"skyblock_free_cookie,omitempty"` - ClaimedCenturyCake int64 `json:"claimed_century_cake,omitempty"` - ClaimedCenturyCake200 int64 `json:"claimed_century_cake200,omitempty"` -} +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" -type SocialMediaLinks struct { - Twitter string `json:"TWITTER,omitempty"` - Twitch string `json:"TWITCH,omitempty"` - Hypixel string `json:"HYPIXEL,omitempty"` - Discord string `json:"DISCORD,omitempty"` -} - -type achievements struct { - SkillTaming int `json:"skyblock_domesticator,omitempty"` - SkillFarming int `json:"skyblock_harvester,omitempty"` - SkillMining int `json:"skyblock_excavator,omitempty"` - SkillCombat int `json:"skyblock_combat,omitempty"` - SkillForaging int `json:"skyblock_gatherer,omitempty"` - SkillFishing int `json:"skyblock_angler,omitempty"` - SkillEnchanting int `json:"skyblock_augmentation,omitempty"` - SkillAlchemy int `json:"skyblock_concoctor,omitempty"` - HotMCommissions int `json:"skyblock_hard_working_miner,omitempty"` +type HypixelPlayerResponse struct { + Success bool `json:"success"` + Cause string `json:"cause,omitempty"` + Player skycrypttypes.Player `json:"player"` } diff --git a/src/models/profiles.go b/src/models/profiles.go index 1ce50531b..d2e1db496 100644 --- a/src/models/profiles.go +++ b/src/models/profiles.go @@ -1,592 +1,9 @@ package models -import ( - "encoding/json" - "fmt" - "strconv" -) +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" type HypixelProfilesResponse struct { - Success bool `json:"success"` - Cause string `json:"cause,omitempty"` - Profiles []Profile `json:"profiles"` -} - -type Profile struct { - ProfileID string `json:"profile_id"` - CuteName string `json:"cute_name"` - Selected bool `json:"selected"` - Members map[string]Member `json:"members"` - GameMode string `json:"game_mode,omitempty"` - Banking banking `json:"banking,omitempty"` - CommunityUpgrades *communityUpgrades `json:"community_upgrades,omitempty"` -} - -type Member struct { - PlayerData *playerData `json:"player_data"` - CoopInvitation *coopInvitation `json:"coop_invitation"` - Profile *profileData `json:"profile"` - JacobsContest jacobsContest `json:"jacobs_contest,omitempty"` - Pets *pets `json:"pets_data,omitempty"` - Leveling leveling `json:"leveling,omitempty"` - Currencies currencies `json:"currencies,omitempty"` - FairySouls *fairySouls `json:"fairy_soul,omitempty"` - Inventory *inventory `json:"inventory,omitempty"` - SharedInventory *sharedInventory `json:"shared_inventory,omitempty"` - Rift rift `json:"rift,omitempty"` - AccessoryBagStorage accessoryBagStorage `json:"accessory_bag_storage,omitempty"` - CrimsonIsle crimsonIsleData `json:"nether_island_player_data,omitempty"` - Mining mining `json:"mining_core,omitempty"` - Objectives *objectives `json:"objectives,omitempty"` - GlaciteTunnels *glaciteData `json:"glacite_player_data,omitempty"` - Forge forge `json:"forge,omitempty"` - Quests quests `json:"quests,omitempty"` - Garden gardenProfileData `json:"garden_player_data,omitempty"` - PlayerStats playerStats `json:"player_stats,omitempty"` - TrophyFish memberTrophyFish `json:"trophy_fish,omitempty"` - Experimentation experimentationData `json:"experimentation,omitempty"` - Dungeons Dungeons `json:"dungeons,omitempty"` - Slayer slayer `json:"slayer,omitempty"` - Bestiary *bestiary `json:"bestiary,omitempty"` - Collections map[string]int `json:"collection,omitempty"` - ItemData itemData `json:"item_data,omitempty"` - WinterPlayerData winterPlayerIslandData `json:"winter_player_data,omitempty"` -} - -type winterPlayerIslandData struct { - RefinedJyrreUses int `json:"refined_bottle_of_jyrre_uses,omitempty"` -} - -type itemData struct { - Soulflow float64 `json:"soulflow,omitempty"` - TeleporterPillConsumed bool `json:"teleporter_pill_consumed,omitempty"` -} - -type races struct { - ForagingRaceBestTime float64 `json:"foraging_race_best_time"` - EndRaceBestTime float64 `json:"end_race_best_time"` - ChickenRaceBestTime2 float64 `json:"chicken_race_best_time_2"` - DungeonHub map[string]float64 `json:"dungeon_hub"` - RiftRaceBestTime float64 `json:"rift_race_best_time"` -} - -type coopInvitation struct { - Confirmed bool `json:"confirmed,omitempty"` -} - -type playerData struct { - Experience *experience `json:"experience"` - Minions []string `json:"crafted_generators"` - ReaperPeppersEaten int `json:"reaper_peppers_eaten,omitempty"` -} - -type experience struct { - SkillFishing float64 `json:"SKILL_FISHING"` - SkillAlchemy float64 `json:"SKILL_ALCHEMY"` - SkillMining float64 `json:"SKILL_MINING"` - SkillFarming float64 `json:"SKILL_FARMING"` - SkillEnchanting float64 `json:"SKILL_ENCHANTING"` - SkillTaming float64 `json:"SKILL_TAMING"` - SkillForaging float64 `json:"SKILL_FORAGING"` - SkillSocial float64 `json:"SKILL_SOCIAL"` - SkillCarpentry float64 `json:"SKILL_CARPENTRY"` - SkillCombat float64 `json:"SKILL_COMBAT"` - SkillRunecrafting float64 `json:"SKILL_RUNECRAFTING"` -} - -type profileData struct { - DeletionNotice *deletionNotice `json:"deletion_notice"` - FirstJoin int64 `json:"first_join,omitempty"` - BankAccount float64 `json:"bank_account,omitempty"` - PersonalBankUpgrade int `json:"personal_bank_upgrade,omitempty"` -} - -type deletionNotice struct { - Timestamp int64 `json:"timestamp,omitempty"` -} - -type jacobsContest struct { - Perks *perks `json:"perks,omitempty"` - UniqueBrackets map[string][]string `json:"unique_brackets,omitempty"` - MedalsInv map[string]int `json:"medals_inv,omitempty"` - Contests map[string]JacobContest `json:"contests,omitempty"` -} - -type perks struct { - FarmingLevelCap int `json:"farming_level_cap,omitempty"` -} - -type petCare struct { - PetTypesSacrificed []string `json:"pet_types_sacrificed,omitempty"` -} - -type leveling struct { - Experience int `json:"experience,omitempty"` -} - -type currencies struct { - CoinPurse float64 `json:"coin_purse,omitempty"` - MotesPurse float64 `json:"motes_purse,omitempty"` - Essence map[string]essence `json:"essence,omitempty"` -} - -type essence struct { - Current int `json:"current,omitempty"` -} - -type banking struct { - Balance *float64 `json:"balance,omitempty"` -} - -type fairySouls struct { - TotalCollected int `json:"total_collected,omitempty"` -} - -type inventory struct { - Inventory encodedInventory `json:"inv_contents"` - Enderchest encodedInventory `json:"ender_chest_contents"` - BackpackIcons map[string]encodedInventory `json:"backpack_icons"` - Armor encodedInventory `json:"inv_armor"` - Equipment encodedInventory `json:"equipment_contents"` - PersonalVault encodedInventory `json:"personal_vault_contents"` - Backpack map[string]encodedInventory `json:"backpack_contents"` - Wardrobe encodedInventory `json:"wardrobe_contents"` - BagContents bagContents `json:"bag_contents"` - Sacks map[string]int `json:"sacks_counts"` -} - -type sharedInventory struct { - CandyInventory encodedInventory `json:"candy_inventory_contents"` - CarnivalMaskInventory encodedInventory `json:"carnival_mask_inventory_contents"` -} - -type encodedInventory struct { - Type int `json:"type"` - Data string `json:"data"` -} - -type bagContents struct { - PotionBag encodedInventory `json:"potion_bag,omitempty"` - TalismanBag encodedInventory `json:"talisman_bag,omitempty"` - FishingBag encodedInventory `json:"fishing_bag,omitempty"` - SacksBag encodedInventory `json:"sacks_bag,omitempty"` - Quiver encodedInventory `json:"quiver,omitempty"` -} - -type rift struct { - Inventory riftInventory `json:"inventory,omitempty"` - Access riftAccess `json:"access,omitempty"` - DeadCats deadCats `json:"dead_cats,omitempty"` - Enigma riftEnigma `json:"enigma,omitempty"` - Castle riftCastle `json:"castle,omitempty"` - Gallery riftGallery `json:"gallery,omitempty"` - WitherCage riftWitherCage `json:"wither_cage,omitempty"` -} - -type riftWitherCage struct { - KilledEyes []string `json:"killed_eyes,omitempty"` -} - -type riftGallery struct { - SecuredTrophies []riftSecuredTrophy `json:"secured_trophies,omitempty"` -} - -type riftSecuredTrophy struct { - Type string `json:"type,omitempty"` - Timestamp int64 `json:"timestamp,omitempty"` -} - -type riftCastle struct { - GrubberStacks int `json:"grubber_stacks,omitempty"` -} - -type riftEnigma struct { - FoundSouls []string `json:"found_souls,omitempty"` -} - -type riftInventory struct { - Inventory encodedInventory `json:"inv_contents"` - Armor encodedInventory `json:"inv_armor"` - Enderchest encodedInventory `json:"ender_chest_contents"` - Equipment encodedInventory `json:"equipment_contents"` -} - -type riftAccess struct { - ConsumedPrism bool `json:"consumed_prism,omitempty"` -} - -type accessoryBagStorage struct { - SelectedPower string `json:"selected_power,omitempty"` -} - -type crimsonIsleData struct { - Abiphone abiphone `json:"abiphone,omitempty"` - Kuudra map[string]int `json:"kuudra_completed_tiers,omitempty"` - Dojo map[string]int `json:"dojo,omitempty"` - SelectedFaction string `json:"selected_faction,omitempty"` - MagesReputation float64 `json:"mages_reputation,omitempty"` - BarbarianReputation float64 `json:"barbarians_reputation,omitempty"` -} - -type abiphone struct { - ActiveContacts []string `json:"active_contacts,omitempty"` -} - -type deadCats struct { - FoundCats []string `json:"found_cats,omitempty"` - Montezuma Pet `json:"montezuma,omitempty"` -} - -type Pet struct { - Type string `json:"type,omitempty"` - Experience float64 `json:"exp,omitempty"` - Active bool `json:"active,omitempty"` - Rarity string `json:"tier,omitempty"` - HeldItem string `json:"heldItem,omitempty"` - CandyUsed int `json:"candyUsed,omitempty"` - Skin string `json:"skin,omitempty"` -} - -type pets struct { - PetCare *petCare `json:"pet_care,omitempty"` - Pets []Pet `json:"pets,omitempty"` -} - -type mining struct { - Nodes map[string]int `json:"nodes,omitempty"` - Experience float64 `json:"experience,omitempty"` - GreaterMinesLastAccess int64 `json:"greater_mines_last_access,omitempty"` - LastReset int64 `json:"last_reset,omitempty"` - TokensSpent int `json:"tokens_spent,omitempty"` - SelectedPickaxeAbility string `json:"selected_pickaxe_ability,omitempty"` - PowderMithril int `json:"powder_mithril,omitempty"` - PowderMithrilTotal int `json:"powder_mithril_total,omitempty"` - PowderSpentMithril int `json:"powder_spent_mithril,omitempty"` - PowderGemstone int `json:"powder_gemstone,omitempty"` - PowderGemstoneTotal int `json:"powder_gemstone_total,omitempty"` - PowderSpentGemstone int `json:"powder_spent_gemstone,omitempty"` - PowderGlacite int `json:"powder_glacite,omitempty"` - PowderGlaciteTotal int `json:"powder_glacite_total,omitempty"` - PowderSpentGlacite int `json:"powder_spent_glacite,omitempty"` - Crystals map[string]crystal `json:"crystals,omitempty"` - Biomes biomes `json:"biomes,omitempty"` -} - -type crystal struct { - State string `json:"state,omitempty"` - TotalFound int `json:"total_found,omitempty"` - TotalPlaced int `json:"total_placed,omitempty"` -} - -type biomes struct { - Precursor precursor `json:"precursor,omitempty"` -} - -type precursor struct { - PartsDelivered []string `json:"parts_delivered,omitempty"` -} - -type objectives struct { - Tutorial []string `json:"tutorial,omitempty"` -} - -type glaciteData struct { - FossilsDonated []string `json:"fossils_donated,omitempty"` - FossilDust float64 `json:"fossil_dust,omitempty"` - CorpsesLooted map[string]int `json:"corpses_looted,omitempty"` - MineshaftsEntered int `json:"mineshafts_entered,omitempty"` -} - -type forge struct { - ForgeProcesses forgeProcesses `json:"forge_processes"` -} - -type forgeProcesses struct { - Forge map[string]forgeProcess `json:"forge_1"` -} - -type forgeProcess struct { - Id string `json:"id"` - StartTime int64 `json:"startTime"` - Slot int `json:"slot"` -} - -type quests struct { - TrapperQuest trapperQuest `json:"trapper_quest,omitempty"` -} - -type trapperQuest struct { - PeltCount int `json:"pelt_count,omitempty"` -} - -type gardenProfileData struct { - Copper int `json:"copper,omitempty"` - LarvaConsumed int `json:"larva_consumed,omitempty"` -} - -type JacobContest struct { - Collected int `json:"collected"` - ClaimedPosition *int `json:"claimed_position,omitempty"` - ClaimedParticipants *int `json:"claimed_participants,omitempty"` - ClaimedMedal string `json:"claimed_medal"` -} - -type playerStats struct { - Kills map[string]float64 `json:"kills,omitempty"` - Deaths map[string]float64 `json:"deaths,omitempty"` - ItemsFished struct { - Total float64 `json:"total,omitempty"` - Normal float64 `json:"normal,omitempty"` - Treasure float64 `json:"treasure,omitempty"` - LargeTreasure float64 `json:"large_treasure,omitempty"` - TrophyFish float64 `json:"trophy_fish,omitempty"` - } `json:"items_fished"` - ShredderRod struct { - Fished float64 `json:"fished,omitempty"` - Bait float64 `json:"bait,omitempty"` - } `json:"shredder_rod"` - Pets struct { - Milestone struct { - SeaCreaturesKilled float64 `json:"sea_creatures_killed,omitempty"` - OresMined float64 `json:"ores_mined,omitempty"` - } `json:"milestone,omitempty"` - } `json:"pets,omitempty"` - Rift riftPlayerData `json:"rift,omitempty"` - Races races `json:"races,omitempty"` - Gifts gifts `json:"gifts"` - WinterIslandData winterIslandData `json:"winter"` - EndIsland endIsland `json:"end_island"` - HighestCriticalDamage float64 `json:"highest_critical_damage"` - Mythos mythos `json:"mythos"` - Auctions auctions `json:"auctions"` -} - -type auctions struct { - Bids float64 `json:"bids"` - HighestBid float64 `json:"highest_bid"` - Won float64 `json:"won"` - TotalBought map[string]float64 `json:"total_bought"` - GoldSpent float64 `json:"gold_spent"` - Created float64 `json:"created"` - Fees float64 `json:"fees"` - TotalSold map[string]float64 `json:"total_sold"` - GoldEarned float64 `json:"gold_earned"` - NoBids float64 `json:"no_bids"` -} - -type mythos struct { - Kills float64 `json:"kills"` - BurrowsDugNext map[string]float64 `json:"burrows_dug_next"` - BurrowsDugCombat map[string]float64 `json:"burrows_dug_combat"` - BurrowsDugTreasure map[string]float64 `json:"burrows_dug_treasure"` - BurrowsChainsComplete map[string]float64 `json:"burrows_chains_complete"` -} - -type endIsland struct { - DragonFight DragonFight `json:"dragon_fight"` -} - -type DragonFight struct { - EnderCrystalsDestroyed float64 `json:"ender_crystals_destroyed"` - MostDamage map[string]float64 `json:"most_damage"` - FastestKill map[string]float64 `json:"fastest_kill"` -} - -type winterIslandData struct { - MostSnowballsHit float64 `json:"most_snowballs_hit"` - MostDamageDealt float64 `json:"most_damage_dealt"` - MostMagmaDamageDealt float64 `json:"most_magma_damage_dealt"` - MostCannonballsHit float64 `json:"most_cannonballs_hit"` -} - -type gifts struct { - Given float64 `json:"total_given"` - Received float64 `json:"total_received"` -} - -type riftPlayerData struct { - Visits float64 `json:"visits,omitempty"` - LifetimeMotesCollected float64 `json:"lifetime_motes_earned,omitempty"` - MotesOrbPickup float64 `json:"motes_orb_pickup,omitempty"` -} - -type memberTrophyFish struct { - Rewards []int `json:"rewards"` - TotalCaught int `json:"total_caught"` - Extra map[string]int `json:"-"` -} -type ExperimentationGame struct { - LastAttempt int64 `json:"last_attempt,omitempty"` - LastClaimed int64 `json:"last_claimed,omitempty"` - BonusClicks int `json:"bonus_clicks,omitempty"` - Claimed bool `json:"claimed,omitempty"` - Attempts map[int]int `json:"-"` - Claims map[int]int `json:"-"` - BestScores map[int]int `json:"-"` - Raw map[string]int64 `json:"-"` -} - -func (e *ExperimentationGame) UnmarshalJSON(data []byte) error { - type Alias ExperimentationGame - aux := &struct { - *Alias - }{Alias: (*Alias)(e)} - if err := json.Unmarshal(data, &aux); err != nil { - return err - } - e.Attempts = make(map[int]int) - e.Claims = make(map[int]int) - e.BestScores = make(map[int]int) - e.Raw = make(map[string]int64) - - var raw map[string]interface{} - if err := json.Unmarshal(data, &raw); err != nil { - return err - } - for k, v := range raw { - switch { - case len(k) > 9 && k[:9] == "attempts_": - var idx int - fmt.Sscanf(k, "attempts_%d", &idx) - e.Attempts[idx] = int(v.(float64)) - case len(k) > 7 && k[:7] == "claims_": - var idx int - fmt.Sscanf(k, "claims_%d", &idx) - e.Claims[idx] = int(v.(float64)) - case len(k) > 11 && k[:11] == "best_score_": - var idx int - fmt.Sscanf(k, "best_score_%d", &idx) - e.BestScores[idx] = int(v.(float64)) - } - } - return nil -} - -type experimentationData struct { - Simon *ExperimentationGame `json:"simon,omitempty"` - Pairings *ExperimentationGame `json:"pairings,omitempty"` - Numbers *ExperimentationGame `json:"numbers,omitempty"` - ClaimsResets *int64 `json:"claims_resets,omitempty"` - ClaimsResetsTimestamp int64 `json:"claims_resets_timestamp,omitempty"` - SerumsDrank int `json:"serums_drank,omitempty"` - ClaimedRetroactiveRng bool `json:"claimed_retroactive_rng,omitempty"` - ChargeTrackTimestamp int64 `json:"charge_track_timestamp,omitempty"` -} - -type Dungeons struct { - DungeonTypes map[string]DungeonData `json:"dungeon_types,omitempty"` - Classes map[string]playerClass `json:"player_classes,omitempty"` - SelectedDungeonClass string `json:"selected_dungeon_class,omitempty"` - Secrets float64 `json:"secrets,omitempty"` -} - -type playerClass struct { - Experience float64 `json:"experience,omitempty"` -} - -type DungeonData struct { - Experience float64 `json:"experience,omitempty"` - - HighestTierCompleted int `json:"highest_tier_completed,omitempty"` - TimesPlayed map[string]float64 `json:"times_played,omitempty"` - TierCompletions map[string]float64 `json:"tier_completions,omitempty"` - MilestoneCompletions map[string]float64 `json:"milestone_completions,omitempty"` - MobsKilled map[string]float64 `json:"mobs_killed,omitempty"` - MostMobsKilled map[string]float64 `json:"most_mobs_killed,omitempty"` - WatcherKills map[string]float64 `json:"watcher_kills,omitempty"` - MostDamageBerserk map[string]float64 `json:"most_damage_berserk,omitempty"` - MostDamageMage map[string]float64 `json:"most_damage_mage,omitempty"` - MostDamageHealer map[string]float64 `json:"most_damage_healer,omitempty"` - MostDamageArcher map[string]float64 `json:"most_damage_archer,omitempty"` - MostDamageTank map[string]float64 `json:"most_damage_tank,omitempty"` - MostHealing map[string]float64 `json:"most_healing,omitempty"` - FastestTime map[string]float64 `json:"fastest_time,omitempty"` - FastestTimeS map[string]float64 `json:"fastest_time_s,omitempty"` - FastestTimeSPlus map[string]float64 `json:"fastest_time_s_plus,omitempty"` - BestScore map[string]float64 `json:"best_score,omitempty"` - BestRuns map[string]*[]BestRun `json:"best_runs,omitempty"` -} - -type BestRun struct { - Timestamp int64 `json:"timestamp"` - ScoreExploration int `json:"score_exploration"` - ScoreSpeed int `json:"score_speed"` - ScoreSkill int `json:"score_skill"` - ScoreBonus int `json:"score_bonus"` - DungeonClass string `json:"dungeon_class"` - ElapsedTime int64 `json:"elapsed_time"` - DamageDealt float64 `json:"damage_dealt"` - Deaths int `json:"deaths"` - MobsKilled int `json:"mobs_killed"` - SecretsFound int `json:"secrets_found"` - DamageMitigated float64 `json:"damage_mitigated"` -} - -type slayer struct { - SlayerBosses map[string]SlayerBoss `json:"slayer_bosses,omitempty"` -} - -type SlayerBoss struct { - BossKillsTier0 int `json:"boss_kills_tier_0,omitempty"` - BossKillsTier1 int `json:"boss_kills_tier_1,omitempty"` - BossKillsTier2 int `json:"boss_kills_tier_2,omitempty"` - BossKillsTier3 int `json:"boss_kills_tier_3,omitempty"` - BossKillsTier4 int `json:"boss_kills_tier_4,omitempty"` - BossAttemptsTier0 int `json:"boss_attempts_tier_0,omitempty"` - BossAttemptsTier1 int `json:"boss_attempts_tier_1,omitempty"` - BossAttemptsTier2 int `json:"boss_attempts_tier_2,omitempty"` - BossAttemptsTier3 int `json:"boss_attempts_tier_3,omitempty"` - BossAttemptsTier4 int `json:"boss_attempts_tier_4,omitempty"` - Experience float64 `json:"xp,omitempty"` -} - -type communityUpgrades struct { - UpgradeStates []communityUpgradeState `json:"upgrade_states,omitempty"` -} - -type communityUpgradeState struct { - Upgrade string `json:"upgrade,omitempty"` - Tier int `json:"tier,omitempty"` -} -type bestiary struct { - Kills map[string]int `json:"kills,omitempty"` -} - -func (b *bestiary) UnmarshalJSON(data []byte) error { - type Alias bestiary - aux := &struct { - *Alias - }{ - Alias: (*Alias)(b), - } - if err := json.Unmarshal(data, &aux); err != nil { - if !(json.Unmarshal(data, &map[string]interface{}{}) == nil && (err.Error() == "json: cannot unmarshal string into Go struct field .Alias.kills of type int" || err.Error() == "json: cannot unmarshal string into Go struct field .Alias.deaths of type int")) { - return err - } - } - - var raw map[string]interface{} - if err := json.Unmarshal(data, &raw); err != nil { - return err - } - - b.Kills = make(map[string]int) - if killsRaw, ok := raw["kills"]; ok { - if killsMap, ok := killsRaw.(map[string]interface{}); ok { - for k, v := range killsMap { - switch val := v.(type) { - case float64: - b.Kills[k] = int(val) - case int: - b.Kills[k] = val - case string: - if i, err := strconv.Atoi(val); err == nil { - b.Kills[k] = i - } - } - } - } - } - - return nil + Success bool `json:"success"` + Cause string `json:"cause,omitempty"` + Profiles []skycrypttypes.Profile `json:"profiles"` } diff --git a/src/routes.go b/src/routes.go index d3d2d59dd..7472cfe9f 100644 --- a/src/routes.go +++ b/src/routes.go @@ -15,7 +15,6 @@ import ( ) func SetupApplication() error { - // Load environment variables first (only log if this is the main process) err := godotenv.Load() if err != nil && os.Getenv("FIBER_PREFORK_CHILD") == "" { log.Println("No .env file found, using environment variables") @@ -44,20 +43,21 @@ func SetupApplication() error { return fmt.Errorf("error loading SkyBlock items: %v", err) } - if err := notenoughupdates.InitializeNEURepository(); err != nil { - return fmt.Errorf("error initializing repository: %v", err) - } + /* + if err := notenoughupdates.InitializeNEURepository(); err != nil { + return fmt.Errorf("error initializing repository: %v", err) + } - if err := notenoughupdates.UpdateNEURepository(); err != nil { - return fmt.Errorf("error updating repository: %v", err) - } + if err := notenoughupdates.UpdateNEURepository(); err != nil { + return fmt.Errorf("error updating repository: %v", err) + } + */ err = notenoughupdates.ParseNEURepository() if err != nil { return fmt.Errorf("error parsing NEU repository: %v", err) } - // Only log success message from main process to avoid spam if os.Getenv("FIBER_PREFORK_CHILD") == "" { fmt.Print("[SKYCRYPT] SkyCrypt initialized successfully\n") } diff --git a/src/routes/accessories.go b/src/routes/accessories.go index 1244d6bb7..9b29c867c 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -4,10 +4,10 @@ import ( "fmt" "skycrypt/src/api" redis "skycrypt/src/db" - "skycrypt/src/models" "skycrypt/src/stats" "time" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" ) @@ -28,7 +28,7 @@ func AccessoriesHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - var items map[string][]models.Item + var items map[string][]skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary diff --git a/src/routes/gear.go b/src/routes/gear.go index 682d2e45b..fc58289cc 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -10,6 +10,7 @@ import ( "time" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" ) @@ -20,7 +21,7 @@ func GearHandler(c *fiber.Ctx) error { uuid := c.Params("uuid") profileId := c.Params("profileId") - var items map[string][]models.Item + var items map[string][]skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary diff --git a/src/routes/inventory.go b/src/routes/inventory.go index f041d44a2..d11f4deff 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -12,6 +12,7 @@ import ( "time" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" ) @@ -89,7 +90,7 @@ func InventoryHandler(c *fiber.Ctx) error { userProfile := &userProfileValue if inventoryId == "search" { - var items map[string][]models.Item + var items map[string][]skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary diff --git a/src/routes/networth.go b/src/routes/networth.go index a1830ad7b..26380051f 100644 --- a/src/routes/networth.go +++ b/src/routes/networth.go @@ -6,7 +6,7 @@ import ( "skycrypt/src/stats" "time" - skyhelpernetworthgo "github.com/DuckySoLucky/SkyHelper-Networth-Go" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" ) @@ -50,7 +50,14 @@ func NetworthHandler(c *fiber.Ctx) error { museum := profileMuseum[mowojang.UUID] userProfile := &userProfileValue - calculator, err := skyhelpernetworthgo.NewProfileNetworthCalculator(userProfile, museum, *profile.Banking.Balance) + var bankBalance float64 + if profile.Banking != nil && profile.Banking.Balance != nil { + bankBalance = *profile.Banking.Balance + } else { + bankBalance = 0.0 + } + + calculator, err := skyhelpernetworthgo.NewProfileNetworthCalculator(userProfile, museum, bankBalance) if err != nil { return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to create networth calculator: %v", err), diff --git a/src/routes/rift.go b/src/routes/rift.go index ad199cf01..0fd57b1d2 100644 --- a/src/routes/rift.go +++ b/src/routes/rift.go @@ -9,6 +9,7 @@ import ( statsitems "skycrypt/src/stats/items" "time" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" ) @@ -29,7 +30,7 @@ func RiftHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - var items map[string][]models.Item + var items map[string][]skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary diff --git a/src/routes/skills.go b/src/routes/skills.go index 6b0e163aa..54ce95a16 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -10,6 +10,7 @@ import ( "time" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" ) @@ -37,7 +38,7 @@ func SkillsHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - var items map[string][]models.Item + var items map[string][]skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary diff --git a/src/stats/accessories.go b/src/stats/accessories.go index 40256895d..979c03c2a 100644 --- a/src/stats/accessories.go +++ b/src/stats/accessories.go @@ -9,9 +9,11 @@ import ( "slices" "sort" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetAccessories(useProfile *models.Member, items map[string][]models.Item) models.GetMissingAccessoresOutput { +func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]skycrypttypes.Item) models.GetMissingAccessoresOutput { if items == nil { return models.GetMissingAccessoresOutput{} } @@ -156,7 +158,7 @@ func GetAccessories(useProfile *models.Member, items map[string][]models.Item) m riftPrismItem, _ := notenoughupdates.GetItem("RIFT_PRISM") itemId := 397 - processedItem := stats.ProcessItem(&models.Item{ + processedItem := stats.ProcessItem(&skycrypttypes.Item{ Tag: &riftPrismItem.NBT, ID: &itemId, Damage: &riftPrismItem.Damage, diff --git a/src/stats/api_settings.go b/src/stats/api_settings.go index efafabe12..e4cee3fda 100644 --- a/src/stats/api_settings.go +++ b/src/stats/api_settings.go @@ -1,8 +1,12 @@ package stats -import "skycrypt/src/models" +import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + +func GetAPISettings(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, museum *skycrypttypes.Museum) map[string]bool { + if profile.Banking == nil { + profile.Banking = &skycrypttypes.Banking{} + } -func GetAPISettings(userProfile *models.Member, profile *models.Profile, museum *models.Museum) map[string]bool { return map[string]bool{ "skills": userProfile.PlayerData.Experience != nil, "inventory": userProfile.Inventory != nil, diff --git a/src/stats/bestiary.go b/src/stats/bestiary.go index 4f9a37b75..bd0428609 100644 --- a/src/stats/bestiary.go +++ b/src/stats/bestiary.go @@ -6,9 +6,11 @@ import ( neu "skycrypt/src/models/NEU" "slices" "strconv" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetBestiaryFamily(userProfile *models.Member, mobName string) *models.BestiaryMobOutput { +func GetBestiaryFamily(userProfile *skycrypttypes.Member, mobName string) *models.BestiaryMobOutput { bestiaryConstants := notenoughupdates.NEUConstants.Bestiary.Islands bestiary := userProfile.Bestiary.Kills @@ -26,7 +28,7 @@ func GetBestiaryFamily(userProfile *models.Member, mobName string) *models.Besti return nil } -func getCategoryMobs(userProfile *models.Member, mobs []neu.BestiaryMob) []models.BestiaryMobOutput { +func getCategoryMobs(userProfile *skycrypttypes.Member, mobs []neu.BestiaryMob) []models.BestiaryMobOutput { mobOutputs := make([]models.BestiaryMobOutput, 0) bestiaryKills := userProfile.Bestiary.Kills @@ -77,7 +79,7 @@ func getCategoryMobs(userProfile *models.Member, mobs []neu.BestiaryMob) []model return mobOutputs } -func GetBestiary(userProfile *models.Member) *models.BestiaryOutput { +func GetBestiary(userProfile *skycrypttypes.Member) *models.BestiaryOutput { output := &models.BestiaryOutput{ Categories: make(map[string]models.BestiaryCategoryOutput), FamiliesCompleted: 0, diff --git a/src/stats/collections.go b/src/stats/collections.go index dd26cb5e5..781f9bf85 100644 --- a/src/stats/collections.go +++ b/src/stats/collections.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getBossCollections(userProfile *models.Member) models.CollectionCategory { +func getBossCollections(userProfile *skycrypttypes.Member) models.CollectionCategory { bossCollections := []models.CollectionCategoryItem{} dungeons := GetFloorCompletions(userProfile) @@ -111,7 +113,7 @@ func getBossCollections(userProfile *models.Member) models.CollectionCategory { } } -func GetCollections(userProfile *models.Member, profile *models.Profile) models.CollectionsOutput { +func GetCollections(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) models.CollectionsOutput { usernames := map[string]string{} for memberId := range profile.Members { username, err := api.GetUsername(memberId) diff --git a/src/stats/crimson_isle.go b/src/stats/crimson_isle.go index 6e2d01ffb..5bec6d0d5 100644 --- a/src/stats/crimson_isle.go +++ b/src/stats/crimson_isle.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/constants" "skycrypt/src/models" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetKuudraCompletions(userProfile *models.Member) int { +func GetKuudraCompletions(userProfile *skycrypttypes.Member) int { if userProfile.CrimsonIsle.Kuudra == nil { return 0 } @@ -24,7 +26,7 @@ func GetKuudraCompletions(userProfile *models.Member) int { return kills } -func getKuudra(userProfile *models.Member) models.CrimsonIsleKuudra { +func getKuudra(userProfile *skycrypttypes.Member) models.CrimsonIsleKuudra { tiers, totalKills := []models.CrimsonIsleKuudraTier{}, 0 for kuudraId := range constants.KUUDRA_TIERS { if kuudraId == "total" || strings.HasPrefix(kuudraId, "highest") { @@ -64,7 +66,7 @@ func getDojoRank(points int) string { return "F" } -func getDojo(userProfile *models.Member) models.CrimsonIsleDojo { +func getDojo(userProfile *skycrypttypes.Member) models.CrimsonIsleDojo { totalPoints, challenges := 0, []models.CrimsonIsleDojoChallenge{} for challengeId, challengeData := range constants.DOJO { points := userProfile.CrimsonIsle.Dojo[fmt.Sprintf("dojo_points_%s", challengeId)] @@ -88,7 +90,7 @@ func getDojo(userProfile *models.Member) models.CrimsonIsleDojo { } } -func GetCrimsonIsle(userProfile *models.Member) *models.CrimsonIsleOutput { +func GetCrimsonIsle(userProfile *skycrypttypes.Member) *models.CrimsonIsleOutput { selectedFaction := userProfile.CrimsonIsle.SelectedFaction if selectedFaction == "" { selectedFaction = "None" diff --git a/src/stats/discord_embed.go b/src/stats/discord_embed.go index 4e89d8212..98a1309f3 100644 --- a/src/stats/discord_embed.go +++ b/src/stats/discord_embed.go @@ -5,6 +5,8 @@ import ( "fmt" redis "skycrypt/src/db" "skycrypt/src/models" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) func getSkillsForEmbed(skills *models.Skills) models.EmbedDataSkills { @@ -47,8 +49,8 @@ func getSlayersForEmbed(slayers *models.SlayersOutput) models.EmbedDataSlayers { return output } -func StoreEmbedData(mowojang *models.MowojangReponse, userProfile *models.Member, profile *models.Profile, networth map[string]float64) { - skills := GetSkills(userProfile, profile, &models.Player{}) +func StoreEmbedData(mowojang *models.MowojangReponse, userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, networth map[string]float64) { + skills := GetSkills(userProfile, profile, &skycrypttypes.Player{}) dungeons := GetDungeons(userProfile) slayers := GetSlayers(userProfile) diff --git a/src/stats/dungeons.go b/src/stats/dungeons.go index 85ba29cd3..efd120396 100644 --- a/src/stats/dungeons.go +++ b/src/stats/dungeons.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats/leveling" "skycrypt/src/utility" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getSecrets(data *models.Dungeons) models.SecretsOutput { +func getSecrets(data *skycrypttypes.Dungeons) models.SecretsOutput { secretsFound := max(data.Secrets, 1) totalRuns := 0.0 for _, dungeonType := range data.DungeonTypes { @@ -35,7 +37,7 @@ func getSecrets(data *models.Dungeons) models.SecretsOutput { } } -func getDungeonStats(userProfile *models.Member) models.DungeonStatsOutput { +func getDungeonStats(userProfile *skycrypttypes.Member) models.DungeonStatsOutput { return models.DungeonStatsOutput{ Secrets: getSecrets(&userProfile.Dungeons), HighestFloorBeatenNormal: userProfile.Dungeons.DungeonTypes["catacombs"].HighestTierCompleted, @@ -44,7 +46,7 @@ func getDungeonStats(userProfile *models.Member) models.DungeonStatsOutput { } } -func getScoreGrade(data models.BestRun) string { +func getScoreGrade(data skycrypttypes.BestRun) string { totalScore := data.ScoreExploration + data.ScoreSpeed + data.ScoreSkill + data.ScoreBonus switch { case totalScore <= 99: @@ -62,13 +64,13 @@ func getScoreGrade(data models.BestRun) string { } } -func getBestRun(bestRunData *[]models.BestRun) *models.BestRunOutput { +func getBestRun(bestRunData *[]skycrypttypes.BestRun) *models.BestRunOutput { if bestRunData == nil || len(*bestRunData) == 0 { return nil } var bestScore int - var bestRun *models.BestRun + var bestRun *skycrypttypes.BestRun for _, run := range *bestRunData { score := run.ScoreExploration + run.ScoreSpeed + run.ScoreSkill + run.ScoreBonus if bestRun == nil || score > bestScore { @@ -99,7 +101,7 @@ func getBestRun(bestRunData *[]models.BestRun) *models.BestRunOutput { return &result } -func getMostDamage(data *models.DungeonData, floorID string) models.MostDamageOutput { +func getMostDamage(data *skycrypttypes.DungeonData, floorID string) models.MostDamageOutput { damageFields := map[string]map[string]float64{ "berserk": data.MostDamageBerserk, "mage": data.MostDamageMage, @@ -122,7 +124,7 @@ func getMostDamage(data *models.DungeonData, floorID string) models.MostDamageOu } } -func formatCatacombsFloor(data *models.DungeonData, dungeonType string) []models.FormattedDungeonFloor { +func formatCatacombsFloor(data *skycrypttypes.DungeonData, dungeonType string) []models.FormattedDungeonFloor { output := make([]models.FormattedDungeonFloor, 0, len(constants.DUNGEONS.Floors[dungeonType])) floorData := constants.DUNGEONS.Floors[dungeonType] @@ -153,7 +155,7 @@ func formatCatacombsFloor(data *models.DungeonData, dungeonType string) []models return output } -func getClassData(userProfile *models.Member) models.ClassData { +func getClassData(userProfile *skycrypttypes.Member) models.ClassData { selectedClass := userProfile.Dungeons.SelectedDungeonClass if selectedClass == "" { selectedClass = "none" @@ -181,7 +183,7 @@ func getClassData(userProfile *models.Member) models.ClassData { return output } -func GetFloorCompletions(userProfile *models.Member) *models.FloorCompletionsOutput { +func GetFloorCompletions(userProfile *skycrypttypes.Member) *models.FloorCompletionsOutput { normalCompletions := userProfile.Dungeons.DungeonTypes["catacombs"].TierCompletions masterCompletions := userProfile.Dungeons.DungeonTypes["master_catacombs"].TierCompletions if normalCompletions == nil && masterCompletions == nil { @@ -218,7 +220,7 @@ func GetFloorCompletions(userProfile *models.Member) *models.FloorCompletionsOut } } -func GetDungeons(userProfile *models.Member) models.DungeonsOutput { +func GetDungeons(userProfile *skycrypttypes.Member) models.DungeonsOutput { catacombs := userProfile.Dungeons.DungeonTypes["catacombs"] masterCatacombs := userProfile.Dungeons.DungeonTypes["master_catacombs"] diff --git a/src/stats/enchanting.go b/src/stats/enchanting.go index 8034879fb..024206c42 100644 --- a/src/stats/enchanting.go +++ b/src/stats/enchanting.go @@ -3,9 +3,11 @@ package stats import ( "skycrypt/src/constants" "skycrypt/src/models" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getGame(gameData *models.ExperimentationGame, gameId string) []models.EnchantingGame { +func getGame(gameData *skycrypttypes.ExperimentationGame, gameId string) []models.EnchantingGame { var output []models.EnchantingGame for index, tier := range constants.EXPERIMENTS.Tiers { attempts := gameData.Attempts[index] @@ -35,7 +37,7 @@ func getGame(gameData *models.ExperimentationGame, gameId string) []models.Encha return output } -func GetEnchanting(userProfie *models.Member) models.EnchantingOutput { +func GetEnchanting(userProfie *skycrypttypes.Member) models.EnchantingOutput { if userProfie.Experimentation.ClaimsResets == nil { return models.EnchantingOutput{ Unlocked: false, @@ -45,7 +47,7 @@ func GetEnchanting(userProfie *models.Member) models.EnchantingOutput { output := map[string]models.EnchantingGameData{} games := []struct { key string - gameData *models.ExperimentationGame + gameData *skycrypttypes.ExperimentationGame }{ {"simon", userProfie.Experimentation.Simon}, {"numbers", userProfie.Experimentation.Numbers}, diff --git a/src/stats/farming.go b/src/stats/farming.go index 4834d4b70..9c6f27bc5 100644 --- a/src/stats/farming.go +++ b/src/stats/farming.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/models" statsItems "skycrypt/src/stats/items" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getMedalType(contest *models.JacobContest) string { +func getMedalType(contest *skycrypttypes.JacobContestData) string { position := contest.ClaimedPosition participants := contest.ClaimedParticipants if participants == nil || position == nil { @@ -36,7 +38,7 @@ func getMedalType(contest *models.JacobContest) string { return medal } -func GetFarming(userProfile *models.Member, items []models.ProcessedItem) models.FarmingOutput { +func GetFarming(userProfile *skycrypttypes.Member, items []models.ProcessedItem) models.FarmingOutput { output := models.FarmingOutput{ UniqueGolds: len(userProfile.JacobsContest.UniqueBrackets["gold"]), Pelts: userProfile.Quests.TrapperQuest.PeltCount, diff --git a/src/stats/fishing.go b/src/stats/fishing.go index caa5b0ad5..f33c62480 100644 --- a/src/stats/fishing.go +++ b/src/stats/fishing.go @@ -7,9 +7,11 @@ import ( statsItems "skycrypt/src/stats/items" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getTrophyFishProgress(userProfile *models.Member) []models.TrophyFishProgress { +func getTrophyFishProgress(userProfile *skycrypttypes.Member) []models.TrophyFishProgress { if len(userProfile.TrophyFish.Rewards) == 0 { return nil } @@ -30,7 +32,7 @@ func getTrophyFishProgress(userProfile *models.Member) []models.TrophyFishProgre return output } -func getTrophyFish(userProfile *models.Member) models.TrophyFishOutput { +func getTrophyFish(userProfile *skycrypttypes.Member) models.TrophyFishOutput { output := []models.TrophyFish{} for id, data := range constants.TROPHY_FISH { tf := models.TrophyFish{ @@ -88,7 +90,7 @@ func getTrophyFish(userProfile *models.Member) models.TrophyFishOutput { } } -func GetFishing(userProfile *models.Member, items []models.ProcessedItem) models.FishingOuput { +func GetFishing(userProfile *skycrypttypes.Member, items []models.ProcessedItem) models.FishingOuput { output := models.FishingOuput{ ItemsFished: int(userProfile.PlayerStats.ItemsFished.Total), Treasure: int(userProfile.PlayerStats.ItemsFished.Treasure), diff --git a/src/stats/garden.go b/src/stats/garden.go index 7f224ef48..f5ffe47c1 100644 --- a/src/stats/garden.go +++ b/src/stats/garden.go @@ -9,6 +9,8 @@ import ( "skycrypt/src/utility" "slices" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) type Garden struct { @@ -53,7 +55,7 @@ type PlotLayout struct { Layout []models.ProcessedItem `json:"layout"` } -func getVisitors(gardenData *models.GardenRaw) Visitors { +func getVisitors(gardenData *skycrypttypes.Garden) Visitors { VISITOR_RARITIES := notenoughupdates.NEUConstants.Garden.Visitors MAX_VISITORS := notenoughupdates.NEUConstants.Garden.MaxVisitors @@ -87,7 +89,7 @@ func getVisitors(gardenData *models.GardenRaw) Visitors { } } -func getCropMilestones(gardenData *models.GardenRaw) []CropMilestone { +func getCropMilestones(gardenData *skycrypttypes.Garden) []CropMilestone { milestones := make([]CropMilestone, 0, len(gardenData.ResourcesCollected)) for cropId, cropName := range constants.CROPS { milestones = append(milestones, CropMilestone{ @@ -102,7 +104,7 @@ func getCropMilestones(gardenData *models.GardenRaw) []CropMilestone { return milestones } -func getCropUpgrades(gardenData *models.GardenRaw) []CropUpgrade { +func getCropUpgrades(gardenData *skycrypttypes.Garden) []CropUpgrade { upgrades := make([]CropUpgrade, 0, len(gardenData.CropUpgradeLevels)) for cropId, cropName := range constants.CROPS { experience := stats.GetSkillExperience("crop_upgrade", int(gardenData.CropUpgradeLevels[cropId])) @@ -119,7 +121,7 @@ func getCropUpgrades(gardenData *models.GardenRaw) []CropUpgrade { return upgrades } -func getComposter(gardenData *models.GardenRaw) map[string]int { +func getComposter(gardenData *skycrypttypes.Garden) map[string]int { output := make(map[string]int, len(gardenData.ComposterData.Upgrades)) for _, upgrade := range notenoughupdates.NEUConstants.Garden.ComposterUpgrades { output[upgrade] = int(gardenData.ComposterData.Upgrades[upgrade]) @@ -128,7 +130,7 @@ func getComposter(gardenData *models.GardenRaw) map[string]int { return output } -func getPlotLayout(gardenData *models.GardenRaw) PlotLayout { +func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { PLOT_LAYOUT := notenoughupdates.NEUConstants.Garden.SortedPlots PLOT_NAMES := notenoughupdates.NEUConstants.Garden.Plots @@ -193,7 +195,7 @@ func getPlotLayout(gardenData *models.GardenRaw) PlotLayout { return output } -func GetGarden(gardenData *models.GardenRaw) *Garden { +func GetGarden(gardenData *skycrypttypes.Garden) *Garden { return &Garden{ Level: stats.GetLevelByXp(int(gardenData.Experience), &stats.ExtraSkillData{Type: "garden"}), Visitors: getVisitors(gardenData), diff --git a/src/stats/items.go b/src/stats/items.go index c43f38fa2..c786ee0fd 100644 --- a/src/stats/items.go +++ b/src/stats/items.go @@ -3,15 +3,15 @@ package stats import ( "fmt" redis "skycrypt/src/db" - "skycrypt/src/models" "skycrypt/src/utility" "strings" "sync" + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" jsoniter "github.com/json-iterator/go" ) -func GetRawInventory(useProfile *models.Member, inventoryId string) string { +func GetRawInventory(useProfile *skycrypttypes.Member, inventoryId string) string { switch inventoryId { case "inventory": return useProfile.Inventory.Inventory.Data @@ -47,9 +47,9 @@ func GetRawInventory(useProfile *models.Member, inventoryId string) string { return "" } -func GetInventory(useProfile *models.Member, inventoryId string) []models.Item { +func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycrypttypes.Item { if useProfile.Inventory == nil { - return []models.Item{} + return []skycrypttypes.Item{} } if inventoryId == "backpack" { @@ -64,7 +64,7 @@ func GetInventory(useProfile *models.Member, inventoryId string) []models.Item { type result struct { inventoryId string - items []models.Item + items []skycrypttypes.Item err error } @@ -91,7 +91,7 @@ func GetInventory(useProfile *models.Member, inventoryId string) []models.Item { close(resultChan) }() - decodedInventory := make(map[string][]models.Item, len(encodedInventories)) + decodedInventory := make(map[string][]skycrypttypes.Item, len(encodedInventories)) for res := range resultChan { if res.err != nil { fmt.Printf("Error decoding inventory %s: %v\n", res.inventoryId, res.err) @@ -101,7 +101,7 @@ func GetInventory(useProfile *models.Member, inventoryId string) []models.Item { decodedInventory[res.inventoryId] = res.items } - output := []models.Item{} + output := []skycrypttypes.Item{} for inventoryId, items := range decodedInventory { if strings.HasPrefix(inventoryId, "backpack_") && !strings.Contains(inventoryId, "icon") { @@ -129,7 +129,7 @@ func GetInventory(useProfile *models.Member, inventoryId string) []models.Item { return decodedInventory.Items } -func GetItems(useProfile *models.Member, profileId string) (map[string][]models.Item, error) { +func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][]skycrypttypes.Item, error) { encodedInventories := map[string]*string{ "inventory": &useProfile.Inventory.Inventory.Data, "enderchest": &useProfile.Inventory.Enderchest.Data, @@ -162,7 +162,7 @@ func GetItems(useProfile *models.Member, profileId string) (map[string][]models. type result struct { inventoryId string - items []models.Item + items []skycrypttypes.Item err error } @@ -189,7 +189,7 @@ func GetItems(useProfile *models.Member, profileId string) (map[string][]models. close(resultChan) }() - decodedInventory := make(map[string][]models.Item, len(encodedInventories)) + decodedInventory := make(map[string][]skycrypttypes.Item, len(encodedInventories)) for res := range resultChan { if res.err != nil { fmt.Printf("Error decoding inventory %s: %v\n", res.inventoryId, res.err) @@ -199,7 +199,7 @@ func GetItems(useProfile *models.Member, profileId string) (map[string][]models. decodedInventory[res.inventoryId] = res.items } - output := make(map[string][]models.Item) + output := make(map[string][]skycrypttypes.Item) for inventoryId, items := range decodedInventory { if !strings.Contains(inventoryId, "backpack") { output[inventoryId] = items @@ -207,7 +207,7 @@ func GetItems(useProfile *models.Member, profileId string) (map[string][]models. if strings.HasPrefix(inventoryId, "backpack_") && !strings.Contains(inventoryId, "icon") { if output["backpack"] == nil { - output["backpack"] = []models.Item{} + output["backpack"] = []skycrypttypes.Item{} } backpackIndex := strings.Split(inventoryId, "_")[1] diff --git a/src/stats/items/helper.go b/src/stats/items/helper.go index fb1f91ddd..2d898cab0 100644 --- a/src/stats/items/helper.go +++ b/src/stats/items/helper.go @@ -7,6 +7,8 @@ import ( "skycrypt/src/models" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) var rarityPattern = func() *regexp.Regexp { @@ -29,7 +31,7 @@ type itemDataType struct { Rarity string } -func ParseItemTypeFromLore(lore []string, item models.Item) itemDataType { +func ParseItemTypeFromLore(lore []string, item skycrypttypes.Item) itemDataType { loreCopy := make([]string, len(lore)) copy(loreCopy, lore) @@ -66,7 +68,7 @@ func ParseItemTypeFromLore(lore []string, item models.Item) itemDataType { } } -func getCategories(itemType string, item models.Item) []string { +func getCategories(itemType string, item skycrypttypes.Item) []string { categories := []string{} enchantments := item.Tag.ExtraAttributes.Enchantments @@ -272,9 +274,9 @@ func AddLevelableEnchantmentsToLore(amount int, constant constants.EnchantmentLa } func GetId(item models.ProcessedItem) string { - if item.Tag == nil || item.Tag.ExtraAttributes.ID == "" { + if item.Tag == nil || item.Tag.ExtraAttributes.Id == "" { return "" } - return item.Tag.ExtraAttributes.ID + return item.Tag.ExtraAttributes.Id } diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index 7bd8a0df6..296409e47 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -5,16 +5,18 @@ import ( "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func decodeMuseumItems(museumData *models.Museum) models.DecodedMuseumItems { +func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumItems { output := models.DecodedMuseumItems{ Items: make(map[string]models.ProcessedMuseumItem), Special: []models.ProcessedMuseumItem{}, Value: 0, } - for itemId, itemData := range museumData.Items { + for itemId, itemData := range *museumData.Items { decodedItem, err := utility.DecodeInventory(&itemData.Items.Data) if err != nil { continue @@ -31,7 +33,7 @@ func decodeMuseumItems(museumData *models.Museum) models.DecodedMuseumItems { output.Items[itemId] = data } - for _, itemData := range museumData.Special { + for _, itemData := range *museumData.Special { decodedItem, err := utility.DecodeInventory(&itemData.Items.Data) if err != nil { continue @@ -120,12 +122,16 @@ func getMaxMissingItems(category string, output map[string]ProcessedMuseumItem) } */ -func ProcessMuseumItems(museumData *models.Museum) models.MuseumResult { +func ProcessMuseumItems(museumData *skycrypttypes.Museum) models.MuseumResult { + if museumData.Items == nil || museumData.Special == nil { + return models.MuseumResult{} + } + decodedMuseum := decodeMuseumItems(museumData) output := make(map[string]models.ProcessedMuseumItem) for _, itemId := range constants.MUSEUM.GetAllItems() { - _, exists := museumData.Items[itemId] + _, exists := (*museumData.Items)[itemId] _, alreadySet := output[itemId] if !exists && !alreadySet { output[itemId] = models.ProcessedMuseumItem{ @@ -260,28 +266,28 @@ func formatMuseumItemProgress(item *models.MuseumInventoryItem, museumData model item.Lore = append(item.Lore, fmt.Sprintf(`§7Items Donated: §b%d`, museumData.Special.Amount), "", "§eClick to view!") case "weapons": item.Lore = append(item.Lore, - fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Weapons.Amount*100)/museumData.Weapons.Total), + fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Weapons.Amount*100)/max(museumData.Weapons.Total, 1)), fmt.Sprintf("%s §b%d §9/ §b%d", formatProgressBar(museumData.Weapons.Amount, museumData.Weapons.Total, "9", "f"), museumData.Weapons.Amount, museumData.Weapons.Total), "", "§eClick to view!", ) case "armor": item.Lore = append(item.Lore, - fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Armor.Amount*100)/museumData.Armor.Total), + fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Armor.Amount*100)/max(museumData.Armor.Total, 1)), fmt.Sprintf("%s §b%d §9/ §b%d", formatProgressBar(museumData.Armor.Amount, museumData.Armor.Total, "9", "f"), museumData.Armor.Amount, museumData.Armor.Total), "", "§eClick to view!", ) case "rarities": item.Lore = append(item.Lore, - fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Rarities.Amount*100)/museumData.Rarities.Total), + fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Rarities.Amount*100)/max(museumData.Rarities.Total, 1)), fmt.Sprintf("%s §b%d §9/ §b%d", formatProgressBar(museumData.Rarities.Amount, museumData.Rarities.Total, "9", "f"), museumData.Rarities.Amount, museumData.Rarities.Total), "", "§eClick to view!", ) case "total": item.Lore = append(item.Lore, - fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Total.Amount*100)/museumData.Total.Total), + fmt.Sprintf("§7Items Donated: §e%d§6%%", (museumData.Total.Amount*100)/max(museumData.Total.Total, 1)), fmt.Sprintf("%s §b%d §9/ §b%d", formatProgressBar(museumData.Total.Amount, museumData.Total.Total, "9", "f"), museumData.Total.Amount, museumData.Total.Total), "", "§eClick to view!", @@ -319,7 +325,7 @@ func getMuseumItems(section string) []string { } } -func GetMuseum(museum *models.Museum) []models.ProcessedItem { +func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { museumItems := ProcessMuseumItems(museum) output := make([]models.ProcessedItem, 6*9) diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index a64a9fa36..767167e53 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -3,15 +3,18 @@ package stats import ( "fmt" notenoughupdates "skycrypt/src/NotEnoughUpdates" + "skycrypt/src/constants" "skycrypt/src/lib" "skycrypt/src/models" "skycrypt/src/utility" "slices" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func ProcessItems(items *[]models.Item, source string) []models.ProcessedItem { +func ProcessItems(items *[]skycrypttypes.Item, source string) []models.ProcessedItem { var processedItems []models.ProcessedItem for _, item := range *items { processedItem := ProcessItem(&item, source) @@ -21,7 +24,7 @@ func ProcessItems(items *[]models.Item, source string) []models.ProcessedItem { return processedItems } -func ProcessItem(item *models.Item, source string) models.ProcessedItem { +func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { if item.Tag == nil { return models.ProcessedItem{} } @@ -33,19 +36,6 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { Source: source, } - // POTIONS - if *item.ID == 373 { - color := constants.POTION_COLORS[*item.Damage] - var potionType string - if *item.Damage&16384 != 0 { - potionType = "splash" - } else { - potionType = "normal" - } - - processedItem.Texture = "http://localhost:8080/api/potion/" + potionType + "/" + color - } - rawLore := make([]string, len(processedItem.Lore)) for i, lore := range processedItem.Lore { rawLore[i] = utility.GetRawLore(lore) @@ -54,72 +44,111 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { itemType := ParseItemTypeFromLore(rawLore, *item) processedItem.Rarity = itemType.Rarity processedItem.Categories = itemType.Categories - processedItem.Recombobulated = item.Tag.ExtraAttributes.Recombobulated == 1 - if item.Tag.SkullOwner == nil { - // Do not apply shiny effecet to skulls - processedItem.Shiny = len(item.Tag.ExtraAttributes.Enchantments) > 0 - } - if processedItem.Recombobulated { processedItem.Lore = append(processedItem.Lore, "§8(Recombobulated)") } - if item.Tag.ExtraAttributes.Timestamp != nil { - if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(float64); ok { - processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%.0f}", timestamp)) - } else if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(string); ok { - parsedTimestamp := utility.ParseTimestamp(timestamp) - processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%d}", parsedTimestamp)) - } else if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(int64); ok { - processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%d}", timestamp)) - } else { - fmt.Printf("Unexpected type for timestamp: %T, %s\n", item.Tag.ExtraAttributes.Timestamp, item.Tag.ExtraAttributes.Timestamp) - } - } - if item.Tag.Display.Color != 0 { color := fmt.Sprintf("#%06X", item.Tag.Display.Color) - if item.Tag.ExtraAttributes.Dye != "" { - defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.ID].Color + if item.Tag.ExtraAttributes.DyeItem != "" { + defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.Id].Color if defaultHexColor != "" { - fmt.Printf("[CUSTOM_RESOURCES] Using default color for item %s: %s\n", item.Tag.ExtraAttributes.ID, defaultHexColor) + fmt.Printf("[CUSTOM_RESOURCES] Using default color for item %s: %s\n", item.Tag.ExtraAttributes.Id, defaultHexColor) color = defaultHexColor } } - if !slices.Contains(constants.BLACKLISTED_HEX_ARMOR_PIECES, item.Tag.ExtraAttributes.ID) { + if !slices.Contains(constants.BLACKLISTED_HEX_ARMOR_PIECES, item.Tag.ExtraAttributes.Id) { processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Color: %s", color)) } } - if item.Tag.ExtraAttributes.Gems != nil { - gems := ParseItemGems(item.Tag.ExtraAttributes.Gems, itemType.Rarity) - if len(gems) > 0 { - processedItem.Lore = append(processedItem.Lore, "", "§7Applied Gemstones:") - for _, gem := range gems { - processedItem.Lore = append(processedItem.Lore, fmt.Sprintf("§7 - %s", gem.Lore)) + if item.Tag.ExtraAttributes != nil { + processedItem.Recombobulated = item.Tag.ExtraAttributes.Recombobulated == 1 + if item.Tag.SkullOwner == nil { + // Do not apply shiny effecet to skulls + processedItem.Shiny = len(item.Tag.ExtraAttributes.Enchantments) > 0 + } + + // Timestamps + if item.Tag.ExtraAttributes.Timestamp != nil { + if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(float64); ok { + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%.0f}", timestamp)) + } else if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(string); ok { + parsedTimestamp := utility.ParseTimestamp(timestamp) + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%d}", parsedTimestamp)) + } else if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(int64); ok { + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Obtained: §c{TIMESTAMP:%d}", timestamp)) + } else { + fmt.Printf("Unexpected type for timestamp: %T, %s\n", item.Tag.ExtraAttributes.Timestamp, item.Tag.ExtraAttributes.Timestamp) } } - } - if item.Tag.ExtraAttributes.HecatombSRuns != nil { - AddLevelableEnchantmentsToLore(*item.Tag.ExtraAttributes.HecatombSRuns, constants.ENCHANTMENT_LADDERS["hecatomb_s_runs"], &processedItem.Lore) - } + // Gemstones + if item.Tag.ExtraAttributes.Gems != nil { + gems := ParseItemGems(item.Tag.ExtraAttributes.Gems, itemType.Rarity) + if len(gems) > 0 { + processedItem.Lore = append(processedItem.Lore, "", "§7Applied Gemstones:") + for _, gem := range gems { + processedItem.Lore = append(processedItem.Lore, fmt.Sprintf("§7 - %s", gem.Lore)) + } + } + } - if item.Tag.ExtraAttributes.ChampionCombatXP != nil { - AddLevelableEnchantmentsToLore(int(*item.Tag.ExtraAttributes.ChampionCombatXP), constants.ENCHANTMENT_LADDERS["champion_combat_xp"], &processedItem.Lore) - } + // Levelable enchantments + if item.Tag.ExtraAttributes.HecatombSRuns != 0 { + AddLevelableEnchantmentsToLore(item.Tag.ExtraAttributes.HecatombSRuns, constants.ENCHANTMENT_LADDERS["hecatomb_s_runs"], &processedItem.Lore) + } - if item.Tag.ExtraAttributes.FarmedCultivating != nil { - AddLevelableEnchantmentsToLore(*item.Tag.ExtraAttributes.FarmedCultivating, constants.ENCHANTMENT_LADDERS["farmed_cultivating"], &processedItem.Lore) - } + if item.Tag.ExtraAttributes.ChampionCombatXP != 0 { + AddLevelableEnchantmentsToLore(int(item.Tag.ExtraAttributes.ChampionCombatXP), constants.ENCHANTMENT_LADDERS["champion_combat_xp"], &processedItem.Lore) + } - if item.Tag.ExtraAttributes.ExpertiseKills != nil { - AddLevelableEnchantmentsToLore(*item.Tag.ExtraAttributes.ExpertiseKills, constants.ENCHANTMENT_LADDERS["expertise_kills"], &processedItem.Lore) + if item.Tag.ExtraAttributes.FarmedCultivating != 0 { + AddLevelableEnchantmentsToLore(item.Tag.ExtraAttributes.FarmedCultivating, constants.ENCHANTMENT_LADDERS["farmed_cultivating"], &processedItem.Lore) + } + + if item.Tag.ExtraAttributes.ExpertiseKills != 0 { + AddLevelableEnchantmentsToLore(item.Tag.ExtraAttributes.ExpertiseKills, constants.ENCHANTMENT_LADDERS["expertise_kills"], &processedItem.Lore) + } + + if item.Tag.ExtraAttributes.CompactBlocks != 0 { + AddLevelableEnchantmentsToLore(item.Tag.ExtraAttributes.CompactBlocks, constants.ENCHANTMENT_LADDERS["compact_blocks"], &processedItem.Lore) + } + + // Wiki links + NEUItem, err := notenoughupdates.GetItem(item.Tag.ExtraAttributes.Id) + if err == nil && len(NEUItem.Wiki) > 0 { + processedItem.Wiki = &models.WikipediaLinks{} + if len(NEUItem.Wiki) == 1 { + if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { + processedItem.Wiki.Official = NEUItem.Wiki[0] + } else { + processedItem.Wiki.Fandom = NEUItem.Wiki[0] + } + } else { + if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { + processedItem.Wiki.Official = NEUItem.Wiki[0] + processedItem.Wiki.Fandom = NEUItem.Wiki[1] + } else { + processedItem.Wiki.Fandom = NEUItem.Wiki[0] + processedItem.Wiki.Official = NEUItem.Wiki[1] + } + } + } } - if item.Tag.ExtraAttributes.CompactBlocks != nil { - AddLevelableEnchantmentsToLore(*item.Tag.ExtraAttributes.CompactBlocks, constants.ENCHANTMENT_LADDERS["compact_blocks"], &processedItem.Lore) + // POTIONS + if *item.ID == 373 { + color := constants.POTION_COLORS[*item.Damage] + var potionType string + if *item.Damage&16384 != 0 { + potionType = "splash" + } else { + potionType = "normal" + } + + processedItem.Texture = "http://localhost:8080/api/potion/" + potionType + "/" + color } if processedItem.Texture == "" { @@ -136,7 +165,7 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { } if processedItem.Texture == "" { - fmt.Printf("[CUSTOM_RESOURCES] Found no textures for item: %s\n", item.Tag.ExtraAttributes.ID) + fmt.Printf("[CUSTOM_RESOURCES] Found no textures for item: %s\n", item.Tag.ExtraAttributes.Id) } } @@ -144,27 +173,18 @@ func ProcessItem(item *models.Item, source string) models.ProcessedItem { processedItem.ContainsItems = ProcessItems(&item.ContainsItems, source) } - if item.Tag.ExtraAttributes.ID != "" { - NEUItem, err := notenoughupdates.GetItem(item.Tag.ExtraAttributes.ID) - if err == nil && len(NEUItem.Wiki) > 0 { - processedItem.Wiki = &models.WikipediaLinks{} - if len(NEUItem.Wiki) == 1 { - if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { - processedItem.Wiki.Official = NEUItem.Wiki[0] - } else { - processedItem.Wiki.Fandom = NEUItem.Wiki[0] - } - } else { - if strings.HasPrefix(NEUItem.Wiki[0], "https://wiki.hypixel.net/") { - processedItem.Wiki.Official = NEUItem.Wiki[0] - processedItem.Wiki.Fandom = NEUItem.Wiki[1] - } else { - processedItem.Wiki.Fandom = NEUItem.Wiki[0] - processedItem.Wiki.Official = NEUItem.Wiki[1] - } + /*if item.Tag.ExtraAttributes.ID != "" { + prices, err := skyhelpernetworthgo.GetPrices(true, 69420, 1) + if err == nil { + itemCalculator, err := skyhelpernetworthgo.CalculateItem(item, prices, nil) + if err == nil { + processedItem.Lore = append(processedItem.Lore, fmt.Sprintf("§BALLS: %s", utility.FormatNumber(itemCalculator.Price))) + } else {I + + fmt.Printf("You fucked up %v\n", err) } } - } + }*/ // TODO: add cake bag & legacy backpack support diff --git a/src/stats/leveling/leveling.go b/src/stats/leveling/leveling.go index 3ee68a7cd..86c5a24ce 100644 --- a/src/stats/leveling/leveling.go +++ b/src/stats/leveling/leveling.go @@ -7,6 +7,8 @@ import ( "skycrypt/src/models" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) var skillTables = map[string]map[int]int{ @@ -171,7 +173,7 @@ func GetLevelByXp(xp int, extra *ExtraSkillData) models.Skill { } } -func GetSkillLevelCaps(userProfile *models.Member, player *models.Player) map[string]int { +func GetSkillLevelCaps(userProfile *skycrypttypes.Member, player *skycrypttypes.Player) map[string]int { caps := map[string]int{ "farming": 50, "taming": 50, @@ -194,7 +196,7 @@ func GetSkillLevelCaps(userProfile *models.Member, player *models.Player) map[st } // GetSocialSkillExperience calculates the total social skill experience for a given profile -func GetSocialSkillExperience(profile *models.Profile) float64 { +func GetSocialSkillExperience(profile *skycrypttypes.Profile) float64 { total := 0.00 for _, member := range profile.Members { total += member.PlayerData.Experience.SkillSocial diff --git a/src/stats/mining.go b/src/stats/mining.go index b11692bd2..e243e0e9f 100644 --- a/src/stats/mining.go +++ b/src/stats/mining.go @@ -10,16 +10,18 @@ import ( "skycrypt/src/utility" "slices" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getPeakOfTheMountain(userProfile *models.Member) models.PeakOfTheMountain { +func getPeakOfTheMountain(userProfile *skycrypttypes.Member) models.PeakOfTheMountain { return models.PeakOfTheMountain{ Level: userProfile.Mining.Nodes["special_0"], MaxLevel: constants.MAX_PEAK_OF_THE_MOUNTAIN_LEVEL, } } -func getSelectedPickaxeAbility(userProfile *models.Member) string { +func getSelectedPickaxeAbility(userProfile *skycrypttypes.Member) string { if userProfile.Mining.SelectedPickaxeAbility == "" { return "None" } @@ -45,7 +47,7 @@ func calcHotmTokens(hotmTier int, potmTier int) int { return tokens } -func getHotmTokens(hotmLevel models.Skill, userProfile *models.Member) models.HotmTokens { +func getHotmTokens(hotmLevel models.Skill, userProfile *skycrypttypes.Member) models.HotmTokens { potmTier := userProfile.Mining.Nodes["special_0"] hotmTokensAmount := calcHotmTokens(hotmLevel.Level, potmTier) return models.HotmTokens{ @@ -55,7 +57,7 @@ func getHotmTokens(hotmLevel models.Skill, userProfile *models.Member) models.Ho } } -func getCommissions(userProfile *models.Member, player *models.Player) models.Commissions { +func getCommissions(userProfile *skycrypttypes.Member, player *skycrypttypes.Player) models.Commissions { var milestone = 0 for _, tutorial := range userProfile.Objectives.Tutorial { if strings.HasPrefix(tutorial, "commission_milestone_reward_mining_xp_tier_") { @@ -80,7 +82,7 @@ func getCommissions(userProfile *models.Member, player *models.Player) models.Co } } -func getCrystalHollows(userProfile *models.Member) models.CrystalHollows { +func getCrystalHollows(userProfile *skycrypttypes.Member) models.CrystalHollows { totalRuns := 0 for _, crystalData := range userProfile.Mining.Crystals { if crystalData.TotalPlaced > totalRuns { @@ -121,7 +123,7 @@ func getCrystalHollows(userProfile *models.Member) models.CrystalHollows { return crystalHollows } -func getPowderAmount(userProfile *models.Member, powderType string) models.PowderAmount { +func getPowderAmount(userProfile *skycrypttypes.Member, powderType string) models.PowderAmount { spent := 0 total := 0 available := 0 @@ -148,7 +150,7 @@ func getPowderAmount(userProfile *models.Member, powderType string) models.Powde } } -func getPowder(userProfile *models.Member) models.PowderOutput { +func getPowder(userProfile *skycrypttypes.Member) models.PowderOutput { return models.PowderOutput{ Mithril: getPowderAmount(userProfile, "mithril"), Gemstone: getPowderAmount(userProfile, "gemstone"), @@ -157,7 +159,7 @@ func getPowder(userProfile *models.Member) models.PowderOutput { } -func getForge(userProfile *models.Member) []models.ForgeOutput { +func getForge(userProfile *skycrypttypes.Member) []models.ForgeOutput { output := []models.ForgeOutput{} quickForgeLevel := userProfile.Mining.Nodes["forge_time"] @@ -189,7 +191,7 @@ func getForge(userProfile *models.Member) []models.ForgeOutput { return output } -func getGlaciteTunnels(userProfile *models.Member) models.GlaciteTunnels { +func getGlaciteTunnels(userProfile *skycrypttypes.Member) models.GlaciteTunnels { if userProfile.GlaciteTunnels == nil { return models.GlaciteTunnels{} } @@ -243,7 +245,7 @@ func getGlaciteTunnels(userProfile *models.Member) models.GlaciteTunnels { return output } -func GetMining(userProfile *models.Member, player *models.Player, items []models.ProcessedItem) models.MiningOutput { +func GetMining(userProfile *skycrypttypes.Member, player *skycrypttypes.Player, items []models.ProcessedItem) models.MiningOutput { HOTMLevel := stats.GetLevelByXp(int(userProfile.Mining.Experience), &stats.ExtraSkillData{Type: "hotm"}) return models.MiningOutput{ diff --git a/src/stats/minions.go b/src/stats/minions.go index aaf44652c..6802b6995 100644 --- a/src/stats/minions.go +++ b/src/stats/minions.go @@ -6,9 +6,11 @@ import ( "skycrypt/src/utility" "slices" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getMinionSlots(profile *models.Profile, tiers int) *models.MinionSlotsOutput { +func getMinionSlots(profile *skycrypttypes.Profile, tiers int) *models.MinionSlotsOutput { keys := make([]int, 0, len(constants.MINION_SLOTS)) for k := range constants.MINION_SLOTS { keys = append(keys, k) @@ -40,7 +42,7 @@ func getMinionSlots(profile *models.Profile, tiers int) *models.MinionSlotsOutpu } } -func getCraftedMinions(profile *models.Profile) map[string][]int { +func getCraftedMinions(profile *skycrypttypes.Profile) map[string][]int { craftedMinions := make(map[string][]int) for _, member := range profile.Members { for _, minion := range member.PlayerData.Minions { @@ -68,7 +70,7 @@ func getCraftedMinions(profile *models.Profile) map[string][]int { return craftedMinions } -func GetMinions(profile *models.Profile) models.MinionsOutput { +func GetMinions(profile *skycrypttypes.Profile) models.MinionsOutput { craftedMinions := getCraftedMinions(profile) output := models.MinionsOutput{ diff --git a/src/stats/misc.go b/src/stats/misc.go index a025e7b5d..3c22e3f39 100644 --- a/src/stats/misc.go +++ b/src/stats/misc.go @@ -3,9 +3,10 @@ package stats import ( "fmt" "skycrypt/src/constants" - "skycrypt/src/models" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) type MiscOutput struct { @@ -101,7 +102,7 @@ type MiscGifts struct { Received int `json:"received"` } -func getEssence(userProfile *models.Member) []MiscEssence { +func getEssence(userProfile *skycrypttypes.Member) []MiscEssence { essence := make([]MiscEssence, 0, len(constants.ESSENCE)) for essenceId, essenceData := range constants.ESSENCE { essence = append(essence, MiscEssence{ @@ -114,7 +115,7 @@ func getEssence(userProfile *models.Member) []MiscEssence { return essence } -func getKills(userProfile *models.Member) MiscKills { +func getKills(userProfile *skycrypttypes.Member) MiscKills { totalKills, totalDeaths := 0, 0 kills, deaths := []MiscKill{}, []MiscKill{} for id, amount := range userProfile.PlayerStats.Kills { @@ -159,14 +160,14 @@ func getKills(userProfile *models.Member) MiscKills { } } -func getGifts(userProfile *models.Member) MiscGifts { +func getGifts(userProfile *skycrypttypes.Member) MiscGifts { return MiscGifts{ Given: int(userProfile.PlayerStats.Gifts.Given), Received: int(userProfile.PlayerStats.Gifts.Received), } } -func getSeasonOfJerry(userProfile *models.Member) MiscSeasonOfJerry { +func getSeasonOfJerry(userProfile *skycrypttypes.Member) MiscSeasonOfJerry { return MiscSeasonOfJerry{ MostSnowballsHit: int(userProfile.PlayerStats.WinterIslandData.MostSnowballsHit), MostDamageDealt: int(userProfile.PlayerStats.WinterIslandData.MostDamageDealt), @@ -175,7 +176,7 @@ func getSeasonOfJerry(userProfile *models.Member) MiscSeasonOfJerry { } } -func getDragons(userProfile *models.Member) MiscDragons { +func getDragons(userProfile *skycrypttypes.Member) MiscDragons { dragonKills, dragonKillsTotal, dragonDeaths, dragonDeathsTotal := map[string]float64{}, 0.0, map[string]float64{}, 0.0 for mobId, amount := range userProfile.PlayerStats.Kills { if strings.HasPrefix(mobId, "master_wither_king") { @@ -214,14 +215,14 @@ func getDragons(userProfile *models.Member) MiscDragons { } } -func getEndstoneProtector(userProfile *models.Member) MiscEndstoneProtector { +func getEndstoneProtector(userProfile *skycrypttypes.Member) MiscEndstoneProtector { return MiscEndstoneProtector{ Kills: int(userProfile.PlayerStats.Kills["corrupted_protector"]), Deaths: int(userProfile.PlayerStats.Deaths["corrupted_protector"]), } } -func getDamage(userProfile *models.Member) MiscDamage { +func getDamage(userProfile *skycrypttypes.Member) MiscDamage { return MiscDamage{ HighestCriticalDamage: userProfile.PlayerStats.HighestCriticalDamage, } @@ -261,14 +262,14 @@ func getPetMilestone(typeName string, amount float64) MiscPetMilestone { } } -func getPetMilestones(userProfile *models.Member) map[string]MiscPetMilestone { +func getPetMilestones(userProfile *skycrypttypes.Member) map[string]MiscPetMilestone { return map[string]MiscPetMilestone{ "sea_creatures_killed": getPetMilestone("sea_creatures_killed", userProfile.PlayerStats.Pets.Milestone.SeaCreaturesKilled), "ores_mined": getPetMilestone("ores_mined", userProfile.PlayerStats.Pets.Milestone.OresMined), } } -func getMythologicalEvent(userProfile *models.Member) MiscMythologicalEvent { +func getMythologicalEvent(userProfile *skycrypttypes.Member) MiscMythologicalEvent { return MiscMythologicalEvent{ Kills: userProfile.PlayerStats.Mythos.Kills, BurrowsDugNext: userProfile.PlayerStats.Mythos.BurrowsDugNext, @@ -278,7 +279,7 @@ func getMythologicalEvent(userProfile *models.Member) MiscMythologicalEvent { } } -func getProfileUpgrades(profile *models.Profile) MiscProfileUpgrades { +func getProfileUpgrades(profile *skycrypttypes.Profile) MiscProfileUpgrades { output := MiscProfileUpgrades{} for upgrade := range constants.PROFILE_UPGRADES { output[upgrade] = 0 @@ -295,7 +296,7 @@ func getProfileUpgrades(profile *models.Profile) MiscProfileUpgrades { return output } -func getAuctions(userProfile *models.Member) MiscAuctions { +func getAuctions(userProfile *skycrypttypes.Member) MiscAuctions { auctions := userProfile.PlayerStats.Auctions totalSold, totalSoldAmount, totalBought, totalBoughtAmount := map[string]float64{}, 0.0, map[string]float64{}, 0.0 @@ -327,7 +328,7 @@ func getAuctions(userProfile *models.Member) MiscAuctions { } } -func getUncategorized(userProfile *models.Member) map[string]any { +func getUncategorized(userProfile *skycrypttypes.Member) map[string]any { personalBank := constants.BANK_COOLDOWN[userProfile.Profile.PersonalBankUpgrade] if personalBank == "" { personalBank = "Unknown" @@ -345,7 +346,7 @@ func getUncategorized(userProfile *models.Member) map[string]any { } } -func getClaimedItems(player *models.Player) map[string]int64 { +func getClaimedItems(player *skycrypttypes.Player) map[string]int64 { return map[string]int64{ "potato_talisman": player.ClaimedPotatoTalisman, "potato_basket": player.ClaimedPotatoBasket, @@ -357,7 +358,7 @@ func getClaimedItems(player *models.Player) map[string]int64 { } } -func GetMisc(userProfile *models.Member, profile *models.Profile, player *models.Player) *MiscOutput { +func GetMisc(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, player *skycrypttypes.Player) *MiscOutput { return &MiscOutput{ Essence: getEssence(userProfile), Kills: getKills(userProfile), diff --git a/src/stats/missing.go b/src/stats/missing.go index f0068ee3d..cfae93bb5 100644 --- a/src/stats/missing.go +++ b/src/stats/missing.go @@ -5,6 +5,8 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats/items" "slices" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) func hasAccessory(accessories *[]models.InsertAccessory, id string, rarity string, ignoreRarity bool) bool { @@ -79,7 +81,7 @@ func GetMagicalPower(rarity string, id string) int { return constants.MAGICAL_POWER[rarity] } -func getMagicalPowerData(accessories *[]models.InsertAccessory, userProfile *models.Member) models.GetMagicalPowerOutput { +func getMagicalPowerData(accessories *[]models.InsertAccessory, userProfile *skycrypttypes.Member) models.GetMagicalPowerOutput { output := models.GetMagicalPowerOutput{ Rarities: models.GetMagicalPowerRarities{}, } @@ -211,7 +213,7 @@ func getMissing(accessories *[]models.InsertAccessory, accessoryIds []models.Acc } } -func GetMissingAccessories(accessories models.AccessoriesOutput, userProfile *models.Member) models.GetMissingAccessoresOutput { +func GetMissingAccessories(accessories models.AccessoriesOutput, userProfile *skycrypttypes.Member) models.GetMissingAccessoresOutput { if len(accessories.AccessoryIds) == 0 && accessories.Accessories == nil { return models.GetMissingAccessoresOutput{} } diff --git a/src/stats/other.go b/src/stats/other.go index e6cac5d02..e19a92d69 100644 --- a/src/stats/other.go +++ b/src/stats/other.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/api" "skycrypt/src/constants" "skycrypt/src/models" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetProfile(profiles *models.HypixelProfilesResponse, profileId ...string) (*models.Profile, error) { +func GetProfile(profiles *models.HypixelProfilesResponse, profileId ...string) (*skycrypttypes.Profile, error) { if len(profiles.Profiles) == 0 { return nil, fmt.Errorf("no profiles found") } @@ -53,7 +55,7 @@ func FormatProfiles(profiles *models.HypixelProfilesResponse) []*models.Profiles return profileStats } -func FormatMembers(profiles *models.Profile) ([]*models.MemberStats, error) { +func FormatMembers(profiles *skycrypttypes.Profile) ([]*models.MemberStats, error) { memberStats := make([]*models.MemberStats, 0, len(profiles.Members)) for memberUUID, memberData := range profiles.Members { @@ -72,7 +74,7 @@ func FormatMembers(profiles *models.Profile) ([]*models.MemberStats, error) { return memberStats, nil } -func isMemberRemoved(memberData *models.Member) bool { +func isMemberRemoved(memberData *skycrypttypes.Member) bool { if memberData.CoopInvitation != nil && !memberData.CoopInvitation.Confirmed { return true } @@ -82,7 +84,7 @@ func isMemberRemoved(memberData *models.Member) bool { return false } -func GetFairySouls(userProfile *models.Member, gamemode string) *models.FairySouls { +func GetFairySouls(userProfile *skycrypttypes.Member, gamemode string) *models.FairySouls { if gamemode == "" { gamemode = "normal" } diff --git a/src/stats/pets.go b/src/stats/pets.go index ce293b5b9..b4cbf0231 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -11,6 +11,8 @@ import ( "slices" "sort" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) func getMaxPetIds() map[string]int { @@ -38,7 +40,7 @@ func getMaxPetIds() map[string]int { return maxPetIds } -func getPetLevel(pet models.Pet) models.PetLevel { +func getPetLevel(pet skycrypttypes.Pet) models.PetLevel { petData := notenoughupdates.NEUConstants.Pets rarityOffset := petData.CustomPetLeveling[pet.Type].RarityOffset[pet.Rarity] @@ -161,7 +163,7 @@ func getPetData(level int, petType string, rarity string) map[string]float64 { return output } -func getProfilePets(userProfile *models.Member, pets *[]models.Pet) []models.ProcessedPet { +func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet) []models.ProcessedPet { output := []models.ProcessedPet{} for _, pet := range *pets { if pet.Rarity == "" { @@ -314,13 +316,13 @@ func getProfilePets(userProfile *models.Member, pets *[]models.Pet) []models.Pro return output } -func getMissingPets(userProfile *models.Member, pets []models.ProcessedPet, gameMode string) []models.ProcessedPet { +func getMissingPets(userProfile *skycrypttypes.Member, pets []models.ProcessedPet, gameMode string) []models.ProcessedPet { ownedPetTypes := make(map[string]struct{}) for _, pet := range pets { ownedPetTypes[pet.Type] = struct{}{} } - missingPets := []models.Pet{} + missingPets := []skycrypttypes.Pet{} maxPetIds := getMaxPetIds() for pet := range notenoughupdates.NEUConstants.PetNums { if _, ok := ownedPetTypes[pet]; ok || (pet == "BINGO" && gameMode != "bingo") { @@ -332,7 +334,7 @@ func getMissingPets(userProfile *models.Member, pets []models.ProcessedPet, game continue } - missingPets = append(missingPets, models.Pet{ + missingPets = append(missingPets, skycrypttypes.Pet{ Type: pet, Active: false, Experience: 0, @@ -410,9 +412,9 @@ func GetPetScore(pets []models.ProcessedPet) models.PetScore { return output } -func GetPets(userProfile *models.Member, profile *models.Profile) (models.OutputPets, error) { +func GetPets(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) (models.OutputPets, error) { - allPets := []models.Pet{} + allPets := []skycrypttypes.Pet{} allPets = append(allPets, userProfile.Pets.Pets...) if userProfile.Rift.DeadCats.Montezuma.Rarity != "" { userProfile.Rift.DeadCats.Montezuma.Active = false diff --git a/src/stats/rank.go b/src/stats/rank.go index 1afa84677..d0bd8ca64 100644 --- a/src/stats/rank.go +++ b/src/stats/rank.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/models" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetRank(player *models.Player) *models.RankOutput { +func GetRank(player *skycrypttypes.Player) *models.RankOutput { output := models.RankOutput{ RankText: "", RankColor: "", diff --git a/src/stats/rift.go b/src/stats/rift.go index 41db19f32..c32fb7d69 100644 --- a/src/stats/rift.go +++ b/src/stats/rift.go @@ -5,9 +5,11 @@ import ( "skycrypt/src/models" statsitems "skycrypt/src/stats/items" "slices" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getMotes(userProfile *models.Member) models.RiftMotesOutput { +func getMotes(userProfile *skycrypttypes.Member) models.RiftMotesOutput { return models.RiftMotesOutput{ Purse: int(userProfile.Currencies.MotesPurse), Lifetime: int(userProfile.PlayerStats.Rift.LifetimeMotesCollected), @@ -15,7 +17,7 @@ func getMotes(userProfile *models.Member) models.RiftMotesOutput { } } -func getEnigma(userProfile *models.Member) models.RiftEnigmaOutput { +func getEnigma(userProfile *skycrypttypes.Member) models.RiftEnigmaOutput { return models.RiftEnigmaOutput{ Souls: len(userProfile.Rift.Enigma.FoundSouls), @@ -23,14 +25,14 @@ func getEnigma(userProfile *models.Member) models.RiftEnigmaOutput { } } -func getCastle(userProfile *models.Member) models.RiftCastleOutput { +func getCastle(userProfile *skycrypttypes.Member) models.RiftCastleOutput { return models.RiftCastleOutput{ GrubberStacks: userProfile.Rift.Castle.GrubberStacks, MaxBurgers: constants.RIFT_MAX_GRUBBER_STACKS, } } -func getPorhtals(userProfile *models.Member) models.RiftPortalsOutput { +func getPorhtals(userProfile *skycrypttypes.Member) models.RiftPortalsOutput { porhtals, found := make([]models.RiftPorhtal, 0, len(userProfile.Rift.WitherCage.KilledEyes)), 0 for _, portal := range constants.RIFT_EYES { isFound := slices.Contains(userProfile.Rift.WitherCage.KilledEyes, portal.Id) @@ -52,7 +54,7 @@ func getPorhtals(userProfile *models.Member) models.RiftPortalsOutput { } } -func getTimecharms(userProfile *models.Member) models.RiftTimecharmsOutput { +func getTimecharms(userProfile *skycrypttypes.Member) models.RiftTimecharmsOutput { timecharms := make([]models.RiftTimecharms, 0, len(constants.RIFT_TIMECHARMS)) found := 0 @@ -81,7 +83,7 @@ func getTimecharms(userProfile *models.Member) models.RiftTimecharmsOutput { } } -func GetRift(userProfile *models.Member, items map[string][]models.ProcessedItem) *models.RiftOutput { +func GetRift(userProfile *skycrypttypes.Member, items map[string][]models.ProcessedItem) *models.RiftOutput { return &models.RiftOutput{ Visits: int(userProfile.PlayerStats.Rift.Visits), Motes: getMotes(userProfile), diff --git a/src/stats/skills.go b/src/stats/skills.go index c5c6f9b16..4f99bb519 100644 --- a/src/stats/skills.go +++ b/src/stats/skills.go @@ -6,9 +6,11 @@ import ( stats "skycrypt/src/stats/leveling" "skycrypt/src/utility" "strings" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetSkills(userProfile *models.Member, profile *models.Profile, player *models.Player) *models.Skills { +func GetSkills(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, player *skycrypttypes.Player) *models.Skills { output := &models.Skills{Skills: make(map[string]models.Skill)} skillLevelCaps := stats.GetSkillLevelCaps(userProfile, player) diff --git a/src/stats/skyblock_level.go b/src/stats/skyblock_level.go index 3f41c8a73..0d2243369 100644 --- a/src/stats/skyblock_level.go +++ b/src/stats/skyblock_level.go @@ -3,8 +3,10 @@ package stats import ( "skycrypt/src/models" stats "skycrypt/src/stats/leveling" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetSkyBlockLevel(userProfile *models.Member) models.Skill { +func GetSkyBlockLevel(userProfile *skycrypttypes.Member) models.Skill { return stats.GetLevelByXp(userProfile.Leveling.Experience, &stats.ExtraSkillData{Type: "skyblock_level"}) } diff --git a/src/stats/slayer.go b/src/stats/slayer.go index 5ee2fb382..4e41d07dd 100644 --- a/src/stats/slayer.go +++ b/src/stats/slayer.go @@ -4,9 +4,11 @@ import ( "fmt" "skycrypt/src/constants" "skycrypt/src/models" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func getSlayerKills(slayerData models.SlayerBoss) map[string]int { +func getSlayerKills(slayerData skycrypttypes.SlayerBoss) map[string]int { tiers := []int{ slayerData.BossKillsTier0, slayerData.BossKillsTier1, @@ -65,10 +67,10 @@ func getSlayerLevel(experience int, slayerId string) models.SlayerLevel { } } -func GetSlayers(userProfile *models.Member) models.SlayersOutput { +func GetSlayers(userProfile *skycrypttypes.Member) models.SlayersOutput { output := models.SlayersOutput{ - Data: make(map[string]models.SlayerData), - Stats: make(map[string]float64), + Data: make(map[string]models.SlayerData), + Stats: make(map[string]float64), } totalExperience := 0 diff --git a/src/stats/stats.go b/src/stats/stats.go index 1b5f65d95..0255d699a 100644 --- a/src/stats/stats.go +++ b/src/stats/stats.go @@ -2,31 +2,32 @@ package stats import ( "skycrypt/src/models" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) type StatsOutput struct { - Username string `json:"username"` - DisplayName string `json:"displayName"` - UUID string `json:"uuid"` - ProfileID string `json:"profile_id"` - ProfileCuteName string `json:"profile_cute_name"` - Selected bool `json:"selected"` - Profiles []*models.ProfilesStats `json:"profiles"` - Members []*models.MemberStats `json:"members"` - Social models.SocialMediaLinks `json:"social"` - Rank *models.RankOutput `json:"rank"` - Skills *models.Skills `json:"skills"` - SkyBlockLevel models.Skill `json:"skyblock_level"` - Joined int64 `json:"joined"` - Purse float64 `json:"purse"` - Bank *float64 `json:"bank"` - PersonalBank float64 `json:"personalBank"` - FairySouls *models.FairySouls `json:"fairySouls"` - APISettings map[string]bool `json:"apiSettings"` + Username string `json:"username"` + DisplayName string `json:"displayName"` + UUID string `json:"uuid"` + ProfileID string `json:"profile_id"` + ProfileCuteName string `json:"profile_cute_name"` + Selected bool `json:"selected"` + Profiles []*models.ProfilesStats `json:"profiles"` + Members []*models.MemberStats `json:"members"` + Social skycrypttypes.SocialMediaLinks `json:"social"` + Rank *models.RankOutput `json:"rank"` + Skills *models.Skills `json:"skills"` + SkyBlockLevel models.Skill `json:"skyblock_level"` + Joined int64 `json:"joined"` + Purse float64 `json:"purse"` + Bank *float64 `json:"bank"` + PersonalBank float64 `json:"personalBank"` + FairySouls *models.FairySouls `json:"fairySouls"` + APISettings map[string]bool `json:"apiSettings"` } -func GetStats(mowojang *models.MowojangReponse, profiles *models.HypixelProfilesResponse, profile *models.Profile, player *models.Player, userProfile *models.Member, museum *models.Museum, members []*models.MemberStats) (*StatsOutput, error) { - +func GetStats(mowojang *models.MowojangReponse, profiles *models.HypixelProfilesResponse, profile *skycrypttypes.Profile, player *skycrypttypes.Player, userProfile *skycrypttypes.Member, museum *skycrypttypes.Museum, members []*models.MemberStats) (*StatsOutput, error) { return &StatsOutput{ Username: mowojang.Name, DisplayName: mowojang.Name, From eec6f62ee44b726578b4f353a04e74f888ca98d9 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 17 Sep 2025 14:44:56 +0200 Subject: [PATCH 07/55] refactor: enable prefork, do not copy deps --- Dockerfile | 10 +++++++--- go.mod | 5 ++++- go.sum | 2 ++ main.go | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index be48c09d9..7df2780a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.24-alpine AS builder +FROM golang:1.25-alpine AS builder # Install git for dependency management and ca-certificates for HTTPS requests RUN apk add --no-cache git ca-certificates @@ -7,14 +7,18 @@ RUN apk add --no-cache git ca-certificates # Set working directory WORKDIR /app +# Copy local dependencies first +# COPY SkyCrypt-Types/ ../SkyCrypt-Types/ +# COPY SkyHelper-Networth-Go/ ../SkyHelper-Networth-Go/ + # Copy go mod files -COPY go.mod go.sum ./ +COPY SkyCrypt-Backend/go.mod SkyCrypt-Backend/go.sum ./ # Download dependencies RUN go mod download # Copy source code -COPY . . +COPY SkyCrypt-Backend/ ./ # Build the application RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -buildvcs=false -o main . diff --git a/go.mod b/go.mod index 6fe046873..a87b7d3ab 100644 --- a/go.mod +++ b/go.mod @@ -3,13 +3,16 @@ module skycrypt go 1.25.1 require ( - github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 + github.com/DuckySoLucky/SkyCrypt-Types v0.1.5 github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 ) +// replace github.com/DuckySoLucky/SkyCrypt-Types => ../SkyCrypt-Types +// replace github.com/SkyCryptWebsite/SkyHelper-Networth-Go => ../SkyHelper-Networth-Go + require ( dario.cat/mergo v1.0.0 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect diff --git a/go.sum b/go.sum index bfa9d06f8..568f0f89b 100644 --- a/go.sum +++ b/go.sum @@ -4,6 +4,8 @@ github.com/DuckySoLucky/SkyCrypt-Types v0.1.3 h1:cCuLooqGJ7eN+Te4XP80M8on8fm8NEy github.com/DuckySoLucky/SkyCrypt-Types v0.1.3/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 h1:DKT6w8JRmrqLTUswfP+e+894Tz6e1P0VTWsU2FTEELM= github.com/DuckySoLucky/SkyCrypt-Types v0.1.4/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.5 h1:OFt/+C8LrVOs4gORzWeZxRxzmHrdPqxNwjcm9TShEmU= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.5/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= diff --git a/main.go b/main.go index f2206f1c0..475a3a986 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( func main() { app := fiber.New(fiber.Config{ - Prefork: true, // Fork processes for max CPU utilization + Prefork: true, // Enable prefork (requires --pid=host in Docker) ServerHeader: "", // Remove server header for slight perf gain DisableKeepalive: false, // Keep connections alive DisableDefaultDate: true, // Disable date header From fbbb5c745dba784e9b645f2e173b6f9849012231 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 22 Sep 2025 18:10:28 +0200 Subject: [PATCH 08/55] fix: uncomment this since my wifi works fine now- --- src/routes.go | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/routes.go b/src/routes.go index 7472cfe9f..770adcf80 100644 --- a/src/routes.go +++ b/src/routes.go @@ -43,15 +43,13 @@ func SetupApplication() error { return fmt.Errorf("error loading SkyBlock items: %v", err) } - /* - if err := notenoughupdates.InitializeNEURepository(); err != nil { - return fmt.Errorf("error initializing repository: %v", err) - } - - if err := notenoughupdates.UpdateNEURepository(); err != nil { - return fmt.Errorf("error updating repository: %v", err) - } - */ + if err := notenoughupdates.InitializeNEURepository(); err != nil { + return fmt.Errorf("error initializing repository: %v", err) + } + + if err := notenoughupdates.UpdateNEURepository(); err != nil { + return fmt.Errorf("error updating repository: %v", err) + } err = notenoughupdates.ParseNEURepository() if err != nil { From 882cdd46b9d98acb32750897bf530e23aecf6fd0 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 22 Sep 2025 18:21:19 +0200 Subject: [PATCH 09/55] fix: gh actions --- .github/workflows/website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 592fbc063..b5665665a 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -32,7 +32,7 @@ jobs: - name: Go Setup uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' - name: Install packages run: go mod download From d901acf0f671de6a9f5ccb709575db25848524f1 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 21:51:00 +0200 Subject: [PATCH 10/55] refactor: change the way we pass in URLs --- NotEnoughUpdates-REPO | 2 +- src/api/hypixel_constants.go | 18 ++++- src/constants/accessories.go | 11 ++- src/constants/collections.go | 28 +++---- src/constants/crimson_isle.go | 24 +++--- src/constants/dungeons.go | 30 +++---- src/constants/enchanting.go | 12 +-- src/constants/leveling.go | 38 ++++----- src/constants/mining.go | 8 +- src/constants/minions.go | 128 ++++++++++++++--------------- src/constants/misc.go | 16 ++-- src/constants/museum.go | 26 +++--- src/constants/rift.go | 30 +++---- src/constants/slayers.go | 12 +-- src/constants/trophy_fish.go | 144 ++++++++++++++++----------------- src/lib/custom_resources.go | 30 ++++++- src/routes/inventory.go | 25 +++--- src/stats/collections.go | 33 +++++--- src/stats/crimson_isle.go | 9 +++ src/stats/dungeons.go | 12 ++- src/stats/enchanting.go | 12 ++- src/stats/fishing.go | 5 ++ src/stats/items/museum.go | 14 ++++ src/stats/leveling/leveling.go | 9 +++ src/stats/mining.go | 5 ++ src/stats/minions.go | 15 +++- src/stats/misc.go | 11 ++- src/stats/neu/bestiary.go | 29 ++++++- src/stats/pets.go | 21 ++++- src/stats/rift.go | 22 ++++- src/stats/skills.go | 5 ++ src/stats/slayer.go | 9 ++- 32 files changed, 502 insertions(+), 291 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index ffecddf65..351791dc2 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit ffecddf654a8dd45a75500a44255801a0d1f4e68 +Subproject commit 351791dc276a7f10578ea8bfe1fb2d67ba42d8b3 diff --git a/src/api/hypixel_constants.go b/src/api/hypixel_constants.go index 8413aedbd..46f3aee8e 100644 --- a/src/api/hypixel_constants.go +++ b/src/api/hypixel_constants.go @@ -4,6 +4,7 @@ import ( "fmt" "io" "net/http" + "os" "skycrypt/src/constants" redis "skycrypt/src/db" "skycrypt/src/models" @@ -88,13 +89,18 @@ func processItems(items *[]models.HypixelItem) map[string]models.ProcessedHypixe item.Rarity = "common" } + texture := fmt.Sprintf("/api/item/%s", item.SkyBlockID) + if os.Getenv("DEV") == "true" { + texture = fmt.Sprintf("http://localhost:8080/api/item/%s", item.SkyBlockID) + } + processed[item.SkyBlockID] = models.ProcessedHypixelItem{ SkyblockID: item.SkyBlockID, Name: item.Name, ItemId: constants.BUKKIT_TO_ID[item.Material], Rarity: strings.ToLower(item.Rarity), Damage: item.Damage, - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", item.SkyBlockID), + Texture: texture, TextureId: utility.GetSkinHash(item.Skin.Value), Category: strings.ToLower(item.Category), Origin: item.Origin, @@ -115,15 +121,23 @@ func processCollections(collections map[string]models.HypixelCollection) models. Collections: []models.ProcessedHypixelCollectionItem{}, } + if os.Getenv("DEV") == "true" { + category.Texture = strings.Replace(category.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + for collectionId, collectionData := range categoryData.Items { processedItem := models.ProcessedHypixelCollectionItem{ Id: collectionId, Name: collectionData.Name, - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", collectionId), + Texture: fmt.Sprintf("/api/item/%s", collectionId), MaxTier: collectionData.MaxTiers, Tiers: collectionData.Tiers, } + if os.Getenv("DEV") == "true" { + processedItem.Texture = fmt.Sprintf("http://localhost:8080/api/item/%s", collectionId) + } + category.Collections = append(category.Collections, processedItem) } diff --git a/src/constants/accessories.go b/src/constants/accessories.go index 399a948d6..19ca14294 100644 --- a/src/constants/accessories.go +++ b/src/constants/accessories.go @@ -2,6 +2,7 @@ package constants import ( "fmt" + "os" "skycrypt/src/models" "slices" "time" @@ -248,9 +249,15 @@ func GetAllAccessories() []Accessory { texturePath := "" if item.Texture != "" { - texturePath = fmt.Sprintf("http://localhost:8080/api/head/%s", item.Texture) + texturePath = fmt.Sprintf("api/head/%s", item.Texture) + if os.Getenv("DEV") == "true" { + texturePath = fmt.Sprintf("http://localhost:8080/api/head/%s", item.Texture) + } } else { - texturePath = fmt.Sprintf("http://localhost:8080/api/item/%s:%d", item.Material, item.Damage) + texturePath = fmt.Sprintf("/api/item/%s:%d", item.Material, item.Damage) + if os.Getenv("DEV") == "true" { + texturePath = fmt.Sprintf("http://localhost:8080/api/item/%s:%d", item.Material, item.Damage) + } } accessory := Accessory{ diff --git a/src/constants/collections.go b/src/constants/collections.go index 7cb523fa9..6edae234d 100644 --- a/src/constants/collections.go +++ b/src/constants/collections.go @@ -5,12 +5,12 @@ import "skycrypt/src/models" var COLLECTIONS = models.ProcessedHypixelCollection{} var COLLECTION_ICONS = map[string]string{ - "farming": "http://localhost:8080/api/item/GOLDEN_HOE", - "mining": "http://localhost:8080/api/item/STONE_PICKAXE", - "combat": "http://localhost:8080/api/item/STONE_SWORD", - "foraging": "http://localhost:8080/api/item/JUNGLE_SAPLING", - "fishing": "http://localhost:8080/api/item/FISHING_ROD", - "rift": "http://localhost:8080/api/item/MYCELIUM", + "farming": "/api/item/GOLDEN_HOE", + "mining": "/api/item/STONE_PICKAXE", + "combat": "/api/item/STONE_SWORD", + "foraging": "/api/item/JUNGLE_SAPLING", + "fishing": "/api/item/FISHING_ROD", + "rift": "/api/item/MYCELIUM", } type bossCollection struct { @@ -22,42 +22,42 @@ type bossCollection struct { var BOSS_COLLECTIONS = []bossCollection{ { Name: "Bonzo", - Texture: "http://localhost:8080/api/head/12716ecbf5b8da00b05f316ec6af61e8bd02805b21eb8e440151468dc656549c", + Texture: "/api/head/12716ecbf5b8da00b05f316ec6af61e8bd02805b21eb8e440151468dc656549c", Collections: []int{25, 50, 100, 150, 250, 1000}, }, { Name: "Scarf", - Texture: "http://localhost:8080/api/head/7de7bbbdf22bfe17980d4e20687e386f11d59ee1db6f8b4762391b79a5ac532d", + Texture: "/api/head/7de7bbbdf22bfe17980d4e20687e386f11d59ee1db6f8b4762391b79a5ac532d", Collections: []int{25, 50, 100, 150, 250, 1000}, }, { Name: "The Professor", - Texture: "http://localhost:8080/api/head/9971cee8b833a62fc2a612f3503437fdf93cad692d216b8cf90bbb0538c47dd8", + Texture: "/api/head/9971cee8b833a62fc2a612f3503437fdf93cad692d216b8cf90bbb0538c47dd8", Collections: []int{25, 50, 100, 150, 250, 1000}, }, { Name: "Thorn", - Texture: "http://localhost:8080/api/head/8b6a72138d69fbbd2fea3fa251cabd87152e4f1c97e5f986bf685571db3cc0", + Texture: "/api/head/8b6a72138d69fbbd2fea3fa251cabd87152e4f1c97e5f986bf685571db3cc0", Collections: []int{50, 100, 150, 250, 400, 1000}, }, { Name: "Livid", - Texture: "http://localhost:8080/api/head/c1007c5b7114abec734206d4fc613da4f3a0e99f71ff949cedadc99079135a0b", + Texture: "/api/head/c1007c5b7114abec734206d4fc613da4f3a0e99f71ff949cedadc99079135a0b", Collections: []int{50, 100, 150, 250, 500, 750, 1000}, }, { Name: "Sadan", - Texture: "http://localhost:8080/api/head/fa06cb0c471c1c9bc169af270cd466ea701946776056e472ecdaeb49f0f4a4dc", + Texture: "/api/head/fa06cb0c471c1c9bc169af270cd466ea701946776056e472ecdaeb49f0f4a4dc", Collections: []int{50, 100, 150, 250, 500, 750, 1000}, }, { Name: "Necron", - Texture: "http://localhost:8080/api/head/a435164c05cea299a3f016bbbed05706ebb720dac912ce4351c2296626aecd9a", + Texture: "/api/head/a435164c05cea299a3f016bbbed05706ebb720dac912ce4351c2296626aecd9a", Collections: []int{50, 100, 150, 250, 500, 750, 1000}, }, { Name: "Kuudra", - Texture: "http://localhost:8080/api/head/82ee25414aa7efb4a2b4901c6e33e5eaa705a6ab212ebebfd6a4de984125c7a0", + Texture: "/api/head/82ee25414aa7efb4a2b4901c6e33e5eaa705a6ab212ebebfd6a4de984125c7a0", Collections: []int{10, 100, 500, 2000, 5000}, }, } diff --git a/src/constants/crimson_isle.go b/src/constants/crimson_isle.go index 628b68f5d..51c6bc110 100644 --- a/src/constants/crimson_isle.go +++ b/src/constants/crimson_isle.go @@ -16,23 +16,23 @@ type kuudraTier struct { var KUUDRA_TIERS = map[string]kuudraTier{ "none": { Name: "Basic", - Texture: "http://localhost:8080/api/head/bfd3e71838c0e76f890213120b4ce7449577736604338a8d28b4c86db2547e71", + Texture: "/api/head/bfd3e71838c0e76f890213120b4ce7449577736604338a8d28b4c86db2547e71", }, "hot": { Name: "Hot", - Texture: "http://localhost:8080/api/head/c0259e8964c3deb95b1233bb2dc82c986177e63ae36c11265cb385180bb91cc0", + Texture: "/api/head/c0259e8964c3deb95b1233bb2dc82c986177e63ae36c11265cb385180bb91cc0", }, "burning": { Name: "Burning", - Texture: "http://localhost:8080/api/head/330f6f6e63b245f839e3ccdce5a5f22056201d0274411dfe5d94bbe449c4ece", + Texture: "/api/head/330f6f6e63b245f839e3ccdce5a5f22056201d0274411dfe5d94bbe449c4ece", }, "fiery": { Name: "Fiery", - Texture: "http://localhost:8080/api/head/bd854393bbf9444542502582d4b5a23cc73896506e2fc739d545bc35bc7b1c06", + Texture: "/api/head/bd854393bbf9444542502582d4b5a23cc73896506e2fc739d545bc35bc7b1c06", }, "infernal": { Name: "Infernal", - Texture: "http://localhost:8080/api/head/82ee25414aa7efb4a2b4901c6e33e5eaa705a6ab212ebebfd6a4de984125c7a0", + Texture: "/api/head/82ee25414aa7efb4a2b4901c6e33e5eaa705a6ab212ebebfd6a4de984125c7a0", }, } @@ -44,30 +44,30 @@ type dojoChallenge struct { var DOJO = map[string]dojoChallenge{ "mob_kb": { Name: "Force", - Texture: "http://localhost:8080/api/item/STICK", + Texture: "/api/item/STICK", }, "wall_jump": { Name: "Stamina", - Texture: "http://localhost:8080/api/item/RABBIT_FOOT", + Texture: "/api/item/RABBIT_FOOT", }, "archer": { Name: "Mastery", - Texture: "http://localhost:8080/api/item/BOW", + Texture: "/api/item/BOW", }, "sword_swap": { Name: "Discipline", - Texture: "http://localhost:8080/api/item/DIAMOND_SWORD", + Texture: "/api/item/DIAMOND_SWORD", }, "snake": { Name: "Swiftness", - Texture: "http://localhost:8080/api/item/LEAD", + Texture: "/api/item/LEAD", }, "lock_head": { Name: "Control", - Texture: "http://localhost:8080/api/item/ENDER_EYE", + Texture: "/api/item/ENDER_EYE", }, "fireball": { Name: "Tenacity", - Texture: "http://localhost:8080/api/item/FIRE_CHARGE", + Texture: "/api/item/FIRE_CHARGE", }, } diff --git a/src/constants/dungeons.go b/src/constants/dungeons.go index 5bd43fbea..c4feb6287 100644 --- a/src/constants/dungeons.go +++ b/src/constants/dungeons.go @@ -15,79 +15,79 @@ var DUNGEONS = dungeons{ "catacombs": { { Name: "Entrance", - Texture: "http://localhost:8080/api/head/35c3024f4d9d12ddf5959b6aea3c810f5ee85176aab1b2e7f462aa1c194c342b", + Texture: "/api/head/35c3024f4d9d12ddf5959b6aea3c810f5ee85176aab1b2e7f462aa1c194c342b", ID: "0", }, { Name: "Floor 1", - Texture: "http://localhost:8080/api/head/726f384acdfbb7218e96efac630e9ae1a14fd2f820ab660cc68322a59b165a12", + Texture: "/api/head/726f384acdfbb7218e96efac630e9ae1a14fd2f820ab660cc68322a59b165a12", ID: "1", }, { Name: "Floor 2", - Texture: "http://localhost:8080/api/head/ebaf2ae74553a64587840d6e70fb27d2c0ae2f8bdfacbe56654c8db4001cdc98", + Texture: "/api/head/ebaf2ae74553a64587840d6e70fb27d2c0ae2f8bdfacbe56654c8db4001cdc98", ID: "2", }, { Name: "Floor 3", - Texture: "http://localhost:8080/api/head/5a2f67500a65f3ce79d34ec150de93df8f60ebe52e248f5e1cdb69b0726256f7", + Texture: "/api/head/5a2f67500a65f3ce79d34ec150de93df8f60ebe52e248f5e1cdb69b0726256f7", ID: "3", }, { Name: "Floor 4", - Texture: "http://localhost:8080/api/head/5720917cda0567442617f2721e88be9d2ffbb0b26a3f4c2fe21655814d4f4476", + Texture: "/api/head/5720917cda0567442617f2721e88be9d2ffbb0b26a3f4c2fe21655814d4f4476", ID: "4", }, { Name: "Floor 5", - Texture: "http://localhost:8080/api/head/5720917cda0567442617f2721e88be9d2ffbb0b26a3f4c2fe21655814d4f4476", + Texture: "/api/head/5720917cda0567442617f2721e88be9d2ffbb0b26a3f4c2fe21655814d4f4476", ID: "5", }, { Name: "Floor 6", - Texture: "http://localhost:8080/api/head/3ce69d2ddcc81c9fc2e9948c92003eb0f7ebf0e7e952e801b7f2069dcee76d85", + Texture: "/api/head/3ce69d2ddcc81c9fc2e9948c92003eb0f7ebf0e7e952e801b7f2069dcee76d85", ID: "6", }, { Name: "Floor 7", - Texture: "http://localhost:8080/api/head/76965e3fd619de6b0a7ce1673072520a9360378e1cb8c19d4baf0c86769d3764", + Texture: "/api/head/76965e3fd619de6b0a7ce1673072520a9360378e1cb8c19d4baf0c86769d3764", ID: "7", }, }, "master_catacombs": { { Name: "Floor 1", - Texture: "http://localhost:8080/api/head/1eb5b21af330af122b268b7aa390733bd1b699b4d0923233ecd24f81e08b9bce", + Texture: "/api/head/1eb5b21af330af122b268b7aa390733bd1b699b4d0923233ecd24f81e08b9bce", ID: "1", }, { Name: "Floor 2", - Texture: "http://localhost:8080/api/head/32292e4e0fa62667256ef8da0f01982a996499f4d5d894bd058c3e6f3d2fb2d9", + Texture: "/api/head/32292e4e0fa62667256ef8da0f01982a996499f4d5d894bd058c3e6f3d2fb2d9", ID: "2", }, { Name: "Floor 3", - Texture: "http://localhost:8080/api/head/c969f6b148648aa8d027228a52fb5a3ca1ee84dc76e47851f14db029a730a8a3", + Texture: "/api/head/c969f6b148648aa8d027228a52fb5a3ca1ee84dc76e47851f14db029a730a8a3", ID: "3", }, { Name: "Floor 4", - Texture: "http://localhost:8080/api/head/d7b69021f9c09647dfd9b34df3deaff70cfc740f6a26f612dd47503fc34c97f0", + Texture: "/api/head/d7b69021f9c09647dfd9b34df3deaff70cfc740f6a26f612dd47503fc34c97f0", ID: "4", }, { Name: "Floor 5", - Texture: "http://localhost:8080/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", + Texture: "/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", ID: "5", }, { Name: "Floor 6", - Texture: "http://localhost:8080/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", + Texture: "/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", ID: "6", }, { Name: "Floor 7", - Texture: "http://localhost:8080/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", + Texture: "/api/head/d65cbce40e60e7a59a87fa8f4ecb6ccfc1514338c262614bf33739a6263f5405", ID: "7", }, }, diff --git a/src/constants/enchanting.go b/src/constants/enchanting.go index 0e4369616..470dba978 100644 --- a/src/constants/enchanting.go +++ b/src/constants/enchanting.go @@ -21,11 +21,11 @@ var EXPERIMENTS = experiments{ "pairings": {Name: "Superpairs"}, }, Tiers: []tier{ - {Name: "Beginner", Texture: "http://localhost:8080/api/item/INK_SACK:12"}, - {Name: "High", Texture: "http://localhost:8080/api/item/INK_SACK:10"}, - {Name: "Grand", Texture: "http://localhost:8080/api/item/INK_SACK:11"}, - {Name: "Supreme", Texture: "http://localhost:8080/api/item/INK_SACK:14"}, - {Name: "Transcendent", Texture: "http://localhost:8080/api/item/INK_SACK:1"}, - {Name: "Metaphysical", Texture: "http://localhost:8080/api/item/INK_SACK:13"}, + {Name: "Beginner", Texture: "/api/item/INK_SACK:12"}, + {Name: "High", Texture: "/api/item/INK_SACK:10"}, + {Name: "Grand", Texture: "/api/item/INK_SACK:11"}, + {Name: "Supreme", Texture: "/api/item/INK_SACK:14"}, + {Name: "Transcendent", Texture: "/api/item/INK_SACK:1"}, + {Name: "Metaphysical", Texture: "/api/item/INK_SACK:13"}, }, } diff --git a/src/constants/leveling.go b/src/constants/leveling.go index 0aeaab7ee..23d4f1ccb 100644 --- a/src/constants/leveling.go +++ b/src/constants/leveling.go @@ -81,23 +81,23 @@ var COSMETIC_SKILLS = []string{"runecrafting", "social"} var INFINITE = []string{"dungeoneering", "skyblock_level"} var SKILL_ICONS = map[string]string{ - "skyblock_level": "http://localhost:8080/api/head/2e2cc42015e6678f8fd49ccc01fbf787f1ba2c32bcf559a015332fc5db50", - "farming": "http://localhost:8080/api/item/GOLDEN_HOE", - "combat": "http://localhost:8080/api/item/STONE_SWORD", - "fishing": "http://localhost:8080/api/item/FISHING_ROD", - "alchemy": "http://localhost:8080/api/item/BREWING_STAND", - "runecrafting": "http://localhost:8080/api/item/MAGMA_CREAM", - "taming": "http://localhost:8080/api/item/SPAWN_EGG", - "mining": "http://localhost:8080/api/item/STONE_PICKAXE", - "foraging": "http://localhost:8080/api/item/SAPLING:3", - "enchanting": "http://localhost:8080/api/item/ENCHANTING_TABLE", - "carpentry": "http://localhost:8080/api/item/CRAFTING_TABLE", - "social": "http://localhost:8080/api/item/EMERALD", - "dungeoneering": "http://localhost:8080/api/head/964e1c3e315c8d8fffc37985b6681c5bd16a6f97ffd07199e8a05efbef103793", - "healer": "http://localhost:8080/api/potion/normal/f52423", - "mage": "http://localhost:8080/api/item/BLAZE_ROD", - "archer": "http://localhost:8080/api/item/BOW", - "berserk": "http://localhost:8080/api/item/IRON_SWORD", - "tank": "http://localhost:8080/api/leather/chestplate/955e3b", - "garden": "http://localhost:8080/api/item/DOUBLE_PLANT", + "skyblock_level": "/api/head/2e2cc42015e6678f8fd49ccc01fbf787f1ba2c32bcf559a015332fc5db50", + "farming": "/api/item/GOLDEN_HOE", + "combat": "/api/item/STONE_SWORD", + "fishing": "/api/item/FISHING_ROD", + "alchemy": "/api/item/BREWING_STAND", + "runecrafting": "/api/item/MAGMA_CREAM", + "taming": "/api/item/SPAWN_EGG", + "mining": "/api/item/STONE_PICKAXE", + "foraging": "/api/item/SAPLING:3", + "enchanting": "/api/item/ENCHANTING_TABLE", + "carpentry": "/api/item/CRAFTING_TABLE", + "social": "/api/item/EMERALD", + "dungeoneering": "/api/head/964e1c3e315c8d8fffc37985b6681c5bd16a6f97ffd07199e8a05efbef103793", + "healer": "/api/potion/normal/f52423", + "mage": "/api/item/BLAZE_ROD", + "archer": "/api/item/BOW", + "berserk": "/api/item/IRON_SWORD", + "tank": "/api/leather/chestplate/955e3b", + "garden": "/api/item/DOUBLE_PLANT", } diff --git a/src/constants/mining.go b/src/constants/mining.go index f9d7e4a67..51790bc0e 100644 --- a/src/constants/mining.go +++ b/src/constants/mining.go @@ -62,10 +62,10 @@ var FOSSILS = []string{ } var CORPSES = map[string]string{ - "lapis": "http://localhost:8080/api/item/LAPIS_ARMOR_HELMET", - "umber": "http://localhost:8080/api/item/ARMOR_OF_YOG_HELMET", - "tungsten": "http://localhost:8080/api/item/MINERAL_HELMET", - "vanguard": "http://localhost:8080/api/item/VANGUARD_HELMET", + "lapis": "/api/item/LAPIS_ARMOR_HELMET", + "umber": "/api/item/ARMOR_OF_YOG_HELMET", + "tungsten": "/api/item/MINERAL_HELMET", + "vanguard": "/api/item/VANGUARD_HELMET", } type forgeItem struct { diff --git a/src/constants/minions.go b/src/constants/minions.go index 4f26d98cf..0e868e933 100644 --- a/src/constants/minions.go +++ b/src/constants/minions.go @@ -36,82 +36,82 @@ type minionInfo struct { var MINIONS = map[string]map[string]minionInfo{ "farming": { - "COCOA": {Texture: "http://localhost:8080/api/head/acb680e96f6177cd8ffaf27e9625d8b544d720afc50738801818d0e745c0e5f7", MaxTier: 12}, - "PUMPKIN": {Texture: "http://localhost:8080/api/head/f3fb663e843a7da787e290f23c8af2f97f7b6f572fa59a0d4d02186db6eaabb7", MaxTier: 12}, - "CHICKEN": {Texture: "http://localhost:8080/api/head/a04b7da13b0a97839846aa5648f5ac6736ba0ca9fbf38cd366916e417153fd7f", MaxTier: 12}, - "MUSHROOM": {Texture: "http://localhost:8080/api/head/4a3b58341d196a9841ef1526b367209cbc9f96767c24f5f587cf413d42b74a93", MaxTier: 12}, - "CACTUS": {Texture: "http://localhost:8080/api/head/ef93ec6e67a6cd272c9a9684b67df62584cb084a265eee3cde141d20e70d7d72", MaxTier: 12}, - "PIG": {Texture: "http://localhost:8080/api/head/a9bb5f0c56408c73cfa412345c8fc51f75b6c7311ae60e7099c4781c48760562", MaxTier: 12}, - "WHEAT": {Texture: "http://localhost:8080/api/head/bbc571c5527336352e2fee2b40a9edfa2e809f64230779aa01253c6aa535881b", MaxTier: 12}, - "COW": {Texture: "http://localhost:8080/api/head/c2fd8976e1b64aebfd38afbe62aa1429914253df3417ace1f589e5cf45fbd717", MaxTier: 12}, - "RABBIT": {Texture: "http://localhost:8080/api/head/ef59c052d339bb6305cad370fd8c52f58269a957dfaf433a255597d95e68a373", MaxTier: 12}, - "SUGAR_CANE": {Texture: "http://localhost:8080/api/head/2fced0e80f0d7a5d1f45a1a7217e6a99ea9720156c63f6efc84916d4837fabde", MaxTier: 12}, - "MELON": {Texture: "http://localhost:8080/api/head/95d54539ac8d3fba9696c91f4dcc7f15c320ab86029d5c92f12359abd4df811e", MaxTier: 12}, - "NETHER_WARTS": {Texture: "http://localhost:8080/api/head/71a4620bb3459c1c2fa74b210b1c07b4a02254351f75173e643a0e009a63f558", MaxTier: 12}, - "CARROT": {Texture: "http://localhost:8080/api/head/4baea990b45d330998cb0c1f8515c27b24f93bff1df0db056e647f8200d03b9d", MaxTier: 12}, - "POTATO": {Texture: "http://localhost:8080/api/head/7dda35a044cb0374b516015d991a0f65bf7d0fb6566e350496642cf2059ff1d9", MaxTier: 12}, - "SHEEP": {Texture: "http://localhost:8080/api/head/fd15d4b8bce708f77f963f1b4e87b1b969fef1766a3e9b67b249c59d5e80e8c5", MaxTier: 12}, + "COCOA": {Texture: "/api/head/acb680e96f6177cd8ffaf27e9625d8b544d720afc50738801818d0e745c0e5f7", MaxTier: 12}, + "PUMPKIN": {Texture: "/api/head/f3fb663e843a7da787e290f23c8af2f97f7b6f572fa59a0d4d02186db6eaabb7", MaxTier: 12}, + "CHICKEN": {Texture: "/api/head/a04b7da13b0a97839846aa5648f5ac6736ba0ca9fbf38cd366916e417153fd7f", MaxTier: 12}, + "MUSHROOM": {Texture: "/api/head/4a3b58341d196a9841ef1526b367209cbc9f96767c24f5f587cf413d42b74a93", MaxTier: 12}, + "CACTUS": {Texture: "/api/head/ef93ec6e67a6cd272c9a9684b67df62584cb084a265eee3cde141d20e70d7d72", MaxTier: 12}, + "PIG": {Texture: "/api/head/a9bb5f0c56408c73cfa412345c8fc51f75b6c7311ae60e7099c4781c48760562", MaxTier: 12}, + "WHEAT": {Texture: "/api/head/bbc571c5527336352e2fee2b40a9edfa2e809f64230779aa01253c6aa535881b", MaxTier: 12}, + "COW": {Texture: "/api/head/c2fd8976e1b64aebfd38afbe62aa1429914253df3417ace1f589e5cf45fbd717", MaxTier: 12}, + "RABBIT": {Texture: "/api/head/ef59c052d339bb6305cad370fd8c52f58269a957dfaf433a255597d95e68a373", MaxTier: 12}, + "SUGAR_CANE": {Texture: "/api/head/2fced0e80f0d7a5d1f45a1a7217e6a99ea9720156c63f6efc84916d4837fabde", MaxTier: 12}, + "MELON": {Texture: "/api/head/95d54539ac8d3fba9696c91f4dcc7f15c320ab86029d5c92f12359abd4df811e", MaxTier: 12}, + "NETHER_WARTS": {Texture: "/api/head/71a4620bb3459c1c2fa74b210b1c07b4a02254351f75173e643a0e009a63f558", MaxTier: 12}, + "CARROT": {Texture: "/api/head/4baea990b45d330998cb0c1f8515c27b24f93bff1df0db056e647f8200d03b9d", MaxTier: 12}, + "POTATO": {Texture: "/api/head/7dda35a044cb0374b516015d991a0f65bf7d0fb6566e350496642cf2059ff1d9", MaxTier: 12}, + "SHEEP": {Texture: "/api/head/fd15d4b8bce708f77f963f1b4e87b1b969fef1766a3e9b67b249c59d5e80e8c5", MaxTier: 12}, }, "mining": { - "HARD_STONE": {Texture: "http://localhost:8080/api/head/1e8bab9493708beda34255606d5883b8762746bcbe6c94e8ca78a77a408c8ba8", MaxTier: 12}, - "RED_SAND": {Texture: "http://localhost:8080/api/head/9d24991435e4e7fb1a9ad23db75c80aec300d003ec0c5963e0ed658634027889", MaxTier: 12}, - "MYCELIUM": {Texture: "http://localhost:8080/api/head/fc8ebad72b77df3990e07bc869a99a8f8962d3c19c76e39d99553cae4131cc8", MaxTier: 12}, - "COBBLESTONE": {Texture: "http://localhost:8080/api/head/2f93289a82bd2a06cbbe61b733cfdc1f1bd93c4340f7a90abd9bdda774109071", MaxTier: 12}, - "OBSIDIAN": {Texture: "http://localhost:8080/api/head/320c29ab966637cb9aecc34ee76d5a0130461e0c4fdb08cdaf80939fa1209102", MaxTier: 12}, - "GLOWSTONE": {Texture: "http://localhost:8080/api/head/20f4d7c26b0310990a7d3a3b45948b95dd4ab407a16a4b6d3b7cb4fba031aeed", MaxTier: 12}, - "GRAVEL": {Texture: "http://localhost:8080/api/head/7458507ed31cf9a38986ac8795173c609637f03da653f30483a721d3fbe602d"}, - "SAND": {Texture: "http://localhost:8080/api/head/81f8e2ad021eefd1217e650e848b57622144d2bf8a39fbd50dab937a7eac10de"}, - "ICE": {Texture: "http://localhost:8080/api/head/e500064321b12972f8e5750793ec1c823da4627535e9d12feaee78394b86dabe", MaxTier: 12}, - "SNOW": {Texture: "http://localhost:8080/api/head/f6d180684c3521c9fc89478ba4405ae9ce497da8124fa0da5a0126431c4b78c3", MaxTier: 12}, - "COAL": {Texture: "http://localhost:8080/api/head/425b8d2ea965c780652d29c26b1572686fd74f6fe6403b5a3800959feb2ad935", MaxTier: 12}, - "IRON": {Texture: "http://localhost:8080/api/head/af435022cb3809a68db0fccfa8993fc1954dc697a7181494905b03fdda035e4a", MaxTier: 12}, - "GOLD": {Texture: "http://localhost:8080/api/head/f6da04ed8c810be29bba53c62e712d65cfb25238117b94d7e85a4615775bf14f", MaxTier: 12}, - "DIAMOND": {Texture: "http://localhost:8080/api/head/2354bbe604dfe58bf92e7729730d0c8e37844e831ee3816d7e8427c27a1824a2", MaxTier: 12}, - "LAPIS": {Texture: "http://localhost:8080/api/head/64fd97b9346c1208c1db3957530cdfc5789e3e65943786b0071cf2b2904a6b5c", MaxTier: 12}, - "REDSTONE": {Texture: "http://localhost:8080/api/head/1edefcf1a89d687a0a4ecf1589977af1e520fc673c48a0434be426612e8faa67", MaxTier: 12}, - "EMERALD": {Texture: "http://localhost:8080/api/head/9bf57f3401b130c6b53808f2b1e119cc7b984622dac7077bbd53454e1f65bbf0", MaxTier: 12}, - "MITHRIL": {Texture: "http://localhost:8080/api/head/c62fa670ff8599b32ab344195ba15f3ef64c3a8aa8a37821c08375950cb74cd0", MaxTier: 12}, - "QUARTZ": {Texture: "http://localhost:8080/api/head/d270093be62dfd3019f908043db570b5dfd366fd5345fccf9da340e75c701a60", MaxTier: 12}, - "ENDER_STONE": {Name: "End Stone", Texture: "http://localhost:8080/api/head/7994be3dcfbb4ed0a5a7495b7335af1a3ced0b5888b5007286a790767c3b57e6"}, + "HARD_STONE": {Texture: "/api/head/1e8bab9493708beda34255606d5883b8762746bcbe6c94e8ca78a77a408c8ba8", MaxTier: 12}, + "RED_SAND": {Texture: "/api/head/9d24991435e4e7fb1a9ad23db75c80aec300d003ec0c5963e0ed658634027889", MaxTier: 12}, + "MYCELIUM": {Texture: "/api/head/fc8ebad72b77df3990e07bc869a99a8f8962d3c19c76e39d99553cae4131cc8", MaxTier: 12}, + "COBBLESTONE": {Texture: "/api/head/2f93289a82bd2a06cbbe61b733cfdc1f1bd93c4340f7a90abd9bdda774109071", MaxTier: 12}, + "OBSIDIAN": {Texture: "/api/head/320c29ab966637cb9aecc34ee76d5a0130461e0c4fdb08cdaf80939fa1209102", MaxTier: 12}, + "GLOWSTONE": {Texture: "/api/head/20f4d7c26b0310990a7d3a3b45948b95dd4ab407a16a4b6d3b7cb4fba031aeed", MaxTier: 12}, + "GRAVEL": {Texture: "/api/head/7458507ed31cf9a38986ac8795173c609637f03da653f30483a721d3fbe602d"}, + "SAND": {Texture: "/api/head/81f8e2ad021eefd1217e650e848b57622144d2bf8a39fbd50dab937a7eac10de"}, + "ICE": {Texture: "/api/head/e500064321b12972f8e5750793ec1c823da4627535e9d12feaee78394b86dabe", MaxTier: 12}, + "SNOW": {Texture: "/api/head/f6d180684c3521c9fc89478ba4405ae9ce497da8124fa0da5a0126431c4b78c3", MaxTier: 12}, + "COAL": {Texture: "/api/head/425b8d2ea965c780652d29c26b1572686fd74f6fe6403b5a3800959feb2ad935", MaxTier: 12}, + "IRON": {Texture: "/api/head/af435022cb3809a68db0fccfa8993fc1954dc697a7181494905b03fdda035e4a", MaxTier: 12}, + "GOLD": {Texture: "/api/head/f6da04ed8c810be29bba53c62e712d65cfb25238117b94d7e85a4615775bf14f", MaxTier: 12}, + "DIAMOND": {Texture: "/api/head/2354bbe604dfe58bf92e7729730d0c8e37844e831ee3816d7e8427c27a1824a2", MaxTier: 12}, + "LAPIS": {Texture: "/api/head/64fd97b9346c1208c1db3957530cdfc5789e3e65943786b0071cf2b2904a6b5c", MaxTier: 12}, + "REDSTONE": {Texture: "/api/head/1edefcf1a89d687a0a4ecf1589977af1e520fc673c48a0434be426612e8faa67", MaxTier: 12}, + "EMERALD": {Texture: "/api/head/9bf57f3401b130c6b53808f2b1e119cc7b984622dac7077bbd53454e1f65bbf0", MaxTier: 12}, + "MITHRIL": {Texture: "/api/head/c62fa670ff8599b32ab344195ba15f3ef64c3a8aa8a37821c08375950cb74cd0", MaxTier: 12}, + "QUARTZ": {Texture: "/api/head/d270093be62dfd3019f908043db570b5dfd366fd5345fccf9da340e75c701a60", MaxTier: 12}, + "ENDER_STONE": {Name: "End Stone", Texture: "/api/head/7994be3dcfbb4ed0a5a7495b7335af1a3ced0b5888b5007286a790767c3b57e6"}, }, "combat": { - "ZOMBIE": {Texture: "http://localhost:8080/api/head/196063a884d3901c41f35b69a8c9f401c61ac9f6330f964f80c35352c3e8bfb0"}, - "REVENANT": {Texture: "http://localhost:8080/api/head/a3dce8555923558d8d74c2a2b261b2b2d630559db54ef97ed3f9c30e9a20aba", MaxTier: 12}, - "SKELETON": {Texture: "http://localhost:8080/api/head/2fe009c5cfa44c05c88e5df070ae2533bd682a728e0b33bfc93fd92a6e5f3f64"}, - "CREEPER": {Texture: "http://localhost:8080/api/head/54a92c2f8c1b3774e80492200d0b2218d7b019314a73c9cb5b9f04cfcacec471"}, - "SPIDER": {Texture: "http://localhost:8080/api/head/e77c4c284e10dea038f004d7eb43ac493de69f348d46b5c1f8ef8154ec2afdd0"}, - "TARANTULA": {Texture: "http://localhost:8080/api/head/97e86007064c9ce26eb4bad8ac9aa30aac309e70a9e0b615936318dea40a721"}, - "CAVESPIDER": {Name: "Cave Spider", Texture: "http://localhost:8080/api/head/5d815df973bcd01ee8dfdb3bd74f0b7cb8fef2a70559e4faa5905127bbb4a435"}, - "BLAZE": {Texture: "http://localhost:8080/api/head/3208fbd64e97c6e00853d36b3a201e4803cae43dcbd6936a3cece050912e1f20", MaxTier: 12}, - "MAGMA_CUBE": {Texture: "http://localhost:8080/api/head/18c9a7a24da7e3182e4f62fa62762e21e1680962197c7424144ae1d2c42174f7", MaxTier: 12}, - "ENDERMAN": {Texture: "http://localhost:8080/api/head/e460d20ba1e9cd1d4cfd6d5fb0179ff41597ac6d2461bd7ccdb58b20291ec46e"}, - "GHAST": {Texture: "http://localhost:8080/api/head/2478547d122ec83a818b46f3b13c5230429559e40c7d144d4ec225f92c1494b3", MaxTier: 12}, - "SLIME": {Texture: "http://localhost:8080/api/head/c95eced85db62c922724efca804ea0060c4a87fcdedf2fd5c4f9ac1130a6eb26"}, - "VOIDLING": {Texture: "http://localhost:8080/api/head/3a851ed2ce5c2c0523af772d206d9555e2e1383ec87946e6ff4c51186e29ef7f"}, - "INFERNO": {Texture: "http://localhost:8080/api/head/665c54366f88fb3280b1c3fc500ce2b799c8dd327ab6d41c9bc959488f5cfd92"}, - "VAMPIRE": {Texture: "http://localhost:8080/api/head/5b0c2db42e90f83fae6551c96e83669211a77c2c155c54d1523af3079f9565ed"}, + "ZOMBIE": {Texture: "/api/head/196063a884d3901c41f35b69a8c9f401c61ac9f6330f964f80c35352c3e8bfb0"}, + "REVENANT": {Texture: "/api/head/a3dce8555923558d8d74c2a2b261b2b2d630559db54ef97ed3f9c30e9a20aba", MaxTier: 12}, + "SKELETON": {Texture: "/api/head/2fe009c5cfa44c05c88e5df070ae2533bd682a728e0b33bfc93fd92a6e5f3f64"}, + "CREEPER": {Texture: "/api/head/54a92c2f8c1b3774e80492200d0b2218d7b019314a73c9cb5b9f04cfcacec471"}, + "SPIDER": {Texture: "/api/head/e77c4c284e10dea038f004d7eb43ac493de69f348d46b5c1f8ef8154ec2afdd0"}, + "TARANTULA": {Texture: "/api/head/97e86007064c9ce26eb4bad8ac9aa30aac309e70a9e0b615936318dea40a721"}, + "CAVESPIDER": {Name: "Cave Spider", Texture: "/api/head/5d815df973bcd01ee8dfdb3bd74f0b7cb8fef2a70559e4faa5905127bbb4a435"}, + "BLAZE": {Texture: "/api/head/3208fbd64e97c6e00853d36b3a201e4803cae43dcbd6936a3cece050912e1f20", MaxTier: 12}, + "MAGMA_CUBE": {Texture: "/api/head/18c9a7a24da7e3182e4f62fa62762e21e1680962197c7424144ae1d2c42174f7", MaxTier: 12}, + "ENDERMAN": {Texture: "/api/head/e460d20ba1e9cd1d4cfd6d5fb0179ff41597ac6d2461bd7ccdb58b20291ec46e"}, + "GHAST": {Texture: "/api/head/2478547d122ec83a818b46f3b13c5230429559e40c7d144d4ec225f92c1494b3", MaxTier: 12}, + "SLIME": {Texture: "/api/head/c95eced85db62c922724efca804ea0060c4a87fcdedf2fd5c4f9ac1130a6eb26"}, + "VOIDLING": {Texture: "/api/head/3a851ed2ce5c2c0523af772d206d9555e2e1383ec87946e6ff4c51186e29ef7f"}, + "INFERNO": {Texture: "/api/head/665c54366f88fb3280b1c3fc500ce2b799c8dd327ab6d41c9bc959488f5cfd92"}, + "VAMPIRE": {Texture: "/api/head/5b0c2db42e90f83fae6551c96e83669211a77c2c155c54d1523af3079f9565ed"}, }, "foraging": { - "OAK": {Texture: "http://localhost:8080/api/head/57e4a30f361204ea9cded3fbff850160731a0081cc452cfe26aed48e97f6364b"}, - "BIRCH": {Texture: "http://localhost:8080/api/head/eb74109dbb88178afb7a9874afc682904cedb3df75978a51f7beeb28f924251"}, - "SPRUCE": {Texture: "http://localhost:8080/api/head/7ba04bfe516955fd43932dcb33bd5eac20b38a231d9fa8415b3fb301f60f7363"}, - "DARK_OAK": {Texture: "http://localhost:8080/api/head/5ecdc8d6b2b7e081ed9c36609052c91879b89730b9953adbc987e25bf16c5581"}, - "ACACIA": {Texture: "http://localhost:8080/api/head/42183eaf5b133b838db13d145247e389ab4b4f33c67846363792dc3d82b524c0"}, - "JUNGLE": {Texture: "http://localhost:8080/api/head/2fe73d981690c1be346a16331819c4e8800859fcdc3e5153718c6ad45861924c"}, - "FLOWER": {Texture: "http://localhost:8080/api/head/baa7c59b2f792d8d091aecacf47a19f8ab93f3fd3c48f6930b1c2baeb09e0f9b", MaxTier: 12}, + "OAK": {Texture: "/api/head/57e4a30f361204ea9cded3fbff850160731a0081cc452cfe26aed48e97f6364b"}, + "BIRCH": {Texture: "/api/head/eb74109dbb88178afb7a9874afc682904cedb3df75978a51f7beeb28f924251"}, + "SPRUCE": {Texture: "/api/head/7ba04bfe516955fd43932dcb33bd5eac20b38a231d9fa8415b3fb301f60f7363"}, + "DARK_OAK": {Texture: "/api/head/5ecdc8d6b2b7e081ed9c36609052c91879b89730b9953adbc987e25bf16c5581"}, + "ACACIA": {Texture: "/api/head/42183eaf5b133b838db13d145247e389ab4b4f33c67846363792dc3d82b524c0"}, + "JUNGLE": {Texture: "/api/head/2fe73d981690c1be346a16331819c4e8800859fcdc3e5153718c6ad45861924c"}, + "FLOWER": {Texture: "/api/head/baa7c59b2f792d8d091aecacf47a19f8ab93f3fd3c48f6930b1c2baeb09e0f9b", MaxTier: 12}, }, "fishing": { - "FISHING": {Texture: "http://localhost:8080/api/head/53ea0fd89524db3d7a3544904933830b4fc8899ef60c113d948bb3c4fe7aabb1", MaxTier: 12}, - "CLAY": {Texture: "http://localhost:8080/api/head/af9b312c8f53da289060e6452855072e07971458abbf338ddec351e16c171ff8", MaxTier: 12}, + "FISHING": {Texture: "/api/head/53ea0fd89524db3d7a3544904933830b4fc8899ef60c113d948bb3c4fe7aabb1", MaxTier: 12}, + "CLAY": {Texture: "/api/head/af9b312c8f53da289060e6452855072e07971458abbf338ddec351e16c171ff8", MaxTier: 12}, }, } var MINION_CATEGORY_ICONS = map[string]string{ - "farming": "http://localhost:8080/api/item/GOLD_HOE", - "mining": "http://localhost:8080/api/item/STONE_PICKAXE", - "combat": "http://localhost:8080/api/item/STONE_SWORD", - "foraging": "http://localhost:8080/api/item/SAPLING:3", - "fishing": "http://localhost:8080/api/item/FISHING_ROD", + "farming": "/api/item/GOLD_HOE", + "mining": "/api/item/STONE_PICKAXE", + "combat": "/api/item/STONE_SWORD", + "foraging": "/api/item/SAPLING:3", + "fishing": "/api/item/FISHING_ROD", } const MinionsMaxSlots = 26 diff --git a/src/constants/misc.go b/src/constants/misc.go index 454c5bbe1..7e7301882 100644 --- a/src/constants/misc.go +++ b/src/constants/misc.go @@ -8,35 +8,35 @@ type essence struct { var ESSENCE = map[string]essence{ "ice": { Name: "Ice", - Texture: "http://localhost:8080/api/head/ddba642efffa13ec3730eafc5914ab68115c1f998803f74452e2e0cd26af0b8", + Texture: "/api/head/ddba642efffa13ec3730eafc5914ab68115c1f998803f74452e2e0cd26af0b8", }, "wither": { Name: "Wither", - Texture: "http://localhost:8080/api/head/c4db4adfa9bf48ff5d41707ae34ea78bd2371659fcd8cd8934749af4cce9b", + Texture: "/api/head/c4db4adfa9bf48ff5d41707ae34ea78bd2371659fcd8cd8934749af4cce9b", }, "spider": { Name: "Spider", - Texture: "http://localhost:8080/api/head/16617131250e578333a441fdf4a5b8c62163640a9d06cd67db89031d03accf6", + Texture: "/api/head/16617131250e578333a441fdf4a5b8c62163640a9d06cd67db89031d03accf6", }, "undead": { Name: "Undead", - Texture: "http://localhost:8080/api/head/71d7c816fc8c636d7f50a93a0ba7aaeff06c96a561645e9eb1bef391655c531", + Texture: "/api/head/71d7c816fc8c636d7f50a93a0ba7aaeff06c96a561645e9eb1bef391655c531", }, "diamond": { Name: "Diamond", - Texture: "http://localhost:8080/api/head/964f25cfff754f287a9838d8efe03998073c22df7a9d3025c425e3ed7ff52c20", + Texture: "/api/head/964f25cfff754f287a9838d8efe03998073c22df7a9d3025c425e3ed7ff52c20", }, "dragon": { Name: "Dragon", - Texture: "http://localhost:8080/api/head/33ff416aa8bec1665b92701fbe68a4effff3d06ed9147454fa77712dd6079b33", + Texture: "/api/head/33ff416aa8bec1665b92701fbe68a4effff3d06ed9147454fa77712dd6079b33", }, "gold": { Name: "Gold", - Texture: "http://localhost:8080/api/head/8816606260779b23ed15f87c56c932240db745f86f683d1f4deb83a4a125fa7b", + Texture: "/api/head/8816606260779b23ed15f87c56c932240db745f86f683d1f4deb83a4a125fa7b", }, "crimson": { Name: "Crimson", - Texture: "http://localhost:8080/api/head/67c41930f8ff0f2b0430e169ae5f38e984df1244215705c6f173862844543e9d", + Texture: "/api/head/67c41930f8ff0f2b0430e169ae5f38e984df1244215705c6f173862844543e9d", }, } diff --git a/src/constants/museum.go b/src/constants/museum.go index f76caa80b..0334c877b 100644 --- a/src/constants/museum.go +++ b/src/constants/museum.go @@ -129,7 +129,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Museum", Rarity: "rare", - Texture: "http://localhost:8080/api/head/438cf3f8e54afc3b3f91d20a49f324dca1486007fe545399055524c17941f4dc", + Texture: "/api/head/438cf3f8e54afc3b3f91d20a49f324dca1486007fe545399055524c17941f4dc", Lore: []string{ "§7The §9Museum §7is a compendium", "§7of all of your items in", @@ -149,7 +149,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Weapons", Rarity: "uncommon", - Texture: "http://localhost:8080/api/item/DIAMOND_SWORD", + Texture: "/api/item/DIAMOND_SWORD", Lore: []string{ "§7View all of the §6Weapons §7that", "§7you have donated to the", @@ -166,7 +166,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Armor Sets", Rarity: "uncommon", - Texture: "http://localhost:8080/api/item/DIAMOND_CHESTPLATE", + Texture: "/api/item/DIAMOND_CHESTPLATE", Lore: []string{ "§7View all of the §9Armor Sets", "§9§7that you have donated to the", @@ -183,7 +183,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Rarities", Rarity: "uncommon", - Texture: "http://localhost:8080/api/head/86addbd5dedad40999473be4a7f48f6236a79a0dce971b5dbd7372014ae394d", + Texture: "/api/head/86addbd5dedad40999473be4a7f48f6236a79a0dce971b5dbd7372014ae394d", Lore: []string{ "§7View all of the §5Rarities", "§5§7that you have donated to the", @@ -200,7 +200,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Special Items", Rarity: "uncommon", - Texture: "http://localhost:8080/api/item/CAKE", + Texture: "/api/item/CAKE", Lore: []string{ "§7View all of the §dSpecial Items", "§d§7that you have donated to the", @@ -225,7 +225,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Museum Appraisal", Rarity: "legendary", - Texture: "http://localhost:8080/api/item/DIAMOND", + Texture: "/api/item/DIAMOND", Lore: []string{ "§7§6Madame Goldsworth §7offers an", "§7appraisal service for Museums.", @@ -247,7 +247,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Museum Rewards", Rarity: "legendary", - Texture: "http://localhost:8080/api/item/GOLD_BLOCK", + Texture: "/api/item/GOLD_BLOCK", Lore: []string{ "§7Each time you donate an item to", "§7your Museum, the §bCurator", @@ -268,7 +268,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Close", Rarity: "special", - Texture: "http://localhost:8080/api/item/BARRIER", + Texture: "/api/item/BARRIER", Lore: []string{}, }, Position: 49, @@ -277,7 +277,7 @@ var MUSEUM_INVENTORY = []models.MuseumInventoryItem{ ProcessedItem: models.ProcessedItem{ DisplayName: "Museum Browser", Rarity: "uncommon", - Texture: "http://localhost:8080/api/item/SIGN", + Texture: "/api/item/SIGN", Lore: []string{ "§7View the Museums of your", "§7friends, top valued players, and", @@ -294,7 +294,7 @@ var MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE = map[string]models.ProcessedItem{ "weapons": { DisplayName: "Missing Weapon", Rarity: "special", - Texture: "http://localhost:8080/api/item/INK_SACK:8", + Texture: "/api/item/INK_SACK:8", Lore: []string{ "§7Click on this item in your", "§7inventory to add it to your", @@ -304,7 +304,7 @@ var MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE = map[string]models.ProcessedItem{ "armor": { DisplayName: "Missing Armor Set", Rarity: "special", - Texture: "http://localhost:8080/api/item/INK_SACK:8", + Texture: "/api/item/INK_SACK:8", Lore: []string{ "§7Click on an armor piece in your", "§7inventory that belongs to this", @@ -315,7 +315,7 @@ var MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE = map[string]models.ProcessedItem{ "rarities": { DisplayName: "Missing Rarity", Rarity: "special", - Texture: "http://localhost:8080/api/item/INK_SACK:8", + Texture: "/api/item/INK_SACK:8", Lore: []string{ "§7Click on this item in your", "§7inventory to add it to your", @@ -326,7 +326,7 @@ var MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE = map[string]models.ProcessedItem{ var MUSEUM_INVENTORY_HIGHER_TIER_DONATED_TEMPLATE = models.ProcessedItem{ DisplayName: "Higher Tier Donated", - Texture: "http://localhost:8080/api/item/INK_SACK:10", + Texture: "/api/item/INK_SACK:10", Rarity: "special", Lore: []string{ "§7Donated as higher tier", diff --git a/src/constants/rift.go b/src/constants/rift.go index 4e6f8b484..db84cbf66 100644 --- a/src/constants/rift.go +++ b/src/constants/rift.go @@ -7,13 +7,13 @@ type riftEye struct { } var RIFT_EYES = []riftEye{ - {Name: "The Intruder", Id: "dreadfarm", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The Gill-Man", Id: "wizard_tower", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The Baba Yaga", Id: "plaza", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The Bankster", Id: "fisherman_hut", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The Gooey", Id: "colosseum", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The Prince", Id: "castle", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, - {Name: "The 7th Sin", Id: "mountaintop", Texture: "http://localhost:8080/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Intruder", Id: "dreadfarm", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Gill-Man", Id: "wizard_tower", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Baba Yaga", Id: "plaza", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Bankster", Id: "fisherman_hut", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Gooey", Id: "colosseum", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The Prince", Id: "castle", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, + {Name: "The 7th Sin", Id: "mountaintop", Texture: "/api/head/17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"}, } type riftTimecharm struct { @@ -23,14 +23,14 @@ type riftTimecharm struct { } var RIFT_TIMECHARMS = []riftTimecharm{ - {Name: "Supreme Timecharm", ID: "wyldly_supreme", Texture: "http://localhost:8080/api/item/LEAVES:1"}, - {Name: "mrahcemiT esrevrorriM", ID: "mirrored", Texture: "http://localhost:8080/api/item/GLASS"}, - {Name: "Chicken N Egg Timecharm", ID: "chicken_n_egg", Texture: "http://localhost:8080/api/item/SOUL_SAND"}, - {Name: "SkyBlock Citizen Timecharm", ID: "citizen", Texture: "http://localhost:8080/api/item/JUKEBOX"}, - {Name: "Living Timecharm", ID: "lazy_living", Texture: "http://localhost:8080/api/item/LAPIS_ORE"}, - {Name: "Globulate Timecharm", ID: "slime", Texture: "http://localhost:8080/api/item/SLIME_BLOCK"}, - {Name: "Vampiric Timecharm", ID: "vampiric", Texture: "http://localhost:8080/api/item/REDSTONE_BLOCK"}, - {Name: "Celestial Timecharm", ID: "mountain", Texture: "http://localhost:8080/api/item/LAPIS_BLOCK"}, + {Name: "Supreme Timecharm", ID: "wyldly_supreme", Texture: "/api/item/LEAVES:1"}, + {Name: "mrahcemiT esrevrorriM", ID: "mirrored", Texture: "/api/item/GLASS"}, + {Name: "Chicken N Egg Timecharm", ID: "chicken_n_egg", Texture: "/api/item/SOUL_SAND"}, + {Name: "SkyBlock Citizen Timecharm", ID: "citizen", Texture: "/api/item/JUKEBOX"}, + {Name: "Living Timecharm", ID: "lazy_living", Texture: "/api/item/LAPIS_ORE"}, + {Name: "Globulate Timecharm", ID: "slime", Texture: "/api/item/SLIME_BLOCK"}, + {Name: "Vampiric Timecharm", ID: "vampiric", Texture: "/api/item/REDSTONE_BLOCK"}, + {Name: "Celestial Timecharm", ID: "mountain", Texture: "/api/item/LAPIS_BLOCK"}, } const RIFT_ENIGMA_SOULS = 52 diff --git a/src/constants/slayers.go b/src/constants/slayers.go index 80035c0b0..64b03ee6b 100644 --- a/src/constants/slayers.go +++ b/src/constants/slayers.go @@ -74,32 +74,32 @@ type slayerInfo struct { var SLAYER_INFO = map[string]slayerInfo{ "zombie": { Name: "Revenant Horror", - Head: "http://localhost:8080/api/head/1fc0184473fe882d2895ce7cbc8197bd40ff70bf10d3745de97b6c2a9c5fc78f", + Head: "/api/head/1fc0184473fe882d2895ce7cbc8197bd40ff70bf10d3745de97b6c2a9c5fc78f", Levelling: SLAYER_XP["zombie"], }, "spider": { Name: "Tarantula Broodfather", - Head: "http://localhost:8080/api/head/9d7e3b19ac4f3dee9c5677c135333b9d35a7f568b63d1ef4ada4b068b5a25", + Head: "/api/head/9d7e3b19ac4f3dee9c5677c135333b9d35a7f568b63d1ef4ada4b068b5a25", Levelling: SLAYER_XP["spider"], }, "wolf": { Name: "Sven Packmaster", - Head: "http://localhost:8080/api/head/f83a2aa9d3734b919ac24c9659e5e0f86ecafbf64d4788cfa433bbec189e8", + Head: "/api/head/f83a2aa9d3734b919ac24c9659e5e0f86ecafbf64d4788cfa433bbec189e8", Levelling: SLAYER_XP["wolf"], }, "enderman": { Name: "Voidgloom Seraph", - Head: "http://localhost:8080/api/head/1b09a3752510e914b0bdc9096b392bb359f7a8e8a9566a02e7f66faff8d6f89e", + Head: "/api/head/1b09a3752510e914b0bdc9096b392bb359f7a8e8a9566a02e7f66faff8d6f89e", Levelling: SLAYER_XP["enderman"], }, "blaze": { Name: "Inferno Demonlord", - Head: "http://localhost:8080/api/head/b20657e24b56e1b2f8fc219da1de788c0c24f36388b1a409d0cd2d8dba44aa3b", + Head: "/api/head/b20657e24b56e1b2f8fc219da1de788c0c24f36388b1a409d0cd2d8dba44aa3b", Levelling: SLAYER_XP["blaze"], }, "vampire": { Name: "Riftstalker Bloodfiend", - Head: "http://localhost:8080/api/head/5aa29ea961757dc3c90bfabf302c5abe9d308fb4a7d3864e5788ad2cc9160aa2", + Head: "/api/head/5aa29ea961757dc3c90bfabf302c5abe9d308fb4a7d3864e5788ad2cc9160aa2", Levelling: SLAYER_XP["vampire"], }, } diff --git a/src/constants/trophy_fish.go b/src/constants/trophy_fish.go index 6d5b5a621..d702277cc 100644 --- a/src/constants/trophy_fish.go +++ b/src/constants/trophy_fish.go @@ -11,180 +11,180 @@ var TROPHY_FISH = map[string]TrophyFish{ DisplayName: "Blobfish", Description: "§7Caught everywhere.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/3e77a61f2a25f19bb047be985b965f069d857502881bea3f9682d00bfd5cc3e7", - "silver": "http://localhost:8080/api/head/40e6628e5c358e080d3180c7424b70371e67e5724020b68a64d60ab41fe70bae", - "gold": "http://localhost:8080/api/head/2e93d72c19e7b917f233dc291b749391f2d870ef30cafc5f17281023ae17c2b9", - "diamond": "http://localhost:8080/api/head/d9339dfceaa5d99a5571ec4743b004d827b229eaf00eb703ced03a86029f3ad", + "bronze": "/api/head/3e77a61f2a25f19bb047be985b965f069d857502881bea3f9682d00bfd5cc3e7", + "silver": "/api/head/40e6628e5c358e080d3180c7424b70371e67e5724020b68a64d60ab41fe70bae", + "gold": "/api/head/2e93d72c19e7b917f233dc291b749391f2d870ef30cafc5f17281023ae17c2b9", + "diamond": "/api/head/d9339dfceaa5d99a5571ec4743b004d827b229eaf00eb703ced03a86029f3ad", }, }, "FLYFISH": { DisplayName: "Flyfish", Description: "§7Caught from §a8 §7blocks or higher above lava in the §6Blazing Volcano§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/5140c42fc3a1ba2fe77c45b975fa87e8f54a1b1833bc76e6339b4c262304011d", - "diamond": "http://localhost:8080/api/head/1516c233797626ce5e0132166062ae1cb435c561c00a6fa11b37e2295f8c7c5b", - "gold": "http://localhost:8080/api/head/6051fc3ea4b8459df839e67c157e9d1a753be0603cbf18d3c1352ebf61b58581", - "silver": "http://localhost:8080/api/head/adc59df19336fa7a84e4637519d7f843c38e7673ffcc3f39edeed950e28d8b57", + "bronze": "/api/head/5140c42fc3a1ba2fe77c45b975fa87e8f54a1b1833bc76e6339b4c262304011d", + "diamond": "/api/head/1516c233797626ce5e0132166062ae1cb435c561c00a6fa11b37e2295f8c7c5b", + "gold": "/api/head/6051fc3ea4b8459df839e67c157e9d1a753be0603cbf18d3c1352ebf61b58581", + "silver": "/api/head/adc59df19336fa7a84e4637519d7f843c38e7673ffcc3f39edeed950e28d8b57", }, }, "GOLDEN_FISH": { DisplayName: "Golden Fish", Description: "§7Has a chance to spawn after §a8 §7minutes of fishing, increasing linearly until reaching §f100% §7at §a12 §7minutes. The §6Golden Fish §7is rolled when your fishing hook is thrown out, regardless of if you catch a fish or not. You are not required to Trophy Fish to catch this one.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/fcfa31d81eae819936834e6664430daf8affbff30b48a1daa7ca1b4c20e3fe7d", - "diamond": "http://localhost:8080/api/head/f46cb8cbb60cda60092b3051648dd2db7eec49ae87f3f524c6182797b4109a12", - "gold": "http://localhost:8080/api/head/38175538210af6a4d1a443e08ee321abad837c6c927c7803ab361d29e3f8e509", - "silver": "http://localhost:8080/api/head/98ac13a462e9e9ffc3569c6beb44e4b28be5a15e7628c8957c5cddfaff26c285", + "bronze": "/api/head/fcfa31d81eae819936834e6664430daf8affbff30b48a1daa7ca1b4c20e3fe7d", + "diamond": "/api/head/f46cb8cbb60cda60092b3051648dd2db7eec49ae87f3f524c6182797b4109a12", + "gold": "/api/head/38175538210af6a4d1a443e08ee321abad837c6c927c7803ab361d29e3f8e509", + "silver": "/api/head/98ac13a462e9e9ffc3569c6beb44e4b28be5a15e7628c8957c5cddfaff26c285", }, }, "GUSHER": { DisplayName: "Gusher", Description: "§7Caught within §a7-16 §7minutes after a §6Blazing Volcano §7eruption.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/afb8c51bfcd996840010bcce2a3575ae26352e00446d3ec313fcbf1f88108512", - "diamond": "http://localhost:8080/api/head/577322d86e61df34b2dcbb3fa7f4d03d0e3be56bddac6bdf2e7de61e21f718eb", - "gold": "http://localhost:8080/api/head/d550a51e76f32aaa556b98d817db6ae71aadb2af7d76c34b903dad5ee2f90439", - "silver": "http://localhost:8080/api/head/e5c2828e950c1fd7f73a6b7879d8b562ecff894b6cb22afb9c2660627b3b8dfe", + "bronze": "/api/head/afb8c51bfcd996840010bcce2a3575ae26352e00446d3ec313fcbf1f88108512", + "diamond": "/api/head/577322d86e61df34b2dcbb3fa7f4d03d0e3be56bddac6bdf2e7de61e21f718eb", + "gold": "/api/head/d550a51e76f32aaa556b98d817db6ae71aadb2af7d76c34b903dad5ee2f90439", + "silver": "/api/head/e5c2828e950c1fd7f73a6b7879d8b562ecff894b6cb22afb9c2660627b3b8dfe", }, }, "KARATE_FISH": { DisplayName: "Karate Fish", Description: "§7Caught in the lava pools near the §eDojo§7. Note - Half of the lava pools do not actually count as being in the §eDojo §7area. If you stand in the same place as your bobber and do not see '§eDojo§7' in the sidebar, you cannot catch the §5Karate Fish §7there.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/901ef47164aba899674cac1e04dda29895ba670807a162e888681c6428e42a83", - "diamond": "http://localhost:8080/api/head/fa57e62e393f80cd4bb23109c7c869b1f66621ceccae4b7601afb3269120294d", - "gold": "http://localhost:8080/api/head/ac28a1f0f3908274e5860e1ac1b122b7323327aeb376e8378a036c9fa8bf35c5", - "silver": "http://localhost:8080/api/head/e56227d0e98b7541b2922e9cd9113155d13028978d4c3f68775199ea27299fd4", + "bronze": "/api/head/901ef47164aba899674cac1e04dda29895ba670807a162e888681c6428e42a83", + "diamond": "/api/head/fa57e62e393f80cd4bb23109c7c869b1f66621ceccae4b7601afb3269120294d", + "gold": "/api/head/ac28a1f0f3908274e5860e1ac1b122b7323327aeb376e8378a036c9fa8bf35c5", + "silver": "/api/head/e56227d0e98b7541b2922e9cd9113155d13028978d4c3f68775199ea27299fd4", }, }, "LAVA_HORSE": { DisplayName: "Lavahorse", Description: "§7Caught everywhere.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/1176ea86635c4e849469ed694b3c0c3f7ec7677ed0682bee5ef6d59ea669677f", - "diamond": "http://localhost:8080/api/head/67e685788792dc90e7d19c2932f3dc1dbe396e6cac068260997ea0b64ffd2bf8", - "gold": "http://localhost:8080/api/head/a4d8850536ca5d3b735691be439c7f8619ebc14ad0aef78055fd86a37dd2adf1", - "silver": "http://localhost:8080/api/head/124ab405566c448c7484132f99a7bb79bdf547ae50713c0dd866a2375156b2c7", + "bronze": "/api/head/1176ea86635c4e849469ed694b3c0c3f7ec7677ed0682bee5ef6d59ea669677f", + "diamond": "/api/head/67e685788792dc90e7d19c2932f3dc1dbe396e6cac068260997ea0b64ffd2bf8", + "gold": "/api/head/a4d8850536ca5d3b735691be439c7f8619ebc14ad0aef78055fd86a37dd2adf1", + "silver": "/api/head/124ab405566c448c7484132f99a7bb79bdf547ae50713c0dd866a2375156b2c7", }, }, "MANA_RAY": { DisplayName: "Mana Ray", Description: "§7Caught when you have at least §b1,200 ✎ Intelligence§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/ff357b0f4e13cc2013bf4a02a3d3351ab0d7856e73f9f0cf8b6f13e78d95b215", - "diamond": "http://localhost:8080/api/head/6d6dacd67f0562980e597a8ba508b3e321002f4d358c85dd9a4a39bacaea63f8", - "gold": "http://localhost:8080/api/head/c515e96329992b2969c427a17ae68173ad0f8b86f9e3a0e3f9460385581edfe3", - "silver": "http://localhost:8080/api/head/dfd706157c2a3e2c8c3674cbc37f7a1206b87b7a6453d11e7408492c01c35634", + "bronze": "/api/head/ff357b0f4e13cc2013bf4a02a3d3351ab0d7856e73f9f0cf8b6f13e78d95b215", + "diamond": "/api/head/6d6dacd67f0562980e597a8ba508b3e321002f4d358c85dd9a4a39bacaea63f8", + "gold": "/api/head/c515e96329992b2969c427a17ae68173ad0f8b86f9e3a0e3f9460385581edfe3", + "silver": "/api/head/dfd706157c2a3e2c8c3674cbc37f7a1206b87b7a6453d11e7408492c01c35634", }, }, "MOLDFIN": { DisplayName: "Moldfin", Description: "§7Caught in the §dMystic Marsh§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/54f33dc405ba447b35926b48d90600302aeebb140ad330d885886cb1029a8af", - "diamond": "http://localhost:8080/api/head/9c99ddc1d711f482305d8f1ffcadd4b444fad1b0b07c5be2b73b1f08ee6cbe5e", - "gold": "http://localhost:8080/api/head/5113e386937a8ed25fe40fdbe6b88712ae73411f6a0ae927420ffcb9d778226b", - "silver": "http://localhost:8080/api/head/6a52dd3040aca257bf361c15cc4a0114f850b2a91867ee49d26cebca5203aab4", + "bronze": "/api/head/54f33dc405ba447b35926b48d90600302aeebb140ad330d885886cb1029a8af", + "diamond": "/api/head/9c99ddc1d711f482305d8f1ffcadd4b444fad1b0b07c5be2b73b1f08ee6cbe5e", + "gold": "/api/head/5113e386937a8ed25fe40fdbe6b88712ae73411f6a0ae927420ffcb9d778226b", + "silver": "/api/head/6a52dd3040aca257bf361c15cc4a0114f850b2a91867ee49d26cebca5203aab4", }, }, "OBFUSCATED_FISH_1": { DisplayName: "Obfuscated 1", Description: "§7Caught with Corrupted Bait or dropped from corrupted Sea Creatures.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/e1f4d91e1bf8d3c4258fe0f28ec2fa40670e25ba06ac4b5cb1abf52a83731a9c", - "diamond": "http://localhost:8080/api/head/caa0b4b4f443257e83176df4ffd550de7ee89867e506b9c1ca53f33611327929", - "gold": "http://localhost:8080/api/head/8a2a44913ee1d5babc172f374351ea7ad1516ca256d16a4ef72d8a092b519cd1", - "silver": "http://localhost:8080/api/head/479b52391ff0cd3c83db1c1c218a02ab13a2c6a4aaa1cf126c7912bd377e8fbf", + "bronze": "/api/head/e1f4d91e1bf8d3c4258fe0f28ec2fa40670e25ba06ac4b5cb1abf52a83731a9c", + "diamond": "/api/head/caa0b4b4f443257e83176df4ffd550de7ee89867e506b9c1ca53f33611327929", + "gold": "/api/head/8a2a44913ee1d5babc172f374351ea7ad1516ca256d16a4ef72d8a092b519cd1", + "silver": "/api/head/479b52391ff0cd3c83db1c1c218a02ab13a2c6a4aaa1cf126c7912bd377e8fbf", }, }, "OBFUSCATED_FISH_2": { DisplayName: "Obfuscated 2", Description: "§7Caught whilst using Obfuscated 1 as bait.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/8321e19aa4b3163c8990b066b1cd0895c3c97a799057327507db0ffc80d90575", - "gold": "http://localhost:8080/api/head/4631953a0351988029b90e838181e4e563d782e470ea33b8c612756f730625c2", - "silver": "http://localhost:8080/api/head/cb12de47e0b48ab8f7d8f500fdc5d7869b7f2192f823620088582a56afcf68fb", - "diamond": "http://localhost:8080/api/head/cdca1057973e87f875722d7cf5c7b3de2aa4831ced2aa4259c0e4bec7b499245", + "bronze": "/api/head/8321e19aa4b3163c8990b066b1cd0895c3c97a799057327507db0ffc80d90575", + "gold": "/api/head/4631953a0351988029b90e838181e4e563d782e470ea33b8c612756f730625c2", + "silver": "/api/head/cb12de47e0b48ab8f7d8f500fdc5d7869b7f2192f823620088582a56afcf68fb", + "diamond": "/api/head/cdca1057973e87f875722d7cf5c7b3de2aa4831ced2aa4259c0e4bec7b499245", }, }, "OBFUSCATED_FISH_3": { DisplayName: "Obfuscated 3", Description: "§7Caught with Obfuscated 2 as bait.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/df478663687d16f79b9c32546a7c3ec2736e87ce69779991e52deaf622abd8c2", - "silver": "http://localhost:8080/api/head/3c800c71b925587213382eeaaa426ed63112503e278ff9f5b3d39dbdb95d31d0", - "gold": "http://localhost:8080/api/head/97f71c13302401772e611a2a508f23df54b778be725ce231662f3fc810d258a1", - "diamond": "http://localhost:8080/api/head/665a04023ce40813abee55061fe802d2f8195fcdee3570388bba072073ecef3a", + "bronze": "/api/head/df478663687d16f79b9c32546a7c3ec2736e87ce69779991e52deaf622abd8c2", + "silver": "/api/head/3c800c71b925587213382eeaaa426ed63112503e278ff9f5b3d39dbdb95d31d0", + "gold": "/api/head/97f71c13302401772e611a2a508f23df54b778be725ce231662f3fc810d258a1", + "diamond": "/api/head/665a04023ce40813abee55061fe802d2f8195fcdee3570388bba072073ecef3a", }, }, "SKELETON_FISH": { DisplayName: "Skeleton Fish", Description: "§7Caught in the §eBurning Desert§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/923e0a25048b60a2cc092f72943159ec170063bb235aa79690ef34ab181d691", - "diamond": "http://localhost:8080/api/head/ed01389874c7be1165d5df633daf27d936bfaf553143cfcbaa50c93c4746f9f3", - "gold": "http://localhost:8080/api/head/639dd2fe302e2ac4d9e8d31876489258b04e58a8e8754714669145a89a82d2e0", - "silver": "http://localhost:8080/api/head/a39846ad1c8fd3420febff458401bacd91d1f4fd444940f7f7cb9e2a490ca4dd", + "bronze": "/api/head/923e0a25048b60a2cc092f72943159ec170063bb235aa79690ef34ab181d691", + "diamond": "/api/head/ed01389874c7be1165d5df633daf27d936bfaf553143cfcbaa50c93c4746f9f3", + "gold": "/api/head/639dd2fe302e2ac4d9e8d31876489258b04e58a8e8754714669145a89a82d2e0", + "silver": "/api/head/a39846ad1c8fd3420febff458401bacd91d1f4fd444940f7f7cb9e2a490ca4dd", }, }, "SLUGFISH": { DisplayName: "Slugfish", Description: "§7Caught when the bobber has been active for at least §a20 §7seconds. The §6Slug Pet §7reduces this time by up to §a50%§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/c1de9e49ecc8d6209c783bfd1684a89e624a4e483a86023c6df57f77d5b75890", - "diamond": "http://localhost:8080/api/head/a5d717aa5c9063181283811d265bfd0ffdc7eda09a0984cee59578b4a5efd4a1", - "gold": "http://localhost:8080/api/head/289d72f3750a5cd244cbf09af9478453b6575df591d720b6ec23d84a165c65f2", - "silver": "http://localhost:8080/api/head/d82efd885e6e2a964efb857de724b2ef043f1dcbbe618f10ec3742c6f2cecab", + "bronze": "/api/head/c1de9e49ecc8d6209c783bfd1684a89e624a4e483a86023c6df57f77d5b75890", + "diamond": "/api/head/a5d717aa5c9063181283811d265bfd0ffdc7eda09a0984cee59578b4a5efd4a1", + "gold": "/api/head/289d72f3750a5cd244cbf09af9478453b6575df591d720b6ec23d84a165c65f2", + "silver": "/api/head/d82efd885e6e2a964efb857de724b2ef043f1dcbbe618f10ec3742c6f2cecab", }, }, "SOUL_FISH": { DisplayName: "Soul Fish", Description: "§7Caught in the §5Stronghold§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/7fe554d346c20c161aa85cfdc1b89779c9f64e726a5bb28ace8078e6594052d7", - "diamond": "http://localhost:8080/api/head/b63912df6540359774fb5cb4546a2eea1736f3fc7cf2848421697c1be8a5361", - "gold": "http://localhost:8080/api/head/3c9548a25e68332e6dde60816d811242fa40da58a5e24a5233e0079d9c57f779", - "silver": "http://localhost:8080/api/head/d086c5700ec707d703cfb45ab8afee5269a59eedda516a2c68f3e2aef7fa6a94", + "bronze": "/api/head/7fe554d346c20c161aa85cfdc1b89779c9f64e726a5bb28ace8078e6594052d7", + "diamond": "/api/head/b63912df6540359774fb5cb4546a2eea1736f3fc7cf2848421697c1be8a5361", + "gold": "/api/head/3c9548a25e68332e6dde60816d811242fa40da58a5e24a5233e0079d9c57f779", + "silver": "/api/head/d086c5700ec707d703cfb45ab8afee5269a59eedda516a2c68f3e2aef7fa6a94", }, }, "STEAMING_HOT_FLOUNDER": { DisplayName: "Steaming-Hot Flounder", Description: "§7Caught when the bobber is within §a2 §7blocks of a Geyser in the §6Blazing Volcano§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/8b88f88f3053c434660eeb4c7b2344bc21ab52596cea5a66d0f9db8c0e050209", - "diamond": "http://localhost:8080/api/head/c6602a15cf491f76584179221ed1da25fe6918f9100b864b39ea6493734809d1", - "gold": "http://localhost:8080/api/head/305cb6623837195113c04409658f9e8872a05e2321b79dfd1ce48eda6f749b90", - "silver": "http://localhost:8080/api/head/6887f3db9e1f28f08fed4fdc8be40dbeef7a04f026d5e30041ecd49a78558efb", + "bronze": "/api/head/8b88f88f3053c434660eeb4c7b2344bc21ab52596cea5a66d0f9db8c0e050209", + "diamond": "/api/head/c6602a15cf491f76584179221ed1da25fe6918f9100b864b39ea6493734809d1", + "gold": "/api/head/305cb6623837195113c04409658f9e8872a05e2321b79dfd1ce48eda6f749b90", + "silver": "/api/head/6887f3db9e1f28f08fed4fdc8be40dbeef7a04f026d5e30041ecd49a78558efb", }, }, "SULPHUR_SKITTER": { DisplayName: "Sulphur Skitter", Description: "§7Caught when standing within §a4 §7blocks of a Sulphur Ore.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/4fbf7111609f2ec23d9b3f285e1755b62193bd7c3d770576e2b18c48afeb0e29", - "diamond": "http://localhost:8080/api/head/4c6eac56808a85b59d48aff59a262922a57cfa766f6c56f69c7d91fea230fa", - "gold": "http://localhost:8080/api/head/a79c52c2bb808d2e46e8e4e4db506f9406e9dfa20aee419ad90eacfb0216c169", - "silver": "http://localhost:8080/api/head/ba6e3560712f7213a428518deb66c0638269d17e90d8f31d4ade2a0acb91fd80", + "bronze": "/api/head/4fbf7111609f2ec23d9b3f285e1755b62193bd7c3d770576e2b18c48afeb0e29", + "diamond": "/api/head/4c6eac56808a85b59d48aff59a262922a57cfa766f6c56f69c7d91fea230fa", + "gold": "/api/head/a79c52c2bb808d2e46e8e4e4db506f9406e9dfa20aee419ad90eacfb0216c169", + "silver": "/api/head/ba6e3560712f7213a428518deb66c0638269d17e90d8f31d4ade2a0acb91fd80", }, }, "VANILLE": { DisplayName: "Vanille", Description: "§7Caught when using a §aStarter Lava Rod §7with no Enchantments.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/57120222cce38d53ba69fc6540e97bff9abdbe22ba6068d4ee9af52ecc56842f", - "diamond": "http://localhost:8080/api/head/bd6519e85f7fd69cb2d7bbd8d77018d907cab7b9ec1309eb933de78df00b63c1", - "gold": "http://localhost:8080/api/head/7684b553c9b045a429a775881130c5e6daa547d314f1f0255135f5bd46870e85", - "silver": "http://localhost:8080/api/head/7313271354dc2e5b1a720c6668f03ca7106ee439f874907f2a54083f0cb57721", + "bronze": "/api/head/57120222cce38d53ba69fc6540e97bff9abdbe22ba6068d4ee9af52ecc56842f", + "diamond": "/api/head/bd6519e85f7fd69cb2d7bbd8d77018d907cab7b9ec1309eb933de78df00b63c1", + "gold": "/api/head/7684b553c9b045a429a775881130c5e6daa547d314f1f0255135f5bd46870e85", + "silver": "/api/head/7313271354dc2e5b1a720c6668f03ca7106ee439f874907f2a54083f0cb57721", }, }, "VOLCANIC_STONEFISH": { DisplayName: "Volcanic Stonefish", Description: "§7Caught in the §6Blazing Volcano§7.", Textures: map[string]string{ - "bronze": "http://localhost:8080/api/head/38f89cbaa61ecc99a8321d53f070cef8414efc3eac47bf6fe143056fed9ee8", - "diamond": "http://localhost:8080/api/head/48bec97138419aff0af6fb445cd5f8d68e30698facf46ae956cbda2331fb2284", - "gold": "http://localhost:8080/api/head/491156fede270a2fe49acf80d5956a0a9f312e37a0be669c3da54732a4c169c2", - "silver": "http://localhost:8080/api/head/f868b5727d27ace0beca1ca19c783b5375a88ce3d3956a0c589b4ba167e6c18f", + "bronze": "/api/head/38f89cbaa61ecc99a8321d53f070cef8414efc3eac47bf6fe143056fed9ee8", + "diamond": "/api/head/48bec97138419aff0af6fb445cd5f8d68e30698facf46ae956cbda2331fb2284", + "gold": "/api/head/491156fede270a2fe49acf80d5956a0a9f312e37a0be669c3da54732a4c169c2", + "silver": "/api/head/f868b5727d27ace0beca1ca19c783b5375a88ce3d3956a0c589b4ba167e6c18f", }, }, } diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 70c572a14..0d529a905 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -28,6 +28,10 @@ func GetTexturePath(texturePath string, textureString string) string { formattedPath = fmt.Sprintf("resourcepacks/%s/assets/cittofirmgenerated/textures/item/%s.png", texturePath, textureId) } + if os.Getenv("DEV") != "true" { + return formattedPath + } + return "http://localhost:8080/assets/" + formattedPath } @@ -292,7 +296,11 @@ func init() { func ApplyTexture(item models.TextureItem) string { // ? NOTE: we're ignoring enchanted books because they're quite expensive to render and not really worth the performance hit if item.Tag.ExtraAttributes == nil || item.Tag.ExtraAttributes["id"] == "ENCHANTED_BOOK" { - return "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" + if os.Getenv("DEV") == "true" { + return "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" + } + + return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" } customTexture := GetTexture(item) @@ -304,11 +312,19 @@ func ApplyTexture(item models.TextureItem) string { if item.Tag.SkullOwner != nil && item.Tag.SkullOwner.Properties.Textures[0].Value != "" { skinHash := utility.GetSkinHash(item.Tag.SkullOwner.Properties.Textures[0].Value) + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/head/%s", skinHash) + } + return fmt.Sprintf("http://localhost:8080/api/head/%s", skinHash) } // Preparsed texture from /api/item endpoint if item.Texture != "" { + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/head/%s", item.Texture) + } + return fmt.Sprintf("http://localhost:8080/api/head/%s", item.Texture) } @@ -331,6 +347,10 @@ func ApplyTexture(item models.TextureItem) string { } + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/leather_%s_%s.png", armorType, armorColor) + } + return fmt.Sprintf("http://localhost:8080/api/leather/%s/%s", armorType, armorColor) } @@ -351,9 +371,17 @@ func ApplyTexture(item models.TextureItem) string { vanillaPath := fmt.Sprintf("assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/%s.png", strings.ToLower(item.RawId)) if _, err := os.Stat(vanillaPath); err == nil { + if os.Getenv("DEV") != "true" { + return "/" + vanillaPath + } + return "http://localhost:8080/" + vanillaPath } fmt.Printf("[CUSTOM_RESOURCES] No custom texture found for item %s, returning default barrier texture\n", item.Tag.ExtraAttributes["id"]) + if os.Getenv("DEV") != "true" { + return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png" + } + return "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png" } diff --git a/src/routes/inventory.go b/src/routes/inventory.go index d11f4deff..c29fb1690 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -2,6 +2,7 @@ package routes import ( "fmt" + "os" "skycrypt/src/api" redis "skycrypt/src/db" "skycrypt/src/models" @@ -18,16 +19,16 @@ import ( ) var ICONS map[string]string = map[string]string{ - "backpack": "http://localhost:8080/api/item/chest", - "enderchest": "http://localhost:8080/api/item/ender_chest", - "personal_vault": "http://localhost:8080/api/head/f7aadff9ddc546fdcec6ed5919cc39dfa8d0c07ff4bc613a19f2e6d7f2593", - "talisman_bag": "http://localhost:8080/api/head/961a918c0c49ba8d053e522cb91abc74689367b4d8aa06bfc1ba9154730985ff", - "potion_bag": "http://localhost:8080/api/head/9f8b82427b260d0a61e6483fc3b2c35a585851e08a9a9df372548b4168cc817c", - "fishing_bag": "http://localhost:8080/api/head/eb8e297df6b8dffcf135dba84ec792d420ad8ecb458d144288572a84603b1631", - "quiver": "http://localhost:8080/api/head/4cb3acdc11ca747bf710e59f4c8e9b3d949fdd364c6869831ca878f0763d1787", - "museum": "http://localhost:8080/api/head/438cf3f8e54afc3b3f91d20a49f324dca1486007fe545399055524c17941f4dc", - "rift_inventory": "http://localhost:8080/api/head/445240fcf1a9796327dda5593985343af9121a7156bc76e3d6b341b02e6a6e52", - "rift_enderchest": "http://localhost:8080/api/head/a6cc486c2be1cb9dfcb2e53dd9a3e9a883bfadb27cb956f1896d602b4067", + "backpack": "/api/item/chest", + "enderchest": "/api/item/ender_chest", + "personal_vault": "/api/head/f7aadff9ddc546fdcec6ed5919cc39dfa8d0c07ff4bc613a19f2e6d7f2593", + "talisman_bag": "/api/head/961a918c0c49ba8d053e522cb91abc74689367b4d8aa06bfc1ba9154730985ff", + "potion_bag": "/api/head/9f8b82427b260d0a61e6483fc3b2c35a585851e08a9a9df372548b4168cc817c", + "fishing_bag": "/api/head/eb8e297df6b8dffcf135dba84ec792d420ad8ecb458d144288572a84603b1631", + "quiver": "/api/head/4cb3acdc11ca747bf710e59f4c8e9b3d949fdd364c6869831ca878f0763d1787", + "museum": "/api/head/438cf3f8e54afc3b3f91d20a49f324dca1486007fe545399055524c17941f4dc", + "rift_inventory": "/api/head/445240fcf1a9796327dda5593985343af9121a7156bc76e3d6b341b02e6a6e52", + "rift_enderchest": "/api/head/a6cc486c2be1cb9dfcb2e53dd9a3e9a883bfadb27cb956f1896d602b4067", } type SearchItem struct { @@ -42,6 +43,10 @@ type SourceTab struct { func getIcon(source string, uuid string) string { if icon, exists := ICONS[source]; exists { + if os.Getenv("DEV") == "true" { + return fmt.Sprintf("http://localhost:8080%s", icon) + } + return icon } diff --git a/src/stats/collections.go b/src/stats/collections.go index 781f9bf85..fcdcd17f4 100644 --- a/src/stats/collections.go +++ b/src/stats/collections.go @@ -1,10 +1,12 @@ package stats import ( + "os" "skycrypt/src/api" "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -48,6 +50,11 @@ func getBossCollections(userProfile *skycrypttypes.Member) models.CollectionCate }, }, } + + if os.Getenv("DEV") == "true" { + item.Texture = strings.Replace(item.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + floorId, _ := utility.ParseInt(floor) floorItems = append(floorItems, models.BossCollectionsFloorData{ FloorId: floorId, @@ -78,18 +85,24 @@ func getBossCollections(userProfile *skycrypttypes.Member) models.CollectionCate }) } + kuudraBoss := models.CollectionCategoryItem{ + Name: KUUDRA_CONSTANTS.Name, + Id: "kuudra", + Texture: KUUDRA_CONSTANTS.Texture, + Amount: kuudraCompletions, + TotalAmount: kuudraCompletions, + Tier: kuudraTier, + MaxTier: len(KUUDRA_CONSTANTS.Collections), + Amounts: kuudraAmounts, + } + + if os.Getenv("DEV") == "true" { + kuudraBoss.Texture = strings.Replace(kuudraBoss.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + floorItems = append(floorItems, models.BossCollectionsFloorData{ FloorId: 8, - Item: models.CollectionCategoryItem{ - Name: KUUDRA_CONSTANTS.Name, - Id: "kuudra", - Texture: KUUDRA_CONSTANTS.Texture, - Amount: kuudraCompletions, - TotalAmount: kuudraCompletions, - Tier: kuudraTier, - MaxTier: len(KUUDRA_CONSTANTS.Collections), - Amounts: kuudraAmounts, - }, + Item: kuudraBoss, }) utility.SortSlice(floorItems, func(i, j int) bool { diff --git a/src/stats/crimson_isle.go b/src/stats/crimson_isle.go index 5bec6d0d5..aaffab2db 100644 --- a/src/stats/crimson_isle.go +++ b/src/stats/crimson_isle.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/models" "strings" @@ -40,6 +41,10 @@ func getKuudra(userProfile *skycrypttypes.Member) models.CrimsonIsleKuudra { Kills: userProfile.CrimsonIsle.Kuudra[kuudraId], } + if os.Getenv("DEV") == "true" { + tier.Texture = strings.Replace(tier.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + totalKills += tier.Kills tiers = append(tiers, tier) } @@ -80,6 +85,10 @@ func getDojo(userProfile *skycrypttypes.Member) models.CrimsonIsleDojo { Rank: getDojoRank(points), } + if os.Getenv("DEV") == "true" { + challenge.Texture = strings.Replace(challenge.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + totalPoints += points challenges = append(challenges, challenge) } diff --git a/src/stats/dungeons.go b/src/stats/dungeons.go index efd120396..8b1cb8f80 100644 --- a/src/stats/dungeons.go +++ b/src/stats/dungeons.go @@ -1,10 +1,12 @@ package stats import ( + "os" "skycrypt/src/constants" "skycrypt/src/models" stats "skycrypt/src/stats/leveling" "skycrypt/src/utility" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -144,12 +146,18 @@ func formatCatacombsFloor(data *skycrypttypes.DungeonData, dungeonType string) [ MostDamage: getMostDamage(data, f.ID), } - output = append(output, models.FormattedDungeonFloor{ + floorData := models.FormattedDungeonFloor{ Name: f.Name, Texture: f.Texture, Stats: stats, BestRun: getBestRun(data.BestRuns[f.ID]), - }) + } + + if os.Getenv("DEV") == "true" { + floorData.Texture = strings.Replace(floorData.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + + output = append(output, floorData) } return output diff --git a/src/stats/enchanting.go b/src/stats/enchanting.go index 024206c42..85e63afca 100644 --- a/src/stats/enchanting.go +++ b/src/stats/enchanting.go @@ -1,8 +1,10 @@ package stats import ( + "os" "skycrypt/src/constants" "skycrypt/src/models" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -25,13 +27,19 @@ func getGame(gameData *skycrypttypes.ExperimentationGame, gameId string) []model } tier = constants.EXPERIMENTS.Tiers[index] - output = append(output, models.EnchantingGame{ + experimentData := models.EnchantingGame{ Name: tier.Name, Texture: tier.Texture, Attempts: attempts, Claims: claims, BestScore: bestScore, - }) + } + + if os.Getenv("DEV") == "true" { + experimentData.Texture = strings.Replace(experimentData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + + output = append(output, experimentData) } return output diff --git a/src/stats/fishing.go b/src/stats/fishing.go index f33c62480..989708c63 100644 --- a/src/stats/fishing.go +++ b/src/stats/fishing.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/models" statsItems "skycrypt/src/stats/items" @@ -69,6 +70,10 @@ func getTrophyFish(userProfile *skycrypttypes.Member) models.TrophyFishOutput { } tf.Texture = data.Textures[highestTier] + if os.Getenv("DEV") == "true" { + tf.Texture = strings.Replace(tf.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + tf.Maxed = highestTier == constants.TROPHY_FISH_TIERS[len(constants.TROPHY_FISH_TIERS)-1] output = append(output, tf) } diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index 296409e47..3610ec728 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -2,9 +2,11 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -333,6 +335,12 @@ func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { // Setup the frame for the museum itemSlot := formatMuseumItemProgress(&item, museumItems) if itemSlot.InventoryType == "" { + if os.Getenv("DEV") == "true" { + itemSlot.ProcessedItem.Texture = strings.Replace(itemSlot.ProcessedItem.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + + fmt.Printf("Item: %+v\n", itemSlot.ProcessedItem.Texture) + output[itemSlot.Position] = itemSlot.ProcessedItem continue } @@ -377,6 +385,9 @@ func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { // MISSING ITEM if museumItem.SkyblockID == "" || museumItem.Missing { itemData := constants.MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE[itemSlot.InventoryType] + if os.Getenv("DEV") == "true" { + itemData.Texture = strings.Replace(itemData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } itemName := constants.MUSEUM.ArmorSetToId[itemId] if itemName == "" { @@ -391,6 +402,9 @@ func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { // DONATED HIGHER TIER if museumItem.DonatedAsAChild { itemData := constants.MUSEUM_INVENTORY_HIGHER_TIER_DONATED_TEMPLATE + if os.Getenv("DEV") == "true" { + itemData.Texture = strings.Replace(itemData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } itemName := constants.MUSEUM.ArmorSetToId[itemId] if itemName == "" { diff --git a/src/stats/leveling/leveling.go b/src/stats/leveling/leveling.go index 86c5a24ce..0dfa07436 100644 --- a/src/stats/leveling/leveling.go +++ b/src/stats/leveling/leveling.go @@ -2,6 +2,7 @@ package stats import ( "math" + "os" notenoughupdates "skycrypt/src/NotEnoughUpdates" "skycrypt/src/constants" "skycrypt/src/models" @@ -157,6 +158,10 @@ func GetLevelByXp(xp int, extra *ExtraSkillData) models.Skill { } } + if os.Getenv("DEV") == "true" { + texture = strings.Replace(texture, "/api/", "http://localhost:8080/api/", 1) + } + return models.Skill{ XP: xp, Level: level, @@ -311,6 +316,10 @@ func GetXpByLevel(level int, extra *ExtraSkillData) models.Skill { } } + if os.Getenv("DEV") == "true" { + texture = strings.Replace(texture, "/api/", "http://localhost:8080/api/", 1) + } + return models.Skill{ XP: xpCurrent, Level: level, diff --git a/src/stats/mining.go b/src/stats/mining.go index e243e0e9f..07d9caa10 100644 --- a/src/stats/mining.go +++ b/src/stats/mining.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/models" statsItems "skycrypt/src/stats/items" @@ -212,6 +213,10 @@ func getGlaciteTunnels(userProfile *skycrypttypes.Member) models.GlaciteTunnels Texture: corpseTexture, } + if os.Getenv("DEV") == "true" { + corpseData.Texture = strings.Replace(corpseData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + output.Corpses.Corpses = append(output.Corpses.Corpses, corpseData) } diff --git a/src/stats/minions.go b/src/stats/minions.go index 6802b6995..70070c5ed 100644 --- a/src/stats/minions.go +++ b/src/stats/minions.go @@ -1,6 +1,7 @@ package stats import ( + "os" "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" @@ -87,6 +88,10 @@ func GetMinions(profile *skycrypttypes.Profile) models.MinionsOutput { MaxedTiers: 0, } + if os.Getenv("DEV") == "true" { + category.Texture = strings.Replace(category.Texture, "/api/", "http://localhost:8080/api/", 1) + } + totalTiers := 0 for minionId, minionData := range categoryData { name := minionData.Name @@ -104,12 +109,18 @@ func GetMinions(profile *skycrypttypes.Profile) models.MinionsOutput { craftedTiers = []int{} } - category.Minions = append(category.Minions, models.Minion{ + minionData := models.Minion{ Name: name, Texture: minionData.Texture, MaxTier: maxTier, Tiers: craftedTiers, - }) + } + + if os.Getenv("DEV") == "true" { + minionData.Texture = strings.Replace(minionData.Texture, "/api/", "http://localhost:8080/api/", 1) + } + + category.Minions = append(category.Minions, minionData) totalTiers += maxTier category.MaxedTiers += len(craftedMinions[minionId]) diff --git a/src/stats/misc.go b/src/stats/misc.go index 3c22e3f39..08b1eb685 100644 --- a/src/stats/misc.go +++ b/src/stats/misc.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/utility" "strings" @@ -105,11 +106,17 @@ type MiscGifts struct { func getEssence(userProfile *skycrypttypes.Member) []MiscEssence { essence := make([]MiscEssence, 0, len(constants.ESSENCE)) for essenceId, essenceData := range constants.ESSENCE { - essence = append(essence, MiscEssence{ + essenceData := MiscEssence{ Name: essenceData.Name, Texture: essenceData.Texture, Amount: userProfile.Currencies.Essence[strings.ToUpper(essenceId)].Current, - }) + } + + if os.Getenv("DEV") == "true" { + essenceData.Texture = strings.Replace(essenceData.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + + essence = append(essence, essenceData) } return essence diff --git a/src/stats/neu/bestiary.go b/src/stats/neu/bestiary.go index 038ade8ab..2f32cf996 100644 --- a/src/stats/neu/bestiary.go +++ b/src/stats/neu/bestiary.go @@ -2,23 +2,50 @@ package neustats import ( "fmt" + "os" neu "skycrypt/src/models/NEU" "skycrypt/src/utility" ) func GetTexture(mob neu.NEUBestiaryRawMob) string { if mob.Texture == "" { + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/item/%s", mob.Item) + } + return fmt.Sprintf(`http://localhost:8080/api/item/%s`, mob.Item) } - return fmt.Sprintf("http://localhost:8080/api/head/%s", utility.GetSkinHash(mob.Texture)) + skinHash := utility.GetSkinHash(mob.Texture) + if skinHash == "" { + if os.Getenv("DEV") != "true" { + return "/api/item/BARRIER" + } + + return "http://localhost:8080/api/item/BARRIER" + + } + + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/head/%s", skinHash) + } + + return fmt.Sprintf("http://localhost:8080/api/head/%s", skinHash) } func GetIslandTexture(island neu.NEUBestiaryRawIslandData) string { if island.Icon.Texture == "" { + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/item/%s", island.Icon.Item) + } + return fmt.Sprintf(`http://localhost:8080/api/item/%s`, island.Icon.Item) } + if os.Getenv("DEV") != "true" { + return fmt.Sprintf("/api/head/%s", utility.GetSkinHash(island.Icon.Texture)) + } + return fmt.Sprintf("http://localhost:8080/api/head/%s", utility.GetSkinHash(island.Icon.Texture)) } diff --git a/src/stats/pets.go b/src/stats/pets.go index b4cbf0231..e18f2c33a 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" notenoughupdates "skycrypt/src/NotEnoughUpdates" stats "skycrypt/src/stats/items" @@ -174,6 +175,11 @@ func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet pet.Rarity = constants.RARITIES[slices.Index(constants.RARITIES, strings.ToLower(pet.Rarity))+1] } + texture := "/api/head/bc8ea1f51f253ff5142ca11ae45193a4ad8c3ab5e9c6eec8ba7a4fcb7bac40" + if os.Getenv("DEV") == "true" { + texture = "http://localhost:8080/api/head/bc8ea1f51f253ff5142ca11ae45193a4ad8c3ab5e9c6eec8ba7a4fcb7bac40" + } + outputPet := models.ProcessedPet{ Type: pet.Type, Name: utility.TitleCase(pet.Type), @@ -181,7 +187,7 @@ func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet Active: pet.Active, Price: 0, Level: getPetLevel(pet), - Texture: "http://localhost:8080/api/head/bc8ea1f51f253ff5142ca11ae45193a4ad8c3ab5e9c6eec8ba7a4fcb7bac40", + Texture: texture, Lore: []string{"§cThis pet is not saved in the repository", "", "§cIf you expected it to be there please send a message in", "§c§l#neu-support §r§con §ldiscord.gg/moulberry"}, Stats: map[string]float64{}, CandyUsed: pet.CandyUsed, @@ -206,12 +212,21 @@ func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet skinData, err := notenoughupdates.GetItem(skinId) if err == nil && skinData.NBT.SkullOwner != nil && len(skinData.NBT.SkullOwner.Properties.Textures) > 0 { var textureId = utility.GetSkinHash(skinData.NBT.SkullOwner.Properties.Textures[0].Value) - outputPet.Texture = fmt.Sprintf("http://localhost:8080/api/head/%s", textureId) + if os.Getenv("DEV") == "true" { + outputPet.Texture = fmt.Sprintf("http://localhost:8080/api/head/%s", textureId) + } else { + outputPet.Texture = fmt.Sprintf("/api/head/%s", textureId) + } + outputPet.Name += " ✦" } } else if NEUItem.NBT.SkullOwner != nil && len(NEUItem.NBT.SkullOwner.Properties.Textures) > 0 { var textureId = utility.GetSkinHash(NEUItem.NBT.SkullOwner.Properties.Textures[0].Value) - outputPet.Texture = fmt.Sprintf("http://localhost:8080/api/head/%s", textureId) + if os.Getenv("DEV") == "true" { + outputPet.Texture = fmt.Sprintf("http://localhost:8080/api/head/%s", textureId) + } else { + outputPet.Texture = fmt.Sprintf("/api/head/%s", textureId) + } } data := getPetData(outputPet.Level.Level, pet.Type, strings.ToUpper(petDataRarity)) diff --git a/src/stats/rift.go b/src/stats/rift.go index c32fb7d69..120769d55 100644 --- a/src/stats/rift.go +++ b/src/stats/rift.go @@ -1,10 +1,12 @@ package stats import ( + "os" "skycrypt/src/constants" "skycrypt/src/models" statsitems "skycrypt/src/stats/items" "slices" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -40,11 +42,17 @@ func getPorhtals(userProfile *skycrypttypes.Member) models.RiftPortalsOutput { found++ } - porhtals = append(porhtals, models.RiftPorhtal{ + porhtalData := models.RiftPorhtal{ Name: portal.Name, Texture: portal.Texture, Unlocked: isFound, - }) + } + + if os.Getenv("DEV") == "true" { + porhtalData.Texture = strings.Replace(porhtalData.Texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + + porhtals = append(porhtals, porhtalData) } @@ -69,12 +77,18 @@ func getTimecharms(userProfile *skycrypttypes.Member) models.RiftTimecharmsOutpu } } - timecharms = append(timecharms, models.RiftTimecharms{ + timecharmData := models.RiftTimecharms{ Name: charm.Name, Texture: charm.Texture, Unlocked: isFound, UnlockedAt: timestamp, - }) + } + + if os.Getenv("DEV") == "true" { + timecharmData.Texture = strings.Replace(timecharmData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + + timecharms = append(timecharms, timecharmData) } return models.RiftTimecharmsOutput{ diff --git a/src/stats/skills.go b/src/stats/skills.go index 4f99bb519..ac42c7466 100644 --- a/src/stats/skills.go +++ b/src/stats/skills.go @@ -1,6 +1,7 @@ package stats import ( + "os" "skycrypt/src/constants" "skycrypt/src/models" stats "skycrypt/src/stats/leveling" @@ -40,6 +41,10 @@ func GetSkills(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile Cap: &capValue, } + if os.Getenv("DEV") == "true" { + extra.Texture = strings.Replace(extra.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + } + output.Skills[skill] = stats.GetLevelByXp(int(experience), extra) } } else { diff --git a/src/stats/slayer.go b/src/stats/slayer.go index 4e41d07dd..ea06786b6 100644 --- a/src/stats/slayer.go +++ b/src/stats/slayer.go @@ -2,8 +2,10 @@ package stats import ( "fmt" + "os" "skycrypt/src/constants" "skycrypt/src/models" + "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) @@ -75,9 +77,14 @@ func GetSlayers(userProfile *skycrypttypes.Member) models.SlayersOutput { totalExperience := 0 for slayerId, slayerData := range userProfile.Slayer.SlayerBosses { + texture := constants.SLAYER_INFO[slayerId].Head + if os.Getenv("DEV") == "true" { + texture = strings.Replace(texture, "/api/head/", "http://localhost:8080/api/head/", 1) + } + output.Data[slayerId] = models.SlayerData{ Name: constants.SLAYER_INFO[slayerId].Name, - Texture: constants.SLAYER_INFO[slayerId].Head, + Texture: texture, Kills: getSlayerKills(slayerData), Level: getSlayerLevel(int(slayerData.Experience), slayerId), } From 7d513e914000c2e2f051cd985da706bc86abd35d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 21:54:54 +0200 Subject: [PATCH 11/55] wth was i doing here? --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7df2780a7..84a2bd364 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,13 +12,13 @@ WORKDIR /app # COPY SkyHelper-Networth-Go/ ../SkyHelper-Networth-Go/ # Copy go mod files -COPY SkyCrypt-Backend/go.mod SkyCrypt-Backend/go.sum ./ +COPY go.mod go.sum ./ # Download dependencies RUN go mod download # Copy source code -COPY SkyCrypt-Backend/ ./ +COPY . . # Build the application RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -buildvcs=false -o main . From 40292b1f95e5d6ed8886818434f40bee2acaf8df Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 22:07:54 +0200 Subject: [PATCH 12/55] fix: resource packs --- src/lib/custom_resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 0d529a905..6e9454c80 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -29,7 +29,7 @@ func GetTexturePath(texturePath string, textureString string) string { } if os.Getenv("DEV") != "true" { - return formattedPath + return fmt.Sprintf("/assets/%s", formattedPath) } return "http://localhost:8080/assets/" + formattedPath From 60addf347f033c3f75edfd534bff21b9cdd92c8c Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 22:37:56 +0200 Subject: [PATCH 13/55] fix: yes --- src/routes/embed.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/routes/embed.go b/src/routes/embed.go index cf96f93b4..1a55144b6 100644 --- a/src/routes/embed.go +++ b/src/routes/embed.go @@ -1,11 +1,7 @@ package routes import ( - "encoding/json" "fmt" - "skycrypt/src/constants" - redis "skycrypt/src/db" - "skycrypt/src/models" "time" "github.com/gofiber/fiber/v2" @@ -15,7 +11,7 @@ func EmbedHandler(c *fiber.Ctx) error { timeNow := time.Now() uuid := c.Params("uuid") - profileId := c.Params("profileId") + /*profileId := c.Params("profileId") embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) if err != nil { c.Status(400) @@ -26,11 +22,11 @@ func EmbedHandler(c *fiber.Ctx) error { if err := json.Unmarshal([]byte(embed), &embedData); err != nil { c.Status(500) return c.JSON(constants.InternalServerError) - } + }*/ fmt.Printf("Returning /api/embed/%s in %s\n", profileId, time.Since(timeNow)) return c.JSON(fiber.Map{ - "embed": embedData, + "embed": uuid, }) } From 385185adad41bb2d5dc52c2b81a3f4262e57cb60 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 22:38:49 +0200 Subject: [PATCH 14/55] yes --- src/routes/embed.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/routes/embed.go b/src/routes/embed.go index 1a55144b6..2890be0a9 100644 --- a/src/routes/embed.go +++ b/src/routes/embed.go @@ -11,8 +11,8 @@ func EmbedHandler(c *fiber.Ctx) error { timeNow := time.Now() uuid := c.Params("uuid") - /*profileId := c.Params("profileId") - embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) + profileId := c.Params("profileId") + /*embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) if err != nil { c.Status(400) return c.JSON(constants.InvalidUserError) @@ -26,6 +26,7 @@ func EmbedHandler(c *fiber.Ctx) error { fmt.Printf("Returning /api/embed/%s in %s\n", profileId, time.Since(timeNow)) + return c.JSON(fiber.Map{ "embed": uuid, }) From eb29dc6afb815b45f171b3bf6c1c2cbe190afd3d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 22:42:23 +0200 Subject: [PATCH 15/55] fix: leather endpoint --- src/lib/custom_resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 6e9454c80..776adb5dc 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -348,7 +348,7 @@ func ApplyTexture(item models.TextureItem) string { } if os.Getenv("DEV") != "true" { - return fmt.Sprintf("/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/leather_%s_%s.png", armorType, armorColor) + return fmt.Sprintf("/api/leather/%s/%s", armorType, armorColor) } return fmt.Sprintf("http://localhost:8080/api/leather/%s/%s", armorType, armorColor) From eec1cfa57a7e7753e9c8e8a78dedaf5ad5251540 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 23 Sep 2025 22:43:43 +0200 Subject: [PATCH 16/55] fix: potions --- src/stats/items/processing.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index 767167e53..0e0cf7886 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" notenoughupdates "skycrypt/src/NotEnoughUpdates" "skycrypt/src/constants" @@ -148,7 +149,11 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { potionType = "normal" } - processedItem.Texture = "http://localhost:8080/api/potion/" + potionType + "/" + color + if os.Getenv("DEV") != "true" { + processedItem.Texture = fmt.Sprintf("/api/potion/%s/%s", potionType, color) + } + + processedItem.Texture = fmt.Sprintf("http://localhost:8080/api/potion/%s/%s", potionType, color) } if processedItem.Texture == "" { @@ -160,7 +165,7 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { } processedItem.Texture = lib.ApplyTexture(TextureItem) - if strings.HasPrefix(processedItem.Texture, "http://localhost:8080/assets/resourcepacks/FurfSky/") { + if strings.Contains(processedItem.Texture, "/assets/resourcepacks/FurfSky/") { processedItem.TexturePack = "FURFSKY_REBORN" } From b95ec66cec28d3a9664bfebe4a00868e58706e41 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 11:58:43 +0200 Subject: [PATCH 17/55] feat: yes --- NotEnoughUpdates-REPO | 2 +- src/routes.go | 4 ++++ src/routes/items.go | 13 +++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/routes/items.go diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 351791dc2..391cd2f8f 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 351791dc276a7f10578ea8bfe1fb2d67ba42d8b3 +Subproject commit 391cd2f8f6ffabd8b6db92ed332344c353696e27 diff --git a/src/routes.go b/src/routes.go index 770adcf80..e93820e3a 100644 --- a/src/routes.go +++ b/src/routes.go @@ -8,6 +8,7 @@ import ( "skycrypt/src/api" redis "skycrypt/src/db" "skycrypt/src/routes" + "skycrypt/src/utility" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/compress" @@ -58,6 +59,8 @@ func SetupApplication() error { if os.Getenv("FIBER_PREFORK_CHILD") == "" { fmt.Print("[SKYCRYPT] SkyCrypt initialized successfully\n") + + utility.SendWebhook("SKYCRYPT_STARTED", "EPIC_ERROR", []byte("SkyCrypt has started successfully!")) } return nil @@ -139,4 +142,5 @@ func SetupRoutes(app *fiber.App) { api.Get("/leather/:type/:color", routes.LeatherHandlers) + api.Get("/items", routes.ItemsHandlers) } diff --git a/src/routes/items.go b/src/routes/items.go new file mode 100644 index 000000000..c3acfaacd --- /dev/null +++ b/src/routes/items.go @@ -0,0 +1,13 @@ +package routes + +import ( + "skycrypt/src/constants" + + "github.com/gofiber/fiber/v2" +) + +func ItemsHandlers(c *fiber.Ctx) error { + return c.JSON(fiber.Map{ + "items": constants.ITEMS, + }) +} From b2bc85814cbcf49a044fbe3dd470b54d23050fc7 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 12:14:00 +0200 Subject: [PATCH 18/55] fix: it's not localhost anymore --- src/lib/renderer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/renderer.go b/src/lib/renderer.go index d852b510a..ccf6ad10e 100644 --- a/src/lib/renderer.go +++ b/src/lib/renderer.go @@ -758,7 +758,7 @@ func RenderItem(itemID string) ([]byte, error) { } // If output is a localhost asset, read from disk (performance optimization) - if (strings.HasPrefix(output, "http://localhost") || strings.HasPrefix(output, "https://localhost")) && !strings.Contains(output, "/api/") { + if strings.Contains(output, "/assets/") && !strings.Contains(output, "/api/") { assetsIdx := strings.Index(output, "/assets/") if assetsIdx != -1 { localPath := output[assetsIdx+1:] // skip the leading slash From 8acefd2d3cd05f8b420956adc7d7f45af0826f0a Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 13:06:00 +0200 Subject: [PATCH 19/55] refactor: implement cache into base64 decoding --- src/stats/mining.go | 8 ++++++-- src/utility/helper.go | 44 ++++++++++++++++++++++++++++++++++++++----- 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/src/stats/mining.go b/src/stats/mining.go index 07d9caa10..e76478ea2 100644 --- a/src/stats/mining.go +++ b/src/stats/mining.go @@ -230,9 +230,13 @@ func getGlaciteTunnels(userProfile *skycrypttypes.Member) models.GlaciteTunnels found++ } - texture := fmt.Sprintf("http://localhost:8080/api/item/%s_FOSSIL", fossil) + texture := fmt.Sprintf("/api/item/%s_FOSSIL", fossil) if fossil == "HELIX" { - texture = fmt.Sprintf("http://localhost:8080/api/item/%s", fossil) + texture = fmt.Sprintf("/api/item/%s", fossil) + } + + if os.Getenv("DEV") == "true" { + texture = strings.Replace(texture, "/api/item/", "http://localhost:8080/api/item/", 1) } fossilData := models.Fossil{ diff --git a/src/utility/helper.go b/src/utility/helper.go index 68a39456f..b3a27ae78 100644 --- a/src/utility/helper.go +++ b/src/utility/helper.go @@ -35,6 +35,17 @@ var ( cacheDuration = 15 * time.Minute ) +var ( + skinHashCacheMutex sync.RWMutex + skinHashCache = make(map[string]string) + base64Encodings = []*base64.Encoding{ + base64.RawStdEncoding, // Standard base64 without padding + base64.StdEncoding, // Standard base64 with padding + base64.RawURLEncoding, // URL-safe base64 without padding + base64.URLEncoding, // URL-safe base64 with padding + } +) + func GetRawLore(text string) string { return colorCodeRegex.ReplaceAllString(text, "") } @@ -203,14 +214,37 @@ func GetSkinHash(base64String string) string { return "" } - data, err := base64.RawStdEncoding.DecodeString(base64String) - if err != nil { - data, err = base64.StdEncoding.DecodeString(base64String) - if err != nil { - return "" + skinHashCacheMutex.RLock() + if cached, exists := skinHashCache[base64String]; exists { + skinHashCacheMutex.RUnlock() + return cached + } + skinHashCacheMutex.RUnlock() + + result := computeSkinHash(base64String) + + skinHashCacheMutex.Lock() + skinHashCache[base64String] = result + skinHashCacheMutex.Unlock() + + return result +} + +func computeSkinHash(base64String string) string { + var data []byte + + for _, encoding := range base64Encodings { + var err error + data, err = encoding.DecodeString(base64String) + if err == nil { + break } } + if data == nil { + return "" + } + var jsonData struct { Textures struct { SKIN struct { From 6f9542f2b85b9fb30ee26b4053d481c0fd0b3704 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 13:34:08 +0200 Subject: [PATCH 20/55] feat: bump sh-nw --- go.mod | 4 ++-- go.sum | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index a87b7d3ab..571e542cd 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module skycrypt go 1.25.1 require ( - github.com/DuckySoLucky/SkyCrypt-Types v0.1.5 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 + github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index 568f0f89b..9b5c9249e 100644 --- a/go.sum +++ b/go.sum @@ -6,6 +6,8 @@ github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 h1:DKT6w8JRmrqLTUswfP+e+894Tz6e1P0 github.com/DuckySoLucky/SkyCrypt-Types v0.1.4/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/DuckySoLucky/SkyCrypt-Types v0.1.5 h1:OFt/+C8LrVOs4gORzWeZxRxzmHrdPqxNwjcm9TShEmU= github.com/DuckySoLucky/SkyCrypt-Types v0.1.5/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 h1:BnxKmMV0SLBk6DIr7zZw8sVFzqd6AyHj8bSAtLMXr70= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.6/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= @@ -13,6 +15,8 @@ github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNx github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 h1:PIWPYiBc4lyZl6CfM3lBPmtUc68u09ClPqnnjm1OSIw= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0/go.mod h1:EJS4Lny3qbaN1wRJ7Q816LsXASdf6YmFba4BT4eo6rU= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 h1:9N39wKuU3vhy1Q8giUKLVGP80BA7e5Ail3H8OeMIxr8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= From f1fca9699a2d23eaf3de5da51daf744427341493 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 13:41:08 +0200 Subject: [PATCH 21/55] fix: bump sh-nw again cuz I forgot to push- --- go.mod | 2 +- go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 571e542cd..5168f29fa 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index 9b5c9249e..8ec80a675 100644 --- a/go.sum +++ b/go.sum @@ -17,6 +17,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 h1:PIWPYiBc4lyZl6CfM3lBP github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0/go.mod h1:EJS4Lny3qbaN1wRJ7Q816LsXASdf6YmFba4BT4eo6rU= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 h1:9N39wKuU3vhy1Q8giUKLVGP80BA7e5Ail3H8OeMIxr8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 h1:vTl6RQK/C/V9xZyY/hEmf6ksBhV2+m/UiRjA7Hb16yo= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= From e195c62218c6a939db330bd78973aef865b22a1b Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 14:40:58 +0200 Subject: [PATCH 22/55] fix: garden images, and some other fixes --- go.mod | 2 +- go.sum | 2 + src/models/garden.go | 49 ++++++++++++++++-- src/stats/api_settings.go | 2 +- src/stats/bestiary.go | 7 +++ src/stats/garden.go | 102 +++++++++++++++----------------------- src/stats/items.go | 4 ++ 7 files changed, 101 insertions(+), 67 deletions(-) diff --git a/go.mod b/go.mod index 5168f29fa..621658bb8 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index 8ec80a675..b2821bd1a 100644 --- a/go.sum +++ b/go.sum @@ -19,6 +19,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 h1:9N39wKuU3vhy1Q8giUKLV github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 h1:vTl6RQK/C/V9xZyY/hEmf6ksBhV2+m/UiRjA7Hb16yo= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 h1:RCUG1XeGWMHG3Zqw6leymB/MBjZvAwnF9kMOP74SbPk= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= diff --git a/src/models/garden.go b/src/models/garden.go index a71874893..0edfecae2 100644 --- a/src/models/garden.go +++ b/src/models/garden.go @@ -1,10 +1,53 @@ package models -import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" +import ( + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" +) type HypixelGardenResponse struct { - Success bool `json:"success"` - Cause string `json:"cause,omitempty"` + Success bool `json:"success"` + Cause string `json:"cause,omitempty"` Garden skycrypttypes.Garden `json:"garden"` } +type Garden struct { + Level Skill `json:"level"` + Visitors Visitors `json:"visitors"` + CropMilestones []CropMilestone `json:"cropMilestones"` + CropUpgrades []CropUpgrade `json:"cropUpgrades"` + Composter map[string]int `json:"composter"` + Plot PlotLayout `json:"plot"` +} + +type Visitors struct { + Visited int `json:"visited"` + Completed int `json:"completed"` + UniqueVisitors int `json:"uniqueVisitors"` + Visitors map[string]VisitorRarityData `json:"visitors"` +} + +type VisitorRarityData struct { + Visited int `json:"visited"` + Completed int `json:"completed"` + Unique int `json:"unique"` + MaxUnique int `json:"maxUnique"` +} + +type CropMilestone struct { + Name string `json:"name"` + Texture string `json:"texture"` + Level Skill `json:"level"` +} + +type CropUpgrade struct { + Name string `json:"name"` + Texture string `json:"texture"` + Level Skill `json:"level"` +} + +type PlotLayout struct { + Unlocked int `json:"unlocked"` + Total int `json:"total"` + BarnSkin string `json:"barnSkin"` + Layout []ProcessedItem `json:"layout"` +} diff --git a/src/stats/api_settings.go b/src/stats/api_settings.go index e4cee3fda..22d2a8765 100644 --- a/src/stats/api_settings.go +++ b/src/stats/api_settings.go @@ -10,7 +10,7 @@ func GetAPISettings(userProfile *skycrypttypes.Member, profile *skycrypttypes.Pr return map[string]bool{ "skills": userProfile.PlayerData.Experience != nil, "inventory": userProfile.Inventory != nil, - "personal_vault": userProfile.Inventory.PersonalVault.Data != "", + "personal_vault": userProfile.Inventory != nil && userProfile.Inventory.PersonalVault.Data != "", "collections": userProfile.Collections != nil, "banking": profile.Banking.Balance != nil, "museum": museum != nil, diff --git a/src/stats/bestiary.go b/src/stats/bestiary.go index bd0428609..89060326b 100644 --- a/src/stats/bestiary.go +++ b/src/stats/bestiary.go @@ -12,6 +12,10 @@ import ( func GetBestiaryFamily(userProfile *skycrypttypes.Member, mobName string) *models.BestiaryMobOutput { bestiaryConstants := notenoughupdates.NEUConstants.Bestiary.Islands + if userProfile.Bestiary == nil { + return &models.BestiaryMobOutput{} + } + bestiary := userProfile.Bestiary.Kills for _, category := range bestiaryConstants { @@ -30,6 +34,9 @@ func GetBestiaryFamily(userProfile *skycrypttypes.Member, mobName string) *model func getCategoryMobs(userProfile *skycrypttypes.Member, mobs []neu.BestiaryMob) []models.BestiaryMobOutput { mobOutputs := make([]models.BestiaryMobOutput, 0) + if userProfile.Bestiary == nil { + userProfile.Bestiary = &skycrypttypes.Bestiary{Kills: make(map[string]int)} + } bestiaryKills := userProfile.Bestiary.Kills brackets := notenoughupdates.NEUConstants.Bestiary.Brackets diff --git a/src/stats/garden.go b/src/stats/garden.go index f5ffe47c1..5401a7fe7 100644 --- a/src/stats/garden.go +++ b/src/stats/garden.go @@ -2,6 +2,7 @@ package stats import ( "fmt" + "os" notenoughupdates "skycrypt/src/NotEnoughUpdates" "skycrypt/src/constants" "skycrypt/src/models" @@ -13,54 +14,12 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -type Garden struct { - Level models.Skill `json:"level"` - Visitors Visitors `json:"visitors"` - CropMilestones []CropMilestone `json:"cropMilestones"` - CropUpgrades []CropUpgrade `json:"cropUpgrades"` - Composter map[string]int `json:"composter"` - Plot PlotLayout `json:"plot"` -} - -type Visitors struct { - Visited int `json:"visited"` - Completed int `json:"completed"` - UniqueVisitors int `json:"uniqueVisitors"` - Visitors map[string]VisitorRarityData `json:"visitors"` -} - -type VisitorRarityData struct { - Visited int `json:"visited"` - Completed int `json:"completed"` - Unique int `json:"unique"` - MaxUnique int `json:"maxUnique"` -} - -type CropMilestone struct { - Name string `json:"name"` - Texture string `json:"texture"` - Level models.Skill `json:"level"` -} - -type CropUpgrade struct { - Name string `json:"name"` - Texture string `json:"texture"` - Level models.Skill `json:"level"` -} - -type PlotLayout struct { - Unlocked int `json:"unlocked"` - Total int `json:"total"` - BarnSkin string `json:"barnSkin"` - Layout []models.ProcessedItem `json:"layout"` -} - -func getVisitors(gardenData *skycrypttypes.Garden) Visitors { +func getVisitors(gardenData *skycrypttypes.Garden) models.Visitors { VISITOR_RARITIES := notenoughupdates.NEUConstants.Garden.Visitors MAX_VISITORS := notenoughupdates.NEUConstants.Garden.MaxVisitors visited, completed, unique := 0, 0, map[string]bool{} - visitors := make(map[string]VisitorRarityData, len(gardenData.CommissionData.Visits)) + visitors := make(map[string]models.VisitorRarityData, len(gardenData.CommissionData.Visits)) for visitorId, amount := range gardenData.CommissionData.Visits { completed += gardenData.CommissionData.Completed[visitorId] unique[visitorId] = true @@ -68,7 +27,7 @@ func getVisitors(gardenData *skycrypttypes.Garden) Visitors { visitorData := visitors[VISITOR_RARITIES[visitorId]] if visitorData.MaxUnique == 0 { - visitorData = VisitorRarityData{ + visitorData = models.VisitorRarityData{ MaxUnique: MAX_VISITORS[VISITOR_RARITIES[visitorId]], } } @@ -81,7 +40,7 @@ func getVisitors(gardenData *skycrypttypes.Garden) Visitors { } - return Visitors{ + return models.Visitors{ Visited: visited, Completed: completed, UniqueVisitors: len(unique), @@ -89,12 +48,17 @@ func getVisitors(gardenData *skycrypttypes.Garden) Visitors { } } -func getCropMilestones(gardenData *skycrypttypes.Garden) []CropMilestone { - milestones := make([]CropMilestone, 0, len(gardenData.ResourcesCollected)) +func getCropMilestones(gardenData *skycrypttypes.Garden) []models.CropMilestone { + milestones := make([]models.CropMilestone, 0, len(gardenData.ResourcesCollected)) for cropId, cropName := range constants.CROPS { - milestones = append(milestones, CropMilestone{ + texture := fmt.Sprintf("/api/item/%s", cropId) + if os.Getenv("DEV") == "true" { + texture = fmt.Sprintf("http://localhost:8080/api/item/%s", cropId) + } + + milestones = append(milestones, models.CropMilestone{ Name: cropName, - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", cropId), + Texture: texture, Level: stats.GetLevelByXp(int(gardenData.ResourcesCollected[cropId]), &stats.ExtraSkillData{ Type: fmt.Sprintf("crop_milestone_%s", constants.CROP_TO_ID[cropId]), }), @@ -104,14 +68,18 @@ func getCropMilestones(gardenData *skycrypttypes.Garden) []CropMilestone { return milestones } -func getCropUpgrades(gardenData *skycrypttypes.Garden) []CropUpgrade { - upgrades := make([]CropUpgrade, 0, len(gardenData.CropUpgradeLevels)) +func getCropUpgrades(gardenData *skycrypttypes.Garden) []models.CropUpgrade { + upgrades := make([]models.CropUpgrade, 0, len(gardenData.CropUpgradeLevels)) for cropId, cropName := range constants.CROPS { experience := stats.GetSkillExperience("crop_upgrade", int(gardenData.CropUpgradeLevels[cropId])) + texture := fmt.Sprintf("/api/item/%s", cropId) + if os.Getenv("DEV") == "true" { + texture = fmt.Sprintf("http://localhost:8080/api/item/%s", cropId) + } - upgrades = append(upgrades, CropUpgrade{ + upgrades = append(upgrades, models.CropUpgrade{ Name: cropName, - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", cropId), + Texture: texture, Level: stats.GetLevelByXp(experience, &stats.ExtraSkillData{ Type: "crop_upgrade", }), @@ -130,11 +98,11 @@ func getComposter(gardenData *skycrypttypes.Garden) map[string]int { return output } -func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { +func getPlotLayout(gardenData *skycrypttypes.Garden) models.PlotLayout { PLOT_LAYOUT := notenoughupdates.NEUConstants.Garden.SortedPlots PLOT_NAMES := notenoughupdates.NEUConstants.Garden.Plots - output := PlotLayout{ + output := models.PlotLayout{ Unlocked: len(gardenData.UnlockedPlotsIds), Total: len(PLOT_LAYOUT), BarnSkin: "", @@ -148,9 +116,9 @@ func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { checkPlots = append(checkPlots, PLOT_LAYOUT[index-5]) } else if index+1 >= 0 && index+1 < len(PLOT_LAYOUT) { // RIGHT checkPlots = append(checkPlots, PLOT_LAYOUT[index+1]) - } else if index+5 >= 0 && index+5 < len(PLOT_LAYOUT) { // below + } else if index+5 >= 0 && index+5 < len(PLOT_LAYOUT) { // BELOW checkPlots = append(checkPlots, PLOT_LAYOUT[index+5]) - } else if index-1 >= 0 && index-1 < len(PLOT_LAYOUT) { // left + } else if index-1 >= 0 && index-1 < len(PLOT_LAYOUT) { // LEFT checkPlots = append(checkPlots, PLOT_LAYOUT[index-1]) } @@ -172,9 +140,14 @@ func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { output.BarnSkin = utility.GetRawLore(item.Name) } + texture := fmt.Sprintf("http://localhost:8080/api/item/%s", strings.ReplaceAll(item.ItemId, "-", ":")) + if os.Getenv("DEV") != "true" { + texture = fmt.Sprintf("/api/item/%s", strings.ReplaceAll(item.ItemId, "-", ":")) + } + output.Layout = append(output.Layout, models.ProcessedItem{ DisplayName: item.Name, - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", strings.ReplaceAll(item.ItemId, "-", ":")), + Texture: texture, }) } @@ -185,9 +158,14 @@ func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { textureId = "WOOD_BUTTON" } + texture := fmt.Sprintf("/api/item/%s", textureId) + if os.Getenv("DEV") == "true" { + texture = fmt.Sprintf("http://localhost:8080/api/item/%s", textureId) + } + output.Layout = append(output.Layout, models.ProcessedItem{ DisplayName: PLOT_NAMES[plot], - Texture: fmt.Sprintf("http://localhost:8080/api/item/%s", textureId), + Texture: texture, }) } @@ -195,8 +173,8 @@ func getPlotLayout(gardenData *skycrypttypes.Garden) PlotLayout { return output } -func GetGarden(gardenData *skycrypttypes.Garden) *Garden { - return &Garden{ +func GetGarden(gardenData *skycrypttypes.Garden) *models.Garden { + return &models.Garden{ Level: stats.GetLevelByXp(int(gardenData.Experience), &stats.ExtraSkillData{Type: "garden"}), Visitors: getVisitors(gardenData), CropMilestones: getCropMilestones(gardenData), diff --git a/src/stats/items.go b/src/stats/items.go index c786ee0fd..a2f665684 100644 --- a/src/stats/items.go +++ b/src/stats/items.go @@ -130,6 +130,10 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry } func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][]skycrypttypes.Item, error) { + if useProfile.Inventory == nil { + useProfile.Inventory = &skycrypttypes.Inventory{} + } + encodedInventories := map[string]*string{ "inventory": &useProfile.Inventory.Inventory.Data, "enderchest": &useProfile.Inventory.Enderchest.Data, From 81730c133cc144093764dd172169fd5d559091f4 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 15:07:39 +0200 Subject: [PATCH 23/55] fix: fix discord embed, equipment and nw errors --- go.mod | 2 +- go.sum | 2 ++ src/stats/discord_embed.go | 7 ++++++- src/stats/items/equipment.go | 17 +++++++++++++---- 4 files changed, 22 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 621658bb8..5d14e24e5 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index b2821bd1a..81171dc69 100644 --- a/go.sum +++ b/go.sum @@ -21,6 +21,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 h1:vTl6RQK/C/V9xZyY/hEmf github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 h1:RCUG1XeGWMHG3Zqw6leymB/MBjZvAwnF9kMOP74SbPk= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7 h1:FdGybWyXKDfNdUb0nv5VQunl/Kqy91WQSm4ObC0eSeY= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= diff --git a/src/stats/discord_embed.go b/src/stats/discord_embed.go index 98a1309f3..a98a3adf3 100644 --- a/src/stats/discord_embed.go +++ b/src/stats/discord_embed.go @@ -54,6 +54,11 @@ func StoreEmbedData(mowojang *models.MowojangReponse, userProfile *skycrypttypes dungeons := GetDungeons(userProfile) slayers := GetSlayers(userProfile) + bank := 0.0 + if profile.Banking != nil { + bank = *profile.Banking.Balance + } + output := models.EmbedData{ DisplayName: mowojang.Name, Username: mowojang.Name, @@ -66,7 +71,7 @@ func StoreEmbedData(mowojang *models.MowojangReponse, userProfile *skycrypttypes Skills: getSkillsForEmbed(skills), Networth: networth, Purse: userProfile.Currencies.CoinPurse, - Bank: *profile.Banking.Balance, + Bank: bank, Dungeons: getDungeonsForEmbed(&dungeons), Slayers: getSlayersForEmbed(&slayers), } diff --git a/src/stats/items/equipment.go b/src/stats/items/equipment.go index 2e0c1cc56..9dd42a5e4 100644 --- a/src/stats/items/equipment.go +++ b/src/stats/items/equipment.go @@ -14,13 +14,22 @@ func GetEquipment(equipment []models.ProcessedItem) models.EquipmentResult { } } - reversedEquipment := make([]models.ProcessedItem, len(equipment)) - copy(reversedEquipment, equipment) + validItems := utility.Filter(equipment, func(item models.ProcessedItem) bool { + return !isInvalidItem(item) + }) + if len(validItems) == 0 { + return models.EquipmentResult{ + Equipment: []models.StrippedItem{}, + Stats: map[string]float64{}, + } + } + + reversedEquipment := make([]models.ProcessedItem, len(validItems)) + copy(reversedEquipment, validItems) slices.Reverse(reversedEquipment) return models.EquipmentResult{ Equipment: StripItems(&reversedEquipment), - Stats: GetStatsFromItems(equipment), + Stats: GetStatsFromItems(validItems), } - } From 7b243f4bd9a4ccdfb80dd8b9f9bf3f290579fd6d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 16:25:14 +0200 Subject: [PATCH 24/55] refactor: enable embed --- src/routes/embed.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/routes/embed.go b/src/routes/embed.go index 2890be0a9..cf96f93b4 100644 --- a/src/routes/embed.go +++ b/src/routes/embed.go @@ -1,7 +1,11 @@ package routes import ( + "encoding/json" "fmt" + "skycrypt/src/constants" + redis "skycrypt/src/db" + "skycrypt/src/models" "time" "github.com/gofiber/fiber/v2" @@ -12,7 +16,7 @@ func EmbedHandler(c *fiber.Ctx) error { uuid := c.Params("uuid") profileId := c.Params("profileId") - /*embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) + embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) if err != nil { c.Status(400) return c.JSON(constants.InvalidUserError) @@ -22,12 +26,11 @@ func EmbedHandler(c *fiber.Ctx) error { if err := json.Unmarshal([]byte(embed), &embedData); err != nil { c.Status(500) return c.JSON(constants.InternalServerError) - }*/ + } fmt.Printf("Returning /api/embed/%s in %s\n", profileId, time.Since(timeNow)) - return c.JSON(fiber.Map{ - "embed": uuid, + "embed": embedData, }) } From b7dc721e2ac6d7c6a83d3347230918ee01b3d2d2 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 24 Sep 2025 16:56:08 +0200 Subject: [PATCH 25/55] feat: improve embed endpoint --- src/routes.go | 1 + src/routes/embed.go | 29 ++++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/src/routes.go b/src/routes.go index e93820e3a..3e5e7d9f0 100644 --- a/src/routes.go +++ b/src/routes.go @@ -132,6 +132,7 @@ func SetupRoutes(app *fiber.App) { api.Get("/misc/:uuid/:profileId", routes.MiscHandler) api.Get("/embed/:uuid/:profileId", routes.EmbedHandler) + api.Get("/embed/:uuid", routes.EmbedHandler) // RENDERING ENDPOINTS api.Get("/head/:textureId", routes.HeadHandlers) diff --git a/src/routes/embed.go b/src/routes/embed.go index cf96f93b4..ec3e9b8f1 100644 --- a/src/routes/embed.go +++ b/src/routes/embed.go @@ -3,9 +3,11 @@ package routes import ( "encoding/json" "fmt" + "skycrypt/src/api" "skycrypt/src/constants" redis "skycrypt/src/db" "skycrypt/src/models" + "skycrypt/src/stats" "time" "github.com/gofiber/fiber/v2" @@ -15,8 +17,33 @@ func EmbedHandler(c *fiber.Ctx) error { timeNow := time.Now() uuid := c.Params("uuid") + mowojang, err := api.ResolvePlayer(uuid) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to resolve player: %v", err), + }) + } + profileId := c.Params("profileId") - embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", uuid, profileId)) + if len(profileId) > 0 && profileId[0] == '/' { + profileId = profileId[1:] + } + + profiles, err := api.GetProfiles(mowojang.UUID) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to get profile: %v", err), + }) + } + + profile, err := stats.GetProfile(profiles, profileId) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to get profile: %v", err), + }) + } + + embed, err := redis.Get(fmt.Sprintf("embed:%s:%s", mowojang.UUID, profile.ProfileID)) if err != nil { c.Status(400) return c.JSON(constants.InvalidUserError) From 79fcb41cf092ce5d16301c1c694f669066d2b3c1 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 21:27:26 +0200 Subject: [PATCH 26/55] feat: add the most scuffed players stats implementation, cba to do it any better --- NotEnoughUpdates-REPO | 2 +- src/constants/player_stats.go | 59 ++++++++++++ src/models/player_stats.go | 3 + src/routes.go | 2 + src/routes/pets.go | 9 +- src/routes/player_stats.go | 33 +++++++ src/stats/pets.go | 5 +- src/stats/player_stats.go | 175 ++++++++++++++++++++++++++++++++++ 8 files changed, 276 insertions(+), 12 deletions(-) create mode 100644 src/constants/player_stats.go create mode 100644 src/models/player_stats.go create mode 100644 src/routes/player_stats.go create mode 100644 src/stats/player_stats.go diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 391cd2f8f..e7ee75e13 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 391cd2f8f6ffabd8b6db92ed332344c353696e27 +Subproject commit e7ee75e1370f4b9edaab5db3066567661f28a180 diff --git a/src/constants/player_stats.go b/src/constants/player_stats.go new file mode 100644 index 000000000..47b34e966 --- /dev/null +++ b/src/constants/player_stats.go @@ -0,0 +1,59 @@ +package constants + +import "skycrypt/src/models" + +var PLAYER_STATS = map[string]models.StatsInfo{ + "health": {"base": 100}, + "defense": {"base": 0}, + "strength": {"base": 0}, + "speed": {"base": 100}, + "critical_chance": {"base": 30}, + "critical_damage": {"base": 50}, + "intelligence": {"base": 0}, + "bonus_attack_speed": {"base": 0}, + "sea_creature_chance": {"base": 20}, + "magic_find": {"base": 0}, + "pet_luck": {"base": 0}, + "true_defense": {"base": 0}, + "ferocity": {"base": 0}, + "ability_damage": {"base": 0}, + "mining_speed": {"base": 0}, + "mining_fortune": {"base": 0}, + "farming_fortune": {"base": 0}, + "foraging_fortune": {"base": 0}, + "pristine": {"base": 0}, + "fishing_speed": {"base": 0}, + "health_regen": {"base": 100}, + "vitality": {"base": 100}, + "mending": {"base": 100}, + "combat_wisdom": {"base": 0}, + "mining_wisdom": {"base": 0}, + "farming_wisdom": {"base": 0}, + "foraging_wisdom": {"base": 0}, + "fishing_wisdom": {"base": 0}, + "enchanting_wisdom": {"base": 0}, + "alchemy_wisdom": {"base": 0}, + "carpentry_wisdom": {"base": 0}, + "runecrafting_wisdom": {"base": 0}, + "social_wisdom": {"base": 0}, + "mining_spread": {"base": 0}, + "gemstone_spread": {"base": 0}, + "ore_fortune": {"base": 0}, + "block_fortune": {"base": 0}, + "dwarven_metal_fortune": {"base": 0}, + "gemstone_fortune": {"base": 0}, + "wheat_fortune": {"base": 0}, + "carrot_fortune": {"base": 0}, + "potato_fortune": {"base": 0}, + "pumpkin_fortune": {"base": 0}, + "melon_fortune": {"base": 0}, + "mushroom_fortune": {"base": 0}, + "cactus_fortune": {"base": 0}, + "sugar_cane_fortune": {"base": 0}, + "nether_wart_fortune": {"base": 0}, + "cocoa_beans_fortune": {"base": 0}, + "double_hook_chance": {"base": 0}, + "trophy_fish_chance": {"base": 0}, + "heat_resistance": {"base": 0}, + "fear": {"base": 0}, +} diff --git a/src/models/player_stats.go b/src/models/player_stats.go new file mode 100644 index 000000000..58e3348dd --- /dev/null +++ b/src/models/player_stats.go @@ -0,0 +1,3 @@ +package models + +type StatsInfo map[string]int diff --git a/src/routes.go b/src/routes.go index 3e5e7d9f0..32dcd8087 100644 --- a/src/routes.go +++ b/src/routes.go @@ -102,6 +102,8 @@ func SetupRoutes(app *fiber.App) { api.Get("/stats/:uuid/:profileId", routes.StatsHandler) api.Get("/stats/:uuid", routes.StatsHandler) + api.Get("/playerStats/:uuid/:profileId", routes.PlayerStatsHandler) + api.Get("/networth/:uuid/:profileId", routes.NetworthHandler) api.Get("/gear/:uuid/:profileId", routes.GearHandler) diff --git a/src/routes/pets.go b/src/routes/pets.go index f4b16b44a..56e381122 100644 --- a/src/routes/pets.go +++ b/src/routes/pets.go @@ -25,16 +25,9 @@ func PetsHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - pets, err := stats.GetPets(userProfile, profile) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get pets: %v", err), - }) - } - fmt.Printf("Returning /api/pets/%s in %s\n", profileId, time.Since(timeNow)) return c.JSON(fiber.Map{ - "pets": pets, + "pets": stats.GetPets(userProfile, profile), }) } diff --git a/src/routes/player_stats.go b/src/routes/player_stats.go new file mode 100644 index 000000000..ae216c015 --- /dev/null +++ b/src/routes/player_stats.go @@ -0,0 +1,33 @@ +package routes + +import ( + "fmt" + "skycrypt/src/api" + "skycrypt/src/stats" + "time" + + "github.com/gofiber/fiber/v2" +) + +func PlayerStatsHandler(c *fiber.Ctx) error { + timeNow := time.Now() + + uuid := c.Params("uuid") + profileId := c.Params("profileId") + + profile, err := api.GetProfile(uuid, profileId) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to get profile: %v", err), + }) + } + + userProfileValue := profile.Members[uuid] + userProfile := &userProfileValue + + fmt.Printf("Returning /api/playerStats/%s in %s\n", profileId, time.Since(timeNow)) + + return c.JSON(fiber.Map{ + "stats": stats.GetPlayerStats(userProfile, profile, profileId), + }) +} diff --git a/src/stats/pets.go b/src/stats/pets.go index e18f2c33a..f398db579 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -427,8 +427,7 @@ func GetPetScore(pets []models.ProcessedPet) models.PetScore { return output } -func GetPets(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) (models.OutputPets, error) { - +func GetPets(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) models.OutputPets { allPets := []skycrypttypes.Pet{} allPets = append(allPets, userProfile.Pets.Pets...) if userProfile.Rift.DeadCats.Montezuma.Rarity != "" { @@ -463,5 +462,5 @@ func GetPets(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) output.MissingPets = stats.StripPets(getMissingPets(userProfile, pets, profile.GameMode)) - return output, nil + return output } diff --git a/src/stats/player_stats.go b/src/stats/player_stats.go new file mode 100644 index 000000000..28fcaa674 --- /dev/null +++ b/src/stats/player_stats.go @@ -0,0 +1,175 @@ +package stats + +import ( + "fmt" + "maps" + "skycrypt/src/constants" + redis "skycrypt/src/db" + "skycrypt/src/models" + statsItems "skycrypt/src/stats/items" + statsLeveling "skycrypt/src/stats/leveling" + + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + jsoniter "github.com/json-iterator/go" +) + +func GetPlayerStats(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, profileId string) map[string]models.StatsInfo { + stats := map[string]models.StatsInfo{} + for statName, statInfo := range constants.PLAYER_STATS { + stats[statName] = models.StatsInfo{} + maps.Copy(stats[statName], statInfo) + } + + items := getItems(userProfile, profileId) + processedItems := processItems(items) + + accessoriesStats := GetAccessories(userProfile, items) + for statName, statValue := range accessoriesStats.Stats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["accessories"] += int(statValue) + } + + armorStats := statsItems.GetStatsFromItems(processedItems["armor"]) + for statName, statValue := range armorStats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["armor"] += int(statValue) + } + + equipmentStats := statsItems.GetStatsFromItems(processedItems["equipment"]) + for statName, statValue := range equipmentStats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["equipment"] += int(statValue) + } + + skyblockLevel := GetSkyBlockLevel(userProfile) + if skyblockLevel.Level > 0 { + stats["health"]["skyblock_level"] = int(skyblockLevel.Level * 5) + stats["strength"]["skyblock_level"] = int(skyblockLevel.Level / 5) + } + + slayerStats := GetSlayers(userProfile).Stats + for statName, statValue := range slayerStats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["slayers"] += int(statValue) + } + + pets := GetPets(userProfile, &skycrypttypes.Profile{}) + activePet := pets.Pets[0] + if !activePet.Active { + for i := range pets.Pets { + if !pets.Pets[i].Active { + continue + } + + activePet = pets.Pets[i] + break + } + } + + for statName, statValue := range activePet.Stats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["active_pet"] += int(statValue) + } + + for statName, statValue := range pets.PetScore.Stats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["pet_score"] += int(statValue) + } + + skills := GetSkills(userProfile, &skycrypttypes.Profile{}, &skycrypttypes.Player{}) + for skillId, skillData := range skills.Skills { + statsBonus := constants.STATS_BONUS[fmt.Sprintf("skill_%s", skillId)] + if statsBonus == nil { + continue + } + + skillStats := constants.GetBonusStat(skillData.Level, fmt.Sprintf("skill_%s", skillId), skillData.MaxLevel) + for statName, value := range skillStats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["skills"] += int(value) + } + } + + catacombs := userProfile.Dungeons.DungeonTypes["catacombs"] + if catacombs.Experience > 0 { + dungeoneeringLevel := statsLeveling.GetLevelByXp(int(catacombs.Experience), &statsLeveling.ExtraSkillData{Type: "dungeoneering"}) + skillStats := constants.GetBonusStat(dungeoneeringLevel.Level, "skill_dungeoneering", 50) + for statName, value := range skillStats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["dungeons"] += int(value) + } + } + + bestiaryData := GetBestiary(userProfile) + if bestiaryData.Level > 0 { + stats["health"]["bestiary"] = int(bestiaryData.Level) + } + + for statName, statInfo := range stats { + total := 0 + for _, value := range statInfo { + total += value + } + stats[statName]["total"] = total + } + + return stats +} + +func getItems(userProfile *skycrypttypes.Member, profileId string) map[string][]skycrypttypes.Item { + var items map[string][]skycrypttypes.Item + cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) + if err == nil && cache != "" { + var json = jsoniter.ConfigCompatibleWithStandardLibrary + err = json.Unmarshal([]byte(cache), &items) + if err != nil { + return map[string][]skycrypttypes.Item{} + } + } else { + items, err = GetItems(userProfile, profileId) + if err != nil { + return map[string][]skycrypttypes.Item{} + } + } + + return items +} + +func processItems(rawItems map[string][]skycrypttypes.Item) map[string][]models.ProcessedItem { + var processedItems = make(map[string][]models.ProcessedItem) + inventoryKeys := []string{"armor", "equipment", "wardrobe", "inventory", "enderchest", "backpack"} + for _, inventoryId := range inventoryKeys { + inventoryData := rawItems[inventoryId] + if len(inventoryData) == 0 { + continue + } + + processedItems[inventoryId] = statsItems.ProcessItems(&inventoryData, inventoryId) + } + + return processedItems +} From aaf49894a1e68624f1cdce02eff904e49fc738d4 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 21:28:03 +0200 Subject: [PATCH 27/55] fix: we need only these two --- src/stats/player_stats.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stats/player_stats.go b/src/stats/player_stats.go index 28fcaa674..8f49c96b6 100644 --- a/src/stats/player_stats.go +++ b/src/stats/player_stats.go @@ -161,7 +161,7 @@ func getItems(userProfile *skycrypttypes.Member, profileId string) map[string][] func processItems(rawItems map[string][]skycrypttypes.Item) map[string][]models.ProcessedItem { var processedItems = make(map[string][]models.ProcessedItem) - inventoryKeys := []string{"armor", "equipment", "wardrobe", "inventory", "enderchest", "backpack"} + inventoryKeys := []string{"armor", "equipment"} for _, inventoryId := range inventoryKeys { inventoryData := rawItems[inventoryId] if len(inventoryData) == 0 { From a75edb0f822938fd9538075672bcde6c2389e9c0 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 21:34:18 +0200 Subject: [PATCH 28/55] fix: remove /api/items/ endpoint and add logs for /api/item --- src/routes.go | 2 -- src/routes/item.go | 9 ++++++++- src/routes/items.go | 13 ------------- 3 files changed, 8 insertions(+), 16 deletions(-) delete mode 100644 src/routes/items.go diff --git a/src/routes.go b/src/routes.go index 32dcd8087..b00e356e0 100644 --- a/src/routes.go +++ b/src/routes.go @@ -144,6 +144,4 @@ func SetupRoutes(app *fiber.App) { api.Get("/potion/:type/:color", routes.PotionHandlers) api.Get("/leather/:type/:color", routes.LeatherHandlers) - - api.Get("/items", routes.ItemsHandlers) } diff --git a/src/routes/item.go b/src/routes/item.go index 6623d2424..d7cd06330 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -3,6 +3,7 @@ package routes import ( "skycrypt/src/constants" "skycrypt/src/lib" + "skycrypt/src/utility" "github.com/gofiber/fiber/v2" ) @@ -18,7 +19,13 @@ func ItemHandlers(c *fiber.Ctx) error { textureBytes, err := lib.RenderItem(textureId) if err != nil { c.Status(500) - return c.JSON(constants.InvalidItemProvidedError) + // return c.JSON(constants.InvalidItemProvidedError) + utility.SendWebhook("error", err.Error(), []byte(nil)) + return c.JSON(fiber.Map{ + "error": err.Error(), + "err": err, + }) + } c.Type("png") diff --git a/src/routes/items.go b/src/routes/items.go deleted file mode 100644 index c3acfaacd..000000000 --- a/src/routes/items.go +++ /dev/null @@ -1,13 +0,0 @@ -package routes - -import ( - "skycrypt/src/constants" - - "github.com/gofiber/fiber/v2" -) - -func ItemsHandlers(c *fiber.Ctx) error { - return c.JSON(fiber.Map{ - "items": constants.ITEMS, - }) -} From e4a5a40048f4fbd721d6cdeffb00f219d09e9230 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 21:38:37 +0200 Subject: [PATCH 29/55] feat: deez nuts --- src/routes/item.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/routes/item.go b/src/routes/item.go index d7cd06330..1bb006bcb 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -1,7 +1,6 @@ package routes import ( - "skycrypt/src/constants" "skycrypt/src/lib" "skycrypt/src/utility" @@ -13,7 +12,10 @@ func ItemHandlers(c *fiber.Ctx) error { textureId := c.Params("itemId") if textureId == "" { c.Status(400) - return c.JSON(constants.InvalidItemProvidedError) + // return c.JSON(constants.InvalidItemProvidedError) + return c.JSON(fiber.Map{ + "error": "deez nuts", + }) } textureBytes, err := lib.RenderItem(textureId) From 22caa5bf7c3e6e95aaccaa18fa57513015c47c93 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 21:52:54 +0200 Subject: [PATCH 30/55] perf: instead of fetching on server, redirect user --- src/lib/renderer.go | 14 ++++++++++++++ src/routes/item.go | 11 ++++++----- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/lib/renderer.go b/src/lib/renderer.go index ccf6ad10e..5297249ee 100644 --- a/src/lib/renderer.go +++ b/src/lib/renderer.go @@ -724,6 +724,14 @@ func main() { } */ +type RedirectError struct { + URL string +} + +func (e RedirectError) Error() string { + return "redirect:" + e.URL +} + func RenderItem(itemID string) ([]byte, error) { damage := 0 if strings.Contains(itemID, ":") { @@ -757,6 +765,11 @@ func RenderItem(itemID string) ([]byte, error) { return nil, fmt.Errorf("couldn't find the texture") } + // If output is a redirect path (starts with /api/), return redirect error + if strings.HasPrefix(output, "/api/") { + return nil, RedirectError{URL: output} + } + // If output is a localhost asset, read from disk (performance optimization) if strings.Contains(output, "/assets/") && !strings.Contains(output, "/api/") { assetsIdx := strings.Index(output, "/assets/") @@ -776,6 +789,7 @@ func RenderItem(itemID string) ([]byte, error) { return nil, fmt.Errorf("invalid localhost asset path: %s", output) } + // Otherwise, fetch from the URL (this shouldn't ever happen but just as a fallback) response, err := http.Get(output) if err != nil { return nil, fmt.Errorf("error fetching item texture: %v", err) diff --git a/src/routes/item.go b/src/routes/item.go index 1bb006bcb..ba232a225 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -1,6 +1,7 @@ package routes import ( + "skycrypt/src/constants" "skycrypt/src/lib" "skycrypt/src/utility" @@ -12,20 +13,20 @@ func ItemHandlers(c *fiber.Ctx) error { textureId := c.Params("itemId") if textureId == "" { c.Status(400) - // return c.JSON(constants.InvalidItemProvidedError) - return c.JSON(fiber.Map{ - "error": "deez nuts", - }) + return c.JSON(constants.InvalidItemProvidedError) } textureBytes, err := lib.RenderItem(textureId) if err != nil { + if redirectErr, ok := err.(lib.RedirectError); ok { + return c.Redirect(redirectErr.URL, 302) + } + c.Status(500) // return c.JSON(constants.InvalidItemProvidedError) utility.SendWebhook("error", err.Error(), []byte(nil)) return c.JSON(fiber.Map{ "error": err.Error(), - "err": err, }) } From eadc917d3f787b581340fca682e11364510af32f Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 25 Sep 2025 23:02:43 +0200 Subject: [PATCH 31/55] feat: bump sh-nw --- go.mod | 2 +- go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 5d14e24e5..e39cf29f1 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.8 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index 81171dc69..53a3ce712 100644 --- a/go.sum +++ b/go.sum @@ -23,6 +23,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 h1:RCUG1XeGWMHG3Zqw6leym github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7 h1:FdGybWyXKDfNdUb0nv5VQunl/Kqy91WQSm4ObC0eSeY= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 h1:cEsz6bywYOLAzs3Xsw6BhyLOoCvQhYegjmj1aNa58nY= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= From 66650cb3347cad694e95a7ed16dce93aeeceda38 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Fri, 26 Sep 2025 12:39:08 +0200 Subject: [PATCH 32/55] feat: add swagger/scalar docs support, bump sh-nw --- docs/docs.go | 3909 +++++++++++++++++++++++++++++++++++ docs/swagger.json | 3880 ++++++++++++++++++++++++++++++++++ docs/swagger.yaml | 2556 +++++++++++++++++++++++ go.mod | 47 +- go.sum | 124 +- main.go | 2 + src/models/error.go | 7 + src/models/misc.go | 93 + src/models/missing.go | 4 +- src/models/skills.go | 7 + src/models/stats.go | 25 + src/models/uuid_username.go | 6 + src/routes.go | 7 + src/routes/accessories.go | 14 +- src/routes/bestiary.go | 13 +- src/routes/collections.go | 13 +- src/routes/crimson_isle.go | 13 +- src/routes/dungeons.go | 13 +- src/routes/embed.go | 16 +- src/routes/garden.go | 10 + src/routes/gear.go | 14 +- src/routes/head.go | 10 + src/routes/inventory.go | 19 +- src/routes/item.go | 18 +- src/routes/leather.go | 13 +- src/routes/minions.go | 13 +- src/routes/misc.go | 15 +- src/routes/networth.go | 20 +- src/routes/pets.go | 13 +- src/routes/player_stats.go | 13 +- src/routes/potion.go | 16 +- src/routes/rift.go | 14 +- src/routes/skills.go | 16 +- src/routes/slayer.go | 13 +- src/routes/stats.go | 22 +- src/routes/username.go | 10 + src/routes/uuid.go | 10 + src/stats/misc.go | 154 +- src/stats/missing.go | 4 +- src/stats/stats.go | 25 +- 40 files changed, 10941 insertions(+), 250 deletions(-) create mode 100644 docs/docs.go create mode 100644 docs/swagger.json create mode 100644 docs/swagger.yaml create mode 100644 src/models/error.go create mode 100644 src/models/uuid_username.go diff --git a/docs/docs.go b/docs/docs.go new file mode 100644 index 000000000..9c611efb9 --- /dev/null +++ b/docs/docs.go @@ -0,0 +1,3909 @@ +// Package docs Code generated by swaggo/swag. DO NOT EDIT +package docs + +import "github.com/swaggo/swag" + +const docTemplate = `{ + "schemes": {{ marshal .Schemes }}, + "swagger": "2.0", + "info": { + "description": "{{escape .Description}}", + "title": "{{.Title}}", + "contact": {}, + "version": "{{.Version}}" + }, + "host": "{{.Host}}", + "basePath": "{{.BasePath}}", + "paths": { + "/api/accessories/{uuid}/{profileId}": { + "get": { + "description": "Returns accessories for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "accessories" + ], + "summary": "Get accessories stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.GetMissingAccessoresOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/bestiary/{uuid}/{profileId}": { + "get": { + "description": "Returns bestiary for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "bestiary" + ], + "summary": "Get bestiary stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.BestiaryOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/collections/{uuid}/{profileId}": { + "get": { + "description": "Returns collections for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "collections" + ], + "summary": "Get collections stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.CollectionsOutput" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/crimson_isle/{uuid}/{profileId}": { + "get": { + "description": "Returns Crimson Isle stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "crimson_isle" + ], + "summary": "Get Crimson Isle stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.CrimsonIsleOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/dungeons/{uuid}/{profileId}": { + "get": { + "description": "Returns dungeons for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "dungeons" + ], + "summary": "Get dungeons stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.DungeonsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/embed/{uuid}/{profileId}": { + "get": { + "description": "Returns embed data for the given user (UUID or username) and optional profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "embed" + ], + "summary": "Get embed data for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID or username", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID (optional)", + "name": "profileId", + "in": "path" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.EmbedData" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/garden/{profileId}": { + "get": { + "description": "Returns garden data for the given profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "garden" + ], + "summary": "Get garden stats of a specified profile", + "parameters": [ + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.Garden" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/gear/{uuid}/{profileId}": { + "get": { + "description": "Returns gear for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "gear" + ], + "summary": "Get gear stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.Gear" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/head/{textureId}": { + "get": { + "description": "Returns a PNG image of a head for the given texture ID", + "produces": [ + "image/png" + ], + "tags": [ + "head" + ], + "summary": "Render and return a head image", + "parameters": [ + { + "type": "string", + "description": "Texture ID", + "name": "textureId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the head", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Failed to render head", + "schema": { + "type": "string" + } + } + } + } + }, + "/api/inventory/{uuid}/{profileId}/search/{search}": { + "get": { + "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "inventory" + ], + "summary": "Get inventory items for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Search string (required when inventoryId is 'search')", + "name": "search", + "in": "path" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/inventory/{uuid}/{profileId}/{inventoryId}": { + "get": { + "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "inventory" + ], + "summary": "Get inventory items for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Inventory ID (e.g., museum, search, or other inventory types)", + "name": "inventoryId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/item/{itemId}": { + "get": { + "description": "Returns a PNG image of an item for the given texture ID", + "produces": [ + "image/png" + ], + "tags": [ + "item" + ], + "summary": "Render and return an item image", + "parameters": [ + { + "type": "string", + "description": "Item ID", + "name": "itemId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the item", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Failed to render item", + "schema": { + "type": "string" + } + } + } + } + }, + "/api/leather/{type}/{color}": { + "get": { + "description": "Returns a PNG image of leather armor for the given type and color", + "produces": [ + "image/png" + ], + "tags": [ + "leather" + ], + "summary": "Render and return a leather armor image", + "parameters": [ + { + "type": "string", + "description": "Armor Type", + "name": "type", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Armor Color", + "name": "color", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the leather armor", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/minions/{uuid}/{profileId}": { + "get": { + "description": "Returns minions for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "minions" + ], + "summary": "Get minions stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.MinionsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/misc/{uuid}/{profileId}": { + "get": { + "description": "Returns misc stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "misc" + ], + "summary": "Get misc stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.MiscOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/networth/{uuid}/{profileId}": { + "get": { + "description": "Returns networth for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "networth" + ], + "summary": "Get networth of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object", + "additionalProperties": true + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/pets/{uuid}/{profileId}": { + "get": { + "description": "Returns pets for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "pets" + ], + "summary": "Get pets stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.OutputPets" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/playerStats/{uuid}/{profileId}": { + "get": { + "description": "Returns player stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "playerStats" + ], + "summary": "Get player stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.StatsInfo" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/potion/{type}/{color}": { + "get": { + "description": "Returns a PNG image of a potion for the given type and color", + "produces": [ + "image/png" + ], + "tags": [ + "potion" + ], + "summary": "Render and return a potion image", + "parameters": [ + { + "type": "string", + "description": "Potion Type", + "name": "type", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Potion Color", + "name": "color", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the potion", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/rift/{uuid}/{profileId}": { + "get": { + "description": "Returns rift data for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "rift" + ], + "summary": "Get rift stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.RiftOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/skills/{uuid}/{profileId}": { + "get": { + "description": "Returns skills for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "skills" + ], + "summary": "Get skills stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.SkillsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/slayer/{uuid}/{profileId}": { + "get": { + "description": "Returns slayer statistics for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "slayers" + ], + "summary": "Get slayer stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.SlayersOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/stats/{uuid}/{profileId}": { + "get": { + "description": "Returns stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "stats" + ], + "summary": "Get stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.StatsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/username/{uuid}": { + "get": { + "description": "Returns the username associated with the given UUID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "username" + ], + "summary": "Get username for a specified UUID", + "parameters": [ + { + "type": "string", + "description": "UUID", + "name": "uuid", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.PlayerResolve" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/uuid/{username}": { + "get": { + "description": "Returns the UUID associated with the given username", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "uuid" + ], + "summary": "Get UUID for a specified username", + "parameters": [ + { + "type": "string", + "description": "Username", + "name": "username", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.PlayerResolve" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + } + }, + "definitions": { + "models.ArmorResult": { + "type": "object", + "properties": { + "armor": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "set_name": { + "type": "string" + }, + "set_rarity": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.BestRunOutput": { + "type": "object", + "properties": { + "damage_dealt": { + "type": "number" + }, + "damage_mitigated": { + "type": "number" + }, + "deaths": { + "type": "integer" + }, + "dungeon_class": { + "type": "string" + }, + "elapsed_time": { + "type": "integer" + }, + "grade": { + "type": "string" + }, + "mobs_killed": { + "type": "integer" + }, + "score_bonus": { + "type": "integer" + }, + "score_exploration": { + "type": "integer" + }, + "score_skill": { + "type": "integer" + }, + "score_speed": { + "type": "integer" + }, + "secrets_found": { + "type": "integer" + }, + "timestamp": { + "type": "integer" + } + } + }, + "models.BestiaryCategoryOutput": { + "type": "object", + "properties": { + "mobs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.BestiaryMobOutput" + } + }, + "mobsMaxed": { + "type": "integer" + }, + "mobsUnlocked": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.BestiaryMobOutput": { + "type": "object", + "properties": { + "kills": { + "type": "integer" + }, + "maxKills": { + "type": "integer" + }, + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "nextTierKills": { + "type": "integer" + }, + "texture": { + "type": "string" + }, + "tier": { + "type": "integer" + } + } + }, + "models.BestiaryOutput": { + "type": "object", + "properties": { + "categories": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.BestiaryCategoryOutput" + } + }, + "familiesCompleted": { + "type": "integer" + }, + "familiesUnlocked": { + "type": "integer" + }, + "familyTiers": { + "type": "integer" + }, + "level": { + "type": "number" + }, + "maxFamilyTiers": { + "type": "integer" + }, + "maxLevel": { + "type": "number" + }, + "totalFamilies": { + "type": "integer" + } + } + }, + "models.ClassData": { + "type": "object", + "properties": { + "classAverage": { + "type": "number" + }, + "classAverageWithProgress": { + "type": "number" + }, + "classes": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Skill" + } + }, + "selectedClass": { + "type": "string" + }, + "totalClassExp": { + "type": "number" + } + } + }, + "models.CollectionCategory": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CollectionCategoryItem" + } + }, + "maxTiers": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.CollectionCategoryItem": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "amounts": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CollectionCategoryItemAmount" + } + }, + "id": { + "type": "string" + }, + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "tier": { + "type": "integer" + }, + "totalAmount": { + "type": "integer" + } + } + }, + "models.CollectionCategoryItemAmount": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "username": { + "type": "string" + } + } + }, + "models.CollectionsOutput": { + "type": "object", + "properties": { + "categories": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.CollectionCategory" + } + }, + "maxedCollections": { + "type": "integer" + }, + "totalCollections": { + "type": "integer" + } + } + }, + "models.Commissions": { + "type": "object", + "properties": { + "completions": { + "type": "integer" + }, + "milestone": { + "type": "integer" + } + } + }, + "models.Contest": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "collected": { + "type": "integer" + }, + "medals": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.Corpse": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture_path": { + "type": "string" + } + } + }, + "models.Corpses": { + "type": "object", + "properties": { + "corpses": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Corpse" + } + }, + "found": { + "type": "integer" + }, + "max": { + "type": "integer" + } + } + }, + "models.CrimsonIsleDojo": { + "type": "object", + "properties": { + "challenges": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CrimsonIsleDojoChallenge" + } + }, + "totalPoints": { + "type": "integer" + } + } + }, + "models.CrimsonIsleDojoChallenge": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "points": { + "type": "integer" + }, + "rank": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "time": { + "type": "integer" + } + } + }, + "models.CrimsonIsleFactions": { + "type": "object", + "properties": { + "barbariansReputation": { + "type": "integer" + }, + "magesReputation": { + "type": "integer" + }, + "selectedFaction": { + "type": "string" + } + } + }, + "models.CrimsonIsleKuudra": { + "type": "object", + "properties": { + "tiers": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CrimsonIsleKuudraTier" + } + }, + "totalKills": { + "type": "integer" + } + } + }, + "models.CrimsonIsleKuudraTier": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "kills": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CrimsonIsleOutput": { + "type": "object", + "properties": { + "dojo": { + "$ref": "#/definitions/models.CrimsonIsleDojo" + }, + "factions": { + "$ref": "#/definitions/models.CrimsonIsleFactions" + }, + "kuudra": { + "$ref": "#/definitions/models.CrimsonIsleKuudra" + } + } + }, + "models.CropMilestone": { + "type": "object", + "properties": { + "level": { + "$ref": "#/definitions/models.Skill" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CropUpgrade": { + "type": "object", + "properties": { + "level": { + "$ref": "#/definitions/models.Skill" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CrystalHollows": { + "type": "object", + "properties": { + "crystalHollowsLastAccess": { + "type": "integer" + }, + "nucleusRuns": { + "type": "integer" + }, + "progress": { + "$ref": "#/definitions/models.CrystalNucleusRuns" + } + } + }, + "models.CrystalNucleusRuns": { + "type": "object", + "properties": { + "crystals": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "parts": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "models.DungeonFloorStats": { + "type": "object", + "properties": { + "best_score": { + "type": "number" + }, + "fastest_time": { + "type": "number" + }, + "fastest_time_s": { + "type": "number" + }, + "fastest_time_s_plus": { + "type": "number" + }, + "milestone_completions": { + "type": "number" + }, + "mobs_killed": { + "type": "number" + }, + "most_damage": { + "$ref": "#/definitions/models.MostDamageOutput" + }, + "most_healing": { + "type": "number" + }, + "most_mobs_killed": { + "type": "number" + }, + "tier_completions": { + "type": "number" + }, + "times_played": { + "type": "number" + }, + "watcher_kills": { + "type": "number" + } + } + }, + "models.DungeonStatsOutput": { + "type": "object", + "properties": { + "bloodMobKills": { + "type": "integer" + }, + "highestFloorBeatenMaster": { + "type": "integer" + }, + "highestFloorBeatenNormal": { + "type": "integer" + }, + "secrets": { + "$ref": "#/definitions/models.SecretsOutput" + } + } + }, + "models.DungeonsOutput": { + "type": "object", + "properties": { + "catacombs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.FormattedDungeonFloor" + } + }, + "classes": { + "$ref": "#/definitions/models.ClassData" + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "master_catacombs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.FormattedDungeonFloor" + } + }, + "stats": { + "$ref": "#/definitions/models.DungeonStatsOutput" + } + } + }, + "models.EmbedData": { + "type": "object", + "properties": { + "bank": { + "type": "number" + }, + "displayName": { + "type": "string" + }, + "dungeons": { + "$ref": "#/definitions/models.EmbedDataDungeons" + }, + "game_mode": { + "type": "string" + }, + "joined": { + "type": "integer" + }, + "networth": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "profile_cute_name": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "purse": { + "type": "number" + }, + "skills": { + "$ref": "#/definitions/models.EmbedDataSkills" + }, + "skyblock_level": { + "type": "number" + }, + "slayers": { + "$ref": "#/definitions/models.EmbedDataSlayers" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.EmbedDataDungeons": { + "type": "object", + "properties": { + "classAverage": { + "type": "number" + }, + "classes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "dungeoneering": { + "type": "number" + } + } + }, + "models.EmbedDataSkills": { + "type": "object", + "properties": { + "skillAverage": { + "type": "number" + }, + "skills": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + } + } + }, + "models.EmbedDataSlayers": { + "type": "object", + "properties": { + "slayers": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "xp": { + "type": "number" + } + } + }, + "models.EnchantingGame": { + "type": "object", + "properties": { + "attempts": { + "type": "integer" + }, + "bestScore": { + "type": "integer" + }, + "claims": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.EnchantingGameData": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "stats": { + "$ref": "#/definitions/models.EnchantingGameStats" + } + } + }, + "models.EnchantingGameStats": { + "type": "object", + "properties": { + "bonusClicks": { + "type": "integer" + }, + "games": { + "type": "array", + "items": { + "$ref": "#/definitions/models.EnchantingGame" + } + }, + "lastAttempt": { + "type": "integer" + }, + "lastClaimed": { + "type": "integer" + } + } + }, + "models.EnchantingOutput": { + "type": "object", + "properties": { + "data": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.EnchantingGameData" + } + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.EquipmentResult": { + "type": "object", + "properties": { + "equipment": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.FairySouls": { + "type": "object", + "properties": { + "found": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.FarmingOutput": { + "type": "object", + "properties": { + "contests": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Contest" + } + }, + "contestsAttended": { + "type": "integer" + }, + "copper": { + "type": "integer" + }, + "medals": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Medal" + } + }, + "pelts": { + "type": "integer" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + }, + "uniqueGolds": { + "type": "integer" + } + } + }, + "models.FishingOuput": { + "type": "object", + "properties": { + "itemsFished": { + "type": "integer" + }, + "kills": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Kill" + } + }, + "seaCreaturesFished": { + "type": "integer" + }, + "shredderBait": { + "type": "integer" + }, + "shredderFished": { + "type": "integer" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + }, + "treasure": { + "type": "integer" + }, + "treasureLarge": { + "type": "integer" + }, + "trophyFish": { + "$ref": "#/definitions/models.TrophyFishOutput" + } + } + }, + "models.ForgeOutput": { + "type": "object", + "properties": { + "duration": { + "type": "number" + }, + "endingTime": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slot": { + "type": "integer" + }, + "startingTime": { + "type": "integer" + } + } + }, + "models.FormattedDungeonFloor": { + "type": "object", + "properties": { + "best_run": { + "$ref": "#/definitions/models.BestRunOutput" + }, + "name": { + "type": "string" + }, + "stats": { + "$ref": "#/definitions/models.DungeonFloorStats" + }, + "texture": { + "type": "string" + } + } + }, + "models.Fossil": { + "type": "object", + "properties": { + "found": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "texture_path": { + "type": "string" + } + } + }, + "models.Fossils": { + "type": "object", + "properties": { + "fossils": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Fossil" + } + }, + "found": { + "type": "integer" + }, + "max": { + "type": "integer" + } + } + }, + "models.Garden": { + "type": "object", + "properties": { + "composter": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "cropMilestones": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CropMilestone" + } + }, + "cropUpgrades": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CropUpgrade" + } + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "plot": { + "$ref": "#/definitions/models.PlotLayout" + }, + "visitors": { + "$ref": "#/definitions/models.Visitors" + } + } + }, + "models.Gear": { + "type": "object", + "properties": { + "armor": { + "$ref": "#/definitions/models.ArmorResult" + }, + "equipment": { + "$ref": "#/definitions/models.EquipmentResult" + }, + "wardrobe": { + "type": "array", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "weapons": { + "$ref": "#/definitions/models.WeaponsResult" + } + } + }, + "models.GetMagicalPowerOutput": { + "type": "object", + "properties": { + "abiphone": { + "type": "integer" + }, + "accessories": { + "type": "integer" + }, + "hegemony": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "rarity": { + "type": "string" + } + } + }, + "rarities": { + "$ref": "#/definitions/models.GetMagicalPowerRarities" + }, + "riftPrism": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.GetMagicalPowerRarities": { + "type": "object", + "additionalProperties": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "magicalPower": { + "type": "integer" + } + } + } + }, + "models.GetMissingAccessoresOutput": { + "type": "object", + "properties": { + "accessories": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "enrichments": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "magicalPower": { + "$ref": "#/definitions/models.GetMagicalPowerOutput" + }, + "missing": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "recombobulated": { + "type": "integer" + }, + "selectedPower": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "total": { + "type": "integer" + }, + "totalRecombobulated": { + "type": "integer" + }, + "unique": { + "type": "integer" + }, + "upgrades": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.GlaciteTunnels": { + "type": "object", + "properties": { + "corpses": { + "$ref": "#/definitions/models.Corpses" + }, + "fossilDust": { + "type": "number" + }, + "fossils": { + "$ref": "#/definitions/models.Fossils" + }, + "mineshaftsEntered": { + "type": "integer" + } + } + }, + "models.HotmTokens": { + "type": "object", + "properties": { + "available": { + "type": "integer" + }, + "spent": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.Kill": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.Medal": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.MemberStats": { + "type": "object", + "properties": { + "removed": { + "type": "boolean" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.MiningOutput": { + "type": "object", + "properties": { + "commissions": { + "$ref": "#/definitions/models.Commissions" + }, + "crystalHollows": { + "$ref": "#/definitions/models.CrystalHollows" + }, + "forge": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ForgeOutput" + } + }, + "glaciteTunnels": { + "$ref": "#/definitions/models.GlaciteTunnels" + }, + "hotm": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "peak_of_the_mountain": { + "$ref": "#/definitions/models.PeakOfTheMountain" + }, + "powder": { + "$ref": "#/definitions/models.PowderOutput" + }, + "selected_pickaxe_ability": { + "type": "string" + }, + "tokens": { + "$ref": "#/definitions/models.HotmTokens" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + } + } + }, + "models.Minion": { + "type": "object", + "properties": { + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "tiers": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "models.MinionCategory": { + "type": "object", + "properties": { + "maxedMinions": { + "type": "integer" + }, + "maxedTiers": { + "type": "integer" + }, + "minions": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Minion" + } + }, + "texture": { + "type": "string" + }, + "totalMinions": { + "type": "integer" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.MinionSlotsOutput": { + "type": "object", + "properties": { + "bonusSlots": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "next": { + "type": "integer" + } + } + }, + "models.MinionsOutput": { + "type": "object", + "properties": { + "maxedMinions": { + "type": "integer" + }, + "maxedTiers": { + "type": "integer" + }, + "minions": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.MinionCategory" + } + }, + "minionsSlots": { + "$ref": "#/definitions/models.MinionSlotsOutput" + }, + "totalMinions": { + "type": "integer" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.MiscAuctions": { + "type": "object", + "properties": { + "bids": { + "type": "number" + }, + "created": { + "type": "number" + }, + "fees": { + "type": "number" + }, + "gold_earned": { + "type": "number" + }, + "gold_spent": { + "type": "number" + }, + "highest_bid": { + "type": "number" + }, + "no_bids": { + "type": "number" + }, + "total_bought": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "total_sold": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "won": { + "type": "number" + } + } + }, + "models.MiscDamage": { + "type": "object", + "properties": { + "highest_critical_damage": { + "type": "number" + } + } + }, + "models.MiscDragons": { + "type": "object", + "properties": { + "deaths": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "ender_crystals_destroyed": { + "type": "integer" + }, + "fastest_kill": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "last_hits": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "most_damage": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.MiscEndstoneProtector": { + "type": "object", + "properties": { + "deaths": { + "type": "integer" + }, + "kills": { + "type": "integer" + } + } + }, + "models.MiscEssence": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.MiscGifts": { + "type": "object", + "properties": { + "given": { + "type": "integer" + }, + "received": { + "type": "integer" + } + } + }, + "models.MiscKill": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + }, + "models.MiscKills": { + "type": "object", + "properties": { + "deaths": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscKill" + } + }, + "kills": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscKill" + } + }, + "total_deaths": { + "type": "integer" + }, + "total_kills": { + "type": "integer" + } + } + }, + "models.MiscMythologicalEvent": { + "type": "object", + "properties": { + "burrows_chains_complete": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_combat": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_next": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_treasure": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "kills": { + "type": "number" + } + } + }, + "models.MiscOutput": { + "type": "object", + "properties": { + "auctions": { + "$ref": "#/definitions/models.MiscAuctions" + }, + "claimed_items": { + "type": "object", + "additionalProperties": { + "type": "integer", + "format": "int64" + } + }, + "damage": { + "$ref": "#/definitions/models.MiscDamage" + }, + "dragons": { + "$ref": "#/definitions/models.MiscDragons" + }, + "endstone_protector": { + "$ref": "#/definitions/models.MiscEndstoneProtector" + }, + "essence": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscEssence" + } + }, + "gifts": { + "$ref": "#/definitions/models.MiscGifts" + }, + "kills": { + "$ref": "#/definitions/models.MiscKills" + }, + "mythological_event": { + "$ref": "#/definitions/models.MiscMythologicalEvent" + }, + "pet_milestones": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.MiscPetMilestone" + } + }, + "profile_upgrades": { + "$ref": "#/definitions/models.MiscProfileUpgrades" + }, + "season_of_jerry": { + "$ref": "#/definitions/models.MiscSeasonOfJerry" + }, + "uncategorized": { + "type": "object", + "additionalProperties": {} + } + } + }, + "models.MiscPetMilestone": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "progress": { + "type": "string" + }, + "rarity": { + "type": "string" + }, + "total": { + "type": "integer" + } + } + }, + "models.MiscProfileUpgrades": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "models.MiscSeasonOfJerry": { + "type": "object", + "properties": { + "most_cannonballs_hit": { + "type": "integer" + }, + "most_damage_dealt": { + "type": "integer" + }, + "most_magma_damage_dealt": { + "type": "integer" + }, + "most_snowballs_hit": { + "type": "integer" + } + } + }, + "models.MostDamageOutput": { + "type": "object", + "properties": { + "damage": { + "type": "number" + }, + "type": { + "type": "string" + } + } + }, + "models.OutputPets": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "amountSkins": { + "type": "integer" + }, + "missing": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedPet" + } + }, + "petScore": { + "$ref": "#/definitions/models.PetScore" + }, + "pets": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedPet" + } + }, + "total": { + "type": "integer" + }, + "totalCandyUsed": { + "type": "integer" + }, + "totalPetExp": { + "type": "integer" + } + } + }, + "models.PeakOfTheMountain": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "max_level": { + "type": "integer" + } + } + }, + "models.PetScore": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "reward": { + "type": "array", + "items": { + "$ref": "#/definitions/models.PetScoreReward" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.PetScoreReward": { + "type": "object", + "properties": { + "bonus": { + "type": "integer" + }, + "score": { + "type": "integer" + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.PlayerResolve": { + "type": "object", + "properties": { + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.PlotLayout": { + "type": "object", + "properties": { + "barnSkin": { + "type": "string" + }, + "layout": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "total": { + "type": "integer" + }, + "unlocked": { + "type": "integer" + } + } + }, + "models.PowderAmount": { + "type": "object", + "properties": { + "available": { + "type": "integer" + }, + "spent": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.PowderOutput": { + "type": "object", + "properties": { + "gemstone": { + "$ref": "#/definitions/models.PowderAmount" + }, + "glacite": { + "$ref": "#/definitions/models.PowderAmount" + }, + "mithril": { + "$ref": "#/definitions/models.PowderAmount" + } + } + }, + "models.ProcessedItem": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "Damage": { + "type": "integer" + }, + "categories": { + "type": "array", + "items": { + "type": "string" + } + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "display_name": { + "type": "string" + }, + "id": { + "type": "string" + }, + "isInactive": { + "type": "boolean" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "recombobulated": { + "type": "boolean" + }, + "shiny": { + "type": "boolean" + }, + "source": { + "type": "string" + }, + "tag": { + "$ref": "#/definitions/skycrypttypes.Tag" + }, + "texture_pack": { + "type": "string" + }, + "texture_path": { + "type": "string" + }, + "wiki": { + "$ref": "#/definitions/models.WikipediaLinks" + } + } + }, + "models.ProcessingError": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + } + } + }, + "models.ProfilesStats": { + "type": "object", + "properties": { + "cute_name": { + "type": "string" + }, + "game_mode": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "selected": { + "type": "boolean" + } + } + }, + "models.RankOutput": { + "type": "object", + "properties": { + "plusColor": { + "type": "string" + }, + "plusText": { + "type": "string" + }, + "rankColor": { + "type": "string" + }, + "rankText": { + "type": "string" + } + } + }, + "models.RiftCastleOutput": { + "type": "object", + "properties": { + "grubberStacks": { + "type": "integer" + }, + "maxBurgers": { + "type": "integer" + } + } + }, + "models.RiftEnigmaOutput": { + "type": "object", + "properties": { + "souls": { + "type": "integer" + }, + "totalSouls": { + "type": "integer" + } + } + }, + "models.RiftMotesOutput": { + "type": "object", + "properties": { + "lifetime": { + "type": "integer" + }, + "orbs": { + "type": "integer" + }, + "purse": { + "type": "integer" + } + } + }, + "models.RiftOutput": { + "type": "object", + "properties": { + "armor": { + "$ref": "#/definitions/models.ArmorResult" + }, + "castle": { + "$ref": "#/definitions/models.RiftCastleOutput" + }, + "enigma": { + "$ref": "#/definitions/models.RiftEnigmaOutput" + }, + "equipment": { + "$ref": "#/definitions/models.EquipmentResult" + }, + "motes": { + "$ref": "#/definitions/models.RiftMotesOutput" + }, + "porhtal": { + "$ref": "#/definitions/models.RiftPortalsOutput" + }, + "timecharms": { + "$ref": "#/definitions/models.RiftTimecharmsOutput" + }, + "visits": { + "type": "integer" + } + } + }, + "models.RiftPorhtal": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.RiftPortalsOutput": { + "type": "object", + "properties": { + "porhtals": { + "type": "array", + "items": { + "$ref": "#/definitions/models.RiftPorhtal" + } + }, + "porhtalsFound": { + "type": "integer" + } + } + }, + "models.RiftTimecharms": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "unlocked": { + "type": "boolean" + }, + "unlockedAt": { + "type": "integer" + } + } + }, + "models.RiftTimecharmsOutput": { + "type": "object", + "properties": { + "timecharms": { + "type": "array", + "items": { + "$ref": "#/definitions/models.RiftTimecharms" + } + }, + "timecharmsFound": { + "type": "integer" + } + } + }, + "models.SecretsOutput": { + "type": "object", + "properties": { + "found": { + "type": "integer" + }, + "secretsPerRun": { + "type": "number" + } + } + }, + "models.Skill": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "levelCap": { + "type": "integer" + }, + "levelWithProgress": { + "type": "number" + }, + "maxLevel": { + "type": "integer" + }, + "maxed": { + "type": "boolean" + }, + "progress": { + "type": "number" + }, + "texture": { + "type": "string" + }, + "uncappedLevel": { + "type": "integer" + }, + "unlockableLevelWithProgress": { + "type": "number" + }, + "xp": { + "type": "integer" + }, + "xpCurrent": { + "type": "integer" + }, + "xpForNext": { + "type": "integer" + } + } + }, + "models.SkillToolsResult": { + "type": "object", + "properties": { + "highest_priority_tool": { + "$ref": "#/definitions/models.StrippedItem" + }, + "tools": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.Skills": { + "type": "object", + "properties": { + "averageSkillLevel": { + "type": "number" + }, + "averageSkillLevelWithProgress": { + "type": "number" + }, + "skills": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Skill" + } + }, + "totalSkillXp": { + "type": "integer" + } + } + }, + "models.SkillsOutput": { + "type": "object", + "properties": { + "enchanting": { + "$ref": "#/definitions/models.EnchantingOutput" + }, + "farming": { + "$ref": "#/definitions/models.FarmingOutput" + }, + "fishing": { + "$ref": "#/definitions/models.FishingOuput" + }, + "mining": { + "$ref": "#/definitions/models.MiningOutput" + } + } + }, + "models.SlayerData": { + "type": "object", + "properties": { + "kills": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "level": { + "$ref": "#/definitions/models.SlayerLevel" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.SlayerLevel": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "maxLevel": { + "type": "integer" + }, + "maxed": { + "type": "boolean" + }, + "xp": { + "type": "integer" + }, + "xpForNext": { + "type": "integer" + } + } + }, + "models.SlayersOutput": { + "type": "object", + "properties": { + "data": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.SlayerData" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "totalSlayerExp": { + "type": "integer" + } + } + }, + "models.StatsInfo": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "models.StatsOutput": { + "type": "object", + "properties": { + "apiSettings": { + "type": "object", + "additionalProperties": { + "type": "boolean" + } + }, + "bank": { + "type": "number" + }, + "displayName": { + "type": "string" + }, + "fairySouls": { + "$ref": "#/definitions/models.FairySouls" + }, + "joined": { + "type": "integer" + }, + "members": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MemberStats" + } + }, + "personalBank": { + "type": "number" + }, + "profile_cute_name": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "profiles": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProfilesStats" + } + }, + "purse": { + "type": "number" + }, + "rank": { + "$ref": "#/definitions/models.RankOutput" + }, + "selected": { + "type": "boolean" + }, + "skills": { + "$ref": "#/definitions/models.Skills" + }, + "skyblock_level": { + "$ref": "#/definitions/models.Skill" + }, + "social": { + "$ref": "#/definitions/skycrypttypes.SocialMediaLinks" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.StrippedItem": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "display_name": { + "type": "string" + }, + "isInactive": { + "type": "boolean" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "recombobulated": { + "type": "boolean" + }, + "shiny": { + "type": "boolean" + }, + "source": { + "type": "string" + }, + "texture_pack": { + "type": "string" + }, + "texture_path": { + "type": "string" + }, + "wiki": { + "$ref": "#/definitions/models.WikipediaLinks" + } + } + }, + "models.StrippedPet": { + "type": "object", + "properties": { + "active": { + "type": "boolean" + }, + "display_name": { + "type": "string" + }, + "level": { + "type": "integer" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "texture_path": { + "type": "string" + }, + "type": { + "type": "string" + } + } + }, + "models.TrophyFish": { + "type": "object", + "properties": { + "bronze": { + "type": "integer" + }, + "description": { + "type": "string" + }, + "diamond": { + "type": "integer" + }, + "gold": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "maxed": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "silver": { + "type": "integer" + }, + "texture": { + "type": "string" + } + } + }, + "models.TrophyFishOutput": { + "type": "object", + "properties": { + "stage": { + "$ref": "#/definitions/models.TrophyFishStage" + }, + "totalCaught": { + "type": "integer" + }, + "trophyFish": { + "type": "array", + "items": { + "$ref": "#/definitions/models.TrophyFish" + } + } + } + }, + "models.TrophyFishProgress": { + "type": "object", + "properties": { + "caught": { + "type": "integer" + }, + "tier": { + "type": "string" + }, + "total": { + "type": "integer" + } + } + }, + "models.TrophyFishStage": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "progress": { + "type": "array", + "items": { + "$ref": "#/definitions/models.TrophyFishProgress" + } + } + } + }, + "models.VisitorRarityData": { + "type": "object", + "properties": { + "completed": { + "type": "integer" + }, + "maxUnique": { + "type": "integer" + }, + "unique": { + "type": "integer" + }, + "visited": { + "type": "integer" + } + } + }, + "models.Visitors": { + "type": "object", + "properties": { + "completed": { + "type": "integer" + }, + "uniqueVisitors": { + "type": "integer" + }, + "visited": { + "type": "integer" + }, + "visitors": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.VisitorRarityData" + } + } + } + }, + "models.WeaponsResult": { + "type": "object", + "properties": { + "highest_priority_weapon": { + "$ref": "#/definitions/models.StrippedItem" + }, + "weapons": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.WikipediaLinks": { + "type": "object", + "properties": { + "fandom": { + "type": "string" + }, + "official": { + "type": "string" + } + } + }, + "skycrypttypes.Display": { + "type": "object", + "properties": { + "Lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "Name": { + "type": "string" + }, + "color": { + "type": "integer" + } + } + }, + "skycrypttypes.ExtraAttributes": { + "type": "object", + "properties": { + "ability_scroll": { + "type": "array", + "items": { + "type": "string" + } + }, + "additional_coins": { + "type": "integer" + }, + "artOfPeaceApplied": { + "type": "integer" + }, + "art_of_war_count": { + "type": "integer" + }, + "attributes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "auction": { + "type": "integer" + }, + "bid": { + "type": "integer" + }, + "boosters": { + "type": "array", + "items": { + "type": "string" + } + }, + "champion_combat_xp": { + "type": "number" + }, + "compact_blocks": { + "type": "integer" + }, + "divan_powder_coating": { + "type": "integer" + }, + "donated_museum": { + "type": "boolean" + }, + "drill_part_engine": { + "type": "string" + }, + "drill_part_fuel_tank": { + "type": "string" + }, + "drill_part_upgrade_module": { + "type": "string" + }, + "dungeon_item_level": {}, + "dye_item": { + "type": "string" + }, + "edition": { + "type": "integer" + }, + "enchantments": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "ethermerge": { + "type": "integer" + }, + "expertise_kills": { + "type": "integer" + }, + "farmed_cultivating": { + "type": "integer" + }, + "farming_for_dummies_count": { + "type": "integer" + }, + "gems": { + "type": "object", + "additionalProperties": {} + }, + "hecatomb_s_runs": { + "type": "integer" + }, + "hook": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "hot_potato_count": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "is_shiny": { + "type": "boolean" + }, + "item_tier": { + "type": "integer" + }, + "jalapeno_count": { + "type": "integer" + }, + "line": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "mana_disintegrator_count": { + "type": "integer" + }, + "model": { + "type": "string" + }, + "modifier": { + "type": "string" + }, + "new_year_cake_bag_data": { + "type": "array", + "items": { + "type": "integer" + } + }, + "new_year_cake_bag_years": { + "type": "array", + "items": { + "type": "integer" + } + }, + "new_years_cake": { + "type": "integer" + }, + "party_hat_color": { + "type": "string" + }, + "party_hat_emoji": { + "type": "string" + }, + "petInfo": { + "type": "string" + }, + "pickonimbus_durability": { + "type": "integer" + }, + "polarvoid": { + "type": "integer" + }, + "power_ability_scroll": { + "type": "string" + }, + "price": { + "type": "integer" + }, + "rarity_upgrades": { + "type": "integer" + }, + "runes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "sack_pss": { + "type": "integer" + }, + "sinker": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "skin": { + "type": "string" + }, + "talisman_enrichment": { + "type": "string" + }, + "thunder_charge": { + "type": "integer" + }, + "timestamp": {}, + "tuned_transmission": { + "type": "integer" + }, + "upgrade_level": {}, + "uuid": { + "type": "string" + }, + "winning_bid": { + "type": "integer" + }, + "wood_singularity_count": { + "type": "integer" + } + } + }, + "skycrypttypes.Item": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "Damage": { + "type": "integer" + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/skycrypttypes.Item" + } + }, + "id": { + "type": "integer" + }, + "tag": { + "$ref": "#/definitions/skycrypttypes.Tag" + } + } + }, + "skycrypttypes.Properties": { + "type": "object", + "properties": { + "textures": { + "type": "array", + "items": { + "$ref": "#/definitions/skycrypttypes.Texture" + } + } + } + }, + "skycrypttypes.RodPart": { + "type": "object", + "properties": { + "donated_museum": { + "type": "boolean" + }, + "part": { + "type": "string" + } + } + }, + "skycrypttypes.SkullOwner": { + "type": "object", + "properties": { + "Id": { + "type": "string" + }, + "Properties": { + "$ref": "#/definitions/skycrypttypes.Properties" + } + } + }, + "skycrypttypes.SocialMediaLinks": { + "type": "object", + "properties": { + "DISCORD": { + "type": "string" + }, + "HYPIXEL": { + "type": "string" + }, + "TWITCH": { + "type": "string" + }, + "TWITTER": { + "type": "string" + } + } + }, + "skycrypttypes.Tag": { + "type": "object", + "properties": { + "ExtraAttributes": { + "description": "HideFlags int ` + "`" + `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"` + "`" + `\nUnbreakable int ` + "`" + `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"` + "`" + `\nEnchantments []Enchantment ` + "`" + `nbt:\"ench\" json:\"ench,omitempty\"` + "`" + `", + "allOf": [ + { + "$ref": "#/definitions/skycrypttypes.ExtraAttributes" + } + ] + }, + "SkullOwner": { + "$ref": "#/definitions/skycrypttypes.SkullOwner" + }, + "display": { + "$ref": "#/definitions/skycrypttypes.Display" + } + } + }, + "skycrypttypes.Texture": { + "type": "object", + "properties": { + "Signature": { + "type": "string" + }, + "Value": { + "type": "string" + } + } + } + } +}` + +// SwaggerInfo holds exported Swagger Info so clients can modify it +var SwaggerInfo = &swag.Spec{ + Version: "", + Host: "", + BasePath: "", + Schemes: []string{}, + Title: "", + Description: "", + InfoInstanceName: "swagger", + SwaggerTemplate: docTemplate, + LeftDelim: "{{", + RightDelim: "}}", +} + +func init() { + swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo) +} diff --git a/docs/swagger.json b/docs/swagger.json new file mode 100644 index 000000000..57a69b8c6 --- /dev/null +++ b/docs/swagger.json @@ -0,0 +1,3880 @@ +{ + "swagger": "2.0", + "info": { + "contact": {} + }, + "paths": { + "/api/accessories/{uuid}/{profileId}": { + "get": { + "description": "Returns accessories for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "accessories" + ], + "summary": "Get accessories stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.GetMissingAccessoresOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/bestiary/{uuid}/{profileId}": { + "get": { + "description": "Returns bestiary for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "bestiary" + ], + "summary": "Get bestiary stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.BestiaryOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/collections/{uuid}/{profileId}": { + "get": { + "description": "Returns collections for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "collections" + ], + "summary": "Get collections stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.CollectionsOutput" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/crimson_isle/{uuid}/{profileId}": { + "get": { + "description": "Returns Crimson Isle stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "crimson_isle" + ], + "summary": "Get Crimson Isle stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.CrimsonIsleOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/dungeons/{uuid}/{profileId}": { + "get": { + "description": "Returns dungeons for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "dungeons" + ], + "summary": "Get dungeons stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.DungeonsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/embed/{uuid}/{profileId}": { + "get": { + "description": "Returns embed data for the given user (UUID or username) and optional profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "embed" + ], + "summary": "Get embed data for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID or username", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID (optional)", + "name": "profileId", + "in": "path" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.EmbedData" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/garden/{profileId}": { + "get": { + "description": "Returns garden data for the given profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "garden" + ], + "summary": "Get garden stats of a specified profile", + "parameters": [ + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.Garden" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/gear/{uuid}/{profileId}": { + "get": { + "description": "Returns gear for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "gear" + ], + "summary": "Get gear stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.Gear" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/head/{textureId}": { + "get": { + "description": "Returns a PNG image of a head for the given texture ID", + "produces": [ + "image/png" + ], + "tags": [ + "head" + ], + "summary": "Render and return a head image", + "parameters": [ + { + "type": "string", + "description": "Texture ID", + "name": "textureId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the head", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Failed to render head", + "schema": { + "type": "string" + } + } + } + } + }, + "/api/inventory/{uuid}/{profileId}/search/{search}": { + "get": { + "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "inventory" + ], + "summary": "Get inventory items for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Search string (required when inventoryId is 'search')", + "name": "search", + "in": "path" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/inventory/{uuid}/{profileId}/{inventoryId}": { + "get": { + "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "inventory" + ], + "summary": "Get inventory items for a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Inventory ID (e.g., museum, search, or other inventory types)", + "name": "inventoryId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/item/{itemId}": { + "get": { + "description": "Returns a PNG image of an item for the given texture ID", + "produces": [ + "image/png" + ], + "tags": [ + "item" + ], + "summary": "Render and return an item image", + "parameters": [ + { + "type": "string", + "description": "Item ID", + "name": "itemId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the item", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Failed to render item", + "schema": { + "type": "string" + } + } + } + } + }, + "/api/leather/{type}/{color}": { + "get": { + "description": "Returns a PNG image of leather armor for the given type and color", + "produces": [ + "image/png" + ], + "tags": [ + "leather" + ], + "summary": "Render and return a leather armor image", + "parameters": [ + { + "type": "string", + "description": "Armor Type", + "name": "type", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Armor Color", + "name": "color", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the leather armor", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/minions/{uuid}/{profileId}": { + "get": { + "description": "Returns minions for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "minions" + ], + "summary": "Get minions stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.MinionsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/misc/{uuid}/{profileId}": { + "get": { + "description": "Returns misc stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "misc" + ], + "summary": "Get misc stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.MiscOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/networth/{uuid}/{profileId}": { + "get": { + "description": "Returns networth for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "networth" + ], + "summary": "Get networth of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object", + "additionalProperties": true + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/pets/{uuid}/{profileId}": { + "get": { + "description": "Returns pets for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "pets" + ], + "summary": "Get pets stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.OutputPets" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/playerStats/{uuid}/{profileId}": { + "get": { + "description": "Returns player stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "playerStats" + ], + "summary": "Get player stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.StatsInfo" + } + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/potion/{type}/{color}": { + "get": { + "description": "Returns a PNG image of a potion for the given type and color", + "produces": [ + "image/png" + ], + "tags": [ + "potion" + ], + "summary": "Render and return a potion image", + "parameters": [ + { + "type": "string", + "description": "Potion Type", + "name": "type", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Potion Color", + "name": "color", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "PNG image of the potion", + "schema": { + "type": "file" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/rift/{uuid}/{profileId}": { + "get": { + "description": "Returns rift data for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "rift" + ], + "summary": "Get rift stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.RiftOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/skills/{uuid}/{profileId}": { + "get": { + "description": "Returns skills for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "skills" + ], + "summary": "Get skills stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.SkillsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/slayer/{uuid}/{profileId}": { + "get": { + "description": "Returns slayer statistics for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "slayers" + ], + "summary": "Get slayer stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.SlayersOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/stats/{uuid}/{profileId}": { + "get": { + "description": "Returns stats for the given user and profile ID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "stats" + ], + "summary": "Get stats of a specified player", + "parameters": [ + { + "type": "string", + "description": "User UUID", + "name": "uuid", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Profile ID", + "name": "profileId", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.StatsOutput" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + }, + "500": { + "description": "Internal Server Error", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/username/{uuid}": { + "get": { + "description": "Returns the username associated with the given UUID", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "username" + ], + "summary": "Get username for a specified UUID", + "parameters": [ + { + "type": "string", + "description": "UUID", + "name": "uuid", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.PlayerResolve" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + }, + "/api/uuid/{username}": { + "get": { + "description": "Returns the UUID associated with the given username", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "tags": [ + "uuid" + ], + "summary": "Get UUID for a specified username", + "parameters": [ + { + "type": "string", + "description": "Username", + "name": "username", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/models.PlayerResolve" + } + }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/models.ProcessingError" + } + } + } + } + } + }, + "definitions": { + "models.ArmorResult": { + "type": "object", + "properties": { + "armor": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "set_name": { + "type": "string" + }, + "set_rarity": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.BestRunOutput": { + "type": "object", + "properties": { + "damage_dealt": { + "type": "number" + }, + "damage_mitigated": { + "type": "number" + }, + "deaths": { + "type": "integer" + }, + "dungeon_class": { + "type": "string" + }, + "elapsed_time": { + "type": "integer" + }, + "grade": { + "type": "string" + }, + "mobs_killed": { + "type": "integer" + }, + "score_bonus": { + "type": "integer" + }, + "score_exploration": { + "type": "integer" + }, + "score_skill": { + "type": "integer" + }, + "score_speed": { + "type": "integer" + }, + "secrets_found": { + "type": "integer" + }, + "timestamp": { + "type": "integer" + } + } + }, + "models.BestiaryCategoryOutput": { + "type": "object", + "properties": { + "mobs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.BestiaryMobOutput" + } + }, + "mobsMaxed": { + "type": "integer" + }, + "mobsUnlocked": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.BestiaryMobOutput": { + "type": "object", + "properties": { + "kills": { + "type": "integer" + }, + "maxKills": { + "type": "integer" + }, + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "nextTierKills": { + "type": "integer" + }, + "texture": { + "type": "string" + }, + "tier": { + "type": "integer" + } + } + }, + "models.BestiaryOutput": { + "type": "object", + "properties": { + "categories": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.BestiaryCategoryOutput" + } + }, + "familiesCompleted": { + "type": "integer" + }, + "familiesUnlocked": { + "type": "integer" + }, + "familyTiers": { + "type": "integer" + }, + "level": { + "type": "number" + }, + "maxFamilyTiers": { + "type": "integer" + }, + "maxLevel": { + "type": "number" + }, + "totalFamilies": { + "type": "integer" + } + } + }, + "models.ClassData": { + "type": "object", + "properties": { + "classAverage": { + "type": "number" + }, + "classAverageWithProgress": { + "type": "number" + }, + "classes": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Skill" + } + }, + "selectedClass": { + "type": "string" + }, + "totalClassExp": { + "type": "number" + } + } + }, + "models.CollectionCategory": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CollectionCategoryItem" + } + }, + "maxTiers": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.CollectionCategoryItem": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "amounts": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CollectionCategoryItemAmount" + } + }, + "id": { + "type": "string" + }, + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "tier": { + "type": "integer" + }, + "totalAmount": { + "type": "integer" + } + } + }, + "models.CollectionCategoryItemAmount": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "username": { + "type": "string" + } + } + }, + "models.CollectionsOutput": { + "type": "object", + "properties": { + "categories": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.CollectionCategory" + } + }, + "maxedCollections": { + "type": "integer" + }, + "totalCollections": { + "type": "integer" + } + } + }, + "models.Commissions": { + "type": "object", + "properties": { + "completions": { + "type": "integer" + }, + "milestone": { + "type": "integer" + } + } + }, + "models.Contest": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "collected": { + "type": "integer" + }, + "medals": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.Corpse": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture_path": { + "type": "string" + } + } + }, + "models.Corpses": { + "type": "object", + "properties": { + "corpses": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Corpse" + } + }, + "found": { + "type": "integer" + }, + "max": { + "type": "integer" + } + } + }, + "models.CrimsonIsleDojo": { + "type": "object", + "properties": { + "challenges": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CrimsonIsleDojoChallenge" + } + }, + "totalPoints": { + "type": "integer" + } + } + }, + "models.CrimsonIsleDojoChallenge": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "points": { + "type": "integer" + }, + "rank": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "time": { + "type": "integer" + } + } + }, + "models.CrimsonIsleFactions": { + "type": "object", + "properties": { + "barbariansReputation": { + "type": "integer" + }, + "magesReputation": { + "type": "integer" + }, + "selectedFaction": { + "type": "string" + } + } + }, + "models.CrimsonIsleKuudra": { + "type": "object", + "properties": { + "tiers": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CrimsonIsleKuudraTier" + } + }, + "totalKills": { + "type": "integer" + } + } + }, + "models.CrimsonIsleKuudraTier": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "kills": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CrimsonIsleOutput": { + "type": "object", + "properties": { + "dojo": { + "$ref": "#/definitions/models.CrimsonIsleDojo" + }, + "factions": { + "$ref": "#/definitions/models.CrimsonIsleFactions" + }, + "kuudra": { + "$ref": "#/definitions/models.CrimsonIsleKuudra" + } + } + }, + "models.CropMilestone": { + "type": "object", + "properties": { + "level": { + "$ref": "#/definitions/models.Skill" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CropUpgrade": { + "type": "object", + "properties": { + "level": { + "$ref": "#/definitions/models.Skill" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.CrystalHollows": { + "type": "object", + "properties": { + "crystalHollowsLastAccess": { + "type": "integer" + }, + "nucleusRuns": { + "type": "integer" + }, + "progress": { + "$ref": "#/definitions/models.CrystalNucleusRuns" + } + } + }, + "models.CrystalNucleusRuns": { + "type": "object", + "properties": { + "crystals": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "parts": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "models.DungeonFloorStats": { + "type": "object", + "properties": { + "best_score": { + "type": "number" + }, + "fastest_time": { + "type": "number" + }, + "fastest_time_s": { + "type": "number" + }, + "fastest_time_s_plus": { + "type": "number" + }, + "milestone_completions": { + "type": "number" + }, + "mobs_killed": { + "type": "number" + }, + "most_damage": { + "$ref": "#/definitions/models.MostDamageOutput" + }, + "most_healing": { + "type": "number" + }, + "most_mobs_killed": { + "type": "number" + }, + "tier_completions": { + "type": "number" + }, + "times_played": { + "type": "number" + }, + "watcher_kills": { + "type": "number" + } + } + }, + "models.DungeonStatsOutput": { + "type": "object", + "properties": { + "bloodMobKills": { + "type": "integer" + }, + "highestFloorBeatenMaster": { + "type": "integer" + }, + "highestFloorBeatenNormal": { + "type": "integer" + }, + "secrets": { + "$ref": "#/definitions/models.SecretsOutput" + } + } + }, + "models.DungeonsOutput": { + "type": "object", + "properties": { + "catacombs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.FormattedDungeonFloor" + } + }, + "classes": { + "$ref": "#/definitions/models.ClassData" + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "master_catacombs": { + "type": "array", + "items": { + "$ref": "#/definitions/models.FormattedDungeonFloor" + } + }, + "stats": { + "$ref": "#/definitions/models.DungeonStatsOutput" + } + } + }, + "models.EmbedData": { + "type": "object", + "properties": { + "bank": { + "type": "number" + }, + "displayName": { + "type": "string" + }, + "dungeons": { + "$ref": "#/definitions/models.EmbedDataDungeons" + }, + "game_mode": { + "type": "string" + }, + "joined": { + "type": "integer" + }, + "networth": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "profile_cute_name": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "purse": { + "type": "number" + }, + "skills": { + "$ref": "#/definitions/models.EmbedDataSkills" + }, + "skyblock_level": { + "type": "number" + }, + "slayers": { + "$ref": "#/definitions/models.EmbedDataSlayers" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.EmbedDataDungeons": { + "type": "object", + "properties": { + "classAverage": { + "type": "number" + }, + "classes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "dungeoneering": { + "type": "number" + } + } + }, + "models.EmbedDataSkills": { + "type": "object", + "properties": { + "skillAverage": { + "type": "number" + }, + "skills": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + } + } + }, + "models.EmbedDataSlayers": { + "type": "object", + "properties": { + "slayers": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "xp": { + "type": "number" + } + } + }, + "models.EnchantingGame": { + "type": "object", + "properties": { + "attempts": { + "type": "integer" + }, + "bestScore": { + "type": "integer" + }, + "claims": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.EnchantingGameData": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "stats": { + "$ref": "#/definitions/models.EnchantingGameStats" + } + } + }, + "models.EnchantingGameStats": { + "type": "object", + "properties": { + "bonusClicks": { + "type": "integer" + }, + "games": { + "type": "array", + "items": { + "$ref": "#/definitions/models.EnchantingGame" + } + }, + "lastAttempt": { + "type": "integer" + }, + "lastClaimed": { + "type": "integer" + } + } + }, + "models.EnchantingOutput": { + "type": "object", + "properties": { + "data": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.EnchantingGameData" + } + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.EquipmentResult": { + "type": "object", + "properties": { + "equipment": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.FairySouls": { + "type": "object", + "properties": { + "found": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.FarmingOutput": { + "type": "object", + "properties": { + "contests": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Contest" + } + }, + "contestsAttended": { + "type": "integer" + }, + "copper": { + "type": "integer" + }, + "medals": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Medal" + } + }, + "pelts": { + "type": "integer" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + }, + "uniqueGolds": { + "type": "integer" + } + } + }, + "models.FishingOuput": { + "type": "object", + "properties": { + "itemsFished": { + "type": "integer" + }, + "kills": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Kill" + } + }, + "seaCreaturesFished": { + "type": "integer" + }, + "shredderBait": { + "type": "integer" + }, + "shredderFished": { + "type": "integer" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + }, + "treasure": { + "type": "integer" + }, + "treasureLarge": { + "type": "integer" + }, + "trophyFish": { + "$ref": "#/definitions/models.TrophyFishOutput" + } + } + }, + "models.ForgeOutput": { + "type": "object", + "properties": { + "duration": { + "type": "number" + }, + "endingTime": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slot": { + "type": "integer" + }, + "startingTime": { + "type": "integer" + } + } + }, + "models.FormattedDungeonFloor": { + "type": "object", + "properties": { + "best_run": { + "$ref": "#/definitions/models.BestRunOutput" + }, + "name": { + "type": "string" + }, + "stats": { + "$ref": "#/definitions/models.DungeonFloorStats" + }, + "texture": { + "type": "string" + } + } + }, + "models.Fossil": { + "type": "object", + "properties": { + "found": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "texture_path": { + "type": "string" + } + } + }, + "models.Fossils": { + "type": "object", + "properties": { + "fossils": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Fossil" + } + }, + "found": { + "type": "integer" + }, + "max": { + "type": "integer" + } + } + }, + "models.Garden": { + "type": "object", + "properties": { + "composter": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "cropMilestones": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CropMilestone" + } + }, + "cropUpgrades": { + "type": "array", + "items": { + "$ref": "#/definitions/models.CropUpgrade" + } + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "plot": { + "$ref": "#/definitions/models.PlotLayout" + }, + "visitors": { + "$ref": "#/definitions/models.Visitors" + } + } + }, + "models.Gear": { + "type": "object", + "properties": { + "armor": { + "$ref": "#/definitions/models.ArmorResult" + }, + "equipment": { + "$ref": "#/definitions/models.EquipmentResult" + }, + "wardrobe": { + "type": "array", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + }, + "weapons": { + "$ref": "#/definitions/models.WeaponsResult" + } + } + }, + "models.GetMagicalPowerOutput": { + "type": "object", + "properties": { + "abiphone": { + "type": "integer" + }, + "accessories": { + "type": "integer" + }, + "hegemony": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "rarity": { + "type": "string" + } + } + }, + "rarities": { + "$ref": "#/definitions/models.GetMagicalPowerRarities" + }, + "riftPrism": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.GetMagicalPowerRarities": { + "type": "object", + "additionalProperties": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "magicalPower": { + "type": "integer" + } + } + } + }, + "models.GetMissingAccessoresOutput": { + "type": "object", + "properties": { + "accessories": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "enrichments": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "magicalPower": { + "$ref": "#/definitions/models.GetMagicalPowerOutput" + }, + "missing": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "recombobulated": { + "type": "integer" + }, + "selectedPower": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "total": { + "type": "integer" + }, + "totalRecombobulated": { + "type": "integer" + }, + "unique": { + "type": "integer" + }, + "upgrades": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.GlaciteTunnels": { + "type": "object", + "properties": { + "corpses": { + "$ref": "#/definitions/models.Corpses" + }, + "fossilDust": { + "type": "number" + }, + "fossils": { + "$ref": "#/definitions/models.Fossils" + }, + "mineshaftsEntered": { + "type": "integer" + } + } + }, + "models.HotmTokens": { + "type": "object", + "properties": { + "available": { + "type": "integer" + }, + "spent": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.Kill": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.Medal": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.MemberStats": { + "type": "object", + "properties": { + "removed": { + "type": "boolean" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.MiningOutput": { + "type": "object", + "properties": { + "commissions": { + "$ref": "#/definitions/models.Commissions" + }, + "crystalHollows": { + "$ref": "#/definitions/models.CrystalHollows" + }, + "forge": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ForgeOutput" + } + }, + "glaciteTunnels": { + "$ref": "#/definitions/models.GlaciteTunnels" + }, + "hotm": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "level": { + "$ref": "#/definitions/models.Skill" + }, + "peak_of_the_mountain": { + "$ref": "#/definitions/models.PeakOfTheMountain" + }, + "powder": { + "$ref": "#/definitions/models.PowderOutput" + }, + "selected_pickaxe_ability": { + "type": "string" + }, + "tokens": { + "$ref": "#/definitions/models.HotmTokens" + }, + "tools": { + "$ref": "#/definitions/models.SkillToolsResult" + } + } + }, + "models.Minion": { + "type": "object", + "properties": { + "maxTier": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "tiers": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "models.MinionCategory": { + "type": "object", + "properties": { + "maxedMinions": { + "type": "integer" + }, + "maxedTiers": { + "type": "integer" + }, + "minions": { + "type": "array", + "items": { + "$ref": "#/definitions/models.Minion" + } + }, + "texture": { + "type": "string" + }, + "totalMinions": { + "type": "integer" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.MinionSlotsOutput": { + "type": "object", + "properties": { + "bonusSlots": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "next": { + "type": "integer" + } + } + }, + "models.MinionsOutput": { + "type": "object", + "properties": { + "maxedMinions": { + "type": "integer" + }, + "maxedTiers": { + "type": "integer" + }, + "minions": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.MinionCategory" + } + }, + "minionsSlots": { + "$ref": "#/definitions/models.MinionSlotsOutput" + }, + "totalMinions": { + "type": "integer" + }, + "totalTiers": { + "type": "integer" + } + } + }, + "models.MiscAuctions": { + "type": "object", + "properties": { + "bids": { + "type": "number" + }, + "created": { + "type": "number" + }, + "fees": { + "type": "number" + }, + "gold_earned": { + "type": "number" + }, + "gold_spent": { + "type": "number" + }, + "highest_bid": { + "type": "number" + }, + "no_bids": { + "type": "number" + }, + "total_bought": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "total_sold": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "won": { + "type": "number" + } + } + }, + "models.MiscDamage": { + "type": "object", + "properties": { + "highest_critical_damage": { + "type": "number" + } + } + }, + "models.MiscDragons": { + "type": "object", + "properties": { + "deaths": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "ender_crystals_destroyed": { + "type": "integer" + }, + "fastest_kill": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "last_hits": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "most_damage": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.MiscEndstoneProtector": { + "type": "object", + "properties": { + "deaths": { + "type": "integer" + }, + "kills": { + "type": "integer" + } + } + }, + "models.MiscEssence": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.MiscGifts": { + "type": "object", + "properties": { + "given": { + "type": "integer" + }, + "received": { + "type": "integer" + } + } + }, + "models.MiscKill": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + }, + "models.MiscKills": { + "type": "object", + "properties": { + "deaths": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscKill" + } + }, + "kills": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscKill" + } + }, + "total_deaths": { + "type": "integer" + }, + "total_kills": { + "type": "integer" + } + } + }, + "models.MiscMythologicalEvent": { + "type": "object", + "properties": { + "burrows_chains_complete": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_combat": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_next": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "burrows_dug_treasure": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "kills": { + "type": "number" + } + } + }, + "models.MiscOutput": { + "type": "object", + "properties": { + "auctions": { + "$ref": "#/definitions/models.MiscAuctions" + }, + "claimed_items": { + "type": "object", + "additionalProperties": { + "type": "integer", + "format": "int64" + } + }, + "damage": { + "$ref": "#/definitions/models.MiscDamage" + }, + "dragons": { + "$ref": "#/definitions/models.MiscDragons" + }, + "endstone_protector": { + "$ref": "#/definitions/models.MiscEndstoneProtector" + }, + "essence": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MiscEssence" + } + }, + "gifts": { + "$ref": "#/definitions/models.MiscGifts" + }, + "kills": { + "$ref": "#/definitions/models.MiscKills" + }, + "mythological_event": { + "$ref": "#/definitions/models.MiscMythologicalEvent" + }, + "pet_milestones": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.MiscPetMilestone" + } + }, + "profile_upgrades": { + "$ref": "#/definitions/models.MiscProfileUpgrades" + }, + "season_of_jerry": { + "$ref": "#/definitions/models.MiscSeasonOfJerry" + }, + "uncategorized": { + "type": "object", + "additionalProperties": {} + } + } + }, + "models.MiscPetMilestone": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "progress": { + "type": "string" + }, + "rarity": { + "type": "string" + }, + "total": { + "type": "integer" + } + } + }, + "models.MiscProfileUpgrades": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "models.MiscSeasonOfJerry": { + "type": "object", + "properties": { + "most_cannonballs_hit": { + "type": "integer" + }, + "most_damage_dealt": { + "type": "integer" + }, + "most_magma_damage_dealt": { + "type": "integer" + }, + "most_snowballs_hit": { + "type": "integer" + } + } + }, + "models.MostDamageOutput": { + "type": "object", + "properties": { + "damage": { + "type": "number" + }, + "type": { + "type": "string" + } + } + }, + "models.OutputPets": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "amountSkins": { + "type": "integer" + }, + "missing": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedPet" + } + }, + "petScore": { + "$ref": "#/definitions/models.PetScore" + }, + "pets": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedPet" + } + }, + "total": { + "type": "integer" + }, + "totalCandyUsed": { + "type": "integer" + }, + "totalPetExp": { + "type": "integer" + } + } + }, + "models.PeakOfTheMountain": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "max_level": { + "type": "integer" + } + } + }, + "models.PetScore": { + "type": "object", + "properties": { + "amount": { + "type": "integer" + }, + "reward": { + "type": "array", + "items": { + "$ref": "#/definitions/models.PetScoreReward" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + } + } + }, + "models.PetScoreReward": { + "type": "object", + "properties": { + "bonus": { + "type": "integer" + }, + "score": { + "type": "integer" + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.PlayerResolve": { + "type": "object", + "properties": { + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.PlotLayout": { + "type": "object", + "properties": { + "barnSkin": { + "type": "string" + }, + "layout": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "total": { + "type": "integer" + }, + "unlocked": { + "type": "integer" + } + } + }, + "models.PowderAmount": { + "type": "object", + "properties": { + "available": { + "type": "integer" + }, + "spent": { + "type": "integer" + }, + "total": { + "type": "integer" + } + } + }, + "models.PowderOutput": { + "type": "object", + "properties": { + "gemstone": { + "$ref": "#/definitions/models.PowderAmount" + }, + "glacite": { + "$ref": "#/definitions/models.PowderAmount" + }, + "mithril": { + "$ref": "#/definitions/models.PowderAmount" + } + } + }, + "models.ProcessedItem": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "Damage": { + "type": "integer" + }, + "categories": { + "type": "array", + "items": { + "type": "string" + } + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProcessedItem" + } + }, + "display_name": { + "type": "string" + }, + "id": { + "type": "string" + }, + "isInactive": { + "type": "boolean" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "recombobulated": { + "type": "boolean" + }, + "shiny": { + "type": "boolean" + }, + "source": { + "type": "string" + }, + "tag": { + "$ref": "#/definitions/skycrypttypes.Tag" + }, + "texture_pack": { + "type": "string" + }, + "texture_path": { + "type": "string" + }, + "wiki": { + "$ref": "#/definitions/models.WikipediaLinks" + } + } + }, + "models.ProcessingError": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + } + } + }, + "models.ProfilesStats": { + "type": "object", + "properties": { + "cute_name": { + "type": "string" + }, + "game_mode": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "selected": { + "type": "boolean" + } + } + }, + "models.RankOutput": { + "type": "object", + "properties": { + "plusColor": { + "type": "string" + }, + "plusText": { + "type": "string" + }, + "rankColor": { + "type": "string" + }, + "rankText": { + "type": "string" + } + } + }, + "models.RiftCastleOutput": { + "type": "object", + "properties": { + "grubberStacks": { + "type": "integer" + }, + "maxBurgers": { + "type": "integer" + } + } + }, + "models.RiftEnigmaOutput": { + "type": "object", + "properties": { + "souls": { + "type": "integer" + }, + "totalSouls": { + "type": "integer" + } + } + }, + "models.RiftMotesOutput": { + "type": "object", + "properties": { + "lifetime": { + "type": "integer" + }, + "orbs": { + "type": "integer" + }, + "purse": { + "type": "integer" + } + } + }, + "models.RiftOutput": { + "type": "object", + "properties": { + "armor": { + "$ref": "#/definitions/models.ArmorResult" + }, + "castle": { + "$ref": "#/definitions/models.RiftCastleOutput" + }, + "enigma": { + "$ref": "#/definitions/models.RiftEnigmaOutput" + }, + "equipment": { + "$ref": "#/definitions/models.EquipmentResult" + }, + "motes": { + "$ref": "#/definitions/models.RiftMotesOutput" + }, + "porhtal": { + "$ref": "#/definitions/models.RiftPortalsOutput" + }, + "timecharms": { + "$ref": "#/definitions/models.RiftTimecharmsOutput" + }, + "visits": { + "type": "integer" + } + } + }, + "models.RiftPorhtal": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "unlocked": { + "type": "boolean" + } + } + }, + "models.RiftPortalsOutput": { + "type": "object", + "properties": { + "porhtals": { + "type": "array", + "items": { + "$ref": "#/definitions/models.RiftPorhtal" + } + }, + "porhtalsFound": { + "type": "integer" + } + } + }, + "models.RiftTimecharms": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "texture": { + "type": "string" + }, + "unlocked": { + "type": "boolean" + }, + "unlockedAt": { + "type": "integer" + } + } + }, + "models.RiftTimecharmsOutput": { + "type": "object", + "properties": { + "timecharms": { + "type": "array", + "items": { + "$ref": "#/definitions/models.RiftTimecharms" + } + }, + "timecharmsFound": { + "type": "integer" + } + } + }, + "models.SecretsOutput": { + "type": "object", + "properties": { + "found": { + "type": "integer" + }, + "secretsPerRun": { + "type": "number" + } + } + }, + "models.Skill": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "levelCap": { + "type": "integer" + }, + "levelWithProgress": { + "type": "number" + }, + "maxLevel": { + "type": "integer" + }, + "maxed": { + "type": "boolean" + }, + "progress": { + "type": "number" + }, + "texture": { + "type": "string" + }, + "uncappedLevel": { + "type": "integer" + }, + "unlockableLevelWithProgress": { + "type": "number" + }, + "xp": { + "type": "integer" + }, + "xpCurrent": { + "type": "integer" + }, + "xpForNext": { + "type": "integer" + } + } + }, + "models.SkillToolsResult": { + "type": "object", + "properties": { + "highest_priority_tool": { + "$ref": "#/definitions/models.StrippedItem" + }, + "tools": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.Skills": { + "type": "object", + "properties": { + "averageSkillLevel": { + "type": "number" + }, + "averageSkillLevelWithProgress": { + "type": "number" + }, + "skills": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.Skill" + } + }, + "totalSkillXp": { + "type": "integer" + } + } + }, + "models.SkillsOutput": { + "type": "object", + "properties": { + "enchanting": { + "$ref": "#/definitions/models.EnchantingOutput" + }, + "farming": { + "$ref": "#/definitions/models.FarmingOutput" + }, + "fishing": { + "$ref": "#/definitions/models.FishingOuput" + }, + "mining": { + "$ref": "#/definitions/models.MiningOutput" + } + } + }, + "models.SlayerData": { + "type": "object", + "properties": { + "kills": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "level": { + "$ref": "#/definitions/models.SlayerLevel" + }, + "name": { + "type": "string" + }, + "texture": { + "type": "string" + } + } + }, + "models.SlayerLevel": { + "type": "object", + "properties": { + "level": { + "type": "integer" + }, + "maxLevel": { + "type": "integer" + }, + "maxed": { + "type": "boolean" + }, + "xp": { + "type": "integer" + }, + "xpForNext": { + "type": "integer" + } + } + }, + "models.SlayersOutput": { + "type": "object", + "properties": { + "data": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.SlayerData" + } + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "totalSlayerExp": { + "type": "integer" + } + } + }, + "models.StatsInfo": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "models.StatsOutput": { + "type": "object", + "properties": { + "apiSettings": { + "type": "object", + "additionalProperties": { + "type": "boolean" + } + }, + "bank": { + "type": "number" + }, + "displayName": { + "type": "string" + }, + "fairySouls": { + "$ref": "#/definitions/models.FairySouls" + }, + "joined": { + "type": "integer" + }, + "members": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MemberStats" + } + }, + "personalBank": { + "type": "number" + }, + "profile_cute_name": { + "type": "string" + }, + "profile_id": { + "type": "string" + }, + "profiles": { + "type": "array", + "items": { + "$ref": "#/definitions/models.ProfilesStats" + } + }, + "purse": { + "type": "number" + }, + "rank": { + "$ref": "#/definitions/models.RankOutput" + }, + "selected": { + "type": "boolean" + }, + "skills": { + "$ref": "#/definitions/models.Skills" + }, + "skyblock_level": { + "$ref": "#/definitions/models.Skill" + }, + "social": { + "$ref": "#/definitions/skycrypttypes.SocialMediaLinks" + }, + "username": { + "type": "string" + }, + "uuid": { + "type": "string" + } + } + }, + "models.StrippedItem": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + }, + "display_name": { + "type": "string" + }, + "isInactive": { + "type": "boolean" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "recombobulated": { + "type": "boolean" + }, + "shiny": { + "type": "boolean" + }, + "source": { + "type": "string" + }, + "texture_pack": { + "type": "string" + }, + "texture_path": { + "type": "string" + }, + "wiki": { + "$ref": "#/definitions/models.WikipediaLinks" + } + } + }, + "models.StrippedPet": { + "type": "object", + "properties": { + "active": { + "type": "boolean" + }, + "display_name": { + "type": "string" + }, + "level": { + "type": "integer" + }, + "lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "rarity": { + "type": "string" + }, + "stats": { + "type": "object", + "additionalProperties": { + "type": "number", + "format": "float64" + } + }, + "texture_path": { + "type": "string" + }, + "type": { + "type": "string" + } + } + }, + "models.TrophyFish": { + "type": "object", + "properties": { + "bronze": { + "type": "integer" + }, + "description": { + "type": "string" + }, + "diamond": { + "type": "integer" + }, + "gold": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "maxed": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "silver": { + "type": "integer" + }, + "texture": { + "type": "string" + } + } + }, + "models.TrophyFishOutput": { + "type": "object", + "properties": { + "stage": { + "$ref": "#/definitions/models.TrophyFishStage" + }, + "totalCaught": { + "type": "integer" + }, + "trophyFish": { + "type": "array", + "items": { + "$ref": "#/definitions/models.TrophyFish" + } + } + } + }, + "models.TrophyFishProgress": { + "type": "object", + "properties": { + "caught": { + "type": "integer" + }, + "tier": { + "type": "string" + }, + "total": { + "type": "integer" + } + } + }, + "models.TrophyFishStage": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "progress": { + "type": "array", + "items": { + "$ref": "#/definitions/models.TrophyFishProgress" + } + } + } + }, + "models.VisitorRarityData": { + "type": "object", + "properties": { + "completed": { + "type": "integer" + }, + "maxUnique": { + "type": "integer" + }, + "unique": { + "type": "integer" + }, + "visited": { + "type": "integer" + } + } + }, + "models.Visitors": { + "type": "object", + "properties": { + "completed": { + "type": "integer" + }, + "uniqueVisitors": { + "type": "integer" + }, + "visited": { + "type": "integer" + }, + "visitors": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/models.VisitorRarityData" + } + } + } + }, + "models.WeaponsResult": { + "type": "object", + "properties": { + "highest_priority_weapon": { + "$ref": "#/definitions/models.StrippedItem" + }, + "weapons": { + "type": "array", + "items": { + "$ref": "#/definitions/models.StrippedItem" + } + } + } + }, + "models.WikipediaLinks": { + "type": "object", + "properties": { + "fandom": { + "type": "string" + }, + "official": { + "type": "string" + } + } + }, + "skycrypttypes.Display": { + "type": "object", + "properties": { + "Lore": { + "type": "array", + "items": { + "type": "string" + } + }, + "Name": { + "type": "string" + }, + "color": { + "type": "integer" + } + } + }, + "skycrypttypes.ExtraAttributes": { + "type": "object", + "properties": { + "ability_scroll": { + "type": "array", + "items": { + "type": "string" + } + }, + "additional_coins": { + "type": "integer" + }, + "artOfPeaceApplied": { + "type": "integer" + }, + "art_of_war_count": { + "type": "integer" + }, + "attributes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "auction": { + "type": "integer" + }, + "bid": { + "type": "integer" + }, + "boosters": { + "type": "array", + "items": { + "type": "string" + } + }, + "champion_combat_xp": { + "type": "number" + }, + "compact_blocks": { + "type": "integer" + }, + "divan_powder_coating": { + "type": "integer" + }, + "donated_museum": { + "type": "boolean" + }, + "drill_part_engine": { + "type": "string" + }, + "drill_part_fuel_tank": { + "type": "string" + }, + "drill_part_upgrade_module": { + "type": "string" + }, + "dungeon_item_level": {}, + "dye_item": { + "type": "string" + }, + "edition": { + "type": "integer" + }, + "enchantments": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "ethermerge": { + "type": "integer" + }, + "expertise_kills": { + "type": "integer" + }, + "farmed_cultivating": { + "type": "integer" + }, + "farming_for_dummies_count": { + "type": "integer" + }, + "gems": { + "type": "object", + "additionalProperties": {} + }, + "hecatomb_s_runs": { + "type": "integer" + }, + "hook": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "hot_potato_count": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "is_shiny": { + "type": "boolean" + }, + "item_tier": { + "type": "integer" + }, + "jalapeno_count": { + "type": "integer" + }, + "line": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "mana_disintegrator_count": { + "type": "integer" + }, + "model": { + "type": "string" + }, + "modifier": { + "type": "string" + }, + "new_year_cake_bag_data": { + "type": "array", + "items": { + "type": "integer" + } + }, + "new_year_cake_bag_years": { + "type": "array", + "items": { + "type": "integer" + } + }, + "new_years_cake": { + "type": "integer" + }, + "party_hat_color": { + "type": "string" + }, + "party_hat_emoji": { + "type": "string" + }, + "petInfo": { + "type": "string" + }, + "pickonimbus_durability": { + "type": "integer" + }, + "polarvoid": { + "type": "integer" + }, + "power_ability_scroll": { + "type": "string" + }, + "price": { + "type": "integer" + }, + "rarity_upgrades": { + "type": "integer" + }, + "runes": { + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "sack_pss": { + "type": "integer" + }, + "sinker": { + "$ref": "#/definitions/skycrypttypes.RodPart" + }, + "skin": { + "type": "string" + }, + "talisman_enrichment": { + "type": "string" + }, + "thunder_charge": { + "type": "integer" + }, + "timestamp": {}, + "tuned_transmission": { + "type": "integer" + }, + "upgrade_level": {}, + "uuid": { + "type": "string" + }, + "winning_bid": { + "type": "integer" + }, + "wood_singularity_count": { + "type": "integer" + } + } + }, + "skycrypttypes.Item": { + "type": "object", + "properties": { + "Count": { + "type": "integer" + }, + "Damage": { + "type": "integer" + }, + "containsItems": { + "type": "array", + "items": { + "$ref": "#/definitions/skycrypttypes.Item" + } + }, + "id": { + "type": "integer" + }, + "tag": { + "$ref": "#/definitions/skycrypttypes.Tag" + } + } + }, + "skycrypttypes.Properties": { + "type": "object", + "properties": { + "textures": { + "type": "array", + "items": { + "$ref": "#/definitions/skycrypttypes.Texture" + } + } + } + }, + "skycrypttypes.RodPart": { + "type": "object", + "properties": { + "donated_museum": { + "type": "boolean" + }, + "part": { + "type": "string" + } + } + }, + "skycrypttypes.SkullOwner": { + "type": "object", + "properties": { + "Id": { + "type": "string" + }, + "Properties": { + "$ref": "#/definitions/skycrypttypes.Properties" + } + } + }, + "skycrypttypes.SocialMediaLinks": { + "type": "object", + "properties": { + "DISCORD": { + "type": "string" + }, + "HYPIXEL": { + "type": "string" + }, + "TWITCH": { + "type": "string" + }, + "TWITTER": { + "type": "string" + } + } + }, + "skycrypttypes.Tag": { + "type": "object", + "properties": { + "ExtraAttributes": { + "description": "HideFlags int `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"`\nUnbreakable int `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"`\nEnchantments []Enchantment `nbt:\"ench\" json:\"ench,omitempty\"`", + "allOf": [ + { + "$ref": "#/definitions/skycrypttypes.ExtraAttributes" + } + ] + }, + "SkullOwner": { + "$ref": "#/definitions/skycrypttypes.SkullOwner" + }, + "display": { + "$ref": "#/definitions/skycrypttypes.Display" + } + } + }, + "skycrypttypes.Texture": { + "type": "object", + "properties": { + "Signature": { + "type": "string" + }, + "Value": { + "type": "string" + } + } + } + } +} \ No newline at end of file diff --git a/docs/swagger.yaml b/docs/swagger.yaml new file mode 100644 index 000000000..2e515ece0 --- /dev/null +++ b/docs/swagger.yaml @@ -0,0 +1,2556 @@ +definitions: + models.ArmorResult: + properties: + armor: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + set_name: + type: string + set_rarity: + type: string + stats: + additionalProperties: + format: float64 + type: number + type: object + type: object + models.BestRunOutput: + properties: + damage_dealt: + type: number + damage_mitigated: + type: number + deaths: + type: integer + dungeon_class: + type: string + elapsed_time: + type: integer + grade: + type: string + mobs_killed: + type: integer + score_bonus: + type: integer + score_exploration: + type: integer + score_skill: + type: integer + score_speed: + type: integer + secrets_found: + type: integer + timestamp: + type: integer + type: object + models.BestiaryCategoryOutput: + properties: + mobs: + items: + $ref: '#/definitions/models.BestiaryMobOutput' + type: array + mobsMaxed: + type: integer + mobsUnlocked: + type: integer + name: + type: string + texture: + type: string + type: object + models.BestiaryMobOutput: + properties: + kills: + type: integer + maxKills: + type: integer + maxTier: + type: integer + name: + type: string + nextTierKills: + type: integer + texture: + type: string + tier: + type: integer + type: object + models.BestiaryOutput: + properties: + categories: + additionalProperties: + $ref: '#/definitions/models.BestiaryCategoryOutput' + type: object + familiesCompleted: + type: integer + familiesUnlocked: + type: integer + familyTiers: + type: integer + level: + type: number + maxFamilyTiers: + type: integer + maxLevel: + type: number + totalFamilies: + type: integer + type: object + models.ClassData: + properties: + classAverage: + type: number + classAverageWithProgress: + type: number + classes: + additionalProperties: + $ref: '#/definitions/models.Skill' + type: object + selectedClass: + type: string + totalClassExp: + type: number + type: object + models.CollectionCategory: + properties: + items: + items: + $ref: '#/definitions/models.CollectionCategoryItem' + type: array + maxTiers: + type: integer + name: + type: string + texture: + type: string + totalTiers: + type: integer + type: object + models.CollectionCategoryItem: + properties: + amount: + type: integer + amounts: + items: + $ref: '#/definitions/models.CollectionCategoryItemAmount' + type: array + id: + type: string + maxTier: + type: integer + name: + type: string + texture: + type: string + tier: + type: integer + totalAmount: + type: integer + type: object + models.CollectionCategoryItemAmount: + properties: + amount: + type: integer + username: + type: string + type: object + models.CollectionsOutput: + properties: + categories: + additionalProperties: + $ref: '#/definitions/models.CollectionCategory' + type: object + maxedCollections: + type: integer + totalCollections: + type: integer + type: object + models.Commissions: + properties: + completions: + type: integer + milestone: + type: integer + type: object + models.Contest: + properties: + amount: + type: integer + collected: + type: integer + medals: + additionalProperties: + type: integer + type: object + name: + type: string + texture: + type: string + type: object + models.Corpse: + properties: + amount: + type: integer + name: + type: string + texture_path: + type: string + type: object + models.Corpses: + properties: + corpses: + items: + $ref: '#/definitions/models.Corpse' + type: array + found: + type: integer + max: + type: integer + type: object + models.CrimsonIsleDojo: + properties: + challenges: + items: + $ref: '#/definitions/models.CrimsonIsleDojoChallenge' + type: array + totalPoints: + type: integer + type: object + models.CrimsonIsleDojoChallenge: + properties: + id: + type: string + name: + type: string + points: + type: integer + rank: + type: string + texture: + type: string + time: + type: integer + type: object + models.CrimsonIsleFactions: + properties: + barbariansReputation: + type: integer + magesReputation: + type: integer + selectedFaction: + type: string + type: object + models.CrimsonIsleKuudra: + properties: + tiers: + items: + $ref: '#/definitions/models.CrimsonIsleKuudraTier' + type: array + totalKills: + type: integer + type: object + models.CrimsonIsleKuudraTier: + properties: + id: + type: string + kills: + type: integer + name: + type: string + texture: + type: string + type: object + models.CrimsonIsleOutput: + properties: + dojo: + $ref: '#/definitions/models.CrimsonIsleDojo' + factions: + $ref: '#/definitions/models.CrimsonIsleFactions' + kuudra: + $ref: '#/definitions/models.CrimsonIsleKuudra' + type: object + models.CropMilestone: + properties: + level: + $ref: '#/definitions/models.Skill' + name: + type: string + texture: + type: string + type: object + models.CropUpgrade: + properties: + level: + $ref: '#/definitions/models.Skill' + name: + type: string + texture: + type: string + type: object + models.CrystalHollows: + properties: + crystalHollowsLastAccess: + type: integer + nucleusRuns: + type: integer + progress: + $ref: '#/definitions/models.CrystalNucleusRuns' + type: object + models.CrystalNucleusRuns: + properties: + crystals: + additionalProperties: + type: string + type: object + parts: + additionalProperties: + type: string + type: object + type: object + models.DungeonFloorStats: + properties: + best_score: + type: number + fastest_time: + type: number + fastest_time_s: + type: number + fastest_time_s_plus: + type: number + milestone_completions: + type: number + mobs_killed: + type: number + most_damage: + $ref: '#/definitions/models.MostDamageOutput' + most_healing: + type: number + most_mobs_killed: + type: number + tier_completions: + type: number + times_played: + type: number + watcher_kills: + type: number + type: object + models.DungeonStatsOutput: + properties: + bloodMobKills: + type: integer + highestFloorBeatenMaster: + type: integer + highestFloorBeatenNormal: + type: integer + secrets: + $ref: '#/definitions/models.SecretsOutput' + type: object + models.DungeonsOutput: + properties: + catacombs: + items: + $ref: '#/definitions/models.FormattedDungeonFloor' + type: array + classes: + $ref: '#/definitions/models.ClassData' + level: + $ref: '#/definitions/models.Skill' + master_catacombs: + items: + $ref: '#/definitions/models.FormattedDungeonFloor' + type: array + stats: + $ref: '#/definitions/models.DungeonStatsOutput' + type: object + models.EmbedData: + properties: + bank: + type: number + displayName: + type: string + dungeons: + $ref: '#/definitions/models.EmbedDataDungeons' + game_mode: + type: string + joined: + type: integer + networth: + additionalProperties: + format: float64 + type: number + type: object + profile_cute_name: + type: string + profile_id: + type: string + purse: + type: number + skills: + $ref: '#/definitions/models.EmbedDataSkills' + skyblock_level: + type: number + slayers: + $ref: '#/definitions/models.EmbedDataSlayers' + username: + type: string + uuid: + type: string + type: object + models.EmbedDataDungeons: + properties: + classAverage: + type: number + classes: + additionalProperties: + type: integer + type: object + dungeoneering: + type: number + type: object + models.EmbedDataSkills: + properties: + skillAverage: + type: number + skills: + additionalProperties: + type: integer + type: object + type: object + models.EmbedDataSlayers: + properties: + slayers: + additionalProperties: + type: integer + type: object + xp: + type: number + type: object + models.EnchantingGame: + properties: + attempts: + type: integer + bestScore: + type: integer + claims: + type: integer + name: + type: string + texture: + type: string + type: object + models.EnchantingGameData: + properties: + name: + type: string + stats: + $ref: '#/definitions/models.EnchantingGameStats' + type: object + models.EnchantingGameStats: + properties: + bonusClicks: + type: integer + games: + items: + $ref: '#/definitions/models.EnchantingGame' + type: array + lastAttempt: + type: integer + lastClaimed: + type: integer + type: object + models.EnchantingOutput: + properties: + data: + additionalProperties: + $ref: '#/definitions/models.EnchantingGameData' + type: object + unlocked: + type: boolean + type: object + models.EquipmentResult: + properties: + equipment: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + stats: + additionalProperties: + format: float64 + type: number + type: object + type: object + models.FairySouls: + properties: + found: + type: integer + total: + type: integer + type: object + models.FarmingOutput: + properties: + contests: + additionalProperties: + $ref: '#/definitions/models.Contest' + type: object + contestsAttended: + type: integer + copper: + type: integer + medals: + additionalProperties: + $ref: '#/definitions/models.Medal' + type: object + pelts: + type: integer + tools: + $ref: '#/definitions/models.SkillToolsResult' + uniqueGolds: + type: integer + type: object + models.FishingOuput: + properties: + itemsFished: + type: integer + kills: + items: + $ref: '#/definitions/models.Kill' + type: array + seaCreaturesFished: + type: integer + shredderBait: + type: integer + shredderFished: + type: integer + tools: + $ref: '#/definitions/models.SkillToolsResult' + treasure: + type: integer + treasureLarge: + type: integer + trophyFish: + $ref: '#/definitions/models.TrophyFishOutput' + type: object + models.ForgeOutput: + properties: + duration: + type: number + endingTime: + type: integer + id: + type: string + name: + type: string + slot: + type: integer + startingTime: + type: integer + type: object + models.FormattedDungeonFloor: + properties: + best_run: + $ref: '#/definitions/models.BestRunOutput' + name: + type: string + stats: + $ref: '#/definitions/models.DungeonFloorStats' + texture: + type: string + type: object + models.Fossil: + properties: + found: + type: boolean + name: + type: string + texture_path: + type: string + type: object + models.Fossils: + properties: + fossils: + items: + $ref: '#/definitions/models.Fossil' + type: array + found: + type: integer + max: + type: integer + type: object + models.Garden: + properties: + composter: + additionalProperties: + type: integer + type: object + cropMilestones: + items: + $ref: '#/definitions/models.CropMilestone' + type: array + cropUpgrades: + items: + $ref: '#/definitions/models.CropUpgrade' + type: array + level: + $ref: '#/definitions/models.Skill' + plot: + $ref: '#/definitions/models.PlotLayout' + visitors: + $ref: '#/definitions/models.Visitors' + type: object + models.Gear: + properties: + armor: + $ref: '#/definitions/models.ArmorResult' + equipment: + $ref: '#/definitions/models.EquipmentResult' + wardrobe: + items: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + type: array + weapons: + $ref: '#/definitions/models.WeaponsResult' + type: object + models.GetMagicalPowerOutput: + properties: + abiphone: + type: integer + accessories: + type: integer + hegemony: + properties: + amount: + type: integer + rarity: + type: string + type: object + rarities: + $ref: '#/definitions/models.GetMagicalPowerRarities' + riftPrism: + type: integer + total: + type: integer + type: object + models.GetMagicalPowerRarities: + additionalProperties: + properties: + amount: + type: integer + magicalPower: + type: integer + type: object + type: object + models.GetMissingAccessoresOutput: + properties: + accessories: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + enrichments: + additionalProperties: + type: integer + type: object + magicalPower: + $ref: '#/definitions/models.GetMagicalPowerOutput' + missing: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + recombobulated: + type: integer + selectedPower: + type: string + stats: + additionalProperties: + format: float64 + type: number + type: object + total: + type: integer + totalRecombobulated: + type: integer + unique: + type: integer + upgrades: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + type: object + models.GlaciteTunnels: + properties: + corpses: + $ref: '#/definitions/models.Corpses' + fossilDust: + type: number + fossils: + $ref: '#/definitions/models.Fossils' + mineshaftsEntered: + type: integer + type: object + models.HotmTokens: + properties: + available: + type: integer + spent: + type: integer + total: + type: integer + type: object + models.Kill: + properties: + amount: + type: integer + id: + type: string + name: + type: string + texture: + type: string + type: object + models.Medal: + properties: + amount: + type: integer + total: + type: integer + type: object + models.MemberStats: + properties: + removed: + type: boolean + username: + type: string + uuid: + type: string + type: object + models.MiningOutput: + properties: + commissions: + $ref: '#/definitions/models.Commissions' + crystalHollows: + $ref: '#/definitions/models.CrystalHollows' + forge: + items: + $ref: '#/definitions/models.ForgeOutput' + type: array + glaciteTunnels: + $ref: '#/definitions/models.GlaciteTunnels' + hotm: + items: + $ref: '#/definitions/models.ProcessedItem' + type: array + level: + $ref: '#/definitions/models.Skill' + peak_of_the_mountain: + $ref: '#/definitions/models.PeakOfTheMountain' + powder: + $ref: '#/definitions/models.PowderOutput' + selected_pickaxe_ability: + type: string + tokens: + $ref: '#/definitions/models.HotmTokens' + tools: + $ref: '#/definitions/models.SkillToolsResult' + type: object + models.Minion: + properties: + maxTier: + type: integer + name: + type: string + texture: + type: string + tiers: + items: + type: integer + type: array + type: object + models.MinionCategory: + properties: + maxedMinions: + type: integer + maxedTiers: + type: integer + minions: + items: + $ref: '#/definitions/models.Minion' + type: array + texture: + type: string + totalMinions: + type: integer + totalTiers: + type: integer + type: object + models.MinionSlotsOutput: + properties: + bonusSlots: + type: integer + current: + type: integer + next: + type: integer + type: object + models.MinionsOutput: + properties: + maxedMinions: + type: integer + maxedTiers: + type: integer + minions: + additionalProperties: + $ref: '#/definitions/models.MinionCategory' + type: object + minionsSlots: + $ref: '#/definitions/models.MinionSlotsOutput' + totalMinions: + type: integer + totalTiers: + type: integer + type: object + models.MiscAuctions: + properties: + bids: + type: number + created: + type: number + fees: + type: number + gold_earned: + type: number + gold_spent: + type: number + highest_bid: + type: number + no_bids: + type: number + total_bought: + additionalProperties: + format: float64 + type: number + type: object + total_sold: + additionalProperties: + format: float64 + type: number + type: object + won: + type: number + type: object + models.MiscDamage: + properties: + highest_critical_damage: + type: number + type: object + models.MiscDragons: + properties: + deaths: + additionalProperties: + format: float64 + type: number + type: object + ender_crystals_destroyed: + type: integer + fastest_kill: + additionalProperties: + format: float64 + type: number + type: object + last_hits: + additionalProperties: + format: float64 + type: number + type: object + most_damage: + additionalProperties: + format: float64 + type: number + type: object + type: object + models.MiscEndstoneProtector: + properties: + deaths: + type: integer + kills: + type: integer + type: object + models.MiscEssence: + properties: + amount: + type: integer + name: + type: string + texture: + type: string + type: object + models.MiscGifts: + properties: + given: + type: integer + received: + type: integer + type: object + models.MiscKill: + properties: + amount: + type: integer + name: + type: string + type: object + models.MiscKills: + properties: + deaths: + items: + $ref: '#/definitions/models.MiscKill' + type: array + kills: + items: + $ref: '#/definitions/models.MiscKill' + type: array + total_deaths: + type: integer + total_kills: + type: integer + type: object + models.MiscMythologicalEvent: + properties: + burrows_chains_complete: + additionalProperties: + format: float64 + type: number + type: object + burrows_dug_combat: + additionalProperties: + format: float64 + type: number + type: object + burrows_dug_next: + additionalProperties: + format: float64 + type: number + type: object + burrows_dug_treasure: + additionalProperties: + format: float64 + type: number + type: object + kills: + type: number + type: object + models.MiscOutput: + properties: + auctions: + $ref: '#/definitions/models.MiscAuctions' + claimed_items: + additionalProperties: + format: int64 + type: integer + type: object + damage: + $ref: '#/definitions/models.MiscDamage' + dragons: + $ref: '#/definitions/models.MiscDragons' + endstone_protector: + $ref: '#/definitions/models.MiscEndstoneProtector' + essence: + items: + $ref: '#/definitions/models.MiscEssence' + type: array + gifts: + $ref: '#/definitions/models.MiscGifts' + kills: + $ref: '#/definitions/models.MiscKills' + mythological_event: + $ref: '#/definitions/models.MiscMythologicalEvent' + pet_milestones: + additionalProperties: + $ref: '#/definitions/models.MiscPetMilestone' + type: object + profile_upgrades: + $ref: '#/definitions/models.MiscProfileUpgrades' + season_of_jerry: + $ref: '#/definitions/models.MiscSeasonOfJerry' + uncategorized: + additionalProperties: {} + type: object + type: object + models.MiscPetMilestone: + properties: + amount: + type: integer + progress: + type: string + rarity: + type: string + total: + type: integer + type: object + models.MiscProfileUpgrades: + additionalProperties: + type: integer + type: object + models.MiscSeasonOfJerry: + properties: + most_cannonballs_hit: + type: integer + most_damage_dealt: + type: integer + most_magma_damage_dealt: + type: integer + most_snowballs_hit: + type: integer + type: object + models.MostDamageOutput: + properties: + damage: + type: number + type: + type: string + type: object + models.OutputPets: + properties: + amount: + type: integer + amountSkins: + type: integer + missing: + items: + $ref: '#/definitions/models.StrippedPet' + type: array + petScore: + $ref: '#/definitions/models.PetScore' + pets: + items: + $ref: '#/definitions/models.StrippedPet' + type: array + total: + type: integer + totalCandyUsed: + type: integer + totalPetExp: + type: integer + type: object + models.PeakOfTheMountain: + properties: + level: + type: integer + max_level: + type: integer + type: object + models.PetScore: + properties: + amount: + type: integer + reward: + items: + $ref: '#/definitions/models.PetScoreReward' + type: array + stats: + additionalProperties: + format: float64 + type: number + type: object + type: object + models.PetScoreReward: + properties: + bonus: + type: integer + score: + type: integer + unlocked: + type: boolean + type: object + models.PlayerResolve: + properties: + username: + type: string + uuid: + type: string + type: object + models.PlotLayout: + properties: + barnSkin: + type: string + layout: + items: + $ref: '#/definitions/models.ProcessedItem' + type: array + total: + type: integer + unlocked: + type: integer + type: object + models.PowderAmount: + properties: + available: + type: integer + spent: + type: integer + total: + type: integer + type: object + models.PowderOutput: + properties: + gemstone: + $ref: '#/definitions/models.PowderAmount' + glacite: + $ref: '#/definitions/models.PowderAmount' + mithril: + $ref: '#/definitions/models.PowderAmount' + type: object + models.ProcessedItem: + properties: + Count: + type: integer + Damage: + type: integer + categories: + items: + type: string + type: array + containsItems: + items: + $ref: '#/definitions/models.ProcessedItem' + type: array + display_name: + type: string + id: + type: string + isInactive: + type: boolean + lore: + items: + type: string + type: array + rarity: + type: string + recombobulated: + type: boolean + shiny: + type: boolean + source: + type: string + tag: + $ref: '#/definitions/skycrypttypes.Tag' + texture_pack: + type: string + texture_path: + type: string + wiki: + $ref: '#/definitions/models.WikipediaLinks' + type: object + models.ProcessingError: + properties: + error: + type: string + message: + type: string + status: + type: string + type: object + models.ProfilesStats: + properties: + cute_name: + type: string + game_mode: + type: string + profile_id: + type: string + selected: + type: boolean + type: object + models.RankOutput: + properties: + plusColor: + type: string + plusText: + type: string + rankColor: + type: string + rankText: + type: string + type: object + models.RiftCastleOutput: + properties: + grubberStacks: + type: integer + maxBurgers: + type: integer + type: object + models.RiftEnigmaOutput: + properties: + souls: + type: integer + totalSouls: + type: integer + type: object + models.RiftMotesOutput: + properties: + lifetime: + type: integer + orbs: + type: integer + purse: + type: integer + type: object + models.RiftOutput: + properties: + armor: + $ref: '#/definitions/models.ArmorResult' + castle: + $ref: '#/definitions/models.RiftCastleOutput' + enigma: + $ref: '#/definitions/models.RiftEnigmaOutput' + equipment: + $ref: '#/definitions/models.EquipmentResult' + motes: + $ref: '#/definitions/models.RiftMotesOutput' + porhtal: + $ref: '#/definitions/models.RiftPortalsOutput' + timecharms: + $ref: '#/definitions/models.RiftTimecharmsOutput' + visits: + type: integer + type: object + models.RiftPorhtal: + properties: + name: + type: string + texture: + type: string + unlocked: + type: boolean + type: object + models.RiftPortalsOutput: + properties: + porhtals: + items: + $ref: '#/definitions/models.RiftPorhtal' + type: array + porhtalsFound: + type: integer + type: object + models.RiftTimecharms: + properties: + name: + type: string + texture: + type: string + unlocked: + type: boolean + unlockedAt: + type: integer + type: object + models.RiftTimecharmsOutput: + properties: + timecharms: + items: + $ref: '#/definitions/models.RiftTimecharms' + type: array + timecharmsFound: + type: integer + type: object + models.SecretsOutput: + properties: + found: + type: integer + secretsPerRun: + type: number + type: object + models.Skill: + properties: + level: + type: integer + levelCap: + type: integer + levelWithProgress: + type: number + maxLevel: + type: integer + maxed: + type: boolean + progress: + type: number + texture: + type: string + uncappedLevel: + type: integer + unlockableLevelWithProgress: + type: number + xp: + type: integer + xpCurrent: + type: integer + xpForNext: + type: integer + type: object + models.SkillToolsResult: + properties: + highest_priority_tool: + $ref: '#/definitions/models.StrippedItem' + tools: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + type: object + models.Skills: + properties: + averageSkillLevel: + type: number + averageSkillLevelWithProgress: + type: number + skills: + additionalProperties: + $ref: '#/definitions/models.Skill' + type: object + totalSkillXp: + type: integer + type: object + models.SkillsOutput: + properties: + enchanting: + $ref: '#/definitions/models.EnchantingOutput' + farming: + $ref: '#/definitions/models.FarmingOutput' + fishing: + $ref: '#/definitions/models.FishingOuput' + mining: + $ref: '#/definitions/models.MiningOutput' + type: object + models.SlayerData: + properties: + kills: + additionalProperties: + type: integer + type: object + level: + $ref: '#/definitions/models.SlayerLevel' + name: + type: string + texture: + type: string + type: object + models.SlayerLevel: + properties: + level: + type: integer + maxLevel: + type: integer + maxed: + type: boolean + xp: + type: integer + xpForNext: + type: integer + type: object + models.SlayersOutput: + properties: + data: + additionalProperties: + $ref: '#/definitions/models.SlayerData' + type: object + stats: + additionalProperties: + format: float64 + type: number + type: object + totalSlayerExp: + type: integer + type: object + models.StatsInfo: + additionalProperties: + type: integer + type: object + models.StatsOutput: + properties: + apiSettings: + additionalProperties: + type: boolean + type: object + bank: + type: number + displayName: + type: string + fairySouls: + $ref: '#/definitions/models.FairySouls' + joined: + type: integer + members: + items: + $ref: '#/definitions/models.MemberStats' + type: array + personalBank: + type: number + profile_cute_name: + type: string + profile_id: + type: string + profiles: + items: + $ref: '#/definitions/models.ProfilesStats' + type: array + purse: + type: number + rank: + $ref: '#/definitions/models.RankOutput' + selected: + type: boolean + skills: + $ref: '#/definitions/models.Skills' + skyblock_level: + $ref: '#/definitions/models.Skill' + social: + $ref: '#/definitions/skycrypttypes.SocialMediaLinks' + username: + type: string + uuid: + type: string + type: object + models.StrippedItem: + properties: + Count: + type: integer + containsItems: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + display_name: + type: string + isInactive: + type: boolean + lore: + items: + type: string + type: array + rarity: + type: string + recombobulated: + type: boolean + shiny: + type: boolean + source: + type: string + texture_pack: + type: string + texture_path: + type: string + wiki: + $ref: '#/definitions/models.WikipediaLinks' + type: object + models.StrippedPet: + properties: + active: + type: boolean + display_name: + type: string + level: + type: integer + lore: + items: + type: string + type: array + rarity: + type: string + stats: + additionalProperties: + format: float64 + type: number + type: object + texture_path: + type: string + type: + type: string + type: object + models.TrophyFish: + properties: + bronze: + type: integer + description: + type: string + diamond: + type: integer + gold: + type: integer + id: + type: string + maxed: + type: boolean + name: + type: string + silver: + type: integer + texture: + type: string + type: object + models.TrophyFishOutput: + properties: + stage: + $ref: '#/definitions/models.TrophyFishStage' + totalCaught: + type: integer + trophyFish: + items: + $ref: '#/definitions/models.TrophyFish' + type: array + type: object + models.TrophyFishProgress: + properties: + caught: + type: integer + tier: + type: string + total: + type: integer + type: object + models.TrophyFishStage: + properties: + name: + type: string + progress: + items: + $ref: '#/definitions/models.TrophyFishProgress' + type: array + type: object + models.VisitorRarityData: + properties: + completed: + type: integer + maxUnique: + type: integer + unique: + type: integer + visited: + type: integer + type: object + models.Visitors: + properties: + completed: + type: integer + uniqueVisitors: + type: integer + visited: + type: integer + visitors: + additionalProperties: + $ref: '#/definitions/models.VisitorRarityData' + type: object + type: object + models.WeaponsResult: + properties: + highest_priority_weapon: + $ref: '#/definitions/models.StrippedItem' + weapons: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + type: object + models.WikipediaLinks: + properties: + fandom: + type: string + official: + type: string + type: object + skycrypttypes.Display: + properties: + Lore: + items: + type: string + type: array + Name: + type: string + color: + type: integer + type: object + skycrypttypes.ExtraAttributes: + properties: + ability_scroll: + items: + type: string + type: array + additional_coins: + type: integer + art_of_war_count: + type: integer + artOfPeaceApplied: + type: integer + attributes: + additionalProperties: + type: integer + type: object + auction: + type: integer + bid: + type: integer + boosters: + items: + type: string + type: array + champion_combat_xp: + type: number + compact_blocks: + type: integer + divan_powder_coating: + type: integer + donated_museum: + type: boolean + drill_part_engine: + type: string + drill_part_fuel_tank: + type: string + drill_part_upgrade_module: + type: string + dungeon_item_level: {} + dye_item: + type: string + edition: + type: integer + enchantments: + additionalProperties: + type: integer + type: object + ethermerge: + type: integer + expertise_kills: + type: integer + farmed_cultivating: + type: integer + farming_for_dummies_count: + type: integer + gems: + additionalProperties: {} + type: object + hecatomb_s_runs: + type: integer + hook: + $ref: '#/definitions/skycrypttypes.RodPart' + hot_potato_count: + type: integer + id: + type: string + is_shiny: + type: boolean + item_tier: + type: integer + jalapeno_count: + type: integer + line: + $ref: '#/definitions/skycrypttypes.RodPart' + mana_disintegrator_count: + type: integer + model: + type: string + modifier: + type: string + new_year_cake_bag_data: + items: + type: integer + type: array + new_year_cake_bag_years: + items: + type: integer + type: array + new_years_cake: + type: integer + party_hat_color: + type: string + party_hat_emoji: + type: string + petInfo: + type: string + pickonimbus_durability: + type: integer + polarvoid: + type: integer + power_ability_scroll: + type: string + price: + type: integer + rarity_upgrades: + type: integer + runes: + additionalProperties: + type: integer + type: object + sack_pss: + type: integer + sinker: + $ref: '#/definitions/skycrypttypes.RodPart' + skin: + type: string + talisman_enrichment: + type: string + thunder_charge: + type: integer + timestamp: {} + tuned_transmission: + type: integer + upgrade_level: {} + uuid: + type: string + winning_bid: + type: integer + wood_singularity_count: + type: integer + type: object + skycrypttypes.Item: + properties: + Count: + type: integer + Damage: + type: integer + containsItems: + items: + $ref: '#/definitions/skycrypttypes.Item' + type: array + id: + type: integer + tag: + $ref: '#/definitions/skycrypttypes.Tag' + type: object + skycrypttypes.Properties: + properties: + textures: + items: + $ref: '#/definitions/skycrypttypes.Texture' + type: array + type: object + skycrypttypes.RodPart: + properties: + donated_museum: + type: boolean + part: + type: string + type: object + skycrypttypes.SkullOwner: + properties: + Id: + type: string + Properties: + $ref: '#/definitions/skycrypttypes.Properties' + type: object + skycrypttypes.SocialMediaLinks: + properties: + DISCORD: + type: string + HYPIXEL: + type: string + TWITCH: + type: string + TWITTER: + type: string + type: object + skycrypttypes.Tag: + properties: + ExtraAttributes: + allOf: + - $ref: '#/definitions/skycrypttypes.ExtraAttributes' + description: |- + HideFlags int `nbt:"HideFlags" json:"HideFlags,omitempty"` + Unbreakable int `nbt:"Unbreakable" json:"Unbreakable,omitempty"` + Enchantments []Enchantment `nbt:"ench" json:"ench,omitempty"` + SkullOwner: + $ref: '#/definitions/skycrypttypes.SkullOwner' + display: + $ref: '#/definitions/skycrypttypes.Display' + type: object + skycrypttypes.Texture: + properties: + Signature: + type: string + Value: + type: string + type: object +info: + contact: {} +paths: + /api/accessories/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns accessories for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.GetMissingAccessoresOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get accessories stats of a specified player + tags: + - accessories + /api/bestiary/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns bestiary for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.BestiaryOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get bestiary stats of a specified player + tags: + - bestiary + /api/collections/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns collections for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.CollectionsOutput' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get collections stats of a specified player + tags: + - collections + /api/crimson_isle/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns Crimson Isle stats for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.CrimsonIsleOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get Crimson Isle stats of a specified player + tags: + - crimson_isle + /api/dungeons/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns dungeons for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.DungeonsOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get dungeons stats of a specified player + tags: + - dungeons + /api/embed/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns embed data for the given user (UUID or username) and optional + profile ID + parameters: + - description: User UUID or username + in: path + name: uuid + required: true + type: string + - description: Profile ID (optional) + in: path + name: profileId + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.EmbedData' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get embed data for a specified player + tags: + - embed + /api/garden/{profileId}: + get: + consumes: + - application/json + description: Returns garden data for the given profile ID + parameters: + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.Garden' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get garden stats of a specified profile + tags: + - garden + /api/gear/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns gear for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.Gear' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get gear stats of a specified player + tags: + - gear + /api/head/{textureId}: + get: + description: Returns a PNG image of a head for the given texture ID + parameters: + - description: Texture ID + in: path + name: textureId + required: true + type: string + produces: + - image/png + responses: + "200": + description: PNG image of the head + schema: + type: file + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Failed to render head + schema: + type: string + summary: Render and return a head image + tags: + - head + /api/inventory/{uuid}/{profileId}/{inventoryId}: + get: + consumes: + - application/json + description: Returns inventory items for the given user, profile ID, and inventory + ID. Supports museum, search, and other inventories. + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + - description: Inventory ID (e.g., museum, search, or other inventory types) + in: path + name: inventoryId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get inventory items for a specified player + tags: + - inventory + /api/inventory/{uuid}/{profileId}/search/{search}: + get: + consumes: + - application/json + description: Returns inventory items for the given user, profile ID, and inventory + ID. Supports museum, search, and other inventories. + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + - description: Search string (required when inventoryId is 'search') + in: path + name: search + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + items: + $ref: '#/definitions/models.StrippedItem' + type: array + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get inventory items for a specified player + tags: + - inventory + /api/item/{itemId}: + get: + description: Returns a PNG image of an item for the given texture ID + parameters: + - description: Item ID + in: path + name: itemId + required: true + type: string + produces: + - image/png + responses: + "200": + description: PNG image of the item + schema: + type: file + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Failed to render item + schema: + type: string + summary: Render and return an item image + tags: + - item + /api/leather/{type}/{color}: + get: + description: Returns a PNG image of leather armor for the given type and color + parameters: + - description: Armor Type + in: path + name: type + required: true + type: string + - description: Armor Color + in: path + name: color + required: true + type: string + produces: + - image/png + responses: + "200": + description: PNG image of the leather armor + schema: + type: file + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Render and return a leather armor image + tags: + - leather + /api/minions/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns minions for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.MinionsOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get minions stats of a specified player + tags: + - minions + /api/misc/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns misc stats for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.MiscOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get misc stats of a specified player + tags: + - misc + /api/networth/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns networth for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + additionalProperties: true + type: object + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get networth of a specified player + tags: + - networth + /api/pets/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns pets for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.OutputPets' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get pets stats of a specified player + tags: + - pets + /api/playerStats/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns player stats for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + additionalProperties: + $ref: '#/definitions/models.StatsInfo' + type: object + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get player stats of a specified player + tags: + - playerStats + /api/potion/{type}/{color}: + get: + description: Returns a PNG image of a potion for the given type and color + parameters: + - description: Potion Type + in: path + name: type + required: true + type: string + - description: Potion Color + in: path + name: color + required: true + type: string + produces: + - image/png + responses: + "200": + description: PNG image of the potion + schema: + type: file + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Render and return a potion image + tags: + - potion + /api/rift/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns rift data for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.RiftOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get rift stats of a specified player + tags: + - rift + /api/skills/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns skills for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.SkillsOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get skills stats of a specified player + tags: + - skills + /api/slayer/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns slayer statistics for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.SlayersOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get slayer stats of a specified player + tags: + - slayers + /api/stats/{uuid}/{profileId}: + get: + consumes: + - application/json + description: Returns stats for the given user and profile ID + parameters: + - description: User UUID + in: path + name: uuid + required: true + type: string + - description: Profile ID + in: path + name: profileId + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.StatsOutput' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + "500": + description: Internal Server Error + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get stats of a specified player + tags: + - stats + /api/username/{uuid}: + get: + consumes: + - application/json + description: Returns the username associated with the given UUID + parameters: + - description: UUID + in: path + name: uuid + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.PlayerResolve' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get username for a specified UUID + tags: + - username + /api/uuid/{username}: + get: + consumes: + - application/json + description: Returns the UUID associated with the given username + parameters: + - description: Username + in: path + name: username + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/models.PlayerResolve' + "400": + description: Bad Request + schema: + $ref: '#/definitions/models.ProcessingError' + summary: Get UUID for a specified username + tags: + - uuid +swagger: "2.0" diff --git a/go.mod b/go.mod index e39cf29f1..6911367d5 100644 --- a/go.mod +++ b/go.mod @@ -4,10 +4,12 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 github.com/go-git/go-git/v5 v5.16.2 - github.com/gofiber/fiber/v2 v2.52.8 + github.com/gofiber/fiber/v2 v2.52.9 github.com/joho/godotenv v1.5.1 + github.com/swaggo/swag v1.16.4 + github.com/yokeTH/gofiber-scalar v0.1.1 ) // replace github.com/DuckySoLucky/SkyCrypt-Types => ../SkyCrypt-Types @@ -15,6 +17,7 @@ require ( require ( dario.cat/mergo v1.0.0 // indirect + github.com/KyleBanks/depth v1.2.1 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect github.com/ProtonMail/go-crypto v1.1.6 // indirect github.com/cespare/xxhash/v2 v2.1.2 // indirect @@ -24,36 +27,52 @@ require ( github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.6.2 // indirect + github.com/go-openapi/jsonpointer v0.22.0 // indirect + github.com/go-openapi/jsonreference v0.21.1 // indirect + github.com/go-openapi/spec v0.21.0 // indirect + github.com/go-openapi/swag v0.25.0 // indirect + github.com/go-openapi/swag/cmdutils v0.25.0 // indirect + github.com/go-openapi/swag/conv v0.25.0 // indirect + github.com/go-openapi/swag/fileutils v0.25.0 // indirect + github.com/go-openapi/swag/jsonname v0.25.0 // indirect + github.com/go-openapi/swag/jsonutils v0.25.0 // indirect + github.com/go-openapi/swag/loading v0.25.0 // indirect + github.com/go-openapi/swag/mangling v0.25.0 // indirect + github.com/go-openapi/swag/netutils v0.25.0 // indirect + github.com/go-openapi/swag/stringutils v0.25.0 // indirect + github.com/go-openapi/swag/typeutils v0.25.0 // indirect + github.com/go-openapi/swag/yamlutils v0.25.0 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect - github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pjbgf/sha1cd v0.3.2 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/skeema/knownhosts v1.3.1 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect - golang.org/x/crypto v0.37.0 // indirect - golang.org/x/net v0.39.0 // indirect + go.yaml.in/yaml/v3 v3.0.4 // indirect + golang.org/x/crypto v0.42.0 // indirect + golang.org/x/net v0.44.0 // indirect + golang.org/x/tools v0.37.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect ) require ( github.com/Tnze/go-mc v1.20.2 - github.com/andybalholm/brotli v1.1.0 // indirect + github.com/andybalholm/brotli v1.2.0 // indirect github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.6.0 // indirect github.com/json-iterator/go v1.1.12 github.com/kettek/apng v0.0.0-20220823221153-ff692776a607 - github.com/klauspost/compress v1.17.9 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect + github.com/klauspost/compress v1.18.0 // indirect + github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-runewidth v0.0.16 // indirect - github.com/rivo/uniseg v0.2.0 // indirect + github.com/mattn/go-runewidth v0.0.17 // indirect + github.com/rivo/uniseg v0.4.7 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasthttp v1.51.0 // indirect - github.com/valyala/tcplisten v1.0.0 // indirect + github.com/valyala/fasthttp v1.66.0 // indirect golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 - golang.org/x/sys v0.32.0 // indirect - golang.org/x/text v0.26.0 + golang.org/x/sys v0.36.0 // indirect + golang.org/x/text v0.29.0 ) diff --git a/go.sum b/go.sum index 53a3ce712..17433de95 100644 --- a/go.sum +++ b/go.sum @@ -1,34 +1,22 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.3 h1:cCuLooqGJ7eN+Te4XP80M8on8fm8NEyZ2RPBOijweqY= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.3/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.4 h1:DKT6w8JRmrqLTUswfP+e+894Tz6e1P0VTWsU2FTEELM= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.4/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.5 h1:OFt/+C8LrVOs4gORzWeZxRxzmHrdPqxNwjcm9TShEmU= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.5/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 h1:BnxKmMV0SLBk6DIr7zZw8sVFzqd6AyHj8bSAtLMXr70= github.com/DuckySoLucky/SkyCrypt-Types v0.1.6/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc= +github.com/KyleBanks/depth v1.2.1/go.mod h1:jzSb9d0L43HxTQfT+oSA1EEp2q+ne2uh6XgeJcm8brE= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0 h1:PIWPYiBc4lyZl6CfM3lBPmtUc68u09ClPqnnjm1OSIw= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.0/go.mod h1:EJS4Lny3qbaN1wRJ7Q816LsXASdf6YmFba4BT4eo6rU= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4 h1:9N39wKuU3vhy1Q8giUKLVGP80BA7e5Ail3H8OeMIxr8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.4/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5 h1:vTl6RQK/C/V9xZyY/hEmf6ksBhV2+m/UiRjA7Hb16yo= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.5/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6 h1:RCUG1XeGWMHG3Zqw6leymB/MBjZvAwnF9kMOP74SbPk= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.6/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7 h1:FdGybWyXKDfNdUb0nv5VQunl/Kqy91WQSm4ObC0eSeY= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.7/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 h1:cEsz6bywYOLAzs3Xsw6BhyLOoCvQhYegjmj1aNa58nY= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 h1:/yMpNt4hea28/g1PbbIoN3sZBV4vIG+M4YqmM0HwQWg= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= -github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= -github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY= +github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ= +github.com/andybalholm/brotli v1.2.0/go.mod h1:rzTDkvFWvIrjDXZHkuS16NPggd91W3kUSvPlQ1pLaKY= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= @@ -60,10 +48,42 @@ github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMj github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= github.com/go-git/go-git/v5 v5.16.2 h1:fT6ZIOjE5iEnkzKyxTHK1W4HGAsPhqEqiSAssSO77hM= github.com/go-git/go-git/v5 v5.16.2/go.mod h1:4Ge4alE/5gPs30F2H1esi2gPd69R0C39lolkucHBOp8= +github.com/go-openapi/jsonpointer v0.22.0 h1:TmMhghgNef9YXxTu1tOopo+0BGEytxA+okbry0HjZsM= +github.com/go-openapi/jsonpointer v0.22.0/go.mod h1:xt3jV88UtExdIkkL7NloURjRQjbeUgcxFblMjq2iaiU= +github.com/go-openapi/jsonreference v0.21.1 h1:bSKrcl8819zKiOgxkbVNRUBIr6Wwj9KYrDbMjRs0cDA= +github.com/go-openapi/jsonreference v0.21.1/go.mod h1:PWs8rO4xxTUqKGu+lEvvCxD5k2X7QYkKAepJyCmSTT8= +github.com/go-openapi/spec v0.21.0 h1:LTVzPc3p/RzRnkQqLRndbAzjY0d0BCL72A6j3CdL9ZY= +github.com/go-openapi/spec v0.21.0/go.mod h1:78u6VdPw81XU44qEWGhtr982gJ5BWg2c0I5XwVMotYk= +github.com/go-openapi/swag v0.25.0 h1:xyZhlgInBg6wOtyTD5b+pzwVqHSOliAvgvKW+POFUts= +github.com/go-openapi/swag v0.25.0/go.mod h1:yhsa7GJvO1JBFZccLq9uh/MawsC0PQd8sNz88VBXQlU= +github.com/go-openapi/swag/cmdutils v0.25.0 h1:iYZ24DEGPEk6L1jO09vw39KfpxbG7KhS+WeQexS8U5A= +github.com/go-openapi/swag/cmdutils v0.25.0/go.mod h1:pdae/AFo6WxLl5L0rq87eRzVPm/XRHM3MoYgRMvG4A0= +github.com/go-openapi/swag/conv v0.25.0 h1:5K+e44HkOgCVE0IJTbivurzHahT62DPr2DEJqR/+4pA= +github.com/go-openapi/swag/conv v0.25.0/go.mod h1:oa1ZZnb1jubNdZlD1iAhGXt6Ic4hHtuO23MwTgAXR88= +github.com/go-openapi/swag/fileutils v0.25.0 h1:t7aQRuRfsP29dY4vfrNvDZv7RurwRHuyjUedtYVDmYY= +github.com/go-openapi/swag/fileutils v0.25.0/go.mod h1:+NXtt5xNZZqmpIpjqcujqojGFek9/w55b3ecmOdtg8M= +github.com/go-openapi/swag/jsonname v0.25.0 h1:+fuNs9gdkb2w10hgsgOBx9jtx0pvtUaDRYxD91BEpEQ= +github.com/go-openapi/swag/jsonname v0.25.0/go.mod h1:71Tekow6UOLBD3wS7XhdT98g5J5GR13NOTQ9/6Q11Zo= +github.com/go-openapi/swag/jsonutils v0.25.0 h1:ELKpJT29T4N/AvmDqMeDFLx2QRZQOYFthzctbIX30+A= +github.com/go-openapi/swag/jsonutils v0.25.0/go.mod h1:KYL8GyGoi6tek9ajpvn0le4BWmKoUVVv8yPxklViIMo= +github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.0 h1:ca9vKxLnJegL2bzqXRWNabKdqVGxBzrnO8/UZnr5W0Y= +github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.0/go.mod h1:kjmweouyPwRUEYMSrbAidoLMGeJ5p6zdHi9BgZiqmsg= +github.com/go-openapi/swag/loading v0.25.0 h1:e9mjE5fJeaK0LTepHMtG0Ief+9ETXLFhWCx7ZfiI6LI= +github.com/go-openapi/swag/loading v0.25.0/go.mod h1:2ZCWXwVY1XYuoue8Bdjbn5GJK4/ufXbCfcvoSPFQJqM= +github.com/go-openapi/swag/mangling v0.25.0 h1:VdTfDWX5lS3yURxYHF5SK7kYelSK69Lv2xEAeudTzM8= +github.com/go-openapi/swag/mangling v0.25.0/go.mod h1:CdiMQ6pnfAgyQGSOIYnZkXvqhnnwOn997uXZMAd/7mQ= +github.com/go-openapi/swag/netutils v0.25.0 h1:/e1LPmXfF9fcOYbbaP3+SQgon1fRwe5EZ0FjpR4vAjs= +github.com/go-openapi/swag/netutils v0.25.0/go.mod h1:CAkkvqnUJX8NV96tNhEQvKz8SQo2KF0f7LleiJwIeRE= +github.com/go-openapi/swag/stringutils v0.25.0 h1:iYfCF45GUeI/1Yrh8rQtTFCp5K1ToqWhUdzJZwvXvv8= +github.com/go-openapi/swag/stringutils v0.25.0/go.mod h1:JLdSAq5169HaiDUbTvArA2yQxmgn4D6h4A+4HqVvAYg= +github.com/go-openapi/swag/typeutils v0.25.0 h1:iUTsxu3F3h9v6CBzVFGXKPSBQt6d8XXgYy1YAlu+HJ8= +github.com/go-openapi/swag/typeutils v0.25.0/go.mod h1:9McMC/oCdS4BKwk2shEB7x17P6HmMmA6dQRtAkSnNb8= +github.com/go-openapi/swag/yamlutils v0.25.0 h1:apgy77seWLEM9HKDcieIgW8bG9aSZgH6nQ9THlHYgHA= +github.com/go-openapi/swag/yamlutils v0.25.0/go.mod h1:0JvBRtc0mR02IqHURUeGgS9cG+Dfms4FCGXCnsgnt7c= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= -github.com/gofiber/fiber/v2 v2.52.8 h1:xl4jJQ0BV5EJTA2aWiKw/VddRpHrKeZLF0QPUxqn0x4= -github.com/gofiber/fiber/v2 v2.52.8/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw= +github.com/gofiber/fiber/v2 v2.52.9 h1:YjKl5DOiyP3j0mO61u3NTmK7or8GzzWzCFzkboyP5cw= +github.com/gofiber/fiber/v2 v2.52.9/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 h1:f+oWsMOmNPc8JmEHVZIycC7hBoQxHH9pNKQORJNozsQ= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8/go.mod h1:wcDNUvekVysuuOpQKo3191zZyTpiI6se1N1ULghS0sw= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= @@ -81,8 +101,8 @@ github.com/kettek/apng v0.0.0-20220823221153-ff692776a607 h1:8tP9cdXzcGX2AvweVVG github.com/kettek/apng v0.0.0-20220823221153-ff692776a607/go.mod h1:x78/VRQYKuCftMWS0uK5e+F5RJ7S4gSlESRWI0Prl6Q= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= -github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= -github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= +github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= @@ -90,15 +110,15 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= -github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE= +github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc= -github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc= +github.com/mattn/go-runewidth v0.0.17 h1:78v8ZlW0bP43XfmAfPsdXcoNCelfMHsDmd/pkENfrjQ= +github.com/mattn/go-runewidth v0.0.17/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= @@ -113,8 +133,9 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= +github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ= github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= @@ -126,41 +147,52 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= -github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/swaggo/swag v1.16.4 h1:clWJtd9LStiG3VeijiCfOVODP6VpHtKdQy9ELFG3s1A= +github.com/swaggo/swag v1.16.4/go.mod h1:VBsHJRsDvfYvqoiMKnsdwhNV9LEMHgEDZcyVYX0sxPg= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasthttp v1.51.0 h1:8b30A5JlZ6C7AS81RsWjYMQmrZG6feChmgAolCl1SqA= -github.com/valyala/fasthttp v1.51.0/go.mod h1:oI2XroL+lI7vdXyYoQk03bXBThfFl2cVdIA3Xl7cH8g= -github.com/valyala/tcplisten v1.0.0 h1:rBHj/Xf+E1tRGZyWIWwJDiRY0zc1Js+CV5DqwacVSA8= -github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= +github.com/valyala/fasthttp v1.66.0 h1:M87A0Z7EayeyNaV6pfO3tUTUiYO0dZfEJnRGXTVNuyU= +github.com/valyala/fasthttp v1.66.0/go.mod h1:Y4eC+zwoocmXSVCB1JmhNbYtS7tZPRI2ztPB72EVObs= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= +github.com/xyproto/randomstring v1.0.5 h1:YtlWPoRdgMu3NZtP45drfy1GKoojuR7hmRcnhZqKjWU= +github.com/xyproto/randomstring v1.0.5/go.mod h1:rgmS5DeNXLivK7YprL0pY+lTuhNQW3iGxZ18UQApw/E= +github.com/yokeTH/gofiber-scalar v0.1.1 h1:Oab4nLRCVv4TqdTOqVeDpQfnOITzg3OYNI5UL+O4fEY= +github.com/yokeTH/gofiber-scalar v0.1.1/go.mod h1:EETyzIX2XbCIMUCFX9gShTjGgOUeJbpWUuCwL09A2b0= +go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= +go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.37.0 h1:kJNSjF/Xp7kU0iB2Z+9viTPMW4EqqsrywMXLJOOsXSE= -golang.org/x/crypto v0.37.0/go.mod h1:vg+k43peMZ0pUMhYmVAWysMK35e6ioLh3wB8ZCAfbVc= +golang.org/x/crypto v0.42.0 h1:chiH31gIWm57EkTXpwnqf8qeuMUi0yekh6mT2AvFlqI= +golang.org/x/crypto v0.42.0/go.mod h1:4+rDnOTJhQCx2q7/j6rAN5XDw8kPjeaXEUR2eL94ix8= golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 h1:R9PFI6EUdfVKgwKjZef7QIwGcBKu86OEFpJ9nUEP2l4= golang.org/x/exp v0.0.0-20250718183923-645b1fa84792/go.mod h1:A+z0yzpGtvnG90cToK5n2tu8UJVP2XUATh+r+sfOOOc= +golang.org/x/mod v0.28.0 h1:gQBtGhjxykdjY9YhZpSlZIsbnaE2+PgjfLWUQTnoZ1U= +golang.org/x/mod v0.28.0/go.mod h1:yfB/L0NOf/kmEbXjzCPOx1iK1fRutOydrCMsqRhEBxI= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY= -golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E= +golang.org/x/net v0.44.0 h1:evd8IRDyfNBMBTTY5XRF1vaZlD+EmWx6x8PkhR04H/I= +golang.org/x/net v0.44.0/go.mod h1:ECOoLqd5U3Lhyeyo/QDCEVQ4sNgYsqvCZ722XogGieY= +golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug= +golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20= -golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/sys v0.36.0 h1:KVRy2GtZBrk1cBYA7MKu5bEZFxQk4NIDV6RLVcC8o0k= +golang.org/x/sys v0.36.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.31.0 h1:erwDkOK1Msy6offm1mOgvspSkslFnIGsFnxOKoufg3o= -golang.org/x/term v0.31.0/go.mod h1:R4BeIy7D95HzImkxGkTW1UQTtP54tio2RyHz7PwK0aw= +golang.org/x/term v0.35.0 h1:bZBVKBudEyhRcajGcNc3jIfWPqV4y/Kt2XcoigOWtDQ= +golang.org/x/term v0.35.0/go.mod h1:TPGtkTLesOwf2DE8CgVYiZinHAOuy5AYUYT1lENIZnA= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M= -golang.org/x/text v0.26.0/go.mod h1:QK15LZJUUQVJxhz7wXgxSy/CJaTFjd0G+YLonydOVQA= +golang.org/x/text v0.29.0 h1:1neNs90w9YzJ9BocxfsQNHKuAT4pkghyXc4nhZ6sJvk= +golang.org/x/text v0.29.0/go.mod h1:7MhJOA9CD2qZyOKYazxdYMF85OwPdEr9jTtBpO7ydH4= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.37.0 h1:DVSRzp7FwePZW356yEAChSdNcQo6Nsp+fex1SUW09lE= +golang.org/x/tools v0.37.0/go.mod h1:MBN5QPQtLMHVdvsbtarmTNukZDdgwdwlO5qGacAzF0w= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= diff --git a/main.go b/main.go index 475a3a986..158c25afd 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,8 @@ import ( "skycrypt/src" "skycrypt/src/utility" + _ "skycrypt/docs" + "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/cors" "github.com/gofiber/fiber/v2/middleware/recover" diff --git a/src/models/error.go b/src/models/error.go new file mode 100644 index 000000000..24ead5a94 --- /dev/null +++ b/src/models/error.go @@ -0,0 +1,7 @@ +package models + +type ProcessingError struct { + Error string `json:"error"` + Status *string `json:"status,omitempty"` + Message *string `json:"message,omitempty"` +} diff --git a/src/models/misc.go b/src/models/misc.go index 85ea840cb..56e89b738 100644 --- a/src/models/misc.go +++ b/src/models/misc.go @@ -4,3 +4,96 @@ type FairySouls struct { Found int `json:"found"` Total int `json:"total"` } + +type MiscOutput struct { + Essence []MiscEssence `json:"essence"` + Kills MiscKills `json:"kills"` + Gifts MiscGifts `json:"gifts"` + SeasonOfJerry MiscSeasonOfJerry `json:"season_of_jerry"` + Dragons MiscDragons `json:"dragons"` + EndstoneProtector MiscEndstoneProtector `json:"endstone_protector"` + Damage MiscDamage `json:"damage"` + PetMilestones map[string]MiscPetMilestone `json:"pet_milestones"` + MythologicalEvent MiscMythologicalEvent `json:"mythological_event"` + ProfileUpgrades MiscProfileUpgrades `json:"profile_upgrades"` + Auctions MiscAuctions `json:"auctions"` + ClaimedItems map[string]int64 `json:"claimed_items"` + Uncategorized map[string]any `json:"uncategorized"` +} + +type MiscAuctions struct { + Bids float64 `json:"bids"` + HighestBid float64 `json:"highest_bid"` + Won float64 `json:"won"` + TotalBought map[string]float64 `json:"total_bought"` + GoldSpent float64 `json:"gold_spent"` + Created float64 `json:"created"` + Fees float64 `json:"fees"` + TotalSold map[string]float64 `json:"total_sold"` + GoldEarned float64 `json:"gold_earned"` + NoBids float64 `json:"no_bids"` +} + +type MiscProfileUpgrades map[string]int + +type MiscMythologicalEvent struct { + Kills float64 `json:"kills"` + BurrowsDugNext map[string]float64 `json:"burrows_dug_next"` + BurrowsDugCombat map[string]float64 `json:"burrows_dug_combat"` + BurrowsDugTreasure map[string]float64 `json:"burrows_dug_treasure"` + BurrowsChainsComplete map[string]float64 `json:"burrows_chains_complete"` +} + +type MiscPetMilestone struct { + Amount int `json:"amount"` + Rarity string `json:"rarity"` + Total int `json:"total"` + Progress string `json:"progress"` +} + +type MiscDamage struct { + HighestCriticalDamage float64 `json:"highest_critical_damage"` +} + +type MiscEndstoneProtector struct { + Kills int `json:"kills"` + Deaths int `json:"deaths"` +} + +type MiscDragons struct { + EnderCrystalsDestroyed int `json:"ender_crystals_destroyed"` + MostDamage map[string]float64 `json:"most_damage"` + FastestKill map[string]float64 `json:"fastest_kill"` + LastHits map[string]float64 `json:"last_hits"` + Deaths map[string]float64 `json:"deaths"` +} + +type MiscSeasonOfJerry struct { + MostSnowballsHit int `json:"most_snowballs_hit"` + MostDamageDealt int `json:"most_damage_dealt"` + MostMagmaDamageDealt int `json:"most_magma_damage_dealt"` + MostCannonballsHit int `json:"most_cannonballs_hit"` +} + +type MiscEssence struct { + Name string `json:"name"` + Texture string `json:"texture"` + Amount int `json:"amount"` +} + +type MiscKills struct { + TotalKills int `json:"total_kills"` + TotalDeaths int `json:"total_deaths"` + Kills []MiscKill `json:"kills"` + Deaths []MiscKill `json:"deaths"` +} + +type MiscKill struct { + Name string `json:"name"` + Amount int `json:"amount"` +} + +type MiscGifts struct { + Given int `json:"given"` + Received int `json:"received"` +} diff --git a/src/models/missing.go b/src/models/missing.go index 42bdb5db5..0cccb9738 100644 --- a/src/models/missing.go +++ b/src/models/missing.go @@ -10,8 +10,8 @@ type GetMissingAccessoresOutput struct { SelectedPower string `json:"selectedPower"` MagicalPower GetMagicalPowerOutput `json:"magicalPower"` Accessories []StrippedItem `json:"accessories"` - Missing []ProcessedItem `json:"missing"` - Upgrades []ProcessedItem `json:"upgrades"` + Missing []StrippedItem `json:"missing"` + Upgrades []StrippedItem `json:"upgrades"` } type MissingOutput struct { diff --git a/src/models/skills.go b/src/models/skills.go index 164b1452a..2053041f6 100644 --- a/src/models/skills.go +++ b/src/models/skills.go @@ -21,3 +21,10 @@ type Skill struct { Maxed bool `json:"maxed"` Texture string `json:"texture"` } + +type SkillsOutput struct { + Mining MiningOutput `json:"mining"` + Farming FarmingOutput `json:"farming"` + Fishing FishingOuput `json:"fishing"` + Enchanting EnchantingOutput `json:"enchanting"` +} diff --git a/src/models/stats.go b/src/models/stats.go index 729899869..1a38fb3e3 100644 --- a/src/models/stats.go +++ b/src/models/stats.go @@ -1,5 +1,9 @@ package models +import ( + skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" +) + type ProfilesStats struct { ProfileId string `json:"profile_id"` CuteName string `json:"cute_name"` @@ -12,3 +16,24 @@ type MemberStats struct { Name string `json:"username"` Removed bool `json:"removed"` } + +type StatsOutput struct { + Username string `json:"username"` + DisplayName string `json:"displayName"` + UUID string `json:"uuid"` + ProfileID string `json:"profile_id"` + ProfileCuteName string `json:"profile_cute_name"` + Selected bool `json:"selected"` + Profiles []*ProfilesStats `json:"profiles"` + Members []*MemberStats `json:"members"` + Social skycrypttypes.SocialMediaLinks `json:"social"` + Rank *RankOutput `json:"rank"` + Skills *Skills `json:"skills"` + SkyBlockLevel Skill `json:"skyblock_level"` + Joined int64 `json:"joined"` + Purse float64 `json:"purse"` + Bank *float64 `json:"bank"` + PersonalBank float64 `json:"personalBank"` + FairySouls *FairySouls `json:"fairySouls"` + APISettings map[string]bool `json:"apiSettings"` +} diff --git a/src/models/uuid_username.go b/src/models/uuid_username.go new file mode 100644 index 000000000..0e2cc544d --- /dev/null +++ b/src/models/uuid_username.go @@ -0,0 +1,6 @@ +package models + +type PlayerResolve struct { + UUID string `json:"uuid"` + Username string `json:"username"` +} diff --git a/src/routes.go b/src/routes.go index b00e356e0..aa03df7ed 100644 --- a/src/routes.go +++ b/src/routes.go @@ -13,6 +13,7 @@ import ( "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/compress" "github.com/joho/godotenv" + scalar "github.com/yokeTH/gofiber-scalar" ) func SetupApplication() error { @@ -74,6 +75,12 @@ func SetupRoutes(app *fiber.App) { // Assets folder app.Static("/assets", "assets") + // Documentation + app.Get("/scalar/*", scalar.New(scalar.Config{ + Path: "/scalar", + RawSpecUrl: "/swagger/doc.json", + })) + if os.Getenv("DEV") != "true" { fmt.Println("[ENVIROMENT] Running in production mode") diff --git a/src/routes/accessories.go b/src/routes/accessories.go index 9b29c867c..c20e7347d 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -12,6 +12,18 @@ import ( jsoniter "github.com/json-iterator/go" ) +// AccessoriesHandler godoc +// @Summary Get accessories stats of a specified player +// @Description Returns accessories for the given user and profile ID +// @Tags accessories +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.GetMissingAccessoresOutput +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/accessories/{uuid}/{profileId} [get] func AccessoriesHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -20,7 +32,7 @@ func AccessoriesHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/bestiary.go b/src/routes/bestiary.go index 3f56c38ba..c016cbf33 100644 --- a/src/routes/bestiary.go +++ b/src/routes/bestiary.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// BestiaryHandler godoc +// @Summary Get bestiary stats of a specified player +// @Description Returns bestiary for the given user and profile ID +// @Tags bestiary +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.BestiaryOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/bestiary/{uuid}/{profileId} [get] func BestiaryHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func BestiaryHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/collections.go b/src/routes/collections.go index 0994c3309..8bb84f613 100644 --- a/src/routes/collections.go +++ b/src/routes/collections.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// CollectionsHandler godoc +// @Summary Get collections stats of a specified player +// @Description Returns collections for the given user and profile ID +// @Tags collections +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.CollectionsOutput +// @Failure 500 {object} models.ProcessingError +// @Router /api/collections/{uuid}/{profileId} [get] func CollectionsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func CollectionsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/crimson_isle.go b/src/routes/crimson_isle.go index 96133327f..ddef7b340 100644 --- a/src/routes/crimson_isle.go +++ b/src/routes/crimson_isle.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// CrimsonIsleHandler godoc +// @Summary Get Crimson Isle stats of a specified player +// @Description Returns Crimson Isle stats for the given user and profile ID +// @Tags crimson_isle +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.CrimsonIsleOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/crimson_isle/{uuid}/{profileId} [get] func CrimsonIsleHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func CrimsonIsleHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/dungeons.go b/src/routes/dungeons.go index 831b9fd02..4de74f1c2 100644 --- a/src/routes/dungeons.go +++ b/src/routes/dungeons.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// DungeonsHandler godoc +// @Summary Get dungeons stats of a specified player +// @Description Returns dungeons for the given user and profile ID +// @Tags dungeons +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.DungeonsOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/dungeons/{uuid}/{profileId} [get] func DungeonsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func DungeonsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/embed.go b/src/routes/embed.go index ec3e9b8f1..5ca353f73 100644 --- a/src/routes/embed.go +++ b/src/routes/embed.go @@ -13,13 +13,25 @@ import ( "github.com/gofiber/fiber/v2" ) +// EmbedHandler godoc +// @Summary Get embed data for a specified player +// @Description Returns embed data for the given user (UUID or username) and optional profile ID +// @Tags embed +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID or username" +// @Param profileId path string false "Profile ID (optional)" +// @Success 200 {object} models.EmbedData +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/embed/{uuid}/{profileId} [get] func EmbedHandler(c *fiber.Ctx) error { timeNow := time.Now() uuid := c.Params("uuid") mowojang, err := api.ResolvePlayer(uuid) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to resolve player: %v", err), }) } @@ -31,7 +43,7 @@ func EmbedHandler(c *fiber.Ctx) error { profiles, err := api.GetProfiles(mowojang.UUID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/garden.go b/src/routes/garden.go index 9fe6c9299..8a3c4ef41 100644 --- a/src/routes/garden.go +++ b/src/routes/garden.go @@ -10,6 +10,16 @@ import ( "github.com/gofiber/fiber/v2" ) +// GardenHandler godoc +// @Summary Get garden stats of a specified profile +// @Description Returns garden data for the given profile ID +// @Tags garden +// @Accept json +// @Produce json +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.Garden +// @Failure 400 {object} models.ProcessingError +// @Router /api/garden/{profileId} [get] func GardenHandler(c *fiber.Ctx) error { timeNow := time.Now() diff --git a/src/routes/gear.go b/src/routes/gear.go index fc58289cc..db182d296 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -15,6 +15,18 @@ import ( jsoniter "github.com/json-iterator/go" ) +// GearHandler godoc +// @Summary Get gear stats of a specified player +// @Description Returns gear for the given user and profile ID +// @Tags gear +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.Gear +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/gear/{uuid}/{profileId} [get] func GearHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -34,7 +46,7 @@ func GearHandler(c *fiber.Ctx) error { } else { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/head.go b/src/routes/head.go index 721f5b2d6..91f8dfedb 100644 --- a/src/routes/head.go +++ b/src/routes/head.go @@ -7,6 +7,16 @@ import ( "github.com/gofiber/fiber/v2" ) +// HeadHandlers godoc +// @Summary Render and return a head image +// @Description Returns a PNG image of a head for the given texture ID +// @Tags head +// @Produce png +// @Param textureId path string true "Texture ID" +// @Success 200 {file} binary "PNG image of the head" +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {string} string "Failed to render head" +// @Router /api/head/{textureId} [get] func HeadHandlers(c *fiber.Ctx) error { // timeNow := time.Now() textureId := c.Params("textureId") diff --git a/src/routes/inventory.go b/src/routes/inventory.go index c29fb1690..5a106519a 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -53,6 +53,21 @@ func getIcon(source string, uuid string) string { return fmt.Sprintf(`https://crafatar.com/renders/head/%s?overlay`, uuid) } +// InventoryHandler godoc +// @Summary Get inventory items for a specified player +// @Description Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories. +// @Tags inventory +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Param inventoryId path string true "Inventory ID (e.g., museum, search, or other inventory types)" +// @Param search path string false "Search string (required when inventoryId is 'search')" +// @Success 200 {object} []models.StrippedItem +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/inventory/{uuid}/{profileId}/{inventoryId} [get] +// @Router /api/inventory/{uuid}/{profileId}/search/{search} [get] func InventoryHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -62,7 +77,7 @@ func InventoryHandler(c *fiber.Ctx) error { if inventoryId == "museum" { profileMuseum, err := api.GetMuseum(profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get museum: %v", err), }) } @@ -86,7 +101,7 @@ func InventoryHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/item.go b/src/routes/item.go index ba232a225..0b3c08260 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -3,11 +3,20 @@ package routes import ( "skycrypt/src/constants" "skycrypt/src/lib" - "skycrypt/src/utility" "github.com/gofiber/fiber/v2" ) +// ItemHandlers godoc +// @Summary Render and return an item image +// @Description Returns a PNG image of an item for the given texture ID +// @Tags item +// @Produce png +// @Param itemId path string true "Item ID" +// @Success 200 {file} binary "PNG image of the item" +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {string} string "Failed to render item" +// @Router /api/item/{itemId} [get] func ItemHandlers(c *fiber.Ctx) error { // timeNow := time.Now() textureId := c.Params("itemId") @@ -23,12 +32,7 @@ func ItemHandlers(c *fiber.Ctx) error { } c.Status(500) - // return c.JSON(constants.InvalidItemProvidedError) - utility.SendWebhook("error", err.Error(), []byte(nil)) - return c.JSON(fiber.Map{ - "error": err.Error(), - }) - + return c.JSON(constants.InvalidItemProvidedError) } c.Type("png") diff --git a/src/routes/leather.go b/src/routes/leather.go index 37fa9201c..5fb5afa96 100644 --- a/src/routes/leather.go +++ b/src/routes/leather.go @@ -8,6 +8,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// LeatherHandlers godoc +// @Summary Render and return a leather armor image +// @Description Returns a PNG image of leather armor for the given type and color +// @Tags leather +// @Produce png +// @Param type path string true "Armor Type" +// @Param color path string true "Armor Color" +// @Success 200 {file} binary "PNG image of the leather armor" +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/leather/{type}/{color} [get] func LeatherHandlers(c *fiber.Ctx) error { // timeNow := time.Now() armorType := c.Params("type") @@ -20,7 +31,7 @@ func LeatherHandlers(c *fiber.Ctx) error { imageBytes, err := lib.RenderArmor(armorType, armorColor) if err != nil { fmt.Printf("Error rendering armor: %v\n", err) - c.Status(404) + c.Status(500) return c.JSON(constants.InvalidItemProvidedError) } diff --git a/src/routes/minions.go b/src/routes/minions.go index e7bf16725..f27c861b1 100644 --- a/src/routes/minions.go +++ b/src/routes/minions.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// MinionsHandler godoc +// @Summary Get minions stats of a specified player +// @Description Returns minions for the given user and profile ID +// @Tags minions +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.MinionsOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/minions/{uuid}/{profileId} [get] func MinionsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func MinionsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/misc.go b/src/routes/misc.go index db1d55ae2..e576c9221 100644 --- a/src/routes/misc.go +++ b/src/routes/misc.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// MiscHandler godoc +// @Summary Get misc stats of a specified player +// @Description Returns misc stats for the given user and profile ID +// @Tags misc +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.MiscOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/misc/{uuid}/{profileId} [get] func MiscHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,14 +28,14 @@ func MiscHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } player, err := api.GetPlayer(uuid) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get player: %v", err), }) } diff --git a/src/routes/networth.go b/src/routes/networth.go index 26380051f..f80ef174d 100644 --- a/src/routes/networth.go +++ b/src/routes/networth.go @@ -10,6 +10,18 @@ import ( "github.com/gofiber/fiber/v2" ) +// NetworthHandler godoc +// @Summary Get networth of a specified player +// @Description Returns networth for the given user and profile ID +// @Tags networth +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} map[string]any +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/networth/{uuid}/{profileId} [get] func NetworthHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -21,28 +33,28 @@ func NetworthHandler(c *fiber.Ctx) error { mowojang, err := api.ResolvePlayer(uuid) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to resolve player: %v", err), }) } profiles, err := api.GetProfiles(mowojang.UUID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } profile, err := stats.GetProfile(profiles, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } profileMuseum, err := api.GetMuseum(profile.ProfileID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get museum: %v", err), }) } diff --git a/src/routes/pets.go b/src/routes/pets.go index 56e381122..cee6fe45a 100644 --- a/src/routes/pets.go +++ b/src/routes/pets.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// PetsHandler godoc +// @Summary Get pets stats of a specified player +// @Description Returns pets for the given user and profile ID +// @Tags pets +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.OutputPets +// @Failure 400 {object} models.ProcessingError +// @Router /api/pets/{uuid}/{profileId} [get] func PetsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func PetsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/player_stats.go b/src/routes/player_stats.go index ae216c015..e72cdaa4b 100644 --- a/src/routes/player_stats.go +++ b/src/routes/player_stats.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// PlayerStatsHandler godoc +// @Summary Get player stats of a specified player +// @Description Returns player stats for the given user and profile ID +// @Tags playerStats +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} map[string]models.StatsInfo +// @Failure 400 {object} models.ProcessingError +// @Router /api/playerStats/{uuid}/{profileId} [get] func PlayerStatsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func PlayerStatsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/potion.go b/src/routes/potion.go index cf68fcb1a..07e0d74ef 100644 --- a/src/routes/potion.go +++ b/src/routes/potion.go @@ -1,13 +1,23 @@ package routes import ( - "fmt" "skycrypt/src/constants" "skycrypt/src/lib" "github.com/gofiber/fiber/v2" ) +// PotionHandlers godoc +// @Summary Render and return a potion image +// @Description Returns a PNG image of a potion for the given type and color +// @Tags potion +// @Produce png +// @Param type path string true "Potion Type" +// @Param color path string true "Potion Color" +// @Success 200 {file} binary "PNG image of the potion" +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/potion/{type}/{color} [get] func PotionHandlers(c *fiber.Ctx) error { // timeNow := time.Now() potionType := c.Params("type") @@ -19,9 +29,7 @@ func PotionHandlers(c *fiber.Ctx) error { imageBytes, err := lib.RenderPotion(potionType, potionColor) if err != nil { - fmt.Printf("Error rendering armor: %v\n", err) - - c.Status(404) + c.Status(500) return c.JSON(constants.InvalidItemProvidedError) } diff --git a/src/routes/rift.go b/src/routes/rift.go index 0fd57b1d2..222d29c24 100644 --- a/src/routes/rift.go +++ b/src/routes/rift.go @@ -14,6 +14,18 @@ import ( jsoniter "github.com/json-iterator/go" ) +// RiftHandler godoc +// @Summary Get rift stats of a specified player +// @Description Returns rift data for the given user and profile ID +// @Tags rift +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.RiftOutput +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/rift/{uuid}/{profileId} [get] func RiftHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -22,7 +34,7 @@ func RiftHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/skills.go b/src/routes/skills.go index 54ce95a16..30f94ab3b 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -15,6 +15,18 @@ import ( jsoniter "github.com/json-iterator/go" ) +// SkillsHandler godoc +// @Summary Get skills stats of a specified player +// @Description Returns skills for the given user and profile ID +// @Tags skills +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.SkillsOutput +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/skills/{uuid}/{profileId} [get] func SkillsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -23,14 +35,14 @@ func SkillsHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } player, err := api.GetPlayer(uuid) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get player: %v", err), }) } diff --git a/src/routes/slayer.go b/src/routes/slayer.go index 2b3a97593..198a981f5 100644 --- a/src/routes/slayer.go +++ b/src/routes/slayer.go @@ -9,6 +9,17 @@ import ( "github.com/gofiber/fiber/v2" ) +// SlayersHandler godoc +// @Summary Get slayer stats of a specified player +// @Description Returns slayer statistics for the given user and profile ID +// @Tags slayers +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.SlayersOutput +// @Failure 400 {object} models.ProcessingError +// @Router /api/slayer/{uuid}/{profileId} [get] func SlayersHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -17,7 +28,7 @@ func SlayersHandler(c *fiber.Ctx) error { profile, err := api.GetProfile(uuid, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } diff --git a/src/routes/stats.go b/src/routes/stats.go index e15647d6d..5ab580687 100644 --- a/src/routes/stats.go +++ b/src/routes/stats.go @@ -9,6 +9,18 @@ import ( "github.com/gofiber/fiber/v2" ) +// StatsHandler godoc +// @Summary Get stats of a specified player +// @Description Returns stats for the given user and profile ID +// @Tags stats +// @Accept json +// @Produce json +// @Param uuid path string true "User UUID" +// @Param profileId path string true "Profile ID" +// @Success 200 {object} models.StatsOutput +// @Failure 400 {object} models.ProcessingError +// @Failure 500 {object} models.ProcessingError +// @Router /api/stats/{uuid}/{profileId} [get] func StatsHandler(c *fiber.Ctx) error { timeNow := time.Now() @@ -20,35 +32,35 @@ func StatsHandler(c *fiber.Ctx) error { mowojang, err := api.ResolvePlayer(uuid) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to resolve player: %v", err), }) } profiles, err := api.GetProfiles(mowojang.UUID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } player, err := api.GetPlayer(mowojang.UUID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get player: %v", err), }) } profile, err := stats.GetProfile(profiles, profileId) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get profile: %v", err), }) } profileMuseum, err := api.GetMuseum(profile.ProfileID) if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ "error": fmt.Sprintf("Failed to get museum: %v", err), }) } diff --git a/src/routes/username.go b/src/routes/username.go index 5cca323d3..a922984f9 100644 --- a/src/routes/username.go +++ b/src/routes/username.go @@ -10,6 +10,16 @@ import ( "github.com/gofiber/fiber/v2" ) +// UsernameHandler godoc +// @Summary Get username for a specified UUID +// @Description Returns the username associated with the given UUID +// @Tags username +// @Accept json +// @Produce json +// @Param uuid path string true "UUID" +// @Success 200 {object} models.PlayerResolve +// @Failure 400 {object} models.ProcessingError +// @Router /api/username/{uuid} [get] func UsernameHandler(c *fiber.Ctx) error { timeNow := time.Now() diff --git a/src/routes/uuid.go b/src/routes/uuid.go index 9b156c9fc..b8b2beb43 100644 --- a/src/routes/uuid.go +++ b/src/routes/uuid.go @@ -9,6 +9,16 @@ import ( "github.com/gofiber/fiber/v2" ) +// UUIDHandler godoc +// @Summary Get UUID for a specified username +// @Description Returns the UUID associated with the given username +// @Tags uuid +// @Accept json +// @Produce json +// @Param username path string true "Username" +// @Success 200 {object} models.PlayerResolve +// @Failure 400 {object} models.ProcessingError +// @Router /api/uuid/{username} [get] func UUIDHandler(c *fiber.Ctx) error { timeNow := time.Now() username := c.Params("username") diff --git a/src/stats/misc.go b/src/stats/misc.go index 08b1eb685..84fd673f0 100644 --- a/src/stats/misc.go +++ b/src/stats/misc.go @@ -4,109 +4,17 @@ import ( "fmt" "os" "skycrypt/src/constants" + "skycrypt/src/models" "skycrypt/src/utility" "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -type MiscOutput struct { - Essence []MiscEssence `json:"essence"` - Kills MiscKills `json:"kills"` - Gifts MiscGifts `json:"gifts"` - SeasonOfJerry MiscSeasonOfJerry `json:"season_of_jerry"` - Dragons MiscDragons `json:"dragons"` - EndstoneProtector MiscEndstoneProtector `json:"endstone_protector"` - Damage MiscDamage `json:"damage"` - PetMilestones map[string]MiscPetMilestone `json:"pet_milestones"` - MythologicalEvent MiscMythologicalEvent `json:"mythological_event"` - ProfileUpgrades MiscProfileUpgrades `json:"profile_upgrades"` - Auctions MiscAuctions `json:"auctions"` - ClaimedItems map[string]int64 `json:"claimed_items"` - Uncategorized map[string]any `json:"uncategorized"` -} - -type MiscAuctions struct { - Bids float64 `json:"bids"` - HighestBid float64 `json:"highest_bid"` - Won float64 `json:"won"` - TotalBought map[string]float64 `json:"total_bought"` - GoldSpent float64 `json:"gold_spent"` - Created float64 `json:"created"` - Fees float64 `json:"fees"` - TotalSold map[string]float64 `json:"total_sold"` - GoldEarned float64 `json:"gold_earned"` - NoBids float64 `json:"no_bids"` -} - -type MiscProfileUpgrades map[string]int - -type MiscMythologicalEvent struct { - Kills float64 `json:"kills"` - BurrowsDugNext map[string]float64 `json:"burrows_dug_next"` - BurrowsDugCombat map[string]float64 `json:"burrows_dug_combat"` - BurrowsDugTreasure map[string]float64 `json:"burrows_dug_treasure"` - BurrowsChainsComplete map[string]float64 `json:"burrows_chains_complete"` -} - -type MiscPetMilestone struct { - Amount int `json:"amount"` - Rarity string `json:"rarity"` - Total int `json:"total"` - Progress string `json:"progress"` -} - -type MiscDamage struct { - HighestCriticalDamage float64 `json:"highest_critical_damage"` -} - -type MiscEndstoneProtector struct { - Kills int `json:"kills"` - Deaths int `json:"deaths"` -} - -type MiscDragons struct { - EnderCrystalsDestroyed int `json:"ender_crystals_destroyed"` - MostDamage map[string]float64 `json:"most_damage"` - FastestKill map[string]float64 `json:"fastest_kill"` - LastHits map[string]float64 `json:"last_hits"` - Deaths map[string]float64 `json:"deaths"` -} - -type MiscSeasonOfJerry struct { - MostSnowballsHit int `json:"most_snowballs_hit"` - MostDamageDealt int `json:"most_damage_dealt"` - MostMagmaDamageDealt int `json:"most_magma_damage_dealt"` - MostCannonballsHit int `json:"most_cannonballs_hit"` -} - -type MiscEssence struct { - Name string `json:"name"` - Texture string `json:"texture"` - Amount int `json:"amount"` -} - -type MiscKills struct { - TotalKills int `json:"total_kills"` - TotalDeaths int `json:"total_deaths"` - Kills []MiscKill `json:"kills"` - Deaths []MiscKill `json:"deaths"` -} - -type MiscKill struct { - Name string `json:"name"` - Amount int `json:"amount"` -} - -type MiscGifts struct { - Given int `json:"given"` - Received int `json:"received"` -} - -func getEssence(userProfile *skycrypttypes.Member) []MiscEssence { - essence := make([]MiscEssence, 0, len(constants.ESSENCE)) +func getEssence(userProfile *skycrypttypes.Member) []models.MiscEssence { + essence := make([]models.MiscEssence, 0, len(constants.ESSENCE)) for essenceId, essenceData := range constants.ESSENCE { - essenceData := MiscEssence{ + essenceData := models.MiscEssence{ Name: essenceData.Name, Texture: essenceData.Texture, Amount: userProfile.Currencies.Essence[strings.ToUpper(essenceId)].Current, @@ -122,9 +30,9 @@ func getEssence(userProfile *skycrypttypes.Member) []MiscEssence { return essence } -func getKills(userProfile *skycrypttypes.Member) MiscKills { +func getKills(userProfile *skycrypttypes.Member) models.MiscKills { totalKills, totalDeaths := 0, 0 - kills, deaths := []MiscKill{}, []MiscKill{} + kills, deaths := []models.MiscKill{}, []models.MiscKill{} for id, amount := range userProfile.PlayerStats.Kills { if id == "total" { continue @@ -136,7 +44,7 @@ func getKills(userProfile *skycrypttypes.Member) MiscKills { } totalKills += int(amount) - kills = append(kills, MiscKill{ + kills = append(kills, models.MiscKill{ Name: name, Amount: int(amount), }) @@ -153,13 +61,13 @@ func getKills(userProfile *skycrypttypes.Member) MiscKills { name = utility.TitleCase(id) } - deaths = append(deaths, MiscKill{ + deaths = append(deaths, models.MiscKill{ Name: name, Amount: int(amount), }) } - return MiscKills{ + return models.MiscKills{ TotalKills: totalKills, TotalDeaths: totalDeaths, Kills: kills, @@ -167,15 +75,15 @@ func getKills(userProfile *skycrypttypes.Member) MiscKills { } } -func getGifts(userProfile *skycrypttypes.Member) MiscGifts { - return MiscGifts{ +func getGifts(userProfile *skycrypttypes.Member) models.MiscGifts { + return models.MiscGifts{ Given: int(userProfile.PlayerStats.Gifts.Given), Received: int(userProfile.PlayerStats.Gifts.Received), } } -func getSeasonOfJerry(userProfile *skycrypttypes.Member) MiscSeasonOfJerry { - return MiscSeasonOfJerry{ +func getSeasonOfJerry(userProfile *skycrypttypes.Member) models.MiscSeasonOfJerry { + return models.MiscSeasonOfJerry{ MostSnowballsHit: int(userProfile.PlayerStats.WinterIslandData.MostSnowballsHit), MostDamageDealt: int(userProfile.PlayerStats.WinterIslandData.MostDamageDealt), MostMagmaDamageDealt: int(userProfile.PlayerStats.WinterIslandData.MostMagmaDamageDealt), @@ -183,7 +91,7 @@ func getSeasonOfJerry(userProfile *skycrypttypes.Member) MiscSeasonOfJerry { } } -func getDragons(userProfile *skycrypttypes.Member) MiscDragons { +func getDragons(userProfile *skycrypttypes.Member) models.MiscDragons { dragonKills, dragonKillsTotal, dragonDeaths, dragonDeathsTotal := map[string]float64{}, 0.0, map[string]float64{}, 0.0 for mobId, amount := range userProfile.PlayerStats.Kills { if strings.HasPrefix(mobId, "master_wither_king") { @@ -213,7 +121,7 @@ func getDragons(userProfile *skycrypttypes.Member) MiscDragons { dragonDeaths["total"] = dragonDeathsTotal - return MiscDragons{ + return models.MiscDragons{ EnderCrystalsDestroyed: int(userProfile.PlayerStats.EndIsland.DragonFight.EnderCrystalsDestroyed), MostDamage: userProfile.PlayerStats.EndIsland.DragonFight.MostDamage, FastestKill: userProfile.PlayerStats.EndIsland.DragonFight.FastestKill, @@ -222,20 +130,20 @@ func getDragons(userProfile *skycrypttypes.Member) MiscDragons { } } -func getEndstoneProtector(userProfile *skycrypttypes.Member) MiscEndstoneProtector { - return MiscEndstoneProtector{ +func getEndstoneProtector(userProfile *skycrypttypes.Member) models.MiscEndstoneProtector { + return models.MiscEndstoneProtector{ Kills: int(userProfile.PlayerStats.Kills["corrupted_protector"]), Deaths: int(userProfile.PlayerStats.Deaths["corrupted_protector"]), } } -func getDamage(userProfile *skycrypttypes.Member) MiscDamage { - return MiscDamage{ +func getDamage(userProfile *skycrypttypes.Member) models.MiscDamage { + return models.MiscDamage{ HighestCriticalDamage: userProfile.PlayerStats.HighestCriticalDamage, } } -func getPetMilestone(typeName string, amount float64) MiscPetMilestone { +func getPetMilestone(typeName string, amount float64) models.MiscPetMilestone { rarity := "common" milestones := constants.PET_MILESTONES[typeName] lastIndex := -1 @@ -261,7 +169,7 @@ func getPetMilestone(typeName string, amount float64) MiscPetMilestone { progress = fmt.Sprintf("%.2f%%", p) } } - return MiscPetMilestone{ + return models.MiscPetMilestone{ Amount: int(amount), Rarity: rarity, Total: total, @@ -269,15 +177,15 @@ func getPetMilestone(typeName string, amount float64) MiscPetMilestone { } } -func getPetMilestones(userProfile *skycrypttypes.Member) map[string]MiscPetMilestone { - return map[string]MiscPetMilestone{ +func getPetMilestones(userProfile *skycrypttypes.Member) map[string]models.MiscPetMilestone { + return map[string]models.MiscPetMilestone{ "sea_creatures_killed": getPetMilestone("sea_creatures_killed", userProfile.PlayerStats.Pets.Milestone.SeaCreaturesKilled), "ores_mined": getPetMilestone("ores_mined", userProfile.PlayerStats.Pets.Milestone.OresMined), } } -func getMythologicalEvent(userProfile *skycrypttypes.Member) MiscMythologicalEvent { - return MiscMythologicalEvent{ +func getMythologicalEvent(userProfile *skycrypttypes.Member) models.MiscMythologicalEvent { + return models.MiscMythologicalEvent{ Kills: userProfile.PlayerStats.Mythos.Kills, BurrowsDugNext: userProfile.PlayerStats.Mythos.BurrowsDugNext, BurrowsDugCombat: userProfile.PlayerStats.Mythos.BurrowsDugCombat, @@ -286,8 +194,8 @@ func getMythologicalEvent(userProfile *skycrypttypes.Member) MiscMythologicalEve } } -func getProfileUpgrades(profile *skycrypttypes.Profile) MiscProfileUpgrades { - output := MiscProfileUpgrades{} +func getProfileUpgrades(profile *skycrypttypes.Profile) models.MiscProfileUpgrades { + output := models.MiscProfileUpgrades{} for upgrade := range constants.PROFILE_UPGRADES { output[upgrade] = 0 } @@ -303,7 +211,7 @@ func getProfileUpgrades(profile *skycrypttypes.Profile) MiscProfileUpgrades { return output } -func getAuctions(userProfile *skycrypttypes.Member) MiscAuctions { +func getAuctions(userProfile *skycrypttypes.Member) models.MiscAuctions { auctions := userProfile.PlayerStats.Auctions totalSold, totalSoldAmount, totalBought, totalBoughtAmount := map[string]float64{}, 0.0, map[string]float64{}, 0.0 @@ -321,7 +229,7 @@ func getAuctions(userProfile *skycrypttypes.Member) MiscAuctions { totalBought["total"] = totalBoughtAmount - return MiscAuctions{ + return models.MiscAuctions{ Bids: auctions.Bids, HighestBid: auctions.HighestBid, Won: auctions.Won, @@ -365,8 +273,8 @@ func getClaimedItems(player *skycrypttypes.Player) map[string]int64 { } } -func GetMisc(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, player *skycrypttypes.Player) *MiscOutput { - return &MiscOutput{ +func GetMisc(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, player *skycrypttypes.Player) *models.MiscOutput { + return &models.MiscOutput{ Essence: getEssence(userProfile), Kills: getKills(userProfile), Gifts: getGifts(userProfile), diff --git a/src/stats/missing.go b/src/stats/missing.go index cfae93bb5..cab9c115f 100644 --- a/src/stats/missing.go +++ b/src/stats/missing.go @@ -244,8 +244,8 @@ func GetMissingAccessories(accessories models.AccessoriesOutput, userProfile *sk SelectedPower: userProfile.AccessoryBagStorage.SelectedPower, MagicalPower: getMagicalPowerData(&activeAccessories, userProfile), Accessories: stats.StripItems(&processedItems), - Upgrades: missingAccessories.Upgrades, - Missing: missingAccessories.Other, + Upgrades: stats.StripItems(&missingAccessories.Upgrades), + Missing: stats.StripItems(&missingAccessories.Other), } return output diff --git a/src/stats/stats.go b/src/stats/stats.go index 0255d699a..7c2aa223e 100644 --- a/src/stats/stats.go +++ b/src/stats/stats.go @@ -6,29 +6,8 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -type StatsOutput struct { - Username string `json:"username"` - DisplayName string `json:"displayName"` - UUID string `json:"uuid"` - ProfileID string `json:"profile_id"` - ProfileCuteName string `json:"profile_cute_name"` - Selected bool `json:"selected"` - Profiles []*models.ProfilesStats `json:"profiles"` - Members []*models.MemberStats `json:"members"` - Social skycrypttypes.SocialMediaLinks `json:"social"` - Rank *models.RankOutput `json:"rank"` - Skills *models.Skills `json:"skills"` - SkyBlockLevel models.Skill `json:"skyblock_level"` - Joined int64 `json:"joined"` - Purse float64 `json:"purse"` - Bank *float64 `json:"bank"` - PersonalBank float64 `json:"personalBank"` - FairySouls *models.FairySouls `json:"fairySouls"` - APISettings map[string]bool `json:"apiSettings"` -} - -func GetStats(mowojang *models.MowojangReponse, profiles *models.HypixelProfilesResponse, profile *skycrypttypes.Profile, player *skycrypttypes.Player, userProfile *skycrypttypes.Member, museum *skycrypttypes.Museum, members []*models.MemberStats) (*StatsOutput, error) { - return &StatsOutput{ +func GetStats(mowojang *models.MowojangReponse, profiles *models.HypixelProfilesResponse, profile *skycrypttypes.Profile, player *skycrypttypes.Player, userProfile *skycrypttypes.Member, museum *skycrypttypes.Museum, members []*models.MemberStats) (*models.StatsOutput, error) { + return &models.StatsOutput{ Username: mowojang.Name, DisplayName: mowojang.Name, UUID: mowojang.UUID, From 8e986a8a9224435d4a4bf9ea08c1e407d0c9b162 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 30 Sep 2025 16:54:54 +0200 Subject: [PATCH 33/55] fix: errors, fairy souls count on ironman --- src/routes/inventory.go | 9 +++++++- src/stats/items/processing.go | 33 +++++++++++++++-------------- src/stats/other.go | 9 ++++++-- src/stats/player_stats.go | 40 ++++++++++++++++++----------------- 4 files changed, 53 insertions(+), 38 deletions(-) diff --git a/src/routes/inventory.go b/src/routes/inventory.go index 5a106519a..88dcbffe8 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -180,9 +180,16 @@ func InventoryHandler(c *fiber.Ctx) error { itemSlice := stats.GetInventory(userProfile, inventoryId) output := statsItems.ProcessItems(&itemSlice, inventoryId) + strippedItems := statsItems.StripItems(&output) + if strings.HasSuffix(inventoryId, "inventory") { + if len(strippedItems) > 9 { + strippedItems = append(strippedItems[9:], strippedItems[:9]...) + } + } + fmt.Printf("Returning /api/inventory/%s/%s in %s\n", uuid, inventoryId, time.Since(timeNow)) return c.JSON(fiber.Map{ - "items": statsItems.StripItems(&output), + "items": strippedItems, }) } diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index 0e0cf7886..4f40f9708 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -4,12 +4,12 @@ import ( "fmt" "os" notenoughupdates "skycrypt/src/NotEnoughUpdates" + "slices" "skycrypt/src/constants" "skycrypt/src/lib" "skycrypt/src/models" "skycrypt/src/utility" - "slices" "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" @@ -49,21 +49,6 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { processedItem.Lore = append(processedItem.Lore, "§8(Recombobulated)") } - if item.Tag.Display.Color != 0 { - color := fmt.Sprintf("#%06X", item.Tag.Display.Color) - if item.Tag.ExtraAttributes.DyeItem != "" { - defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.Id].Color - if defaultHexColor != "" { - fmt.Printf("[CUSTOM_RESOURCES] Using default color for item %s: %s\n", item.Tag.ExtraAttributes.Id, defaultHexColor) - color = defaultHexColor - } - } - - if !slices.Contains(constants.BLACKLISTED_HEX_ARMOR_PIECES, item.Tag.ExtraAttributes.Id) { - processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Color: %s", color)) - } - } - if item.Tag.ExtraAttributes != nil { processedItem.Recombobulated = item.Tag.ExtraAttributes.Recombobulated == 1 if item.Tag.SkullOwner == nil { @@ -71,6 +56,22 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { processedItem.Shiny = len(item.Tag.ExtraAttributes.Enchantments) > 0 } + // Hex color + if item.Tag.Display.Color != 0 { + color := fmt.Sprintf("#%06X", item.Tag.Display.Color) + if item.Tag.ExtraAttributes.DyeItem != "" { + defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.Id].Color + if defaultHexColor != "" { + fmt.Printf("[CUSTOM_RESOURCES] Using default color for item %s: %s\n", item.Tag.ExtraAttributes.Id, defaultHexColor) + color = defaultHexColor + } + } + + if !slices.Contains(constants.BLACKLISTED_HEX_ARMOR_PIECES, item.Tag.ExtraAttributes.Id) { + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Color: %s", color)) + } + } + // Timestamps if item.Tag.ExtraAttributes.Timestamp != nil { if timestamp, ok := item.Tag.ExtraAttributes.Timestamp.(float64); ok { diff --git a/src/stats/other.go b/src/stats/other.go index e19a92d69..2ca99dd17 100644 --- a/src/stats/other.go +++ b/src/stats/other.go @@ -89,16 +89,21 @@ func GetFairySouls(userProfile *skycrypttypes.Member, gamemode string) *models.F gamemode = "normal" } + total := constants.FAIRY_SOULS[gamemode] + if total == 0 { + total = constants.FAIRY_SOULS["normal"] + } + if userProfile.FairySouls == nil { return &models.FairySouls{ Found: 0, - Total: constants.FAIRY_SOULS[gamemode], + Total: total, } } return &models.FairySouls{ Found: userProfile.FairySouls.TotalCollected, - Total: constants.FAIRY_SOULS[gamemode], + Total: total, } } diff --git a/src/stats/player_stats.go b/src/stats/player_stats.go index 8f49c96b6..8c7bff6be 100644 --- a/src/stats/player_stats.go +++ b/src/stats/player_stats.go @@ -66,32 +66,34 @@ func GetPlayerStats(userProfile *skycrypttypes.Member, profile *skycrypttypes.Pr } pets := GetPets(userProfile, &skycrypttypes.Profile{}) - activePet := pets.Pets[0] - if !activePet.Active { - for i := range pets.Pets { - if !pets.Pets[i].Active { - continue + if len(pets.Pets) > 0 { + activePet := pets.Pets[0] + if !activePet.Active { + for i := range pets.Pets { + if !pets.Pets[i].Active { + continue + } + + activePet = pets.Pets[i] + break } - - activePet = pets.Pets[i] - break } - } - for statName, statValue := range activePet.Stats { - if _, exists := stats[statName]; !exists { - continue + for statName, statValue := range activePet.Stats { + if _, exists := stats[statName]; !exists { + continue + } + + stats[statName]["active_pet"] += int(statValue) } - stats[statName]["active_pet"] += int(statValue) - } + for statName, statValue := range pets.PetScore.Stats { + if _, exists := stats[statName]; !exists { + continue + } - for statName, statValue := range pets.PetScore.Stats { - if _, exists := stats[statName]; !exists { - continue + stats[statName]["pet_score"] += int(statValue) } - - stats[statName]["pet_score"] += int(statValue) } skills := GetSkills(userProfile, &skycrypttypes.Profile{}, &skycrypttypes.Player{}) From 96d0aaf31d0299fda798e2a02dcd268021955829 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 30 Sep 2025 17:06:39 +0200 Subject: [PATCH 34/55] fix: potion textures --- src/stats/items/processing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index 4f40f9708..a9bc02155 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -152,9 +152,9 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { if os.Getenv("DEV") != "true" { processedItem.Texture = fmt.Sprintf("/api/potion/%s/%s", potionType, color) + } else { + processedItem.Texture = fmt.Sprintf("http://localhost:8080/api/potion/%s/%s", potionType, color) } - - processedItem.Texture = fmt.Sprintf("http://localhost:8080/api/potion/%s/%s", potionType, color) } if processedItem.Texture == "" { From 4810ae4c66401c51c4c75eb4434a82d827324d2d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 30 Sep 2025 17:28:59 +0200 Subject: [PATCH 35/55] fix: bug fixes --- go.mod | 2 +- go.sum | 4 ++++ src/api/hypixel.go | 2 +- src/stats/enchanting.go | 4 +++- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 6911367d5..960ef16db 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module skycrypt go 1.25.1 require ( - github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 + github.com/DuckySoLucky/SkyCrypt-Types v0.1.8 github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.9 diff --git a/go.sum b/go.sum index 17433de95..028d8760f 100644 --- a/go.sum +++ b/go.sum @@ -2,6 +2,10 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 h1:BnxKmMV0SLBk6DIr7zZw8sVFzqd6AyHj8bSAtLMXr70= github.com/DuckySoLucky/SkyCrypt-Types v0.1.6/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.7 h1:CzXcNlKd5K3G6e2jl5RlyLP2H18j+SAUvaoAakJuTyE= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.7/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.8 h1:nA1S/CcTYR+n73hyPV7kbb1fHhw6San0u8GJBXCPUZE= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.8/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc= github.com/KyleBanks/depth v1.2.1/go.mod h1:jzSb9d0L43HxTQfT+oSA1EEp2q+ne2uh6XgeJcm8brE= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= diff --git a/src/api/hypixel.go b/src/api/hypixel.go index a7ca17857..f5fb637af 100644 --- a/src/api/hypixel.go +++ b/src/api/hypixel.go @@ -75,7 +75,7 @@ func GetProfiles(uuid string) (*models.HypixelProfilesResponse, error) { var json = jsoniter.ConfigCompatibleWithStandardLibrary err = json.Unmarshal([]byte(cache), &response) if err == nil { - return &response, nil + // return &response, nil } } diff --git a/src/stats/enchanting.go b/src/stats/enchanting.go index 85e63afca..a01de306c 100644 --- a/src/stats/enchanting.go +++ b/src/stats/enchanting.go @@ -1,6 +1,7 @@ package stats import ( + "fmt" "os" "skycrypt/src/constants" "skycrypt/src/models" @@ -46,7 +47,8 @@ func getGame(gameData *skycrypttypes.ExperimentationGame, gameId string) []model } func GetEnchanting(userProfie *skycrypttypes.Member) models.EnchantingOutput { - if userProfie.Experimentation.ClaimsResets == nil { + if userProfie.Experimentation.Simon == nil { + fmt.Printf("no experimentation data found for user") return models.EnchantingOutput{ Unlocked: false, } From 692377f7dd528232300b7e1d0532b5c843929bcc Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 30 Sep 2025 17:29:41 +0200 Subject: [PATCH 36/55] fix: enable back cache --- src/api/hypixel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/hypixel.go b/src/api/hypixel.go index f5fb637af..a7ca17857 100644 --- a/src/api/hypixel.go +++ b/src/api/hypixel.go @@ -75,7 +75,7 @@ func GetProfiles(uuid string) (*models.HypixelProfilesResponse, error) { var json = jsoniter.ConfigCompatibleWithStandardLibrary err = json.Unmarshal([]byte(cache), &response) if err == nil { - // return &response, nil + return &response, nil } } From 04aed3a5eb7b5685869b29794f16dfd0388eb0e6 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Tue, 30 Sep 2025 17:29:55 +0200 Subject: [PATCH 37/55] fix: remove print msg --- src/stats/enchanting.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/stats/enchanting.go b/src/stats/enchanting.go index a01de306c..54199c858 100644 --- a/src/stats/enchanting.go +++ b/src/stats/enchanting.go @@ -1,7 +1,6 @@ package stats import ( - "fmt" "os" "skycrypt/src/constants" "skycrypt/src/models" @@ -48,7 +47,6 @@ func getGame(gameData *skycrypttypes.ExperimentationGame, gameId string) []model func GetEnchanting(userProfie *skycrypttypes.Member) models.EnchantingOutput { if userProfie.Experimentation.Simon == nil { - fmt.Printf("no experimentation data found for user") return models.EnchantingOutput{ Unlocked: false, } From a086a2ecfbc31cbda6bec65bed1497468b6fd6e4 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 1 Oct 2025 20:56:35 +0200 Subject: [PATCH 38/55] fix: minor bugs --- src/models/stats.go | 1 + src/stats/enchanting.go | 8 ++++++++ src/stats/items/museum.go | 2 -- src/stats/minions.go | 4 ++++ src/stats/missing.go | 2 +- src/stats/stats.go | 1 + 6 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/models/stats.go b/src/models/stats.go index 1a38fb3e3..76bd149ae 100644 --- a/src/models/stats.go +++ b/src/models/stats.go @@ -23,6 +23,7 @@ type StatsOutput struct { UUID string `json:"uuid"` ProfileID string `json:"profile_id"` ProfileCuteName string `json:"profile_cute_name"` + GameMode string `json:"game_mode"` Selected bool `json:"selected"` Profiles []*ProfilesStats `json:"profiles"` Members []*MemberStats `json:"members"` diff --git a/src/stats/enchanting.go b/src/stats/enchanting.go index 54199c858..1b79c3254 100644 --- a/src/stats/enchanting.go +++ b/src/stats/enchanting.go @@ -10,6 +10,10 @@ import ( ) func getGame(gameData *skycrypttypes.ExperimentationGame, gameId string) []models.EnchantingGame { + if gameData == nil { + gameData = &skycrypttypes.ExperimentationGame{} + } + var output []models.EnchantingGame for index, tier := range constants.EXPERIMENTS.Tiers { attempts := gameData.Attempts[index] @@ -63,6 +67,10 @@ func GetEnchanting(userProfie *skycrypttypes.Member) models.EnchantingOutput { } for _, g := range games { + if g.gameData == nil { + continue + } + output[g.key] = models.EnchantingGameData{ Name: constants.EXPERIMENTS.Games[g.key].Name, Stats: models.EnchantingGameStats{ diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index 3610ec728..e55c6ec4e 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -339,8 +339,6 @@ func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { itemSlot.ProcessedItem.Texture = strings.Replace(itemSlot.ProcessedItem.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) } - fmt.Printf("Item: %+v\n", itemSlot.ProcessedItem.Texture) - output[itemSlot.Position] = itemSlot.ProcessedItem continue } diff --git a/src/stats/minions.go b/src/stats/minions.go index 70070c5ed..7941cd8b2 100644 --- a/src/stats/minions.go +++ b/src/stats/minions.go @@ -29,6 +29,10 @@ func getMinionSlots(profile *skycrypttypes.Profile, tiers int) *models.MinionSlo } } + if profile.CommunityUpgrades == nil { + profile.CommunityUpgrades = &skycrypttypes.CommunityUpgrades{} + } + bonusSlots := 0 for _, upgrade := range profile.CommunityUpgrades.UpgradeStates { if upgrade.Upgrade == "minion_slots" { diff --git a/src/stats/missing.go b/src/stats/missing.go index cab9c115f..da901d574 100644 --- a/src/stats/missing.go +++ b/src/stats/missing.go @@ -192,7 +192,7 @@ func getMissing(accessories *[]models.InsertAccessory, accessoryIds []models.Acc object := models.ProcessedItem{ Texture: accessory.Texture, DisplayName: accessory.Name, - Rarity: accessory.Rarity, + Rarity: missingAccessory.Rarity, Id: missingAccessory.Id, } diff --git a/src/stats/stats.go b/src/stats/stats.go index 7c2aa223e..cbf4f4ab0 100644 --- a/src/stats/stats.go +++ b/src/stats/stats.go @@ -13,6 +13,7 @@ func GetStats(mowojang *models.MowojangReponse, profiles *models.HypixelProfiles UUID: mowojang.UUID, ProfileID: profile.ProfileID, ProfileCuteName: profile.CuteName, + GameMode: profile.GameMode, Selected: profile.Selected, Profiles: FormatProfiles(profiles), Members: members, From dd39c5fc04f2ff00c9bda9ab114f7d1a0ee96c2b Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sat, 4 Oct 2025 13:17:44 +0200 Subject: [PATCH 39/55] feat: bump sh-nw --- NotEnoughUpdates-REPO | 2 +- go.mod | 9 ++++++++- go.sum | 22 ++++++++++++++++++++++ 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index e7ee75e13..e13ed7b90 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit e7ee75e1370f4b9edaab5db3066567661f28a180 +Subproject commit e13ed7b90b78c33dfb73425e7fe18e733c570e5b diff --git a/go.mod b/go.mod index 960ef16db..9c28fa73f 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.8 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.9 github.com/joho/godotenv v1.5.1 @@ -20,8 +20,12 @@ require ( github.com/KyleBanks/depth v1.2.1 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect github.com/ProtonMail/go-crypto v1.1.6 // indirect + github.com/bytedance/gopkg v0.1.3 // indirect + github.com/bytedance/sonic v1.14.1 // indirect + github.com/bytedance/sonic/loader v0.3.0 // indirect github.com/cespare/xxhash/v2 v2.1.2 // indirect github.com/cloudflare/circl v1.6.1 // indirect + github.com/cloudwego/base64x v0.1.6 // indirect github.com/cyphar/filepath-securejoin v0.4.1 // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/emirpasic/gods v1.18.1 // indirect @@ -45,13 +49,16 @@ require ( github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect + github.com/klauspost/cpuid/v2 v2.3.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pjbgf/sha1cd v0.3.2 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/skeema/knownhosts v1.3.1 // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect go.yaml.in/yaml/v3 v3.0.4 // indirect + golang.org/x/arch v0.21.0 // indirect golang.org/x/crypto v0.42.0 // indirect golang.org/x/net v0.44.0 // indirect golang.org/x/tools v0.37.0 // indirect diff --git a/go.sum b/go.sum index 028d8760f..439e7d896 100644 --- a/go.sum +++ b/go.sum @@ -17,6 +17,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 h1:cEsz6bywYOLAzs3Xsw6Bh github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 h1:/yMpNt4hea28/g1PbbIoN3sZBV4vIG+M4YqmM0HwQWg= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1 h1:Sj71/ER/utNnV4cDBpHAgR2epYJPg51NfT4629S+aCg= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1/go.mod h1:SE+6+ASyA2r0QJM7Je8OCxN2GZCOaioDLujuvBymyjI= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ= @@ -25,10 +27,18 @@ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFI github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= +github.com/bytedance/gopkg v0.1.3 h1:TPBSwH8RsouGCBcMBktLt1AymVo2TVsBVCY4b6TnZ/M= +github.com/bytedance/gopkg v0.1.3/go.mod h1:576VvJ+eJgyCzdjS+c4+77QF3p7ubbtiKARP3TxducM= +github.com/bytedance/sonic v1.14.1 h1:FBMC0zVz5XUmE4z9wF4Jey0An5FueFvOsTKKKtwIl7w= +github.com/bytedance/sonic v1.14.1/go.mod h1:gi6uhQLMbTdeP0muCnrjHLeCUPyb70ujhnNlhOylAFc= +github.com/bytedance/sonic/loader v0.3.0 h1:dskwH8edlzNMctoruo8FPTJDF3vLtDT0sXZwvZJyqeA= +github.com/bytedance/sonic/loader v0.3.0/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ0= github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs= +github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M= +github.com/cloudwego/base64x v0.1.6/go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU= github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s= github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -107,6 +117,8 @@ github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4 github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= +github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= +github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= @@ -148,13 +160,20 @@ github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic github.com/skeema/knownhosts v1.3.1 h1:X2osQ+RAjK76shCbvhHHHVl3ZlgDm8apHEHFqRjnBY8= github.com/skeema/knownhosts v1.3.1/go.mod h1:r7KTdC8l4uxWRyK2TpQZ/1o5HaSzh06ePQNxPwTcfiY= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/swaggo/swag v1.16.4 h1:clWJtd9LStiG3VeijiCfOVODP6VpHtKdQy9ELFG3s1A= github.com/swaggo/swag v1.16.4/go.mod h1:VBsHJRsDvfYvqoiMKnsdwhNV9LEMHgEDZcyVYX0sxPg= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasthttp v1.66.0 h1:M87A0Z7EayeyNaV6pfO3tUTUiYO0dZfEJnRGXTVNuyU= @@ -167,6 +186,8 @@ github.com/yokeTH/gofiber-scalar v0.1.1 h1:Oab4nLRCVv4TqdTOqVeDpQfnOITzg3OYNI5UL github.com/yokeTH/gofiber-scalar v0.1.1/go.mod h1:EETyzIX2XbCIMUCFX9gShTjGgOUeJbpWUuCwL09A2b0= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= +golang.org/x/arch v0.21.0 h1:iTC9o7+wP6cPWpDWkivCvQFGAHDQ59SrSxsLPcnkArw= +golang.org/x/arch v0.21.0/go.mod h1:dNHoOeKiyja7GTvF9NJS1l3Z2yntpQNzgrjh1cU103A= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.42.0 h1:chiH31gIWm57EkTXpwnqf8qeuMUi0yekh6mT2AvFlqI= golang.org/x/crypto v0.42.0/go.mod h1:4+rDnOTJhQCx2q7/j6rAN5XDw8kPjeaXEUR2eL94ix8= @@ -207,5 +228,6 @@ gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= From fdb8d6e6019c6dd1efff7c2a43cd9318c49157e4 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sun, 5 Oct 2025 18:48:55 +0200 Subject: [PATCH 40/55] fix: undefined playerData, perf: fetch prices & items on startup --- NotEnoughUpdates-REPO | 2 +- src/models/stats.go | 2 +- src/routes.go | 15 ++++++++++++++- src/stats/skills.go | 3 +++ 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index e13ed7b90..b5f6eb238 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit e13ed7b90b78c33dfb73425e7fe18e733c570e5b +Subproject commit b5f6eb23834dcd5dd736749f78b129db8ec4146c diff --git a/src/models/stats.go b/src/models/stats.go index 76bd149ae..9fe41f6a2 100644 --- a/src/models/stats.go +++ b/src/models/stats.go @@ -23,7 +23,7 @@ type StatsOutput struct { UUID string `json:"uuid"` ProfileID string `json:"profile_id"` ProfileCuteName string `json:"profile_cute_name"` - GameMode string `json:"game_mode"` + GameMode string `json:"game_mode,omitempty"` Selected bool `json:"selected"` Profiles []*ProfilesStats `json:"profiles"` Members []*MemberStats `json:"members"` diff --git a/src/routes.go b/src/routes.go index aa03df7ed..e9552dbe7 100644 --- a/src/routes.go +++ b/src/routes.go @@ -10,6 +10,7 @@ import ( "skycrypt/src/routes" "skycrypt/src/utility" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/compress" "github.com/joho/godotenv" @@ -58,6 +59,16 @@ func SetupApplication() error { return fmt.Errorf("error parsing NEU repository: %v", err) } + _, err = skyhelpernetworthgo.GetPrices(true, 0, 0) + if err != nil { + return fmt.Errorf("error fetching SkyHelper prices: %v", err) + } + + _, err = skyhelpernetworthgo.GetItems(true, 0, 0) + if err != nil { + return fmt.Errorf("error fetching SkyHelper items: %v", err) + } + if os.Getenv("FIBER_PREFORK_CHILD") == "" { fmt.Print("[SKYCRYPT] SkyCrypt initialized successfully\n") @@ -82,7 +93,9 @@ func SetupRoutes(app *fiber.App) { })) if os.Getenv("DEV") != "true" { - fmt.Println("[ENVIROMENT] Running in production mode") + if os.Getenv("FIBER_PREFORK_CHILD") == "" { + fmt.Println("[ENVIROMENT] Running in production mode") + } /* app.Use(etag.New()) diff --git a/src/stats/skills.go b/src/stats/skills.go index ac42c7466..dbda145f8 100644 --- a/src/stats/skills.go +++ b/src/stats/skills.go @@ -13,6 +13,9 @@ import ( func GetSkills(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile, player *skycrypttypes.Player) *models.Skills { output := &models.Skills{Skills: make(map[string]models.Skill)} + if userProfile.PlayerData == nil { + userProfile.PlayerData = &skycrypttypes.PlayerData{} + } skillLevelCaps := stats.GetSkillLevelCaps(userProfile, player) From 0e47271d6850d11fb6822f8b1672943312a1fb00 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 8 Oct 2025 22:55:44 +0200 Subject: [PATCH 41/55] feat: add item value, add prices to misssing accessories and few fixes --- .env.example | 3 +- NotEnoughUpdates-REPO | 2 +- go.mod | 4 +- go.sum | 18 ++---- src/api/hypixel_constants.go | 2 + src/constants/accessories.go | 3 - src/models/hypixel_items.go | 8 ++- src/models/items.go | 3 +- src/routes.go | 23 +++---- src/routes/accessories.go | 49 ++++++++------- src/routes/gear.go | 84 +++++++++++++++----------- src/routes/inventory.go | 6 +- src/routes/rift.go | 58 ++++++++++-------- src/routes/skills.go | 68 ++++++++++++--------- src/routes/stats.go | 2 - src/stats/accessories.go | 6 +- src/stats/items.go | 110 +++++++++++++++++++++++++++++----- src/stats/items/museum.go | 4 +- src/stats/items/processing.go | 51 ++++++++-------- src/stats/minions.go | 4 ++ src/stats/missing.go | 65 +++++++++++++++++++- src/stats/pets.go | 13 ++++ src/stats/player_stats.go | 12 ++-- src/utility/helper.go | 24 ++++++-- 24 files changed, 424 insertions(+), 198 deletions(-) diff --git a/.env.example b/.env.example index 6dae164cb..1de2310ff 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,4 @@ HYPIXEL_API_KEY="" DISCORD_WEBHOOK="" -DEV="true" \ No newline at end of file +DEV="true" +ENABLE_ARMOR_HEX="false" \ No newline at end of file diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index b5f6eb238..b5dcee471 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit b5f6eb23834dcd5dd736749f78b129db8ec4146c +Subproject commit b5dcee4713200037d78a37efd1d5edb0adb876a3 diff --git a/go.mod b/go.mod index 9c28fa73f..0e2ecdd21 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module skycrypt go 1.25.1 require ( - github.com/DuckySoLucky/SkyCrypt-Types v0.1.8 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1 + github.com/DuckySoLucky/SkyCrypt-Types v0.1.10 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.9 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index 439e7d896..f6ceee097 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +1,7 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.6 h1:BnxKmMV0SLBk6DIr7zZw8sVFzqd6AyHj8bSAtLMXr70= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.6/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.7 h1:CzXcNlKd5K3G6e2jl5RlyLP2H18j+SAUvaoAakJuTyE= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.7/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.8 h1:nA1S/CcTYR+n73hyPV7kbb1fHhw6San0u8GJBXCPUZE= -github.com/DuckySoLucky/SkyCrypt-Types v0.1.8/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.10 h1:65kEYXMhA6Ve/CcPCbdijncB7KO/c2gEx42NPOhPKgA= +github.com/DuckySoLucky/SkyCrypt-Types v0.1.10/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc= github.com/KyleBanks/depth v1.2.1/go.mod h1:jzSb9d0L43HxTQfT+oSA1EEp2q+ne2uh6XgeJcm8brE= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= @@ -13,12 +9,10 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9 h1:cEsz6bywYOLAzs3Xsw6BhyLOoCvQhYegjmj1aNa58nY= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.9/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10 h1:/yMpNt4hea28/g1PbbIoN3sZBV4vIG+M4YqmM0HwQWg= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.1.10/go.mod h1:jXSi5ws4TZIL6H4Fgy92PCJMcUr6De1IvU+197JlFw8= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1 h1:Sj71/ER/utNnV4cDBpHAgR2epYJPg51NfT4629S+aCg= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.1/go.mod h1:SE+6+ASyA2r0QJM7Je8OCxN2GZCOaioDLujuvBymyjI= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2 h1:tejveRivA8pwvNuUE1cKJEv4eyOdAGOkGYc7/ljAR4k= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2/go.mod h1:SE+6+ASyA2r0QJM7Je8OCxN2GZCOaioDLujuvBymyjI= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3 h1:Dz+KV2ZJsrKYE8C4cppgCTr/NKjIiWoNW4YIkrFQwt4= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3/go.mod h1:8AdNFYBlDU8YGIDj0tIrlPkW5J1ojrvvbxyHzHvcCXw= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ= diff --git a/src/api/hypixel_constants.go b/src/api/hypixel_constants.go index 46f3aee8e..9c3c33f45 100644 --- a/src/api/hypixel_constants.go +++ b/src/api/hypixel_constants.go @@ -106,6 +106,8 @@ func processItems(items *[]models.HypixelItem) map[string]models.ProcessedHypixe Origin: item.Origin, RiftTransferrable: item.RiftTransferrable, MuseumData: item.MuseumData, + Color: utility.GetHexColor(item.Color), + GemstoneSlots: item.GemstoneSlots, } } diff --git a/src/constants/accessories.go b/src/constants/accessories.go index 19ca14294..c86e29a12 100644 --- a/src/constants/accessories.go +++ b/src/constants/accessories.go @@ -162,19 +162,16 @@ var SPECIAL_ACCESSORIES = map[string]specialAccessoryConstant{ "BOOK_OF_PROGRESSION": { AllowsRecomb: false, Rarities: []string{"uncommon", "rare", "epic", "legendary", "mythic"}, - CustomPrice: true, AllowsEnrichment: true, }, "PANDORAS_BOX": { AllowsRecomb: false, Rarities: []string{"uncommon", "rare", "epic", "legendary", "mythic"}, - CustomPrice: true, AllowsEnrichment: true, }, "TRAPPER_CREST": { AllowsRecomb: true, Rarities: []string{"uncommon"}, - CustomPrice: true, AllowsEnrichment: true, }, "PULSE_RING": { diff --git a/src/models/hypixel_items.go b/src/models/hypixel_items.go index 67bcac8fc..6a521e579 100644 --- a/src/models/hypixel_items.go +++ b/src/models/hypixel_items.go @@ -18,7 +18,10 @@ type HypixelItem struct { Origin string `json:"origin,omitempty"` RiftTransferrable bool `json:"rift_transferrable,omitempty"` MuseumData *hypixelItemMuseumData `json:"museum_data,omitempty"` - Color string `json:"hex_color,omitempty"` + Color string `json:"color,omitempty"` + GemstoneSlots []struct { + SlotType string `json:"slot_type"` + } `json:"gemstone_slots"` } type ProcessedHypixelItem struct { @@ -35,6 +38,9 @@ type ProcessedHypixelItem struct { MuseumData *hypixelItemMuseumData `json:"museum_data,omitempty"` Color string `json:"hex_color,omitempty"` TextureId string `json:"texture_id,omitempty"` + GemstoneSlots []struct { + SlotType string `json:"slot_type"` + } `json:"gemstone_slots"` } type skin struct { diff --git a/src/models/items.go b/src/models/items.go index 23690d985..4268e0139 100644 --- a/src/models/items.go +++ b/src/models/items.go @@ -3,7 +3,7 @@ package models import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" type DecodedInventory struct { - Items []skycrypttypes.Item `nbt:"i"` + Items []*skycrypttypes.Item `nbt:"i"` } type ProcessedItem struct { @@ -21,6 +21,7 @@ type ProcessedItem struct { IsInactive *bool `json:"isInactive,omitempty"` Shiny bool `json:"shiny,omitempty"` Wiki *WikipediaLinks `json:"wiki,omitempty"` + Price float64 `json:"price,omitempty"` } type WikipediaLinks struct { diff --git a/src/routes.go b/src/routes.go index e9552dbe7..1c450653f 100644 --- a/src/routes.go +++ b/src/routes.go @@ -9,6 +9,7 @@ import ( redis "skycrypt/src/db" "skycrypt/src/routes" "skycrypt/src/utility" + "time" skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" @@ -18,6 +19,8 @@ import ( ) func SetupApplication() error { + timeNow := time.Now() + err := godotenv.Load() if err != nil && os.Getenv("FIBER_PREFORK_CHILD") == "" { log.Println("No .env file found, using environment variables") @@ -59,20 +62,20 @@ func SetupApplication() error { return fmt.Errorf("error parsing NEU repository: %v", err) } - _, err = skyhelpernetworthgo.GetPrices(true, 0, 0) - if err != nil { - return fmt.Errorf("error fetching SkyHelper prices: %v", err) - } + if os.Getenv("FIBER_PREFORK_CHILD") == "" { + _, err = skyhelpernetworthgo.GetPrices(true, 0, 0) + if err != nil { + return fmt.Errorf("error fetching SkyHelper prices: %v", err) + } - _, err = skyhelpernetworthgo.GetItems(true, 0, 0) - if err != nil { - return fmt.Errorf("error fetching SkyHelper items: %v", err) - } + _, err = skyhelpernetworthgo.GetItems(true, 0, 0) + if err != nil { + return fmt.Errorf("error fetching SkyHelper items: %v", err) + } - if os.Getenv("FIBER_PREFORK_CHILD") == "" { fmt.Print("[SKYCRYPT] SkyCrypt initialized successfully\n") - utility.SendWebhook("SKYCRYPT_STARTED", "EPIC_ERROR", []byte("SkyCrypt has started successfully!")) + utility.SendWebhook("BACKEND", "SkyCrypt Backend has started successfully!", fmt.Appendf(nil, "Startup Time: %s", time.Since(timeNow).String())) } return nil diff --git a/src/routes/accessories.go b/src/routes/accessories.go index c20e7347d..56fa07dc4 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -3,13 +3,12 @@ package routes import ( "fmt" "skycrypt/src/api" - redis "skycrypt/src/db" "skycrypt/src/stats" "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" - jsoniter "github.com/json-iterator/go" ) // AccessoriesHandler godoc @@ -37,31 +36,39 @@ func AccessoriesHandler(c *fiber.Ctx) error { }) } - userProfileValue := profile.Members[uuid] - userProfile := &userProfileValue + userProfile := profile.Members[uuid] + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ + "talisman_bag": userProfile.Inventory.BagContents.TalismanBag, + } - var items map[string][]skycrypttypes.Item - cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) - if err == nil && cache != "" { - var json = jsoniter.ConfigCompatibleWithStandardLibrary - err = json.Unmarshal([]byte(cache), &items) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to parse items: %v", err), - }) - } - } else { - items, err = stats.GetItems(userProfile, profile.ProfileID) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get items: %v", err), - }) + decodedItems, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories(specifiedInventories, skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal()) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to calculate items: %v", err), + }) + } + + accessories := []*skycrypttypes.Item{} + if decodedItems.Types["talisman_bag"] != nil { + for _, item := range decodedItems.Types["talisman_bag"].Items { + if item.ItemData != nil { + item.ItemData.Price = item.Price + } + + accessories = append(accessories, item.ItemData) } } + items := map[string][]*skycrypttypes.Item{ + "talisman_bag": accessories, + } + fmt.Printf("Returning /api/accessories/%s in %s\n", profileId, time.Since(timeNow)) return c.JSON(fiber.Map{ - "accessories": stats.GetAccessories(userProfile, items), + "accessories": stats.GetAccessories(&userProfile, items), }) } diff --git a/src/routes/gear.go b/src/routes/gear.go index db182d296..35e8b8b77 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -3,7 +3,6 @@ package routes import ( "fmt" "skycrypt/src/api" - redis "skycrypt/src/db" "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" @@ -11,8 +10,8 @@ import ( "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" - jsoniter "github.com/json-iterator/go" ) // GearHandler godoc @@ -33,51 +32,66 @@ func GearHandler(c *fiber.Ctx) error { uuid := c.Params("uuid") profileId := c.Params("profileId") - var items map[string][]skycrypttypes.Item - cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) - if err == nil && cache != "" { - var json = jsoniter.ConfigCompatibleWithStandardLibrary - err = json.Unmarshal([]byte(cache), &items) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to parse items: %v", err), - }) - } - } else { - profile, err := api.GetProfile(uuid, profileId) - if err != nil { - return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get profile: %v", err), - }) - } + profile, err := api.GetProfile(uuid, profileId) + if err != nil { + return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to get profile: %v", err), + }) + } + + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ + "armor": profile.Members[uuid].Inventory.Armor, + "equipment": profile.Members[uuid].Inventory.Equipment, + "wardrobe": profile.Members[uuid].Inventory.Wardrobe, + "inventory": profile.Members[uuid].Inventory.Inventory, + "enderchest": profile.Members[uuid].Inventory.Enderchest, + } - userProfileValue := profile.Members[uuid] - userProfile := &userProfileValue + for backpackId, backpackData := range profile.Members[uuid].Inventory.Backpack { + specifiedInventories[fmt.Sprintf("backpack_%s", backpackId)] = backpackData + } - items, err = stats.GetItems(userProfile, profile.ProfileID) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get items: %v", err), - }) - } + decodedItems, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories(specifiedInventories, skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal()) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to calculate items: %v", err), + }) } - var processedItems = make(map[string][]models.ProcessedItem) - inventoryKeys := []string{"armor", "equipment", "wardrobe", "inventory", "enderchest", "backpack"} - for _, inventoryId := range inventoryKeys { - inventoryData := items[inventoryId] + processedItems := map[string][]models.ProcessedItem{} + for inventoryId := range specifiedInventories { + if decodedItems.Types[inventoryId] == nil { + continue + } + + inventoryData := decodedItems.Types[inventoryId].Items if len(inventoryData) == 0 { continue } - processedItems[inventoryId] = statsItems.ProcessItems(&inventoryData, inventoryId) + combinedItems := make([]*skycrypttypes.Item, len(inventoryData)) + for i, item := range inventoryData { + combinedItems[i] = item.ItemData + if combinedItems[i] == nil { + continue + } + + combinedItems[i].Price = item.Price + } + + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) } allItems := make([]models.ProcessedItem, 0) - for _, inventoryId := range inventoryKeys { - if processedItems[inventoryId] != nil { - allItems = append(allItems, processedItems[inventoryId]...) + for inventoryId := range specifiedInventories { + if processedItems[inventoryId] == nil { + continue } + + allItems = append(allItems, processedItems[inventoryId]...) } fmt.Printf("Returning /api/gear/%s in %s\n", profileId, time.Since(timeNow)) diff --git a/src/routes/inventory.go b/src/routes/inventory.go index 88dcbffe8..fe26fcbe5 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -110,7 +110,7 @@ func InventoryHandler(c *fiber.Ctx) error { userProfile := &userProfileValue if inventoryId == "search" { - var items map[string][]skycrypttypes.Item + var items map[string][]*skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary @@ -144,7 +144,7 @@ func InventoryHandler(c *fiber.Ctx) error { } if strings.Contains(strings.ToLower(item.Tag.Display.Name), searchString) || strings.Contains(strings.Join(item.Tag.Display.Lore, " "), searchString) { - item := statsItems.ProcessItem(&item, inventoryId) + item := statsItems.ProcessItem(item, inventoryId) formattedItems = append(formattedItems, item) } @@ -178,7 +178,7 @@ func InventoryHandler(c *fiber.Ctx) error { } itemSlice := stats.GetInventory(userProfile, inventoryId) - output := statsItems.ProcessItems(&itemSlice, inventoryId) + output := statsItems.ProcessItems(itemSlice, inventoryId) strippedItems := statsItems.StripItems(&output) if strings.HasSuffix(inventoryId, "inventory") { diff --git a/src/routes/rift.go b/src/routes/rift.go index 222d29c24..1c69e85f1 100644 --- a/src/routes/rift.go +++ b/src/routes/rift.go @@ -3,15 +3,14 @@ package routes import ( "fmt" "skycrypt/src/api" - redis "skycrypt/src/db" "skycrypt/src/models" "skycrypt/src/stats" - statsitems "skycrypt/src/stats/items" + statsItems "skycrypt/src/stats/items" "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" - jsoniter "github.com/json-iterator/go" ) // RiftHandler godoc @@ -42,34 +41,43 @@ func RiftHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - var items map[string][]skycrypttypes.Item - cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) - if err == nil && cache != "" { - var json = jsoniter.ConfigCompatibleWithStandardLibrary - err = json.Unmarshal([]byte(cache), &items) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to parse items: %v", err), - }) - } - } else { - items, err = stats.GetItems(userProfile, profile.ProfileID) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get items: %v", err), - }) - } + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ + "rift_armor": profile.Members[uuid].Rift.Inventory.Armor, + "rift_equipment": profile.Members[uuid].Rift.Inventory.Equipment, + } + + decodedItems, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories(specifiedInventories, skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal()) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to calculate items: %v", err), + }) } - var processedItems = make(map[string][]models.ProcessedItem) - inventoryKeys := []string{"rift_armor", "rift_equipment"} - for _, inventoryId := range inventoryKeys { - inventoryData := items[inventoryId] + processedItems := map[string][]models.ProcessedItem{} + for inventoryId := range specifiedInventories { + if decodedItems.Types[inventoryId] == nil { + continue + } + + inventoryData := decodedItems.Types[inventoryId].Items if len(inventoryData) == 0 { continue } - processedItems[inventoryId] = statsitems.ProcessItems(&inventoryData, inventoryId) + combinedItems := make([]*skycrypttypes.Item, len(inventoryData)) + for i, item := range inventoryData { + combinedItems[i] = item.ItemData + if combinedItems[i] == nil { + continue + } + + combinedItems[i].Price = item.Price + } + + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) } fmt.Printf("Returning /api/rift/%s in %s\n", profileId, time.Since(timeNow)) diff --git a/src/routes/skills.go b/src/routes/skills.go index 30f94ab3b..6b2d724c2 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -3,7 +3,6 @@ package routes import ( "fmt" "skycrypt/src/api" - redis "skycrypt/src/db" "skycrypt/src/models" "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" @@ -11,8 +10,8 @@ import ( "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" "github.com/gofiber/fiber/v2" - jsoniter "github.com/json-iterator/go" ) // SkillsHandler godoc @@ -50,41 +49,56 @@ func SkillsHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue - var items map[string][]skycrypttypes.Item - cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) - if err == nil && cache != "" { - var json = jsoniter.ConfigCompatibleWithStandardLibrary - err = json.Unmarshal([]byte(cache), &items) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to parse items: %v", err), - }) - } - } else { - items, err = stats.GetItems(userProfile, profile.ProfileID) - if err != nil { - return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ - "error": fmt.Sprintf("Failed to get items: %v", err), - }) - } + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ + "inventory": profile.Members[uuid].Inventory.Inventory, + "enderchest": profile.Members[uuid].Inventory.Enderchest, + } + + for backpackId, backpackData := range profile.Members[uuid].Inventory.Backpack { + specifiedInventories[fmt.Sprintf("backpack_%s", backpackId)] = backpackData + } + + decodedItems, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories(specifiedInventories, skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal()) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": fmt.Sprintf("Failed to calculate items: %v", err), + }) } - var processedItems = make(map[string][]models.ProcessedItem) - inventoryKeys := []string{"armor", "equipment", "wardrobe", "inventory", "enderchest", "backpack"} - for _, inventoryId := range inventoryKeys { - inventoryData := items[inventoryId] + processedItems := map[string][]models.ProcessedItem{} + for inventoryId := range specifiedInventories { + if decodedItems.Types[inventoryId] == nil { + continue + } + + inventoryData := decodedItems.Types[inventoryId].Items if len(inventoryData) == 0 { continue } - processedItems[inventoryId] = statsItems.ProcessItems(&inventoryData, inventoryId) + combinedItems := make([]*skycrypttypes.Item, len(inventoryData)) + for i, item := range inventoryData { + combinedItems[i] = item.ItemData + if combinedItems[i] == nil { + continue + } + + combinedItems[i].Price = item.Price + } + + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) } allItems := make([]models.ProcessedItem, 0) - for _, inventoryId := range inventoryKeys { - if processedItems[inventoryId] != nil { - allItems = append(allItems, processedItems[inventoryId]...) + for inventoryId := range specifiedInventories { + if processedItems[inventoryId] == nil { + continue } + + allItems = append(allItems, processedItems[inventoryId]...) } fmt.Printf("Returning /api/skills/%s in %s\n", profileId, time.Since(timeNow)) diff --git a/src/routes/stats.go b/src/routes/stats.go index 5ab580687..bf05b84b2 100644 --- a/src/routes/stats.go +++ b/src/routes/stats.go @@ -83,8 +83,6 @@ func StatsHandler(c *fiber.Ctx) error { }) } - stats.GetItems(userProfile, profile.ProfileID) - fmt.Printf("Returning /api/stats/%s in %s\n", uuid, time.Since(timeNow)) return c.JSON(fiber.Map{ diff --git a/src/stats/accessories.go b/src/stats/accessories.go index 979c03c2a..f59e39db1 100644 --- a/src/stats/accessories.go +++ b/src/stats/accessories.go @@ -13,7 +13,7 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]skycrypttypes.Item) models.GetMissingAccessoresOutput { +func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycrypttypes.Item) models.GetMissingAccessoresOutput { if items == nil { return models.GetMissingAccessoresOutput{} } @@ -21,7 +21,7 @@ func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]skycryp talismanBag := items["talisman_bag"] accessoryIds := make([]models.AccessoryIds, 0) accessories := make([]models.InsertAccessory, 0) - for _, item := range stats.ProcessItems(&talismanBag, "talisman_bag") { + for _, item := range stats.ProcessItems(talismanBag, "talisman_bag") { id := stats.GetId(item) if len(id) == 0 { continue @@ -50,7 +50,7 @@ func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]skycryp continue } - processedItems[inventoryId] = stats.ProcessItems(&inventoryData, inventoryId) + processedItems[inventoryId] = stats.ProcessItems(inventoryData, inventoryId) } for _, inventoryId := range inventoryKeys { diff --git a/src/stats/items.go b/src/stats/items.go index a2f665684..769c36b67 100644 --- a/src/stats/items.go +++ b/src/stats/items.go @@ -8,6 +8,7 @@ import ( "sync" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" jsoniter "github.com/json-iterator/go" ) @@ -47,9 +48,9 @@ func GetRawInventory(useProfile *skycrypttypes.Member, inventoryId string) strin return "" } -func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycrypttypes.Item { +func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []*skycrypttypes.Item { if useProfile.Inventory == nil { - return []skycrypttypes.Item{} + return []*skycrypttypes.Item{} } if inventoryId == "backpack" { @@ -64,7 +65,7 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry type result struct { inventoryId string - items []skycrypttypes.Item + items []*skycrypttypes.Item err error } @@ -76,13 +77,33 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry go func(id string, data *string) { defer wg.Done() - decodedInventory, err := utility.DecodeInventory(data) + decodedInventory, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories( + skyhelpernetworthgo.SpecifiedInventory{ + "inventory": skycrypttypes.EncodedItems{Data: *data}, + }, + skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal(), + ) + items := []*skycrypttypes.Item{} + if decodedInventory.Types["inventory"] != nil { + for _, item := range decodedInventory.Types["inventory"].Items { + itemData := item.ItemData + if itemData != nil { + itemData.Price = item.Price + } + + items = append(items, itemData) + } + } + if err != nil { resultChan <- result{id, nil, err} return } - resultChan <- result{id, decodedInventory.Items, nil} + resultChan <- result{id, items, nil} }(inventoryId, inventoryData) } @@ -91,7 +112,7 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry close(resultChan) }() - decodedInventory := make(map[string][]skycrypttypes.Item, len(encodedInventories)) + decodedInventory := make(map[string][]*skycrypttypes.Item, len(encodedInventories)) for res := range resultChan { if res.err != nil { fmt.Printf("Error decoding inventory %s: %v\n", res.inventoryId, res.err) @@ -101,7 +122,7 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry decodedInventory[res.inventoryId] = res.items } - output := []skycrypttypes.Item{} + output := []*skycrypttypes.Item{} for inventoryId, items := range decodedInventory { if strings.HasPrefix(inventoryId, "backpack_") && !strings.Contains(inventoryId, "icon") { @@ -120,16 +141,36 @@ func GetInventory(useProfile *skycrypttypes.Member, inventoryId string) []skycry } rawInventory := GetRawInventory(useProfile, inventoryId) - decodedInventory, err := utility.DecodeInventory(&rawInventory) + decodedInventory, err := skyhelpernetworthgo.CalculateFromSpecifiedInventories( + skyhelpernetworthgo.SpecifiedInventory{ + "inventory": skycrypttypes.EncodedItems{Data: rawInventory}, + }, + skyhelpernetworthgo.NetworthOptions{ + IncludeItemData: true, + KeepInvalidItems: true, + }.ToInternal(), + ) + items := []*skycrypttypes.Item{} + if decodedInventory.Types["inventory"] != nil { + for _, item := range decodedInventory.Types["inventory"].Items { + itemData := item.ItemData + if itemData != nil { + itemData.Price = item.Price + } + + items = append(items, itemData) + } + } + if err != nil { fmt.Printf("Error decoding inventory %s: %v\n", inventoryId, err) return nil } - return decodedInventory.Items + return items } -func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][]skycrypttypes.Item, error) { +func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][]*skycrypttypes.Item, error) { if useProfile.Inventory == nil { useProfile.Inventory = &skycrypttypes.Inventory{} } @@ -166,7 +207,7 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] type result struct { inventoryId string - items []skycrypttypes.Item + items []*skycrypttypes.Item err error } @@ -193,7 +234,7 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] close(resultChan) }() - decodedInventory := make(map[string][]skycrypttypes.Item, len(encodedInventories)) + decodedInventory := make(map[string][]*skycrypttypes.Item, len(encodedInventories)) for res := range resultChan { if res.err != nil { fmt.Printf("Error decoding inventory %s: %v\n", res.inventoryId, res.err) @@ -203,7 +244,7 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] decodedInventory[res.inventoryId] = res.items } - output := make(map[string][]skycrypttypes.Item) + output := make(map[string][]*skycrypttypes.Item) for inventoryId, items := range decodedInventory { if !strings.Contains(inventoryId, "backpack") { output[inventoryId] = items @@ -211,7 +252,7 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] if strings.HasPrefix(inventoryId, "backpack_") && !strings.Contains(inventoryId, "icon") { if output["backpack"] == nil { - output["backpack"] = []skycrypttypes.Item{} + output["backpack"] = []*skycrypttypes.Item{} } backpackIndex := strings.Split(inventoryId, "_")[1] @@ -236,3 +277,44 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] return output, nil } + +func GetInventories(inventoryIds []string, useProfile *skycrypttypes.Member) map[string][]*skycrypttypes.Item { + /* + encodedInventories := map[string]*string{ + "inventory": &useProfile.Inventory.Inventory.Data, + "enderchest": &useProfile.Inventory.Enderchest.Data, + "armor": &useProfile.Inventory.Armor.Data, + "equipment": &useProfile.Inventory.Equipment.Data, + "personal_vault": &useProfile.Inventory.PersonalVault.Data, + "wardrobe": &useProfile.Inventory.Wardrobe.Data, + + // rift + "rift_inventory": &useProfile.Rift.Inventory.Inventory.Data, + "rift_enderchest": &useProfile.Rift.Inventory.Enderchest.Data, + "rift_armor": &useProfile.Rift.Inventory.Armor.Data, + "rift_equipment": &useProfile.Rift.Inventory.Equipment.Data, + + // bags + "potion_bag": &useProfile.Inventory.BagContents.PotionBag.Data, + "talisman_bag": &useProfile.Inventory.BagContents.TalismanBag.Data, + "fishing_bag": &useProfile.Inventory.BagContents.FishingBag.Data, + // "sacks_bag": &useProfile.Inventory.BagContents.SacksBag.Data, + "quiver": &useProfile.Inventory.BagContents.Quiver.Data, + } + + for backpackId, backpackData := range useProfile.Inventory.Backpack { + encodedInventories[fmt.Sprintf("backpack_%s", backpackId)] = &backpackData.Data + } + + for backpackIconId, backpackIconData := range useProfile.Inventory.BackpackIcons { + encodedInventories[fmt.Sprintf("backpack_icon_%s", backpackIconId)] = &backpackIconData.Data + } + */ + + output := make(map[string][]*skycrypttypes.Item) + for _, inventoryId := range inventoryIds { + output[inventoryId] = GetInventory(useProfile, inventoryId) + } + + return output +} diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index e55c6ec4e..aa0d98941 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -24,7 +24,7 @@ func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumIte continue } - processedItems := ProcessItems(&decodedItem.Items, "museum") + processedItems := ProcessItems(decodedItem.Items, "museum") data := models.ProcessedMuseumItem{ Items: processedItems, SkyblockID: itemId, @@ -41,7 +41,7 @@ func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumIte continue } - processedItem := ProcessItems(&decodedItem.Items, "museum") + processedItem := ProcessItems(decodedItem.Items, "museum") data := models.ProcessedMuseumItem{ Items: processedItem, Missing: false, diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index a9bc02155..25266ec53 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -15,10 +15,10 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func ProcessItems(items *[]skycrypttypes.Item, source string) []models.ProcessedItem { +func ProcessItems(items []*skycrypttypes.Item, source string) []models.ProcessedItem { var processedItems []models.ProcessedItem - for _, item := range *items { - processedItem := ProcessItem(&item, source) + for _, item := range items { + processedItem := ProcessItem(item, source) processedItems = append(processedItems, processedItem) } @@ -26,7 +26,7 @@ func ProcessItems(items *[]skycrypttypes.Item, source string) []models.Processed } func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { - if item.Tag == nil { + if item == nil || item.Tag == nil { return models.ProcessedItem{} } @@ -58,17 +58,18 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { // Hex color if item.Tag.Display.Color != 0 { - color := fmt.Sprintf("#%06X", item.Tag.Display.Color) - if item.Tag.ExtraAttributes.DyeItem != "" { - defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.Id].Color - if defaultHexColor != "" { - fmt.Printf("[CUSTOM_RESOURCES] Using default color for item %s: %s\n", item.Tag.ExtraAttributes.Id, defaultHexColor) - color = defaultHexColor + color := fmt.Sprintf("%06X", item.Tag.Display.Color) + if os.Getenv("ENABLE_ARMOR_HEX") != "true" { + if item.Tag.ExtraAttributes.DyeItem == "" { + defaultHexColor := constants.ITEMS[item.Tag.ExtraAttributes.Id].Color + if defaultHexColor != "" { + color = defaultHexColor + } } } if !slices.Contains(constants.BLACKLISTED_HEX_ARMOR_PIECES, item.Tag.ExtraAttributes.Id) { - processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Color: %s", color)) + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Color: #%s", color)) } } @@ -176,21 +177,23 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { } if item.ContainsItems != nil { - processedItem.ContainsItems = ProcessItems(&item.ContainsItems, source) - } - - /*if item.Tag.ExtraAttributes.ID != "" { - prices, err := skyhelpernetworthgo.GetPrices(true, 69420, 1) - if err == nil { - itemCalculator, err := skyhelpernetworthgo.CalculateItem(item, prices, nil) - if err == nil { - processedItem.Lore = append(processedItem.Lore, fmt.Sprintf("§BALLS: %s", utility.FormatNumber(itemCalculator.Price))) - } else {I - - fmt.Printf("You fucked up %v\n", err) + containerValue := 0.0 + for _, containedItem := range item.ContainsItems { + if containedItem != nil && containedItem.Price > 0 { + containerValue += containedItem.Price } } - }*/ + + if containerValue > 0 { + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Container Value: §6%s Coins §7(§6%s§7)", utility.AddCommas(int(containerValue)), utility.FormatNumber(containerValue))) + } + + processedItem.ContainsItems = ProcessItems(item.ContainsItems, source) + } + + if item.Price > 0 { + processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Item Value: §6%s Coins §7(§6%s§7)", utility.AddCommas(int(item.Price)), utility.FormatNumber(item.Price))) + } // TODO: add cake bag & legacy backpack support diff --git a/src/stats/minions.go b/src/stats/minions.go index 7941cd8b2..fa6218da1 100644 --- a/src/stats/minions.go +++ b/src/stats/minions.go @@ -50,6 +50,10 @@ func getMinionSlots(profile *skycrypttypes.Profile, tiers int) *models.MinionSlo func getCraftedMinions(profile *skycrypttypes.Profile) map[string][]int { craftedMinions := make(map[string][]int) for _, member := range profile.Members { + if member.PlayerData == nil { + return craftedMinions + } + for _, minion := range member.PlayerData.Minions { parts := strings.Split(minion, "_") tierStr := parts[len(parts)-1] diff --git a/src/stats/missing.go b/src/stats/missing.go index da901d574..9bb4256cd 100644 --- a/src/stats/missing.go +++ b/src/stats/missing.go @@ -1,12 +1,15 @@ package stats import ( + "fmt" "skycrypt/src/constants" "skycrypt/src/models" stats "skycrypt/src/stats/items" + "skycrypt/src/utility" "slices" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" ) func hasAccessory(accessories *[]models.InsertAccessory, id string, rarity string, ignoreRarity bool) bool { @@ -213,13 +216,73 @@ func getMissing(accessories *[]models.InsertAccessory, accessoryIds []models.Acc } } +func addMissingDataToTheAccessory(accessories *[]models.ProcessedItem, prices map[string]float64) { + for i := range *accessories { + specialAccessory := constants.SPECIAL_ACCESSORIES[(*accessories)[i].Id] + if specialAccessory.CustomPrice { + // Custom Price (POWER_RELIC for example) + if (*accessories)[i].Id == "POWER_RELIC" && (*accessories)[i].Rarity == "legendary" { + price := 0.0 + for _, slot := range constants.ITEMS["POWER_RELIC"].GemstoneSlots { + price += prices[fmt.Sprintf("PERFECT_%s_GEM", slot.SlotType)] + } + + (*accessories)[i].Lore = append((*accessories)[i].Lore, "", fmt.Sprintf("§7Price: §6%s Coins §7(§6%s§7 per MP)", utility.AddCommas(int(price)), utility.FormatNumber(price/float64(GetMagicalPower((*accessories)[i].Rarity, (*accessories)[i].Id))))) + (*accessories)[i].Price = price + continue + } + + // Item Upgrade (POWER_RELIC with all perfect gemstones for example) + if specialAccessory.Upgrade != nil { + upgradeItem := specialAccessory.Upgrade.Item + upgradeCost := specialAccessory.Upgrade.Cost + if upgradeItem != "" && upgradeCost != nil { + amount := upgradeCost[(*accessories)[i].Rarity] + if amount > 0 { + price := prices[upgradeItem] * float64(amount) + (*accessories)[i].Lore = append((*accessories)[i].Lore, "", fmt.Sprintf("§7Price: §6%s Coins §7(§6%s§7 per MP)", utility.AddCommas(int(price)), utility.FormatNumber(price/float64(GetMagicalPower((*accessories)[i].Rarity, (*accessories)[i].Id))))) + (*accessories)[i].Price = price + continue + } + } + } + + } + + price := prices[(*accessories)[i].Id] + if price > 0 { + (*accessories)[i].Lore = append((*accessories)[i].Lore, "", fmt.Sprintf("§7Price: §6%s Coins §7(§6%s§7 per MP)", utility.AddCommas(int(price)), utility.FormatNumber(price/float64(GetMagicalPower((*accessories)[i].Rarity, (*accessories)[i].Id))))) + (*accessories)[i].Price = price + } + } + + slices.SortFunc(*accessories, func(a, b models.ProcessedItem) int { + // if price is equal to 0 move it to the end + if a.Price == 0 && b.Price > 0 { + return 1 + } else if a.Price > b.Price { + return 1 + } else if a.Price < b.Price { + return -1 + } + + return 0 + }) + +} + func GetMissingAccessories(accessories models.AccessoriesOutput, userProfile *skycrypttypes.Member) models.GetMissingAccessoresOutput { if len(accessories.AccessoryIds) == 0 && accessories.Accessories == nil { return models.GetMissingAccessoresOutput{} } missingAccessories := getMissing(&accessories.Accessories, accessories.AccessoryIds) - // TODO: Implement prices + + prices, err := skyhelpernetworthgo.GetPrices(true, 0, 0) + if err == nil { + addMissingDataToTheAccessory(&missingAccessories.Other, prices) + addMissingDataToTheAccessory(&missingAccessories.Upgrades, prices) + } var activeAccessories []models.InsertAccessory for _, accessory := range accessories.Accessories { diff --git a/src/stats/pets.go b/src/stats/pets.go index f398db579..d9af292b0 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -14,6 +14,7 @@ import ( "strings" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" + skyhelpernetworthgo "github.com/SkyCryptWebsite/SkyHelper-Networth-Go" ) func getMaxPetIds() map[string]int { @@ -166,6 +167,9 @@ func getPetData(level int, petType string, rarity string) map[string]float64 { func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet) []models.ProcessedPet { output := []models.ProcessedPet{} + + prices, _ := skyhelpernetworthgo.GetPrices(true, 0, 0) + networthService := skyhelpernetworthgo.NewCalculatorService() for _, pet := range *pets { if pet.Rarity == "" { continue @@ -315,6 +319,15 @@ func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet fmt.Sprintf("§7Candy Used: §e%d §6/ §e10", outputPet.CandyUsed), ) + // TODO: Gotta improve this one day, its kinda ugly + networthResult := networthService.NewSkyBlockPetCalculator(&pet, prices, skyhelpernetworthgo.NetworthOptions(skyhelpernetworthgo.NetworthOptions{}.ToInternal())) + networthService.CalculatePet(networthResult) + price := networthResult.Price + networthResult.BasePrice + if price > 0 { + outputPet.Lore = append(outputPet.Lore, "", fmt.Sprintf("§7Item Value: §6%s Coins §7(§6%s§7)", utility.AddCommas(int(price)), utility.FormatNumber(price))) + + } + output = append(output, outputPet) } diff --git a/src/stats/player_stats.go b/src/stats/player_stats.go index 8c7bff6be..4859a5dad 100644 --- a/src/stats/player_stats.go +++ b/src/stats/player_stats.go @@ -142,26 +142,26 @@ func GetPlayerStats(userProfile *skycrypttypes.Member, profile *skycrypttypes.Pr return stats } -func getItems(userProfile *skycrypttypes.Member, profileId string) map[string][]skycrypttypes.Item { - var items map[string][]skycrypttypes.Item +func getItems(userProfile *skycrypttypes.Member, profileId string) map[string][]*skycrypttypes.Item { + var items map[string][]*skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) if err == nil && cache != "" { var json = jsoniter.ConfigCompatibleWithStandardLibrary err = json.Unmarshal([]byte(cache), &items) if err != nil { - return map[string][]skycrypttypes.Item{} + return map[string][]*skycrypttypes.Item{} } } else { items, err = GetItems(userProfile, profileId) if err != nil { - return map[string][]skycrypttypes.Item{} + return map[string][]*skycrypttypes.Item{} } } return items } -func processItems(rawItems map[string][]skycrypttypes.Item) map[string][]models.ProcessedItem { +func processItems(rawItems map[string][]*skycrypttypes.Item) map[string][]models.ProcessedItem { var processedItems = make(map[string][]models.ProcessedItem) inventoryKeys := []string{"armor", "equipment"} for _, inventoryId := range inventoryKeys { @@ -170,7 +170,7 @@ func processItems(rawItems map[string][]skycrypttypes.Item) map[string][]models. continue } - processedItems[inventoryId] = statsItems.ProcessItems(&inventoryData, inventoryId) + processedItems[inventoryId] = statsItems.ProcessItems(inventoryData, inventoryId) } return processedItems diff --git a/src/utility/helper.go b/src/utility/helper.go index b3a27ae78..adc09686a 100644 --- a/src/utility/helper.go +++ b/src/utility/helper.go @@ -159,14 +159,17 @@ func FormatNumber(n any) string { if value == float64(int(value)) { return strconv.Itoa(int(value)) } - return strconv.FormatFloat(value, 'f', -1, 64) + rounded := Round(value, 2) + return strconv.FormatFloat(rounded, 'f', -1, 64) } result := value / divisor - if result == float64(int(result)) { - return strconv.Itoa(int(result)) + suffix + rounded := Round(result, 2) + + if rounded == float64(int(rounded)) { + return strconv.Itoa(int(rounded)) + suffix } - return strconv.FormatFloat(result, 'f', 1, 64) + suffix + return strconv.FormatFloat(rounded, 'f', -1, 64) + suffix } func AddCommas(n int) string { @@ -551,3 +554,16 @@ func getErrorCount(errorHash string) int { } return 1 } + +func GetHexColor(color string) string { + parts := strings.Split(color, ",") + if len(parts) == 3 { + var r, g, b int + fmt.Sscanf(parts[0], "%d", &r) + fmt.Sscanf(parts[1], "%d", &g) + fmt.Sscanf(parts[2], "%d", &b) + return fmt.Sprintf("%02X%02X%02X", r, g, b) + } + + return "FFFFFF" +} From 66ee0fea80f226b46b43218839453f756755ee81 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Wed, 8 Oct 2025 22:57:24 +0200 Subject: [PATCH 42/55] fix: remove unused --- src/stats/items.go | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/src/stats/items.go b/src/stats/items.go index 769c36b67..08b9838ab 100644 --- a/src/stats/items.go +++ b/src/stats/items.go @@ -277,44 +277,3 @@ func GetItems(useProfile *skycrypttypes.Member, profileId string) (map[string][] return output, nil } - -func GetInventories(inventoryIds []string, useProfile *skycrypttypes.Member) map[string][]*skycrypttypes.Item { - /* - encodedInventories := map[string]*string{ - "inventory": &useProfile.Inventory.Inventory.Data, - "enderchest": &useProfile.Inventory.Enderchest.Data, - "armor": &useProfile.Inventory.Armor.Data, - "equipment": &useProfile.Inventory.Equipment.Data, - "personal_vault": &useProfile.Inventory.PersonalVault.Data, - "wardrobe": &useProfile.Inventory.Wardrobe.Data, - - // rift - "rift_inventory": &useProfile.Rift.Inventory.Inventory.Data, - "rift_enderchest": &useProfile.Rift.Inventory.Enderchest.Data, - "rift_armor": &useProfile.Rift.Inventory.Armor.Data, - "rift_equipment": &useProfile.Rift.Inventory.Equipment.Data, - - // bags - "potion_bag": &useProfile.Inventory.BagContents.PotionBag.Data, - "talisman_bag": &useProfile.Inventory.BagContents.TalismanBag.Data, - "fishing_bag": &useProfile.Inventory.BagContents.FishingBag.Data, - // "sacks_bag": &useProfile.Inventory.BagContents.SacksBag.Data, - "quiver": &useProfile.Inventory.BagContents.Quiver.Data, - } - - for backpackId, backpackData := range useProfile.Inventory.Backpack { - encodedInventories[fmt.Sprintf("backpack_%s", backpackId)] = &backpackData.Data - } - - for backpackIconId, backpackIconData := range useProfile.Inventory.BackpackIcons { - encodedInventories[fmt.Sprintf("backpack_icon_%s", backpackIconId)] = &backpackIconData.Data - } - */ - - output := make(map[string][]*skycrypttypes.Item) - for _, inventoryId := range inventoryIds { - output[inventoryId] = GetInventory(useProfile, inventoryId) - } - - return output -} From 10c4e2e9d4748b5ea4f86a80bb4de2935fcd9cdb Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 9 Oct 2025 10:18:59 +0200 Subject: [PATCH 43/55] perf: bump sh-nw --- NotEnoughUpdates-REPO | 2 +- go.mod | 2 +- go.sum | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index b5dcee471..97350709f 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit b5dcee4713200037d78a37efd1d5edb0adb876a3 +Subproject commit 97350709f2ef6c019725ee1c9bc9fedde13b32dd diff --git a/go.mod b/go.mod index 0e2ecdd21..792cd9b31 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25.1 require ( github.com/DuckySoLucky/SkyCrypt-Types v0.1.10 - github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3 + github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.4 github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.9 github.com/joho/godotenv v1.5.1 diff --git a/go.sum b/go.sum index f6ceee097..65110a772 100644 --- a/go.sum +++ b/go.sum @@ -13,6 +13,8 @@ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2 h1:tejveRivA8pwvNuUE1cKJ github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2/go.mod h1:SE+6+ASyA2r0QJM7Je8OCxN2GZCOaioDLujuvBymyjI= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3 h1:Dz+KV2ZJsrKYE8C4cppgCTr/NKjIiWoNW4YIkrFQwt4= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3/go.mod h1:8AdNFYBlDU8YGIDj0tIrlPkW5J1ojrvvbxyHzHvcCXw= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.4 h1:FIYSrJWOmx1quVvmfmRLeoZFHQTq1WTIWDPLxZludMk= +github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.4/go.mod h1:8AdNFYBlDU8YGIDj0tIrlPkW5J1ojrvvbxyHzHvcCXw= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ= From 11d1e2d2bc1997246bd61025f93df7d8bf120402 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Fri, 10 Oct 2025 20:41:56 +0200 Subject: [PATCH 44/55] fix: skill issue --- src/routes/accessories.go | 4 ++++ src/routes/gear.go | 6 ++++++ src/routes/skills.go | 9 ++++++--- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/routes/accessories.go b/src/routes/accessories.go index 56fa07dc4..4c7ae5029 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -37,6 +37,10 @@ func AccessoriesHandler(c *fiber.Ctx) error { } userProfile := profile.Members[uuid] + if userProfile.Inventory == nil { + userProfile.Inventory = &skycrypttypes.Inventory{} + } + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ "talisman_bag": userProfile.Inventory.BagContents.TalismanBag, } diff --git a/src/routes/gear.go b/src/routes/gear.go index 35e8b8b77..ad3168f9f 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -39,6 +39,12 @@ func GearHandler(c *fiber.Ctx) error { }) } + member := profile.Members[uuid] + if member.Inventory == nil { + member.Inventory = &skycrypttypes.Inventory{} + profile.Members[uuid] = member + } + specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ "armor": profile.Members[uuid].Inventory.Armor, "equipment": profile.Members[uuid].Inventory.Equipment, diff --git a/src/routes/skills.go b/src/routes/skills.go index 6b2d724c2..26b080d68 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -48,13 +48,16 @@ func SkillsHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue + if userProfile.Inventory == nil { + userProfile.Inventory = &skycrypttypes.Inventory{} + } specifiedInventories := skyhelpernetworthgo.SpecifiedInventory{ - "inventory": profile.Members[uuid].Inventory.Inventory, - "enderchest": profile.Members[uuid].Inventory.Enderchest, + "inventory": userProfile.Inventory.Inventory, + "enderchest": userProfile.Inventory.Enderchest, } - for backpackId, backpackData := range profile.Members[uuid].Inventory.Backpack { + for backpackId, backpackData := range userProfile.Inventory.Backpack { specifiedInventories[fmt.Sprintf("backpack_%s", backpackId)] = backpackData } From db5ff25e65d976e351fed2298224f5eee1c98ec7 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sat, 11 Oct 2025 17:34:52 +0200 Subject: [PATCH 45/55] feat: bump openapi --- docs/docs.go | 3905 +---------------------------------------- docs/swagger.json | 3886 +---------------------------------------- docs/swagger.yaml | 4261 ++++++++++++++++++++++++--------------------- go.mod | 56 +- go.sum | 150 +- main.go | 5 + src/routes.go | 27 +- 7 files changed, 2486 insertions(+), 9804 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index 9c611efb9..329f6a0cd 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -1,3903 +1,26 @@ -// Package docs Code generated by swaggo/swag. DO NOT EDIT +// Code generated by swaggo/swag. DO NOT EDIT. + package docs -import "github.com/swaggo/swag" +import "github.com/swaggo/swag/v2" const docTemplate = `{ "schemes": {{ marshal .Schemes }}, - "swagger": "2.0", - "info": { - "description": "{{escape .Description}}", - "title": "{{.Title}}", - "contact": {}, - "version": "{{.Version}}" - }, - "host": "{{.Host}}", - "basePath": "{{.BasePath}}", - "paths": { - "/api/accessories/{uuid}/{profileId}": { - "get": { - "description": "Returns accessories for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "accessories" - ], - "summary": "Get accessories stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.GetMissingAccessoresOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/bestiary/{uuid}/{profileId}": { - "get": { - "description": "Returns bestiary for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "bestiary" - ], - "summary": "Get bestiary stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.BestiaryOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/collections/{uuid}/{profileId}": { - "get": { - "description": "Returns collections for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "collections" - ], - "summary": "Get collections stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.CollectionsOutput" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/crimson_isle/{uuid}/{profileId}": { - "get": { - "description": "Returns Crimson Isle stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "crimson_isle" - ], - "summary": "Get Crimson Isle stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.CrimsonIsleOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/dungeons/{uuid}/{profileId}": { - "get": { - "description": "Returns dungeons for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "dungeons" - ], - "summary": "Get dungeons stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.DungeonsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/embed/{uuid}/{profileId}": { - "get": { - "description": "Returns embed data for the given user (UUID or username) and optional profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "embed" - ], - "summary": "Get embed data for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID or username", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID (optional)", - "name": "profileId", - "in": "path" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.EmbedData" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/garden/{profileId}": { - "get": { - "description": "Returns garden data for the given profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "garden" - ], - "summary": "Get garden stats of a specified profile", - "parameters": [ - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.Garden" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/gear/{uuid}/{profileId}": { - "get": { - "description": "Returns gear for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "gear" - ], - "summary": "Get gear stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.Gear" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/head/{textureId}": { - "get": { - "description": "Returns a PNG image of a head for the given texture ID", - "produces": [ - "image/png" - ], - "tags": [ - "head" - ], - "summary": "Render and return a head image", - "parameters": [ - { - "type": "string", - "description": "Texture ID", - "name": "textureId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the head", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Failed to render head", - "schema": { - "type": "string" - } - } - } - } - }, - "/api/inventory/{uuid}/{profileId}/search/{search}": { - "get": { - "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "inventory" - ], - "summary": "Get inventory items for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Search string (required when inventoryId is 'search')", - "name": "search", - "in": "path" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/inventory/{uuid}/{profileId}/{inventoryId}": { - "get": { - "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "inventory" - ], - "summary": "Get inventory items for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Inventory ID (e.g., museum, search, or other inventory types)", - "name": "inventoryId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/item/{itemId}": { - "get": { - "description": "Returns a PNG image of an item for the given texture ID", - "produces": [ - "image/png" - ], - "tags": [ - "item" - ], - "summary": "Render and return an item image", - "parameters": [ - { - "type": "string", - "description": "Item ID", - "name": "itemId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the item", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Failed to render item", - "schema": { - "type": "string" - } - } - } - } - }, - "/api/leather/{type}/{color}": { - "get": { - "description": "Returns a PNG image of leather armor for the given type and color", - "produces": [ - "image/png" - ], - "tags": [ - "leather" - ], - "summary": "Render and return a leather armor image", - "parameters": [ - { - "type": "string", - "description": "Armor Type", - "name": "type", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Armor Color", - "name": "color", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the leather armor", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/minions/{uuid}/{profileId}": { - "get": { - "description": "Returns minions for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "minions" - ], - "summary": "Get minions stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.MinionsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/misc/{uuid}/{profileId}": { - "get": { - "description": "Returns misc stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "misc" - ], - "summary": "Get misc stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.MiscOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/networth/{uuid}/{profileId}": { - "get": { - "description": "Returns networth for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "networth" - ], - "summary": "Get networth of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": true - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/pets/{uuid}/{profileId}": { - "get": { - "description": "Returns pets for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "pets" - ], - "summary": "Get pets stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.OutputPets" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/playerStats/{uuid}/{profileId}": { - "get": { - "description": "Returns player stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "playerStats" - ], - "summary": "Get player stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.StatsInfo" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/potion/{type}/{color}": { - "get": { - "description": "Returns a PNG image of a potion for the given type and color", - "produces": [ - "image/png" - ], - "tags": [ - "potion" - ], - "summary": "Render and return a potion image", - "parameters": [ - { - "type": "string", - "description": "Potion Type", - "name": "type", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Potion Color", - "name": "color", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the potion", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/rift/{uuid}/{profileId}": { - "get": { - "description": "Returns rift data for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "rift" - ], - "summary": "Get rift stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.RiftOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/skills/{uuid}/{profileId}": { - "get": { - "description": "Returns skills for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "skills" - ], - "summary": "Get skills stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.SkillsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/slayer/{uuid}/{profileId}": { - "get": { - "description": "Returns slayer statistics for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "slayers" - ], - "summary": "Get slayer stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.SlayersOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/stats/{uuid}/{profileId}": { - "get": { - "description": "Returns stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "stats" - ], - "summary": "Get stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.StatsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/username/{uuid}": { - "get": { - "description": "Returns the username associated with the given UUID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "username" - ], - "summary": "Get username for a specified UUID", - "parameters": [ - { - "type": "string", - "description": "UUID", - "name": "uuid", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.PlayerResolve" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/uuid/{username}": { - "get": { - "description": "Returns the UUID associated with the given username", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "uuid" - ], - "summary": "Get UUID for a specified username", - "parameters": [ - { - "type": "string", - "description": "Username", - "name": "username", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.PlayerResolve" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - } - }, - "definitions": { - "models.ArmorResult": { - "type": "object", - "properties": { - "armor": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "set_name": { - "type": "string" - }, - "set_rarity": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.BestRunOutput": { - "type": "object", - "properties": { - "damage_dealt": { - "type": "number" - }, - "damage_mitigated": { - "type": "number" - }, - "deaths": { - "type": "integer" - }, - "dungeon_class": { - "type": "string" - }, - "elapsed_time": { - "type": "integer" - }, - "grade": { - "type": "string" - }, - "mobs_killed": { - "type": "integer" - }, - "score_bonus": { - "type": "integer" - }, - "score_exploration": { - "type": "integer" - }, - "score_skill": { - "type": "integer" - }, - "score_speed": { - "type": "integer" - }, - "secrets_found": { - "type": "integer" - }, - "timestamp": { - "type": "integer" - } - } - }, - "models.BestiaryCategoryOutput": { - "type": "object", - "properties": { - "mobs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.BestiaryMobOutput" - } - }, - "mobsMaxed": { - "type": "integer" - }, - "mobsUnlocked": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.BestiaryMobOutput": { - "type": "object", - "properties": { - "kills": { - "type": "integer" - }, - "maxKills": { - "type": "integer" - }, - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "nextTierKills": { - "type": "integer" - }, - "texture": { - "type": "string" - }, - "tier": { - "type": "integer" - } - } - }, - "models.BestiaryOutput": { - "type": "object", - "properties": { - "categories": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.BestiaryCategoryOutput" - } - }, - "familiesCompleted": { - "type": "integer" - }, - "familiesUnlocked": { - "type": "integer" - }, - "familyTiers": { - "type": "integer" - }, - "level": { - "type": "number" - }, - "maxFamilyTiers": { - "type": "integer" - }, - "maxLevel": { - "type": "number" - }, - "totalFamilies": { - "type": "integer" - } - } - }, - "models.ClassData": { - "type": "object", - "properties": { - "classAverage": { - "type": "number" - }, - "classAverageWithProgress": { - "type": "number" - }, - "classes": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Skill" - } - }, - "selectedClass": { - "type": "string" - }, - "totalClassExp": { - "type": "number" - } - } - }, - "models.CollectionCategory": { - "type": "object", - "properties": { - "items": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CollectionCategoryItem" - } - }, - "maxTiers": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.CollectionCategoryItem": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "amounts": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CollectionCategoryItemAmount" - } - }, - "id": { - "type": "string" - }, - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "tier": { - "type": "integer" - }, - "totalAmount": { - "type": "integer" - } - } - }, - "models.CollectionCategoryItemAmount": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "username": { - "type": "string" - } - } - }, - "models.CollectionsOutput": { - "type": "object", - "properties": { - "categories": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.CollectionCategory" - } - }, - "maxedCollections": { - "type": "integer" - }, - "totalCollections": { - "type": "integer" - } - } - }, - "models.Commissions": { - "type": "object", - "properties": { - "completions": { - "type": "integer" - }, - "milestone": { - "type": "integer" - } - } - }, - "models.Contest": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "collected": { - "type": "integer" - }, - "medals": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.Corpse": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture_path": { - "type": "string" - } - } - }, - "models.Corpses": { - "type": "object", - "properties": { - "corpses": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Corpse" - } - }, - "found": { - "type": "integer" - }, - "max": { - "type": "integer" - } - } - }, - "models.CrimsonIsleDojo": { - "type": "object", - "properties": { - "challenges": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CrimsonIsleDojoChallenge" - } - }, - "totalPoints": { - "type": "integer" - } - } - }, - "models.CrimsonIsleDojoChallenge": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "points": { - "type": "integer" - }, - "rank": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "time": { - "type": "integer" - } - } - }, - "models.CrimsonIsleFactions": { - "type": "object", - "properties": { - "barbariansReputation": { - "type": "integer" - }, - "magesReputation": { - "type": "integer" - }, - "selectedFaction": { - "type": "string" - } - } - }, - "models.CrimsonIsleKuudra": { - "type": "object", - "properties": { - "tiers": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CrimsonIsleKuudraTier" - } - }, - "totalKills": { - "type": "integer" - } - } - }, - "models.CrimsonIsleKuudraTier": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "kills": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CrimsonIsleOutput": { - "type": "object", - "properties": { - "dojo": { - "$ref": "#/definitions/models.CrimsonIsleDojo" - }, - "factions": { - "$ref": "#/definitions/models.CrimsonIsleFactions" - }, - "kuudra": { - "$ref": "#/definitions/models.CrimsonIsleKuudra" - } - } - }, - "models.CropMilestone": { - "type": "object", - "properties": { - "level": { - "$ref": "#/definitions/models.Skill" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CropUpgrade": { - "type": "object", - "properties": { - "level": { - "$ref": "#/definitions/models.Skill" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CrystalHollows": { - "type": "object", - "properties": { - "crystalHollowsLastAccess": { - "type": "integer" - }, - "nucleusRuns": { - "type": "integer" - }, - "progress": { - "$ref": "#/definitions/models.CrystalNucleusRuns" - } - } - }, - "models.CrystalNucleusRuns": { - "type": "object", - "properties": { - "crystals": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "parts": { - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "models.DungeonFloorStats": { - "type": "object", - "properties": { - "best_score": { - "type": "number" - }, - "fastest_time": { - "type": "number" - }, - "fastest_time_s": { - "type": "number" - }, - "fastest_time_s_plus": { - "type": "number" - }, - "milestone_completions": { - "type": "number" - }, - "mobs_killed": { - "type": "number" - }, - "most_damage": { - "$ref": "#/definitions/models.MostDamageOutput" - }, - "most_healing": { - "type": "number" - }, - "most_mobs_killed": { - "type": "number" - }, - "tier_completions": { - "type": "number" - }, - "times_played": { - "type": "number" - }, - "watcher_kills": { - "type": "number" - } - } - }, - "models.DungeonStatsOutput": { - "type": "object", - "properties": { - "bloodMobKills": { - "type": "integer" - }, - "highestFloorBeatenMaster": { - "type": "integer" - }, - "highestFloorBeatenNormal": { - "type": "integer" - }, - "secrets": { - "$ref": "#/definitions/models.SecretsOutput" - } - } - }, - "models.DungeonsOutput": { - "type": "object", - "properties": { - "catacombs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.FormattedDungeonFloor" - } - }, - "classes": { - "$ref": "#/definitions/models.ClassData" - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "master_catacombs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.FormattedDungeonFloor" - } - }, - "stats": { - "$ref": "#/definitions/models.DungeonStatsOutput" - } - } - }, - "models.EmbedData": { - "type": "object", - "properties": { - "bank": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "dungeons": { - "$ref": "#/definitions/models.EmbedDataDungeons" - }, - "game_mode": { - "type": "string" - }, - "joined": { - "type": "integer" - }, - "networth": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "profile_cute_name": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "purse": { - "type": "number" - }, - "skills": { - "$ref": "#/definitions/models.EmbedDataSkills" - }, - "skyblock_level": { - "type": "number" - }, - "slayers": { - "$ref": "#/definitions/models.EmbedDataSlayers" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.EmbedDataDungeons": { - "type": "object", - "properties": { - "classAverage": { - "type": "number" - }, - "classes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "dungeoneering": { - "type": "number" - } - } - }, - "models.EmbedDataSkills": { - "type": "object", - "properties": { - "skillAverage": { - "type": "number" - }, - "skills": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - } - } - }, - "models.EmbedDataSlayers": { - "type": "object", - "properties": { - "slayers": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "xp": { - "type": "number" - } - } - }, - "models.EnchantingGame": { - "type": "object", - "properties": { - "attempts": { - "type": "integer" - }, - "bestScore": { - "type": "integer" - }, - "claims": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.EnchantingGameData": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "stats": { - "$ref": "#/definitions/models.EnchantingGameStats" - } - } - }, - "models.EnchantingGameStats": { - "type": "object", - "properties": { - "bonusClicks": { - "type": "integer" - }, - "games": { - "type": "array", - "items": { - "$ref": "#/definitions/models.EnchantingGame" - } - }, - "lastAttempt": { - "type": "integer" - }, - "lastClaimed": { - "type": "integer" - } - } - }, - "models.EnchantingOutput": { - "type": "object", - "properties": { - "data": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.EnchantingGameData" - } - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.EquipmentResult": { - "type": "object", - "properties": { - "equipment": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.FairySouls": { - "type": "object", - "properties": { - "found": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.FarmingOutput": { - "type": "object", - "properties": { - "contests": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Contest" - } - }, - "contestsAttended": { - "type": "integer" - }, - "copper": { - "type": "integer" - }, - "medals": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Medal" - } - }, - "pelts": { - "type": "integer" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - }, - "uniqueGolds": { - "type": "integer" - } - } - }, - "models.FishingOuput": { - "type": "object", - "properties": { - "itemsFished": { - "type": "integer" - }, - "kills": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Kill" - } - }, - "seaCreaturesFished": { - "type": "integer" - }, - "shredderBait": { - "type": "integer" - }, - "shredderFished": { - "type": "integer" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - }, - "treasure": { - "type": "integer" - }, - "treasureLarge": { - "type": "integer" - }, - "trophyFish": { - "$ref": "#/definitions/models.TrophyFishOutput" - } - } - }, - "models.ForgeOutput": { - "type": "object", - "properties": { - "duration": { - "type": "number" - }, - "endingTime": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slot": { - "type": "integer" - }, - "startingTime": { - "type": "integer" - } - } - }, - "models.FormattedDungeonFloor": { - "type": "object", - "properties": { - "best_run": { - "$ref": "#/definitions/models.BestRunOutput" - }, - "name": { - "type": "string" - }, - "stats": { - "$ref": "#/definitions/models.DungeonFloorStats" - }, - "texture": { - "type": "string" - } - } - }, - "models.Fossil": { - "type": "object", - "properties": { - "found": { - "type": "boolean" - }, - "name": { - "type": "string" - }, - "texture_path": { - "type": "string" - } - } - }, - "models.Fossils": { - "type": "object", - "properties": { - "fossils": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Fossil" - } - }, - "found": { - "type": "integer" - }, - "max": { - "type": "integer" - } - } - }, - "models.Garden": { - "type": "object", - "properties": { - "composter": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "cropMilestones": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CropMilestone" - } - }, - "cropUpgrades": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CropUpgrade" - } - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "plot": { - "$ref": "#/definitions/models.PlotLayout" - }, - "visitors": { - "$ref": "#/definitions/models.Visitors" - } - } - }, - "models.Gear": { - "type": "object", - "properties": { - "armor": { - "$ref": "#/definitions/models.ArmorResult" - }, - "equipment": { - "$ref": "#/definitions/models.EquipmentResult" - }, - "wardrobe": { - "type": "array", - "items": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "weapons": { - "$ref": "#/definitions/models.WeaponsResult" - } - } - }, - "models.GetMagicalPowerOutput": { - "type": "object", - "properties": { - "abiphone": { - "type": "integer" - }, - "accessories": { - "type": "integer" - }, - "hegemony": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "rarity": { - "type": "string" - } - } - }, - "rarities": { - "$ref": "#/definitions/models.GetMagicalPowerRarities" - }, - "riftPrism": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.GetMagicalPowerRarities": { - "type": "object", - "additionalProperties": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "magicalPower": { - "type": "integer" - } - } - } - }, - "models.GetMissingAccessoresOutput": { - "type": "object", - "properties": { - "accessories": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "enrichments": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "magicalPower": { - "$ref": "#/definitions/models.GetMagicalPowerOutput" - }, - "missing": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "recombobulated": { - "type": "integer" - }, - "selectedPower": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "total": { - "type": "integer" - }, - "totalRecombobulated": { - "type": "integer" - }, - "unique": { - "type": "integer" - }, - "upgrades": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.GlaciteTunnels": { - "type": "object", - "properties": { - "corpses": { - "$ref": "#/definitions/models.Corpses" - }, - "fossilDust": { - "type": "number" - }, - "fossils": { - "$ref": "#/definitions/models.Fossils" - }, - "mineshaftsEntered": { - "type": "integer" - } - } - }, - "models.HotmTokens": { - "type": "object", - "properties": { - "available": { - "type": "integer" - }, - "spent": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.Kill": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.Medal": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.MemberStats": { - "type": "object", - "properties": { - "removed": { - "type": "boolean" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.MiningOutput": { - "type": "object", - "properties": { - "commissions": { - "$ref": "#/definitions/models.Commissions" - }, - "crystalHollows": { - "$ref": "#/definitions/models.CrystalHollows" - }, - "forge": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ForgeOutput" - } - }, - "glaciteTunnels": { - "$ref": "#/definitions/models.GlaciteTunnels" - }, - "hotm": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "peak_of_the_mountain": { - "$ref": "#/definitions/models.PeakOfTheMountain" - }, - "powder": { - "$ref": "#/definitions/models.PowderOutput" - }, - "selected_pickaxe_ability": { - "type": "string" - }, - "tokens": { - "$ref": "#/definitions/models.HotmTokens" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - } - } - }, - "models.Minion": { - "type": "object", - "properties": { - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "tiers": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "models.MinionCategory": { - "type": "object", - "properties": { - "maxedMinions": { - "type": "integer" - }, - "maxedTiers": { - "type": "integer" - }, - "minions": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Minion" - } - }, - "texture": { - "type": "string" - }, - "totalMinions": { - "type": "integer" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.MinionSlotsOutput": { - "type": "object", - "properties": { - "bonusSlots": { - "type": "integer" - }, - "current": { - "type": "integer" - }, - "next": { - "type": "integer" - } - } - }, - "models.MinionsOutput": { - "type": "object", - "properties": { - "maxedMinions": { - "type": "integer" - }, - "maxedTiers": { - "type": "integer" - }, - "minions": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.MinionCategory" - } - }, - "minionsSlots": { - "$ref": "#/definitions/models.MinionSlotsOutput" - }, - "totalMinions": { - "type": "integer" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.MiscAuctions": { - "type": "object", - "properties": { - "bids": { - "type": "number" - }, - "created": { - "type": "number" - }, - "fees": { - "type": "number" - }, - "gold_earned": { - "type": "number" - }, - "gold_spent": { - "type": "number" - }, - "highest_bid": { - "type": "number" - }, - "no_bids": { - "type": "number" - }, - "total_bought": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "total_sold": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "won": { - "type": "number" - } - } - }, - "models.MiscDamage": { - "type": "object", - "properties": { - "highest_critical_damage": { - "type": "number" - } - } - }, - "models.MiscDragons": { - "type": "object", - "properties": { - "deaths": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "ender_crystals_destroyed": { - "type": "integer" - }, - "fastest_kill": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "last_hits": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "most_damage": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.MiscEndstoneProtector": { - "type": "object", - "properties": { - "deaths": { - "type": "integer" - }, - "kills": { - "type": "integer" - } - } - }, - "models.MiscEssence": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.MiscGifts": { - "type": "object", - "properties": { - "given": { - "type": "integer" - }, - "received": { - "type": "integer" - } - } - }, - "models.MiscKill": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - } - } - }, - "models.MiscKills": { - "type": "object", - "properties": { - "deaths": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscKill" - } - }, - "kills": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscKill" - } - }, - "total_deaths": { - "type": "integer" - }, - "total_kills": { - "type": "integer" - } - } - }, - "models.MiscMythologicalEvent": { - "type": "object", - "properties": { - "burrows_chains_complete": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_combat": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_next": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_treasure": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "kills": { - "type": "number" - } - } - }, - "models.MiscOutput": { - "type": "object", - "properties": { - "auctions": { - "$ref": "#/definitions/models.MiscAuctions" - }, - "claimed_items": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int64" - } - }, - "damage": { - "$ref": "#/definitions/models.MiscDamage" - }, - "dragons": { - "$ref": "#/definitions/models.MiscDragons" - }, - "endstone_protector": { - "$ref": "#/definitions/models.MiscEndstoneProtector" - }, - "essence": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscEssence" - } - }, - "gifts": { - "$ref": "#/definitions/models.MiscGifts" - }, - "kills": { - "$ref": "#/definitions/models.MiscKills" - }, - "mythological_event": { - "$ref": "#/definitions/models.MiscMythologicalEvent" - }, - "pet_milestones": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.MiscPetMilestone" - } - }, - "profile_upgrades": { - "$ref": "#/definitions/models.MiscProfileUpgrades" - }, - "season_of_jerry": { - "$ref": "#/definitions/models.MiscSeasonOfJerry" - }, - "uncategorized": { - "type": "object", - "additionalProperties": {} - } - } - }, - "models.MiscPetMilestone": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "progress": { - "type": "string" - }, - "rarity": { - "type": "string" - }, - "total": { - "type": "integer" - } - } - }, - "models.MiscProfileUpgrades": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "models.MiscSeasonOfJerry": { - "type": "object", - "properties": { - "most_cannonballs_hit": { - "type": "integer" - }, - "most_damage_dealt": { - "type": "integer" - }, - "most_magma_damage_dealt": { - "type": "integer" - }, - "most_snowballs_hit": { - "type": "integer" - } - } - }, - "models.MostDamageOutput": { - "type": "object", - "properties": { - "damage": { - "type": "number" - }, - "type": { - "type": "string" - } - } - }, - "models.OutputPets": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "amountSkins": { - "type": "integer" - }, - "missing": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedPet" - } - }, - "petScore": { - "$ref": "#/definitions/models.PetScore" - }, - "pets": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedPet" - } - }, - "total": { - "type": "integer" - }, - "totalCandyUsed": { - "type": "integer" - }, - "totalPetExp": { - "type": "integer" - } - } - }, - "models.PeakOfTheMountain": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "max_level": { - "type": "integer" - } - } - }, - "models.PetScore": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "reward": { - "type": "array", - "items": { - "$ref": "#/definitions/models.PetScoreReward" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.PetScoreReward": { - "type": "object", - "properties": { - "bonus": { - "type": "integer" - }, - "score": { - "type": "integer" - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.PlayerResolve": { - "type": "object", - "properties": { - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.PlotLayout": { - "type": "object", - "properties": { - "barnSkin": { - "type": "string" - }, - "layout": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "total": { - "type": "integer" - }, - "unlocked": { - "type": "integer" - } - } - }, - "models.PowderAmount": { - "type": "object", - "properties": { - "available": { - "type": "integer" - }, - "spent": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.PowderOutput": { - "type": "object", - "properties": { - "gemstone": { - "$ref": "#/definitions/models.PowderAmount" - }, - "glacite": { - "$ref": "#/definitions/models.PowderAmount" - }, - "mithril": { - "$ref": "#/definitions/models.PowderAmount" - } - } - }, - "models.ProcessedItem": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "Damage": { - "type": "integer" - }, - "categories": { - "type": "array", - "items": { - "type": "string" - } - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "display_name": { - "type": "string" - }, - "id": { - "type": "string" - }, - "isInactive": { - "type": "boolean" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "recombobulated": { - "type": "boolean" - }, - "shiny": { - "type": "boolean" - }, - "source": { - "type": "string" - }, - "tag": { - "$ref": "#/definitions/skycrypttypes.Tag" - }, - "texture_pack": { - "type": "string" - }, - "texture_path": { - "type": "string" - }, - "wiki": { - "$ref": "#/definitions/models.WikipediaLinks" - } - } - }, - "models.ProcessingError": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "message": { - "type": "string" - }, - "status": { - "type": "string" - } - } - }, - "models.ProfilesStats": { - "type": "object", - "properties": { - "cute_name": { - "type": "string" - }, - "game_mode": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "selected": { - "type": "boolean" - } - } - }, - "models.RankOutput": { - "type": "object", - "properties": { - "plusColor": { - "type": "string" - }, - "plusText": { - "type": "string" - }, - "rankColor": { - "type": "string" - }, - "rankText": { - "type": "string" - } - } - }, - "models.RiftCastleOutput": { - "type": "object", - "properties": { - "grubberStacks": { - "type": "integer" - }, - "maxBurgers": { - "type": "integer" - } - } - }, - "models.RiftEnigmaOutput": { - "type": "object", - "properties": { - "souls": { - "type": "integer" - }, - "totalSouls": { - "type": "integer" - } - } - }, - "models.RiftMotesOutput": { - "type": "object", - "properties": { - "lifetime": { - "type": "integer" - }, - "orbs": { - "type": "integer" - }, - "purse": { - "type": "integer" - } - } - }, - "models.RiftOutput": { - "type": "object", - "properties": { - "armor": { - "$ref": "#/definitions/models.ArmorResult" - }, - "castle": { - "$ref": "#/definitions/models.RiftCastleOutput" - }, - "enigma": { - "$ref": "#/definitions/models.RiftEnigmaOutput" - }, - "equipment": { - "$ref": "#/definitions/models.EquipmentResult" - }, - "motes": { - "$ref": "#/definitions/models.RiftMotesOutput" - }, - "porhtal": { - "$ref": "#/definitions/models.RiftPortalsOutput" - }, - "timecharms": { - "$ref": "#/definitions/models.RiftTimecharmsOutput" - }, - "visits": { - "type": "integer" - } - } - }, - "models.RiftPorhtal": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.RiftPortalsOutput": { - "type": "object", - "properties": { - "porhtals": { - "type": "array", - "items": { - "$ref": "#/definitions/models.RiftPorhtal" - } - }, - "porhtalsFound": { - "type": "integer" - } - } - }, - "models.RiftTimecharms": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "unlocked": { - "type": "boolean" - }, - "unlockedAt": { - "type": "integer" - } - } - }, - "models.RiftTimecharmsOutput": { - "type": "object", - "properties": { - "timecharms": { - "type": "array", - "items": { - "$ref": "#/definitions/models.RiftTimecharms" - } - }, - "timecharmsFound": { - "type": "integer" - } - } - }, - "models.SecretsOutput": { - "type": "object", - "properties": { - "found": { - "type": "integer" - }, - "secretsPerRun": { - "type": "number" - } - } - }, - "models.Skill": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "levelCap": { - "type": "integer" - }, - "levelWithProgress": { - "type": "number" - }, - "maxLevel": { - "type": "integer" - }, - "maxed": { - "type": "boolean" - }, - "progress": { - "type": "number" - }, - "texture": { - "type": "string" - }, - "uncappedLevel": { - "type": "integer" - }, - "unlockableLevelWithProgress": { - "type": "number" - }, - "xp": { - "type": "integer" - }, - "xpCurrent": { - "type": "integer" - }, - "xpForNext": { - "type": "integer" - } - } - }, - "models.SkillToolsResult": { - "type": "object", - "properties": { - "highest_priority_tool": { - "$ref": "#/definitions/models.StrippedItem" - }, - "tools": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.Skills": { - "type": "object", - "properties": { - "averageSkillLevel": { - "type": "number" - }, - "averageSkillLevelWithProgress": { - "type": "number" - }, - "skills": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Skill" - } - }, - "totalSkillXp": { - "type": "integer" - } - } - }, - "models.SkillsOutput": { - "type": "object", - "properties": { - "enchanting": { - "$ref": "#/definitions/models.EnchantingOutput" - }, - "farming": { - "$ref": "#/definitions/models.FarmingOutput" - }, - "fishing": { - "$ref": "#/definitions/models.FishingOuput" - }, - "mining": { - "$ref": "#/definitions/models.MiningOutput" - } - } - }, - "models.SlayerData": { - "type": "object", - "properties": { - "kills": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "level": { - "$ref": "#/definitions/models.SlayerLevel" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.SlayerLevel": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "maxLevel": { - "type": "integer" - }, - "maxed": { - "type": "boolean" - }, - "xp": { - "type": "integer" - }, - "xpForNext": { - "type": "integer" - } - } - }, - "models.SlayersOutput": { - "type": "object", - "properties": { - "data": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.SlayerData" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "totalSlayerExp": { - "type": "integer" - } - } - }, - "models.StatsInfo": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "models.StatsOutput": { - "type": "object", - "properties": { - "apiSettings": { - "type": "object", - "additionalProperties": { - "type": "boolean" - } - }, - "bank": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "fairySouls": { - "$ref": "#/definitions/models.FairySouls" - }, - "joined": { - "type": "integer" - }, - "members": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MemberStats" - } - }, - "personalBank": { - "type": "number" - }, - "profile_cute_name": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "profiles": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProfilesStats" - } - }, - "purse": { - "type": "number" - }, - "rank": { - "$ref": "#/definitions/models.RankOutput" - }, - "selected": { - "type": "boolean" - }, - "skills": { - "$ref": "#/definitions/models.Skills" - }, - "skyblock_level": { - "$ref": "#/definitions/models.Skill" - }, - "social": { - "$ref": "#/definitions/skycrypttypes.SocialMediaLinks" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.StrippedItem": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "display_name": { - "type": "string" - }, - "isInactive": { - "type": "boolean" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "recombobulated": { - "type": "boolean" - }, - "shiny": { - "type": "boolean" - }, - "source": { - "type": "string" - }, - "texture_pack": { - "type": "string" - }, - "texture_path": { - "type": "string" - }, - "wiki": { - "$ref": "#/definitions/models.WikipediaLinks" - } - } - }, - "models.StrippedPet": { - "type": "object", - "properties": { - "active": { - "type": "boolean" - }, - "display_name": { - "type": "string" - }, - "level": { - "type": "integer" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "texture_path": { - "type": "string" - }, - "type": { - "type": "string" - } - } - }, - "models.TrophyFish": { - "type": "object", - "properties": { - "bronze": { - "type": "integer" - }, - "description": { - "type": "string" - }, - "diamond": { - "type": "integer" - }, - "gold": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "maxed": { - "type": "boolean" - }, - "name": { - "type": "string" - }, - "silver": { - "type": "integer" - }, - "texture": { - "type": "string" - } - } - }, - "models.TrophyFishOutput": { - "type": "object", - "properties": { - "stage": { - "$ref": "#/definitions/models.TrophyFishStage" - }, - "totalCaught": { - "type": "integer" - }, - "trophyFish": { - "type": "array", - "items": { - "$ref": "#/definitions/models.TrophyFish" - } - } - } - }, - "models.TrophyFishProgress": { - "type": "object", - "properties": { - "caught": { - "type": "integer" - }, - "tier": { - "type": "string" - }, - "total": { - "type": "integer" - } - } - }, - "models.TrophyFishStage": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "progress": { - "type": "array", - "items": { - "$ref": "#/definitions/models.TrophyFishProgress" - } - } - } - }, - "models.VisitorRarityData": { - "type": "object", - "properties": { - "completed": { - "type": "integer" - }, - "maxUnique": { - "type": "integer" - }, - "unique": { - "type": "integer" - }, - "visited": { - "type": "integer" - } - } - }, - "models.Visitors": { - "type": "object", - "properties": { - "completed": { - "type": "integer" - }, - "uniqueVisitors": { - "type": "integer" - }, - "visited": { - "type": "integer" - }, - "visitors": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.VisitorRarityData" - } - } - } - }, - "models.WeaponsResult": { - "type": "object", - "properties": { - "highest_priority_weapon": { - "$ref": "#/definitions/models.StrippedItem" - }, - "weapons": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.WikipediaLinks": { - "type": "object", - "properties": { - "fandom": { - "type": "string" - }, - "official": { - "type": "string" - } - } - }, - "skycrypttypes.Display": { - "type": "object", - "properties": { - "Lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "Name": { - "type": "string" - }, - "color": { - "type": "integer" - } - } - }, - "skycrypttypes.ExtraAttributes": { - "type": "object", - "properties": { - "ability_scroll": { - "type": "array", - "items": { - "type": "string" - } - }, - "additional_coins": { - "type": "integer" - }, - "artOfPeaceApplied": { - "type": "integer" - }, - "art_of_war_count": { - "type": "integer" - }, - "attributes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "auction": { - "type": "integer" - }, - "bid": { - "type": "integer" - }, - "boosters": { - "type": "array", - "items": { - "type": "string" - } - }, - "champion_combat_xp": { - "type": "number" - }, - "compact_blocks": { - "type": "integer" - }, - "divan_powder_coating": { - "type": "integer" - }, - "donated_museum": { - "type": "boolean" - }, - "drill_part_engine": { - "type": "string" - }, - "drill_part_fuel_tank": { - "type": "string" - }, - "drill_part_upgrade_module": { - "type": "string" - }, - "dungeon_item_level": {}, - "dye_item": { - "type": "string" - }, - "edition": { - "type": "integer" - }, - "enchantments": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "ethermerge": { - "type": "integer" - }, - "expertise_kills": { - "type": "integer" - }, - "farmed_cultivating": { - "type": "integer" - }, - "farming_for_dummies_count": { - "type": "integer" - }, - "gems": { - "type": "object", - "additionalProperties": {} - }, - "hecatomb_s_runs": { - "type": "integer" - }, - "hook": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "hot_potato_count": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "is_shiny": { - "type": "boolean" - }, - "item_tier": { - "type": "integer" - }, - "jalapeno_count": { - "type": "integer" - }, - "line": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "mana_disintegrator_count": { - "type": "integer" - }, - "model": { - "type": "string" - }, - "modifier": { - "type": "string" - }, - "new_year_cake_bag_data": { - "type": "array", - "items": { - "type": "integer" - } - }, - "new_year_cake_bag_years": { - "type": "array", - "items": { - "type": "integer" - } - }, - "new_years_cake": { - "type": "integer" - }, - "party_hat_color": { - "type": "string" - }, - "party_hat_emoji": { - "type": "string" - }, - "petInfo": { - "type": "string" - }, - "pickonimbus_durability": { - "type": "integer" - }, - "polarvoid": { - "type": "integer" - }, - "power_ability_scroll": { - "type": "string" - }, - "price": { - "type": "integer" - }, - "rarity_upgrades": { - "type": "integer" - }, - "runes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "sack_pss": { - "type": "integer" - }, - "sinker": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "skin": { - "type": "string" - }, - "talisman_enrichment": { - "type": "string" - }, - "thunder_charge": { - "type": "integer" - }, - "timestamp": {}, - "tuned_transmission": { - "type": "integer" - }, - "upgrade_level": {}, - "uuid": { - "type": "string" - }, - "winning_bid": { - "type": "integer" - }, - "wood_singularity_count": { - "type": "integer" - } - } - }, - "skycrypttypes.Item": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "Damage": { - "type": "integer" - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/skycrypttypes.Item" - } - }, - "id": { - "type": "integer" - }, - "tag": { - "$ref": "#/definitions/skycrypttypes.Tag" - } - } - }, - "skycrypttypes.Properties": { - "type": "object", - "properties": { - "textures": { - "type": "array", - "items": { - "$ref": "#/definitions/skycrypttypes.Texture" - } - } - } - }, - "skycrypttypes.RodPart": { - "type": "object", - "properties": { - "donated_museum": { - "type": "boolean" - }, - "part": { - "type": "string" - } - } - }, - "skycrypttypes.SkullOwner": { - "type": "object", - "properties": { - "Id": { - "type": "string" - }, - "Properties": { - "$ref": "#/definitions/skycrypttypes.Properties" - } - } - }, - "skycrypttypes.SocialMediaLinks": { - "type": "object", - "properties": { - "DISCORD": { - "type": "string" - }, - "HYPIXEL": { - "type": "string" - }, - "TWITCH": { - "type": "string" - }, - "TWITTER": { - "type": "string" - } - } - }, - "skycrypttypes.Tag": { - "type": "object", - "properties": { - "ExtraAttributes": { - "description": "HideFlags int ` + "`" + `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"` + "`" + `\nUnbreakable int ` + "`" + `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"` + "`" + `\nEnchantments []Enchantment ` + "`" + `nbt:\"ench\" json:\"ench,omitempty\"` + "`" + `", - "allOf": [ - { - "$ref": "#/definitions/skycrypttypes.ExtraAttributes" - } - ] - }, - "SkullOwner": { - "$ref": "#/definitions/skycrypttypes.SkullOwner" - }, - "display": { - "$ref": "#/definitions/skycrypttypes.Display" - } - } - }, - "skycrypttypes.Texture": { - "type": "object", - "properties": { - "Signature": { - "type": "string" - }, - "Value": { - "type": "string" - } - } - } - } + "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int ` + "`" + `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"` + "`" + `\nUnbreakable int ` + "`" + `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"` + "`" + `\nEnchantments []Enchantment ` + "`" + `nbt:\"ench\" json:\"ench,omitempty\"` + "`" + `","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, + "info": {"description":"{{escape .Description}}","title":"{{.Title}}","version":"{{.Version}}"}, + "externalDocs": {"description":"","url":""}, + "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, + "openapi": "3.1.0", + "servers": [ + {"url":"localhost:8080/"} + ] }` // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = &swag.Spec{ - Version: "", - Host: "", - BasePath: "", - Schemes: []string{}, - Title: "", - Description: "", + Version: "1.0", + Title: "SkyCrypt API", + Description: "API for SkyCrypt - A Hypixel SkyBlock Stats Viewer", InfoInstanceName: "swagger", SwaggerTemplate: docTemplate, LeftDelim: "{{", diff --git a/docs/swagger.json b/docs/swagger.json index 57a69b8c6..3002255ac 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -1,3880 +1,10 @@ { - "swagger": "2.0", - "info": { - "contact": {} - }, - "paths": { - "/api/accessories/{uuid}/{profileId}": { - "get": { - "description": "Returns accessories for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "accessories" - ], - "summary": "Get accessories stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.GetMissingAccessoresOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/bestiary/{uuid}/{profileId}": { - "get": { - "description": "Returns bestiary for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "bestiary" - ], - "summary": "Get bestiary stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.BestiaryOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/collections/{uuid}/{profileId}": { - "get": { - "description": "Returns collections for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "collections" - ], - "summary": "Get collections stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.CollectionsOutput" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/crimson_isle/{uuid}/{profileId}": { - "get": { - "description": "Returns Crimson Isle stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "crimson_isle" - ], - "summary": "Get Crimson Isle stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.CrimsonIsleOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/dungeons/{uuid}/{profileId}": { - "get": { - "description": "Returns dungeons for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "dungeons" - ], - "summary": "Get dungeons stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.DungeonsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/embed/{uuid}/{profileId}": { - "get": { - "description": "Returns embed data for the given user (UUID or username) and optional profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "embed" - ], - "summary": "Get embed data for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID or username", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID (optional)", - "name": "profileId", - "in": "path" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.EmbedData" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/garden/{profileId}": { - "get": { - "description": "Returns garden data for the given profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "garden" - ], - "summary": "Get garden stats of a specified profile", - "parameters": [ - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.Garden" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/gear/{uuid}/{profileId}": { - "get": { - "description": "Returns gear for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "gear" - ], - "summary": "Get gear stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.Gear" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/head/{textureId}": { - "get": { - "description": "Returns a PNG image of a head for the given texture ID", - "produces": [ - "image/png" - ], - "tags": [ - "head" - ], - "summary": "Render and return a head image", - "parameters": [ - { - "type": "string", - "description": "Texture ID", - "name": "textureId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the head", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Failed to render head", - "schema": { - "type": "string" - } - } - } - } - }, - "/api/inventory/{uuid}/{profileId}/search/{search}": { - "get": { - "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "inventory" - ], - "summary": "Get inventory items for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Search string (required when inventoryId is 'search')", - "name": "search", - "in": "path" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/inventory/{uuid}/{profileId}/{inventoryId}": { - "get": { - "description": "Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "inventory" - ], - "summary": "Get inventory items for a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Inventory ID (e.g., museum, search, or other inventory types)", - "name": "inventoryId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/item/{itemId}": { - "get": { - "description": "Returns a PNG image of an item for the given texture ID", - "produces": [ - "image/png" - ], - "tags": [ - "item" - ], - "summary": "Render and return an item image", - "parameters": [ - { - "type": "string", - "description": "Item ID", - "name": "itemId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the item", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Failed to render item", - "schema": { - "type": "string" - } - } - } - } - }, - "/api/leather/{type}/{color}": { - "get": { - "description": "Returns a PNG image of leather armor for the given type and color", - "produces": [ - "image/png" - ], - "tags": [ - "leather" - ], - "summary": "Render and return a leather armor image", - "parameters": [ - { - "type": "string", - "description": "Armor Type", - "name": "type", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Armor Color", - "name": "color", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the leather armor", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/minions/{uuid}/{profileId}": { - "get": { - "description": "Returns minions for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "minions" - ], - "summary": "Get minions stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.MinionsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/misc/{uuid}/{profileId}": { - "get": { - "description": "Returns misc stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "misc" - ], - "summary": "Get misc stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.MiscOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/networth/{uuid}/{profileId}": { - "get": { - "description": "Returns networth for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "networth" - ], - "summary": "Get networth of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": true - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/pets/{uuid}/{profileId}": { - "get": { - "description": "Returns pets for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "pets" - ], - "summary": "Get pets stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.OutputPets" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/playerStats/{uuid}/{profileId}": { - "get": { - "description": "Returns player stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "playerStats" - ], - "summary": "Get player stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.StatsInfo" - } - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/potion/{type}/{color}": { - "get": { - "description": "Returns a PNG image of a potion for the given type and color", - "produces": [ - "image/png" - ], - "tags": [ - "potion" - ], - "summary": "Render and return a potion image", - "parameters": [ - { - "type": "string", - "description": "Potion Type", - "name": "type", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Potion Color", - "name": "color", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "PNG image of the potion", - "schema": { - "type": "file" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/rift/{uuid}/{profileId}": { - "get": { - "description": "Returns rift data for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "rift" - ], - "summary": "Get rift stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.RiftOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/skills/{uuid}/{profileId}": { - "get": { - "description": "Returns skills for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "skills" - ], - "summary": "Get skills stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.SkillsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/slayer/{uuid}/{profileId}": { - "get": { - "description": "Returns slayer statistics for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "slayers" - ], - "summary": "Get slayer stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.SlayersOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/stats/{uuid}/{profileId}": { - "get": { - "description": "Returns stats for the given user and profile ID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "stats" - ], - "summary": "Get stats of a specified player", - "parameters": [ - { - "type": "string", - "description": "User UUID", - "name": "uuid", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Profile ID", - "name": "profileId", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.StatsOutput" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - }, - "500": { - "description": "Internal Server Error", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/username/{uuid}": { - "get": { - "description": "Returns the username associated with the given UUID", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "username" - ], - "summary": "Get username for a specified UUID", - "parameters": [ - { - "type": "string", - "description": "UUID", - "name": "uuid", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.PlayerResolve" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - }, - "/api/uuid/{username}": { - "get": { - "description": "Returns the UUID associated with the given username", - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "uuid" - ], - "summary": "Get UUID for a specified username", - "parameters": [ - { - "type": "string", - "description": "Username", - "name": "username", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/models.PlayerResolve" - } - }, - "400": { - "description": "Bad Request", - "schema": { - "$ref": "#/definitions/models.ProcessingError" - } - } - } - } - } - }, - "definitions": { - "models.ArmorResult": { - "type": "object", - "properties": { - "armor": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "set_name": { - "type": "string" - }, - "set_rarity": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.BestRunOutput": { - "type": "object", - "properties": { - "damage_dealt": { - "type": "number" - }, - "damage_mitigated": { - "type": "number" - }, - "deaths": { - "type": "integer" - }, - "dungeon_class": { - "type": "string" - }, - "elapsed_time": { - "type": "integer" - }, - "grade": { - "type": "string" - }, - "mobs_killed": { - "type": "integer" - }, - "score_bonus": { - "type": "integer" - }, - "score_exploration": { - "type": "integer" - }, - "score_skill": { - "type": "integer" - }, - "score_speed": { - "type": "integer" - }, - "secrets_found": { - "type": "integer" - }, - "timestamp": { - "type": "integer" - } - } - }, - "models.BestiaryCategoryOutput": { - "type": "object", - "properties": { - "mobs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.BestiaryMobOutput" - } - }, - "mobsMaxed": { - "type": "integer" - }, - "mobsUnlocked": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.BestiaryMobOutput": { - "type": "object", - "properties": { - "kills": { - "type": "integer" - }, - "maxKills": { - "type": "integer" - }, - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "nextTierKills": { - "type": "integer" - }, - "texture": { - "type": "string" - }, - "tier": { - "type": "integer" - } - } - }, - "models.BestiaryOutput": { - "type": "object", - "properties": { - "categories": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.BestiaryCategoryOutput" - } - }, - "familiesCompleted": { - "type": "integer" - }, - "familiesUnlocked": { - "type": "integer" - }, - "familyTiers": { - "type": "integer" - }, - "level": { - "type": "number" - }, - "maxFamilyTiers": { - "type": "integer" - }, - "maxLevel": { - "type": "number" - }, - "totalFamilies": { - "type": "integer" - } - } - }, - "models.ClassData": { - "type": "object", - "properties": { - "classAverage": { - "type": "number" - }, - "classAverageWithProgress": { - "type": "number" - }, - "classes": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Skill" - } - }, - "selectedClass": { - "type": "string" - }, - "totalClassExp": { - "type": "number" - } - } - }, - "models.CollectionCategory": { - "type": "object", - "properties": { - "items": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CollectionCategoryItem" - } - }, - "maxTiers": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.CollectionCategoryItem": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "amounts": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CollectionCategoryItemAmount" - } - }, - "id": { - "type": "string" - }, - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "tier": { - "type": "integer" - }, - "totalAmount": { - "type": "integer" - } - } - }, - "models.CollectionCategoryItemAmount": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "username": { - "type": "string" - } - } - }, - "models.CollectionsOutput": { - "type": "object", - "properties": { - "categories": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.CollectionCategory" - } - }, - "maxedCollections": { - "type": "integer" - }, - "totalCollections": { - "type": "integer" - } - } - }, - "models.Commissions": { - "type": "object", - "properties": { - "completions": { - "type": "integer" - }, - "milestone": { - "type": "integer" - } - } - }, - "models.Contest": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "collected": { - "type": "integer" - }, - "medals": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.Corpse": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture_path": { - "type": "string" - } - } - }, - "models.Corpses": { - "type": "object", - "properties": { - "corpses": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Corpse" - } - }, - "found": { - "type": "integer" - }, - "max": { - "type": "integer" - } - } - }, - "models.CrimsonIsleDojo": { - "type": "object", - "properties": { - "challenges": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CrimsonIsleDojoChallenge" - } - }, - "totalPoints": { - "type": "integer" - } - } - }, - "models.CrimsonIsleDojoChallenge": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "points": { - "type": "integer" - }, - "rank": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "time": { - "type": "integer" - } - } - }, - "models.CrimsonIsleFactions": { - "type": "object", - "properties": { - "barbariansReputation": { - "type": "integer" - }, - "magesReputation": { - "type": "integer" - }, - "selectedFaction": { - "type": "string" - } - } - }, - "models.CrimsonIsleKuudra": { - "type": "object", - "properties": { - "tiers": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CrimsonIsleKuudraTier" - } - }, - "totalKills": { - "type": "integer" - } - } - }, - "models.CrimsonIsleKuudraTier": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "kills": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CrimsonIsleOutput": { - "type": "object", - "properties": { - "dojo": { - "$ref": "#/definitions/models.CrimsonIsleDojo" - }, - "factions": { - "$ref": "#/definitions/models.CrimsonIsleFactions" - }, - "kuudra": { - "$ref": "#/definitions/models.CrimsonIsleKuudra" - } - } - }, - "models.CropMilestone": { - "type": "object", - "properties": { - "level": { - "$ref": "#/definitions/models.Skill" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CropUpgrade": { - "type": "object", - "properties": { - "level": { - "$ref": "#/definitions/models.Skill" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.CrystalHollows": { - "type": "object", - "properties": { - "crystalHollowsLastAccess": { - "type": "integer" - }, - "nucleusRuns": { - "type": "integer" - }, - "progress": { - "$ref": "#/definitions/models.CrystalNucleusRuns" - } - } - }, - "models.CrystalNucleusRuns": { - "type": "object", - "properties": { - "crystals": { - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "parts": { - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "models.DungeonFloorStats": { - "type": "object", - "properties": { - "best_score": { - "type": "number" - }, - "fastest_time": { - "type": "number" - }, - "fastest_time_s": { - "type": "number" - }, - "fastest_time_s_plus": { - "type": "number" - }, - "milestone_completions": { - "type": "number" - }, - "mobs_killed": { - "type": "number" - }, - "most_damage": { - "$ref": "#/definitions/models.MostDamageOutput" - }, - "most_healing": { - "type": "number" - }, - "most_mobs_killed": { - "type": "number" - }, - "tier_completions": { - "type": "number" - }, - "times_played": { - "type": "number" - }, - "watcher_kills": { - "type": "number" - } - } - }, - "models.DungeonStatsOutput": { - "type": "object", - "properties": { - "bloodMobKills": { - "type": "integer" - }, - "highestFloorBeatenMaster": { - "type": "integer" - }, - "highestFloorBeatenNormal": { - "type": "integer" - }, - "secrets": { - "$ref": "#/definitions/models.SecretsOutput" - } - } - }, - "models.DungeonsOutput": { - "type": "object", - "properties": { - "catacombs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.FormattedDungeonFloor" - } - }, - "classes": { - "$ref": "#/definitions/models.ClassData" - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "master_catacombs": { - "type": "array", - "items": { - "$ref": "#/definitions/models.FormattedDungeonFloor" - } - }, - "stats": { - "$ref": "#/definitions/models.DungeonStatsOutput" - } - } - }, - "models.EmbedData": { - "type": "object", - "properties": { - "bank": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "dungeons": { - "$ref": "#/definitions/models.EmbedDataDungeons" - }, - "game_mode": { - "type": "string" - }, - "joined": { - "type": "integer" - }, - "networth": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "profile_cute_name": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "purse": { - "type": "number" - }, - "skills": { - "$ref": "#/definitions/models.EmbedDataSkills" - }, - "skyblock_level": { - "type": "number" - }, - "slayers": { - "$ref": "#/definitions/models.EmbedDataSlayers" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.EmbedDataDungeons": { - "type": "object", - "properties": { - "classAverage": { - "type": "number" - }, - "classes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "dungeoneering": { - "type": "number" - } - } - }, - "models.EmbedDataSkills": { - "type": "object", - "properties": { - "skillAverage": { - "type": "number" - }, - "skills": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - } - } - }, - "models.EmbedDataSlayers": { - "type": "object", - "properties": { - "slayers": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "xp": { - "type": "number" - } - } - }, - "models.EnchantingGame": { - "type": "object", - "properties": { - "attempts": { - "type": "integer" - }, - "bestScore": { - "type": "integer" - }, - "claims": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.EnchantingGameData": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "stats": { - "$ref": "#/definitions/models.EnchantingGameStats" - } - } - }, - "models.EnchantingGameStats": { - "type": "object", - "properties": { - "bonusClicks": { - "type": "integer" - }, - "games": { - "type": "array", - "items": { - "$ref": "#/definitions/models.EnchantingGame" - } - }, - "lastAttempt": { - "type": "integer" - }, - "lastClaimed": { - "type": "integer" - } - } - }, - "models.EnchantingOutput": { - "type": "object", - "properties": { - "data": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.EnchantingGameData" - } - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.EquipmentResult": { - "type": "object", - "properties": { - "equipment": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.FairySouls": { - "type": "object", - "properties": { - "found": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.FarmingOutput": { - "type": "object", - "properties": { - "contests": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Contest" - } - }, - "contestsAttended": { - "type": "integer" - }, - "copper": { - "type": "integer" - }, - "medals": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Medal" - } - }, - "pelts": { - "type": "integer" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - }, - "uniqueGolds": { - "type": "integer" - } - } - }, - "models.FishingOuput": { - "type": "object", - "properties": { - "itemsFished": { - "type": "integer" - }, - "kills": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Kill" - } - }, - "seaCreaturesFished": { - "type": "integer" - }, - "shredderBait": { - "type": "integer" - }, - "shredderFished": { - "type": "integer" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - }, - "treasure": { - "type": "integer" - }, - "treasureLarge": { - "type": "integer" - }, - "trophyFish": { - "$ref": "#/definitions/models.TrophyFishOutput" - } - } - }, - "models.ForgeOutput": { - "type": "object", - "properties": { - "duration": { - "type": "number" - }, - "endingTime": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slot": { - "type": "integer" - }, - "startingTime": { - "type": "integer" - } - } - }, - "models.FormattedDungeonFloor": { - "type": "object", - "properties": { - "best_run": { - "$ref": "#/definitions/models.BestRunOutput" - }, - "name": { - "type": "string" - }, - "stats": { - "$ref": "#/definitions/models.DungeonFloorStats" - }, - "texture": { - "type": "string" - } - } - }, - "models.Fossil": { - "type": "object", - "properties": { - "found": { - "type": "boolean" - }, - "name": { - "type": "string" - }, - "texture_path": { - "type": "string" - } - } - }, - "models.Fossils": { - "type": "object", - "properties": { - "fossils": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Fossil" - } - }, - "found": { - "type": "integer" - }, - "max": { - "type": "integer" - } - } - }, - "models.Garden": { - "type": "object", - "properties": { - "composter": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "cropMilestones": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CropMilestone" - } - }, - "cropUpgrades": { - "type": "array", - "items": { - "$ref": "#/definitions/models.CropUpgrade" - } - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "plot": { - "$ref": "#/definitions/models.PlotLayout" - }, - "visitors": { - "$ref": "#/definitions/models.Visitors" - } - } - }, - "models.Gear": { - "type": "object", - "properties": { - "armor": { - "$ref": "#/definitions/models.ArmorResult" - }, - "equipment": { - "$ref": "#/definitions/models.EquipmentResult" - }, - "wardrobe": { - "type": "array", - "items": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - }, - "weapons": { - "$ref": "#/definitions/models.WeaponsResult" - } - } - }, - "models.GetMagicalPowerOutput": { - "type": "object", - "properties": { - "abiphone": { - "type": "integer" - }, - "accessories": { - "type": "integer" - }, - "hegemony": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "rarity": { - "type": "string" - } - } - }, - "rarities": { - "$ref": "#/definitions/models.GetMagicalPowerRarities" - }, - "riftPrism": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.GetMagicalPowerRarities": { - "type": "object", - "additionalProperties": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "magicalPower": { - "type": "integer" - } - } - } - }, - "models.GetMissingAccessoresOutput": { - "type": "object", - "properties": { - "accessories": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "enrichments": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "magicalPower": { - "$ref": "#/definitions/models.GetMagicalPowerOutput" - }, - "missing": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "recombobulated": { - "type": "integer" - }, - "selectedPower": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "total": { - "type": "integer" - }, - "totalRecombobulated": { - "type": "integer" - }, - "unique": { - "type": "integer" - }, - "upgrades": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.GlaciteTunnels": { - "type": "object", - "properties": { - "corpses": { - "$ref": "#/definitions/models.Corpses" - }, - "fossilDust": { - "type": "number" - }, - "fossils": { - "$ref": "#/definitions/models.Fossils" - }, - "mineshaftsEntered": { - "type": "integer" - } - } - }, - "models.HotmTokens": { - "type": "object", - "properties": { - "available": { - "type": "integer" - }, - "spent": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.Kill": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.Medal": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.MemberStats": { - "type": "object", - "properties": { - "removed": { - "type": "boolean" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.MiningOutput": { - "type": "object", - "properties": { - "commissions": { - "$ref": "#/definitions/models.Commissions" - }, - "crystalHollows": { - "$ref": "#/definitions/models.CrystalHollows" - }, - "forge": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ForgeOutput" - } - }, - "glaciteTunnels": { - "$ref": "#/definitions/models.GlaciteTunnels" - }, - "hotm": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "level": { - "$ref": "#/definitions/models.Skill" - }, - "peak_of_the_mountain": { - "$ref": "#/definitions/models.PeakOfTheMountain" - }, - "powder": { - "$ref": "#/definitions/models.PowderOutput" - }, - "selected_pickaxe_ability": { - "type": "string" - }, - "tokens": { - "$ref": "#/definitions/models.HotmTokens" - }, - "tools": { - "$ref": "#/definitions/models.SkillToolsResult" - } - } - }, - "models.Minion": { - "type": "object", - "properties": { - "maxTier": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "tiers": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "models.MinionCategory": { - "type": "object", - "properties": { - "maxedMinions": { - "type": "integer" - }, - "maxedTiers": { - "type": "integer" - }, - "minions": { - "type": "array", - "items": { - "$ref": "#/definitions/models.Minion" - } - }, - "texture": { - "type": "string" - }, - "totalMinions": { - "type": "integer" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.MinionSlotsOutput": { - "type": "object", - "properties": { - "bonusSlots": { - "type": "integer" - }, - "current": { - "type": "integer" - }, - "next": { - "type": "integer" - } - } - }, - "models.MinionsOutput": { - "type": "object", - "properties": { - "maxedMinions": { - "type": "integer" - }, - "maxedTiers": { - "type": "integer" - }, - "minions": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.MinionCategory" - } - }, - "minionsSlots": { - "$ref": "#/definitions/models.MinionSlotsOutput" - }, - "totalMinions": { - "type": "integer" - }, - "totalTiers": { - "type": "integer" - } - } - }, - "models.MiscAuctions": { - "type": "object", - "properties": { - "bids": { - "type": "number" - }, - "created": { - "type": "number" - }, - "fees": { - "type": "number" - }, - "gold_earned": { - "type": "number" - }, - "gold_spent": { - "type": "number" - }, - "highest_bid": { - "type": "number" - }, - "no_bids": { - "type": "number" - }, - "total_bought": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "total_sold": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "won": { - "type": "number" - } - } - }, - "models.MiscDamage": { - "type": "object", - "properties": { - "highest_critical_damage": { - "type": "number" - } - } - }, - "models.MiscDragons": { - "type": "object", - "properties": { - "deaths": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "ender_crystals_destroyed": { - "type": "integer" - }, - "fastest_kill": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "last_hits": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "most_damage": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.MiscEndstoneProtector": { - "type": "object", - "properties": { - "deaths": { - "type": "integer" - }, - "kills": { - "type": "integer" - } - } - }, - "models.MiscEssence": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.MiscGifts": { - "type": "object", - "properties": { - "given": { - "type": "integer" - }, - "received": { - "type": "integer" - } - } - }, - "models.MiscKill": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "name": { - "type": "string" - } - } - }, - "models.MiscKills": { - "type": "object", - "properties": { - "deaths": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscKill" - } - }, - "kills": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscKill" - } - }, - "total_deaths": { - "type": "integer" - }, - "total_kills": { - "type": "integer" - } - } - }, - "models.MiscMythologicalEvent": { - "type": "object", - "properties": { - "burrows_chains_complete": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_combat": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_next": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "burrows_dug_treasure": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "kills": { - "type": "number" - } - } - }, - "models.MiscOutput": { - "type": "object", - "properties": { - "auctions": { - "$ref": "#/definitions/models.MiscAuctions" - }, - "claimed_items": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int64" - } - }, - "damage": { - "$ref": "#/definitions/models.MiscDamage" - }, - "dragons": { - "$ref": "#/definitions/models.MiscDragons" - }, - "endstone_protector": { - "$ref": "#/definitions/models.MiscEndstoneProtector" - }, - "essence": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MiscEssence" - } - }, - "gifts": { - "$ref": "#/definitions/models.MiscGifts" - }, - "kills": { - "$ref": "#/definitions/models.MiscKills" - }, - "mythological_event": { - "$ref": "#/definitions/models.MiscMythologicalEvent" - }, - "pet_milestones": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.MiscPetMilestone" - } - }, - "profile_upgrades": { - "$ref": "#/definitions/models.MiscProfileUpgrades" - }, - "season_of_jerry": { - "$ref": "#/definitions/models.MiscSeasonOfJerry" - }, - "uncategorized": { - "type": "object", - "additionalProperties": {} - } - } - }, - "models.MiscPetMilestone": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "progress": { - "type": "string" - }, - "rarity": { - "type": "string" - }, - "total": { - "type": "integer" - } - } - }, - "models.MiscProfileUpgrades": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "models.MiscSeasonOfJerry": { - "type": "object", - "properties": { - "most_cannonballs_hit": { - "type": "integer" - }, - "most_damage_dealt": { - "type": "integer" - }, - "most_magma_damage_dealt": { - "type": "integer" - }, - "most_snowballs_hit": { - "type": "integer" - } - } - }, - "models.MostDamageOutput": { - "type": "object", - "properties": { - "damage": { - "type": "number" - }, - "type": { - "type": "string" - } - } - }, - "models.OutputPets": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "amountSkins": { - "type": "integer" - }, - "missing": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedPet" - } - }, - "petScore": { - "$ref": "#/definitions/models.PetScore" - }, - "pets": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedPet" - } - }, - "total": { - "type": "integer" - }, - "totalCandyUsed": { - "type": "integer" - }, - "totalPetExp": { - "type": "integer" - } - } - }, - "models.PeakOfTheMountain": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "max_level": { - "type": "integer" - } - } - }, - "models.PetScore": { - "type": "object", - "properties": { - "amount": { - "type": "integer" - }, - "reward": { - "type": "array", - "items": { - "$ref": "#/definitions/models.PetScoreReward" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - } - } - }, - "models.PetScoreReward": { - "type": "object", - "properties": { - "bonus": { - "type": "integer" - }, - "score": { - "type": "integer" - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.PlayerResolve": { - "type": "object", - "properties": { - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.PlotLayout": { - "type": "object", - "properties": { - "barnSkin": { - "type": "string" - }, - "layout": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "total": { - "type": "integer" - }, - "unlocked": { - "type": "integer" - } - } - }, - "models.PowderAmount": { - "type": "object", - "properties": { - "available": { - "type": "integer" - }, - "spent": { - "type": "integer" - }, - "total": { - "type": "integer" - } - } - }, - "models.PowderOutput": { - "type": "object", - "properties": { - "gemstone": { - "$ref": "#/definitions/models.PowderAmount" - }, - "glacite": { - "$ref": "#/definitions/models.PowderAmount" - }, - "mithril": { - "$ref": "#/definitions/models.PowderAmount" - } - } - }, - "models.ProcessedItem": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "Damage": { - "type": "integer" - }, - "categories": { - "type": "array", - "items": { - "type": "string" - } - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProcessedItem" - } - }, - "display_name": { - "type": "string" - }, - "id": { - "type": "string" - }, - "isInactive": { - "type": "boolean" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "recombobulated": { - "type": "boolean" - }, - "shiny": { - "type": "boolean" - }, - "source": { - "type": "string" - }, - "tag": { - "$ref": "#/definitions/skycrypttypes.Tag" - }, - "texture_pack": { - "type": "string" - }, - "texture_path": { - "type": "string" - }, - "wiki": { - "$ref": "#/definitions/models.WikipediaLinks" - } - } - }, - "models.ProcessingError": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "message": { - "type": "string" - }, - "status": { - "type": "string" - } - } - }, - "models.ProfilesStats": { - "type": "object", - "properties": { - "cute_name": { - "type": "string" - }, - "game_mode": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "selected": { - "type": "boolean" - } - } - }, - "models.RankOutput": { - "type": "object", - "properties": { - "plusColor": { - "type": "string" - }, - "plusText": { - "type": "string" - }, - "rankColor": { - "type": "string" - }, - "rankText": { - "type": "string" - } - } - }, - "models.RiftCastleOutput": { - "type": "object", - "properties": { - "grubberStacks": { - "type": "integer" - }, - "maxBurgers": { - "type": "integer" - } - } - }, - "models.RiftEnigmaOutput": { - "type": "object", - "properties": { - "souls": { - "type": "integer" - }, - "totalSouls": { - "type": "integer" - } - } - }, - "models.RiftMotesOutput": { - "type": "object", - "properties": { - "lifetime": { - "type": "integer" - }, - "orbs": { - "type": "integer" - }, - "purse": { - "type": "integer" - } - } - }, - "models.RiftOutput": { - "type": "object", - "properties": { - "armor": { - "$ref": "#/definitions/models.ArmorResult" - }, - "castle": { - "$ref": "#/definitions/models.RiftCastleOutput" - }, - "enigma": { - "$ref": "#/definitions/models.RiftEnigmaOutput" - }, - "equipment": { - "$ref": "#/definitions/models.EquipmentResult" - }, - "motes": { - "$ref": "#/definitions/models.RiftMotesOutput" - }, - "porhtal": { - "$ref": "#/definitions/models.RiftPortalsOutput" - }, - "timecharms": { - "$ref": "#/definitions/models.RiftTimecharmsOutput" - }, - "visits": { - "type": "integer" - } - } - }, - "models.RiftPorhtal": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "unlocked": { - "type": "boolean" - } - } - }, - "models.RiftPortalsOutput": { - "type": "object", - "properties": { - "porhtals": { - "type": "array", - "items": { - "$ref": "#/definitions/models.RiftPorhtal" - } - }, - "porhtalsFound": { - "type": "integer" - } - } - }, - "models.RiftTimecharms": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "texture": { - "type": "string" - }, - "unlocked": { - "type": "boolean" - }, - "unlockedAt": { - "type": "integer" - } - } - }, - "models.RiftTimecharmsOutput": { - "type": "object", - "properties": { - "timecharms": { - "type": "array", - "items": { - "$ref": "#/definitions/models.RiftTimecharms" - } - }, - "timecharmsFound": { - "type": "integer" - } - } - }, - "models.SecretsOutput": { - "type": "object", - "properties": { - "found": { - "type": "integer" - }, - "secretsPerRun": { - "type": "number" - } - } - }, - "models.Skill": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "levelCap": { - "type": "integer" - }, - "levelWithProgress": { - "type": "number" - }, - "maxLevel": { - "type": "integer" - }, - "maxed": { - "type": "boolean" - }, - "progress": { - "type": "number" - }, - "texture": { - "type": "string" - }, - "uncappedLevel": { - "type": "integer" - }, - "unlockableLevelWithProgress": { - "type": "number" - }, - "xp": { - "type": "integer" - }, - "xpCurrent": { - "type": "integer" - }, - "xpForNext": { - "type": "integer" - } - } - }, - "models.SkillToolsResult": { - "type": "object", - "properties": { - "highest_priority_tool": { - "$ref": "#/definitions/models.StrippedItem" - }, - "tools": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.Skills": { - "type": "object", - "properties": { - "averageSkillLevel": { - "type": "number" - }, - "averageSkillLevelWithProgress": { - "type": "number" - }, - "skills": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.Skill" - } - }, - "totalSkillXp": { - "type": "integer" - } - } - }, - "models.SkillsOutput": { - "type": "object", - "properties": { - "enchanting": { - "$ref": "#/definitions/models.EnchantingOutput" - }, - "farming": { - "$ref": "#/definitions/models.FarmingOutput" - }, - "fishing": { - "$ref": "#/definitions/models.FishingOuput" - }, - "mining": { - "$ref": "#/definitions/models.MiningOutput" - } - } - }, - "models.SlayerData": { - "type": "object", - "properties": { - "kills": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "level": { - "$ref": "#/definitions/models.SlayerLevel" - }, - "name": { - "type": "string" - }, - "texture": { - "type": "string" - } - } - }, - "models.SlayerLevel": { - "type": "object", - "properties": { - "level": { - "type": "integer" - }, - "maxLevel": { - "type": "integer" - }, - "maxed": { - "type": "boolean" - }, - "xp": { - "type": "integer" - }, - "xpForNext": { - "type": "integer" - } - } - }, - "models.SlayersOutput": { - "type": "object", - "properties": { - "data": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.SlayerData" - } - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "totalSlayerExp": { - "type": "integer" - } - } - }, - "models.StatsInfo": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "models.StatsOutput": { - "type": "object", - "properties": { - "apiSettings": { - "type": "object", - "additionalProperties": { - "type": "boolean" - } - }, - "bank": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "fairySouls": { - "$ref": "#/definitions/models.FairySouls" - }, - "joined": { - "type": "integer" - }, - "members": { - "type": "array", - "items": { - "$ref": "#/definitions/models.MemberStats" - } - }, - "personalBank": { - "type": "number" - }, - "profile_cute_name": { - "type": "string" - }, - "profile_id": { - "type": "string" - }, - "profiles": { - "type": "array", - "items": { - "$ref": "#/definitions/models.ProfilesStats" - } - }, - "purse": { - "type": "number" - }, - "rank": { - "$ref": "#/definitions/models.RankOutput" - }, - "selected": { - "type": "boolean" - }, - "skills": { - "$ref": "#/definitions/models.Skills" - }, - "skyblock_level": { - "$ref": "#/definitions/models.Skill" - }, - "social": { - "$ref": "#/definitions/skycrypttypes.SocialMediaLinks" - }, - "username": { - "type": "string" - }, - "uuid": { - "type": "string" - } - } - }, - "models.StrippedItem": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - }, - "display_name": { - "type": "string" - }, - "isInactive": { - "type": "boolean" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "recombobulated": { - "type": "boolean" - }, - "shiny": { - "type": "boolean" - }, - "source": { - "type": "string" - }, - "texture_pack": { - "type": "string" - }, - "texture_path": { - "type": "string" - }, - "wiki": { - "$ref": "#/definitions/models.WikipediaLinks" - } - } - }, - "models.StrippedPet": { - "type": "object", - "properties": { - "active": { - "type": "boolean" - }, - "display_name": { - "type": "string" - }, - "level": { - "type": "integer" - }, - "lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "rarity": { - "type": "string" - }, - "stats": { - "type": "object", - "additionalProperties": { - "type": "number", - "format": "float64" - } - }, - "texture_path": { - "type": "string" - }, - "type": { - "type": "string" - } - } - }, - "models.TrophyFish": { - "type": "object", - "properties": { - "bronze": { - "type": "integer" - }, - "description": { - "type": "string" - }, - "diamond": { - "type": "integer" - }, - "gold": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "maxed": { - "type": "boolean" - }, - "name": { - "type": "string" - }, - "silver": { - "type": "integer" - }, - "texture": { - "type": "string" - } - } - }, - "models.TrophyFishOutput": { - "type": "object", - "properties": { - "stage": { - "$ref": "#/definitions/models.TrophyFishStage" - }, - "totalCaught": { - "type": "integer" - }, - "trophyFish": { - "type": "array", - "items": { - "$ref": "#/definitions/models.TrophyFish" - } - } - } - }, - "models.TrophyFishProgress": { - "type": "object", - "properties": { - "caught": { - "type": "integer" - }, - "tier": { - "type": "string" - }, - "total": { - "type": "integer" - } - } - }, - "models.TrophyFishStage": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "progress": { - "type": "array", - "items": { - "$ref": "#/definitions/models.TrophyFishProgress" - } - } - } - }, - "models.VisitorRarityData": { - "type": "object", - "properties": { - "completed": { - "type": "integer" - }, - "maxUnique": { - "type": "integer" - }, - "unique": { - "type": "integer" - }, - "visited": { - "type": "integer" - } - } - }, - "models.Visitors": { - "type": "object", - "properties": { - "completed": { - "type": "integer" - }, - "uniqueVisitors": { - "type": "integer" - }, - "visited": { - "type": "integer" - }, - "visitors": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/models.VisitorRarityData" - } - } - } - }, - "models.WeaponsResult": { - "type": "object", - "properties": { - "highest_priority_weapon": { - "$ref": "#/definitions/models.StrippedItem" - }, - "weapons": { - "type": "array", - "items": { - "$ref": "#/definitions/models.StrippedItem" - } - } - } - }, - "models.WikipediaLinks": { - "type": "object", - "properties": { - "fandom": { - "type": "string" - }, - "official": { - "type": "string" - } - } - }, - "skycrypttypes.Display": { - "type": "object", - "properties": { - "Lore": { - "type": "array", - "items": { - "type": "string" - } - }, - "Name": { - "type": "string" - }, - "color": { - "type": "integer" - } - } - }, - "skycrypttypes.ExtraAttributes": { - "type": "object", - "properties": { - "ability_scroll": { - "type": "array", - "items": { - "type": "string" - } - }, - "additional_coins": { - "type": "integer" - }, - "artOfPeaceApplied": { - "type": "integer" - }, - "art_of_war_count": { - "type": "integer" - }, - "attributes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "auction": { - "type": "integer" - }, - "bid": { - "type": "integer" - }, - "boosters": { - "type": "array", - "items": { - "type": "string" - } - }, - "champion_combat_xp": { - "type": "number" - }, - "compact_blocks": { - "type": "integer" - }, - "divan_powder_coating": { - "type": "integer" - }, - "donated_museum": { - "type": "boolean" - }, - "drill_part_engine": { - "type": "string" - }, - "drill_part_fuel_tank": { - "type": "string" - }, - "drill_part_upgrade_module": { - "type": "string" - }, - "dungeon_item_level": {}, - "dye_item": { - "type": "string" - }, - "edition": { - "type": "integer" - }, - "enchantments": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "ethermerge": { - "type": "integer" - }, - "expertise_kills": { - "type": "integer" - }, - "farmed_cultivating": { - "type": "integer" - }, - "farming_for_dummies_count": { - "type": "integer" - }, - "gems": { - "type": "object", - "additionalProperties": {} - }, - "hecatomb_s_runs": { - "type": "integer" - }, - "hook": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "hot_potato_count": { - "type": "integer" - }, - "id": { - "type": "string" - }, - "is_shiny": { - "type": "boolean" - }, - "item_tier": { - "type": "integer" - }, - "jalapeno_count": { - "type": "integer" - }, - "line": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "mana_disintegrator_count": { - "type": "integer" - }, - "model": { - "type": "string" - }, - "modifier": { - "type": "string" - }, - "new_year_cake_bag_data": { - "type": "array", - "items": { - "type": "integer" - } - }, - "new_year_cake_bag_years": { - "type": "array", - "items": { - "type": "integer" - } - }, - "new_years_cake": { - "type": "integer" - }, - "party_hat_color": { - "type": "string" - }, - "party_hat_emoji": { - "type": "string" - }, - "petInfo": { - "type": "string" - }, - "pickonimbus_durability": { - "type": "integer" - }, - "polarvoid": { - "type": "integer" - }, - "power_ability_scroll": { - "type": "string" - }, - "price": { - "type": "integer" - }, - "rarity_upgrades": { - "type": "integer" - }, - "runes": { - "type": "object", - "additionalProperties": { - "type": "integer" - } - }, - "sack_pss": { - "type": "integer" - }, - "sinker": { - "$ref": "#/definitions/skycrypttypes.RodPart" - }, - "skin": { - "type": "string" - }, - "talisman_enrichment": { - "type": "string" - }, - "thunder_charge": { - "type": "integer" - }, - "timestamp": {}, - "tuned_transmission": { - "type": "integer" - }, - "upgrade_level": {}, - "uuid": { - "type": "string" - }, - "winning_bid": { - "type": "integer" - }, - "wood_singularity_count": { - "type": "integer" - } - } - }, - "skycrypttypes.Item": { - "type": "object", - "properties": { - "Count": { - "type": "integer" - }, - "Damage": { - "type": "integer" - }, - "containsItems": { - "type": "array", - "items": { - "$ref": "#/definitions/skycrypttypes.Item" - } - }, - "id": { - "type": "integer" - }, - "tag": { - "$ref": "#/definitions/skycrypttypes.Tag" - } - } - }, - "skycrypttypes.Properties": { - "type": "object", - "properties": { - "textures": { - "type": "array", - "items": { - "$ref": "#/definitions/skycrypttypes.Texture" - } - } - } - }, - "skycrypttypes.RodPart": { - "type": "object", - "properties": { - "donated_museum": { - "type": "boolean" - }, - "part": { - "type": "string" - } - } - }, - "skycrypttypes.SkullOwner": { - "type": "object", - "properties": { - "Id": { - "type": "string" - }, - "Properties": { - "$ref": "#/definitions/skycrypttypes.Properties" - } - } - }, - "skycrypttypes.SocialMediaLinks": { - "type": "object", - "properties": { - "DISCORD": { - "type": "string" - }, - "HYPIXEL": { - "type": "string" - }, - "TWITCH": { - "type": "string" - }, - "TWITTER": { - "type": "string" - } - } - }, - "skycrypttypes.Tag": { - "type": "object", - "properties": { - "ExtraAttributes": { - "description": "HideFlags int `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"`\nUnbreakable int `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"`\nEnchantments []Enchantment `nbt:\"ench\" json:\"ench,omitempty\"`", - "allOf": [ - { - "$ref": "#/definitions/skycrypttypes.ExtraAttributes" - } - ] - }, - "SkullOwner": { - "$ref": "#/definitions/skycrypttypes.SkullOwner" - }, - "display": { - "$ref": "#/definitions/skycrypttypes.Display" - } - } - }, - "skycrypttypes.Texture": { - "type": "object", - "properties": { - "Signature": { - "type": "string" - }, - "Value": { - "type": "string" - } - } - } - } + "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"`\nUnbreakable int `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"`\nEnchantments []Enchantment `nbt:\"ench\" json:\"ench,omitempty\"`","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, + "info": {"description":"API for SkyCrypt - A Hypixel SkyBlock Stats Viewer","title":"SkyCrypt API","version":"1.0"}, + "externalDocs": {"description":"","url":""}, + "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, + "openapi": "3.1.0", + "servers": [ + {"url":"localhost:8080/"} + ] } \ No newline at end of file diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 2e515ece0..b73b650cd 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -1,1929 +1,2009 @@ -definitions: - models.ArmorResult: - properties: - armor: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - set_name: - type: string - set_rarity: - type: string - stats: - additionalProperties: - format: float64 +components: + schemas: + models.ArmorResult: + properties: + armor: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + set_name: + type: string + set_rarity: + type: string + stats: + additionalProperties: + type: number + type: object + type: object + models.BestRunOutput: + properties: + damage_dealt: type: number - type: object - type: object - models.BestRunOutput: - properties: - damage_dealt: - type: number - damage_mitigated: - type: number - deaths: - type: integer - dungeon_class: - type: string - elapsed_time: - type: integer - grade: - type: string - mobs_killed: - type: integer - score_bonus: - type: integer - score_exploration: - type: integer - score_skill: - type: integer - score_speed: - type: integer - secrets_found: - type: integer - timestamp: - type: integer - type: object - models.BestiaryCategoryOutput: - properties: - mobs: - items: - $ref: '#/definitions/models.BestiaryMobOutput' - type: array - mobsMaxed: - type: integer - mobsUnlocked: - type: integer - name: - type: string - texture: - type: string - type: object - models.BestiaryMobOutput: - properties: - kills: - type: integer - maxKills: - type: integer - maxTier: - type: integer - name: - type: string - nextTierKills: - type: integer - texture: - type: string - tier: - type: integer - type: object - models.BestiaryOutput: - properties: - categories: - additionalProperties: - $ref: '#/definitions/models.BestiaryCategoryOutput' - type: object - familiesCompleted: - type: integer - familiesUnlocked: - type: integer - familyTiers: - type: integer - level: - type: number - maxFamilyTiers: - type: integer - maxLevel: - type: number - totalFamilies: - type: integer - type: object - models.ClassData: - properties: - classAverage: - type: number - classAverageWithProgress: - type: number - classes: - additionalProperties: - $ref: '#/definitions/models.Skill' - type: object - selectedClass: - type: string - totalClassExp: - type: number - type: object - models.CollectionCategory: - properties: - items: - items: - $ref: '#/definitions/models.CollectionCategoryItem' - type: array - maxTiers: - type: integer - name: - type: string - texture: - type: string - totalTiers: - type: integer - type: object - models.CollectionCategoryItem: - properties: - amount: - type: integer - amounts: - items: - $ref: '#/definitions/models.CollectionCategoryItemAmount' - type: array - id: - type: string - maxTier: - type: integer - name: - type: string - texture: - type: string - tier: - type: integer - totalAmount: - type: integer - type: object - models.CollectionCategoryItemAmount: - properties: - amount: - type: integer - username: - type: string - type: object - models.CollectionsOutput: - properties: - categories: - additionalProperties: - $ref: '#/definitions/models.CollectionCategory' - type: object - maxedCollections: - type: integer - totalCollections: - type: integer - type: object - models.Commissions: - properties: - completions: - type: integer - milestone: - type: integer - type: object - models.Contest: - properties: - amount: - type: integer - collected: - type: integer - medals: - additionalProperties: + damage_mitigated: + type: number + deaths: type: integer - type: object - name: - type: string - texture: - type: string - type: object - models.Corpse: - properties: - amount: - type: integer - name: - type: string - texture_path: - type: string - type: object - models.Corpses: - properties: - corpses: - items: - $ref: '#/definitions/models.Corpse' - type: array - found: - type: integer - max: - type: integer - type: object - models.CrimsonIsleDojo: - properties: - challenges: - items: - $ref: '#/definitions/models.CrimsonIsleDojoChallenge' - type: array - totalPoints: - type: integer - type: object - models.CrimsonIsleDojoChallenge: - properties: - id: - type: string - name: - type: string - points: - type: integer - rank: - type: string - texture: - type: string - time: - type: integer - type: object - models.CrimsonIsleFactions: - properties: - barbariansReputation: - type: integer - magesReputation: - type: integer - selectedFaction: - type: string - type: object - models.CrimsonIsleKuudra: - properties: - tiers: - items: - $ref: '#/definitions/models.CrimsonIsleKuudraTier' - type: array - totalKills: - type: integer - type: object - models.CrimsonIsleKuudraTier: - properties: - id: - type: string - kills: - type: integer - name: - type: string - texture: - type: string - type: object - models.CrimsonIsleOutput: - properties: - dojo: - $ref: '#/definitions/models.CrimsonIsleDojo' - factions: - $ref: '#/definitions/models.CrimsonIsleFactions' - kuudra: - $ref: '#/definitions/models.CrimsonIsleKuudra' - type: object - models.CropMilestone: - properties: - level: - $ref: '#/definitions/models.Skill' - name: - type: string - texture: - type: string - type: object - models.CropUpgrade: - properties: - level: - $ref: '#/definitions/models.Skill' - name: - type: string - texture: - type: string - type: object - models.CrystalHollows: - properties: - crystalHollowsLastAccess: - type: integer - nucleusRuns: - type: integer - progress: - $ref: '#/definitions/models.CrystalNucleusRuns' - type: object - models.CrystalNucleusRuns: - properties: - crystals: - additionalProperties: + dungeon_class: type: string - type: object - parts: - additionalProperties: + elapsed_time: + type: integer + grade: type: string - type: object - type: object - models.DungeonFloorStats: - properties: - best_score: - type: number - fastest_time: - type: number - fastest_time_s: - type: number - fastest_time_s_plus: - type: number - milestone_completions: - type: number - mobs_killed: - type: number - most_damage: - $ref: '#/definitions/models.MostDamageOutput' - most_healing: - type: number - most_mobs_killed: - type: number - tier_completions: - type: number - times_played: - type: number - watcher_kills: - type: number - type: object - models.DungeonStatsOutput: - properties: - bloodMobKills: - type: integer - highestFloorBeatenMaster: - type: integer - highestFloorBeatenNormal: - type: integer - secrets: - $ref: '#/definitions/models.SecretsOutput' - type: object - models.DungeonsOutput: - properties: - catacombs: - items: - $ref: '#/definitions/models.FormattedDungeonFloor' - type: array - classes: - $ref: '#/definitions/models.ClassData' - level: - $ref: '#/definitions/models.Skill' - master_catacombs: - items: - $ref: '#/definitions/models.FormattedDungeonFloor' - type: array - stats: - $ref: '#/definitions/models.DungeonStatsOutput' - type: object - models.EmbedData: - properties: - bank: - type: number - displayName: - type: string - dungeons: - $ref: '#/definitions/models.EmbedDataDungeons' - game_mode: - type: string - joined: - type: integer - networth: - additionalProperties: - format: float64 - type: number - type: object - profile_cute_name: - type: string - profile_id: - type: string - purse: - type: number - skills: - $ref: '#/definitions/models.EmbedDataSkills' - skyblock_level: - type: number - slayers: - $ref: '#/definitions/models.EmbedDataSlayers' - username: - type: string - uuid: - type: string - type: object - models.EmbedDataDungeons: - properties: - classAverage: - type: number - classes: - additionalProperties: + mobs_killed: type: integer - type: object - dungeoneering: - type: number - type: object - models.EmbedDataSkills: - properties: - skillAverage: - type: number - skills: - additionalProperties: + score_bonus: type: integer - type: object - type: object - models.EmbedDataSlayers: - properties: - slayers: - additionalProperties: + score_exploration: type: integer - type: object - xp: - type: number - type: object - models.EnchantingGame: - properties: - attempts: - type: integer - bestScore: - type: integer - claims: - type: integer - name: - type: string - texture: - type: string - type: object - models.EnchantingGameData: - properties: - name: - type: string - stats: - $ref: '#/definitions/models.EnchantingGameStats' - type: object - models.EnchantingGameStats: - properties: - bonusClicks: - type: integer - games: - items: - $ref: '#/definitions/models.EnchantingGame' - type: array - lastAttempt: - type: integer - lastClaimed: - type: integer - type: object - models.EnchantingOutput: - properties: - data: - additionalProperties: - $ref: '#/definitions/models.EnchantingGameData' - type: object - unlocked: - type: boolean - type: object - models.EquipmentResult: - properties: - equipment: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - stats: - additionalProperties: - format: float64 - type: number - type: object - type: object - models.FairySouls: - properties: - found: - type: integer - total: - type: integer - type: object - models.FarmingOutput: - properties: - contests: - additionalProperties: - $ref: '#/definitions/models.Contest' - type: object - contestsAttended: - type: integer - copper: - type: integer - medals: - additionalProperties: - $ref: '#/definitions/models.Medal' - type: object - pelts: - type: integer - tools: - $ref: '#/definitions/models.SkillToolsResult' - uniqueGolds: - type: integer - type: object - models.FishingOuput: - properties: - itemsFished: - type: integer - kills: - items: - $ref: '#/definitions/models.Kill' - type: array - seaCreaturesFished: - type: integer - shredderBait: - type: integer - shredderFished: - type: integer - tools: - $ref: '#/definitions/models.SkillToolsResult' - treasure: - type: integer - treasureLarge: - type: integer - trophyFish: - $ref: '#/definitions/models.TrophyFishOutput' - type: object - models.ForgeOutput: - properties: - duration: - type: number - endingTime: - type: integer - id: - type: string - name: - type: string - slot: - type: integer - startingTime: - type: integer - type: object - models.FormattedDungeonFloor: - properties: - best_run: - $ref: '#/definitions/models.BestRunOutput' - name: - type: string - stats: - $ref: '#/definitions/models.DungeonFloorStats' - texture: - type: string - type: object - models.Fossil: - properties: - found: - type: boolean - name: - type: string - texture_path: - type: string - type: object - models.Fossils: - properties: - fossils: - items: - $ref: '#/definitions/models.Fossil' - type: array - found: - type: integer - max: - type: integer - type: object - models.Garden: - properties: - composter: - additionalProperties: + score_skill: type: integer - type: object - cropMilestones: - items: - $ref: '#/definitions/models.CropMilestone' - type: array - cropUpgrades: - items: - $ref: '#/definitions/models.CropUpgrade' - type: array - level: - $ref: '#/definitions/models.Skill' - plot: - $ref: '#/definitions/models.PlotLayout' - visitors: - $ref: '#/definitions/models.Visitors' - type: object - models.Gear: - properties: - armor: - $ref: '#/definitions/models.ArmorResult' - equipment: - $ref: '#/definitions/models.EquipmentResult' - wardrobe: - items: + score_speed: + type: integer + secrets_found: + type: integer + timestamp: + type: integer + type: object + models.BestiaryCategoryOutput: + properties: + mobs: items: - $ref: '#/definitions/models.StrippedItem' + $ref: '#/components/schemas/models.BestiaryMobOutput' type: array - type: array - weapons: - $ref: '#/definitions/models.WeaponsResult' - type: object - models.GetMagicalPowerOutput: - properties: - abiphone: - type: integer - accessories: - type: integer - hegemony: - properties: - amount: - type: integer - rarity: - type: string - type: object - rarities: - $ref: '#/definitions/models.GetMagicalPowerRarities' - riftPrism: - type: integer - total: - type: integer - type: object - models.GetMagicalPowerRarities: - additionalProperties: + uniqueItems: false + mobsMaxed: + type: integer + mobsUnlocked: + type: integer + name: + type: string + texture: + type: string + type: object + models.BestiaryMobOutput: properties: - amount: + kills: type: integer - magicalPower: + maxKills: + type: integer + maxTier: + type: integer + name: + type: string + nextTierKills: + type: integer + texture: + type: string + tier: type: integer type: object - type: object - models.GetMissingAccessoresOutput: - properties: - accessories: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - enrichments: - additionalProperties: + models.BestiaryOutput: + properties: + categories: + additionalProperties: + $ref: '#/components/schemas/models.BestiaryCategoryOutput' + type: object + familiesCompleted: type: integer - type: object - magicalPower: - $ref: '#/definitions/models.GetMagicalPowerOutput' - missing: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - recombobulated: - type: integer - selectedPower: - type: string - stats: - additionalProperties: - format: float64 - type: number - type: object - total: - type: integer - totalRecombobulated: - type: integer - unique: - type: integer - upgrades: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - type: object - models.GlaciteTunnels: - properties: - corpses: - $ref: '#/definitions/models.Corpses' - fossilDust: - type: number - fossils: - $ref: '#/definitions/models.Fossils' - mineshaftsEntered: - type: integer - type: object - models.HotmTokens: - properties: - available: - type: integer - spent: - type: integer - total: - type: integer - type: object - models.Kill: - properties: - amount: - type: integer - id: - type: string - name: - type: string - texture: - type: string - type: object - models.Medal: - properties: - amount: - type: integer - total: - type: integer - type: object - models.MemberStats: - properties: - removed: - type: boolean - username: - type: string - uuid: - type: string - type: object - models.MiningOutput: - properties: - commissions: - $ref: '#/definitions/models.Commissions' - crystalHollows: - $ref: '#/definitions/models.CrystalHollows' - forge: - items: - $ref: '#/definitions/models.ForgeOutput' - type: array - glaciteTunnels: - $ref: '#/definitions/models.GlaciteTunnels' - hotm: - items: - $ref: '#/definitions/models.ProcessedItem' - type: array - level: - $ref: '#/definitions/models.Skill' - peak_of_the_mountain: - $ref: '#/definitions/models.PeakOfTheMountain' - powder: - $ref: '#/definitions/models.PowderOutput' - selected_pickaxe_ability: - type: string - tokens: - $ref: '#/definitions/models.HotmTokens' - tools: - $ref: '#/definitions/models.SkillToolsResult' - type: object - models.Minion: - properties: - maxTier: - type: integer - name: - type: string - texture: - type: string - tiers: - items: + familiesUnlocked: type: integer - type: array - type: object - models.MinionCategory: - properties: - maxedMinions: - type: integer - maxedTiers: - type: integer - minions: - items: - $ref: '#/definitions/models.Minion' - type: array - texture: - type: string - totalMinions: - type: integer - totalTiers: - type: integer - type: object - models.MinionSlotsOutput: - properties: - bonusSlots: - type: integer - current: - type: integer - next: - type: integer - type: object - models.MinionsOutput: - properties: - maxedMinions: - type: integer - maxedTiers: - type: integer - minions: - additionalProperties: - $ref: '#/definitions/models.MinionCategory' - type: object - minionsSlots: - $ref: '#/definitions/models.MinionSlotsOutput' - totalMinions: - type: integer - totalTiers: - type: integer - type: object - models.MiscAuctions: - properties: - bids: - type: number - created: - type: number - fees: - type: number - gold_earned: - type: number - gold_spent: - type: number - highest_bid: - type: number - no_bids: - type: number - total_bought: - additionalProperties: - format: float64 - type: number - type: object - total_sold: - additionalProperties: - format: float64 + familyTiers: + type: integer + level: type: number - type: object - won: - type: number - type: object - models.MiscDamage: - properties: - highest_critical_damage: - type: number - type: object - models.MiscDragons: - properties: - deaths: - additionalProperties: - format: float64 + maxFamilyTiers: + type: integer + maxLevel: type: number - type: object - ender_crystals_destroyed: - type: integer - fastest_kill: - additionalProperties: - format: float64 + totalFamilies: + type: integer + type: object + models.ClassData: + properties: + classAverage: type: number - type: object - last_hits: - additionalProperties: - format: float64 + classAverageWithProgress: type: number - type: object - most_damage: - additionalProperties: - format: float64 + classes: + additionalProperties: + $ref: '#/components/schemas/models.Skill' + type: object + selectedClass: + type: string + totalClassExp: type: number - type: object - type: object - models.MiscEndstoneProtector: - properties: - deaths: - type: integer - kills: - type: integer - type: object - models.MiscEssence: - properties: - amount: - type: integer - name: - type: string - texture: - type: string - type: object - models.MiscGifts: - properties: - given: - type: integer - received: - type: integer - type: object - models.MiscKill: - properties: - amount: - type: integer - name: - type: string - type: object - models.MiscKills: - properties: - deaths: - items: - $ref: '#/definitions/models.MiscKill' - type: array - kills: + type: object + models.CollectionCategory: + properties: items: - $ref: '#/definitions/models.MiscKill' - type: array - total_deaths: - type: integer - total_kills: - type: integer - type: object - models.MiscMythologicalEvent: - properties: - burrows_chains_complete: - additionalProperties: - format: float64 - type: number - type: object - burrows_dug_combat: - additionalProperties: - format: float64 - type: number - type: object - burrows_dug_next: - additionalProperties: - format: float64 - type: number - type: object - burrows_dug_treasure: - additionalProperties: - format: float64 - type: number - type: object - kills: - type: number - type: object - models.MiscOutput: - properties: - auctions: - $ref: '#/definitions/models.MiscAuctions' - claimed_items: - additionalProperties: - format: int64 + items: + $ref: '#/components/schemas/models.CollectionCategoryItem' + type: array + uniqueItems: false + maxTiers: type: integer - type: object - damage: - $ref: '#/definitions/models.MiscDamage' - dragons: - $ref: '#/definitions/models.MiscDragons' - endstone_protector: - $ref: '#/definitions/models.MiscEndstoneProtector' - essence: - items: - $ref: '#/definitions/models.MiscEssence' - type: array - gifts: - $ref: '#/definitions/models.MiscGifts' - kills: - $ref: '#/definitions/models.MiscKills' - mythological_event: - $ref: '#/definitions/models.MiscMythologicalEvent' - pet_milestones: - additionalProperties: - $ref: '#/definitions/models.MiscPetMilestone' - type: object - profile_upgrades: - $ref: '#/definitions/models.MiscProfileUpgrades' - season_of_jerry: - $ref: '#/definitions/models.MiscSeasonOfJerry' - uncategorized: - additionalProperties: {} - type: object - type: object - models.MiscPetMilestone: - properties: - amount: - type: integer - progress: - type: string - rarity: - type: string - total: - type: integer - type: object - models.MiscProfileUpgrades: - additionalProperties: - type: integer - type: object - models.MiscSeasonOfJerry: - properties: - most_cannonballs_hit: - type: integer - most_damage_dealt: - type: integer - most_magma_damage_dealt: - type: integer - most_snowballs_hit: - type: integer - type: object - models.MostDamageOutput: - properties: - damage: - type: number - type: - type: string - type: object - models.OutputPets: - properties: - amount: - type: integer - amountSkins: - type: integer - missing: - items: - $ref: '#/definitions/models.StrippedPet' - type: array - petScore: - $ref: '#/definitions/models.PetScore' - pets: - items: - $ref: '#/definitions/models.StrippedPet' - type: array - total: - type: integer - totalCandyUsed: - type: integer - totalPetExp: - type: integer - type: object - models.PeakOfTheMountain: - properties: - level: - type: integer - max_level: - type: integer - type: object - models.PetScore: - properties: - amount: - type: integer - reward: - items: - $ref: '#/definitions/models.PetScoreReward' - type: array - stats: - additionalProperties: - format: float64 - type: number - type: object - type: object - models.PetScoreReward: - properties: - bonus: - type: integer - score: - type: integer - unlocked: - type: boolean - type: object - models.PlayerResolve: - properties: - username: - type: string - uuid: - type: string - type: object - models.PlotLayout: - properties: - barnSkin: - type: string - layout: - items: - $ref: '#/definitions/models.ProcessedItem' - type: array - total: - type: integer - unlocked: - type: integer - type: object - models.PowderAmount: - properties: - available: - type: integer - spent: - type: integer - total: - type: integer - type: object - models.PowderOutput: - properties: - gemstone: - $ref: '#/definitions/models.PowderAmount' - glacite: - $ref: '#/definitions/models.PowderAmount' - mithril: - $ref: '#/definitions/models.PowderAmount' - type: object - models.ProcessedItem: - properties: - Count: - type: integer - Damage: - type: integer - categories: - items: + name: + type: string + texture: + type: string + totalTiers: + type: integer + type: object + models.CollectionCategoryItem: + properties: + amount: + type: integer + amounts: + items: + $ref: '#/components/schemas/models.CollectionCategoryItemAmount' + type: array + uniqueItems: false + id: + type: string + maxTier: + type: integer + name: + type: string + texture: + type: string + tier: + type: integer + totalAmount: + type: integer + type: object + models.CollectionCategoryItemAmount: + properties: + amount: + type: integer + username: + type: string + type: object + models.CollectionsOutput: + properties: + categories: + additionalProperties: + $ref: '#/components/schemas/models.CollectionCategory' + type: object + maxedCollections: + type: integer + totalCollections: + type: integer + type: object + models.Commissions: + properties: + completions: + type: integer + milestone: + type: integer + type: object + models.Contest: + properties: + amount: + type: integer + collected: + type: integer + medals: + additionalProperties: + type: integer + type: object + name: + type: string + texture: + type: string + type: object + models.Corpse: + properties: + amount: + type: integer + name: + type: string + texture_path: + type: string + type: object + models.Corpses: + properties: + corpses: + items: + $ref: '#/components/schemas/models.Corpse' + type: array + uniqueItems: false + found: + type: integer + max: + type: integer + type: object + models.CrimsonIsleDojo: + properties: + challenges: + items: + $ref: '#/components/schemas/models.CrimsonIsleDojoChallenge' + type: array + uniqueItems: false + totalPoints: + type: integer + type: object + models.CrimsonIsleDojoChallenge: + properties: + id: + type: string + name: + type: string + points: + type: integer + rank: + type: string + texture: + type: string + time: + type: integer + type: object + models.CrimsonIsleFactions: + properties: + barbariansReputation: + type: integer + magesReputation: + type: integer + selectedFaction: + type: string + type: object + models.CrimsonIsleKuudra: + properties: + tiers: + items: + $ref: '#/components/schemas/models.CrimsonIsleKuudraTier' + type: array + uniqueItems: false + totalKills: + type: integer + type: object + models.CrimsonIsleKuudraTier: + properties: + id: + type: string + kills: + type: integer + name: + type: string + texture: + type: string + type: object + models.CrimsonIsleOutput: + properties: + dojo: + $ref: '#/components/schemas/models.CrimsonIsleDojo' + factions: + $ref: '#/components/schemas/models.CrimsonIsleFactions' + kuudra: + $ref: '#/components/schemas/models.CrimsonIsleKuudra' + type: object + models.CropMilestone: + properties: + level: + $ref: '#/components/schemas/models.Skill' + name: + type: string + texture: + type: string + type: object + models.CropUpgrade: + properties: + level: + $ref: '#/components/schemas/models.Skill' + name: + type: string + texture: + type: string + type: object + models.CrystalHollows: + properties: + crystalHollowsLastAccess: + type: integer + nucleusRuns: + type: integer + progress: + $ref: '#/components/schemas/models.CrystalNucleusRuns' + type: object + models.CrystalNucleusRuns: + properties: + crystals: + additionalProperties: + type: string + type: object + parts: + additionalProperties: + type: string + type: object + type: object + models.DungeonFloorStats: + properties: + best_score: + type: number + fastest_time: + type: number + fastest_time_s: + type: number + fastest_time_s_plus: + type: number + milestone_completions: + type: number + mobs_killed: + type: number + most_damage: + $ref: '#/components/schemas/models.MostDamageOutput' + most_healing: + type: number + most_mobs_killed: + type: number + tier_completions: + type: number + times_played: + type: number + watcher_kills: + type: number + type: object + models.DungeonStatsOutput: + properties: + bloodMobKills: + type: integer + highestFloorBeatenMaster: + type: integer + highestFloorBeatenNormal: + type: integer + secrets: + $ref: '#/components/schemas/models.SecretsOutput' + type: object + models.DungeonsOutput: + properties: + catacombs: + items: + $ref: '#/components/schemas/models.FormattedDungeonFloor' + type: array + uniqueItems: false + classes: + $ref: '#/components/schemas/models.ClassData' + level: + $ref: '#/components/schemas/models.Skill' + master_catacombs: + items: + $ref: '#/components/schemas/models.FormattedDungeonFloor' + type: array + uniqueItems: false + stats: + $ref: '#/components/schemas/models.DungeonStatsOutput' + type: object + models.EmbedData: + properties: + bank: + type: number + displayName: + type: string + dungeons: + $ref: '#/components/schemas/models.EmbedDataDungeons' + game_mode: + type: string + joined: + type: integer + networth: + additionalProperties: + type: number + type: object + profile_cute_name: + type: string + profile_id: + type: string + purse: + type: number + skills: + $ref: '#/components/schemas/models.EmbedDataSkills' + skyblock_level: + type: number + slayers: + $ref: '#/components/schemas/models.EmbedDataSlayers' + username: + type: string + uuid: + type: string + type: object + models.EmbedDataDungeons: + properties: + classAverage: + type: number + classes: + additionalProperties: + type: integer + type: object + dungeoneering: + type: number + type: object + models.EmbedDataSkills: + properties: + skillAverage: + type: number + skills: + additionalProperties: + type: integer + type: object + type: object + models.EmbedDataSlayers: + properties: + slayers: + additionalProperties: + type: integer + type: object + xp: + type: number + type: object + models.EnchantingGame: + properties: + attempts: + type: integer + bestScore: + type: integer + claims: + type: integer + name: + type: string + texture: + type: string + type: object + models.EnchantingGameData: + properties: + name: + type: string + stats: + $ref: '#/components/schemas/models.EnchantingGameStats' + type: object + models.EnchantingGameStats: + properties: + bonusClicks: + type: integer + games: + items: + $ref: '#/components/schemas/models.EnchantingGame' + type: array + uniqueItems: false + lastAttempt: + type: integer + lastClaimed: + type: integer + type: object + models.EnchantingOutput: + properties: + data: + additionalProperties: + $ref: '#/components/schemas/models.EnchantingGameData' + type: object + unlocked: + type: boolean + type: object + models.EquipmentResult: + properties: + equipment: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + stats: + additionalProperties: + type: number + type: object + type: object + models.FairySouls: + properties: + found: + type: integer + total: + type: integer + type: object + models.FarmingOutput: + properties: + contests: + additionalProperties: + $ref: '#/components/schemas/models.Contest' + type: object + contestsAttended: + type: integer + copper: + type: integer + medals: + additionalProperties: + $ref: '#/components/schemas/models.Medal' + type: object + pelts: + type: integer + tools: + $ref: '#/components/schemas/models.SkillToolsResult' + uniqueGolds: + type: integer + type: object + models.FishingOuput: + properties: + itemsFished: + type: integer + kills: + items: + $ref: '#/components/schemas/models.Kill' + type: array + uniqueItems: false + seaCreaturesFished: + type: integer + shredderBait: + type: integer + shredderFished: + type: integer + tools: + $ref: '#/components/schemas/models.SkillToolsResult' + treasure: + type: integer + treasureLarge: + type: integer + trophyFish: + $ref: '#/components/schemas/models.TrophyFishOutput' + type: object + models.ForgeOutput: + properties: + duration: + type: number + endingTime: + type: integer + id: + type: string + name: + type: string + slot: + type: integer + startingTime: + type: integer + type: object + models.FormattedDungeonFloor: + properties: + best_run: + $ref: '#/components/schemas/models.BestRunOutput' + name: + type: string + stats: + $ref: '#/components/schemas/models.DungeonFloorStats' + texture: + type: string + type: object + models.Fossil: + properties: + found: + type: boolean + name: + type: string + texture_path: + type: string + type: object + models.Fossils: + properties: + fossils: + items: + $ref: '#/components/schemas/models.Fossil' + type: array + uniqueItems: false + found: + type: integer + max: + type: integer + type: object + models.Garden: + properties: + composter: + additionalProperties: + type: integer + type: object + cropMilestones: + items: + $ref: '#/components/schemas/models.CropMilestone' + type: array + uniqueItems: false + cropUpgrades: + items: + $ref: '#/components/schemas/models.CropUpgrade' + type: array + uniqueItems: false + level: + $ref: '#/components/schemas/models.Skill' + plot: + $ref: '#/components/schemas/models.PlotLayout' + visitors: + $ref: '#/components/schemas/models.Visitors' + type: object + models.Gear: + properties: + armor: + $ref: '#/components/schemas/models.ArmorResult' + equipment: + $ref: '#/components/schemas/models.EquipmentResult' + wardrobe: + items: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + type: array + uniqueItems: false + weapons: + $ref: '#/components/schemas/models.WeaponsResult' + type: object + models.GetMagicalPowerOutput: + properties: + abiphone: + type: integer + accessories: + type: integer + hegemony: + properties: + amount: + type: integer + rarity: + type: string + type: object + rarities: + $ref: '#/components/schemas/models.GetMagicalPowerRarities' + riftPrism: + type: integer + total: + type: integer + type: object + models.GetMagicalPowerRarities: + additionalProperties: + properties: + amount: + type: integer + magicalPower: + type: integer + type: object + type: object + models.GetMissingAccessoresOutput: + properties: + accessories: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + enrichments: + additionalProperties: + type: integer + type: object + magicalPower: + $ref: '#/components/schemas/models.GetMagicalPowerOutput' + missing: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + recombobulated: + type: integer + selectedPower: + type: string + stats: + additionalProperties: + type: number + type: object + total: + type: integer + totalRecombobulated: + type: integer + unique: + type: integer + upgrades: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + type: object + models.GlaciteTunnels: + properties: + corpses: + $ref: '#/components/schemas/models.Corpses' + fossilDust: + type: number + fossils: + $ref: '#/components/schemas/models.Fossils' + mineshaftsEntered: + type: integer + type: object + models.HotmTokens: + properties: + available: + type: integer + spent: + type: integer + total: + type: integer + type: object + models.Kill: + properties: + amount: + type: integer + id: + type: string + name: + type: string + texture: + type: string + type: object + models.Medal: + properties: + amount: + type: integer + total: + type: integer + type: object + models.MemberStats: + properties: + removed: + type: boolean + username: + type: string + uuid: + type: string + type: object + models.MiningOutput: + properties: + commissions: + $ref: '#/components/schemas/models.Commissions' + crystalHollows: + $ref: '#/components/schemas/models.CrystalHollows' + forge: + items: + $ref: '#/components/schemas/models.ForgeOutput' + type: array + uniqueItems: false + glaciteTunnels: + $ref: '#/components/schemas/models.GlaciteTunnels' + hotm: + items: + $ref: '#/components/schemas/models.ProcessedItem' + type: array + uniqueItems: false + level: + $ref: '#/components/schemas/models.Skill' + peak_of_the_mountain: + $ref: '#/components/schemas/models.PeakOfTheMountain' + powder: + $ref: '#/components/schemas/models.PowderOutput' + selected_pickaxe_ability: + type: string + tokens: + $ref: '#/components/schemas/models.HotmTokens' + tools: + $ref: '#/components/schemas/models.SkillToolsResult' + type: object + models.Minion: + properties: + maxTier: + type: integer + name: + type: string + texture: + type: string + tiers: + items: + type: integer + type: array + uniqueItems: false + type: object + models.MinionCategory: + properties: + maxedMinions: + type: integer + maxedTiers: + type: integer + minions: + items: + $ref: '#/components/schemas/models.Minion' + type: array + uniqueItems: false + texture: + type: string + totalMinions: + type: integer + totalTiers: + type: integer + type: object + models.MinionSlotsOutput: + properties: + bonusSlots: + type: integer + current: + type: integer + next: + type: integer + type: object + models.MinionsOutput: + properties: + maxedMinions: + type: integer + maxedTiers: + type: integer + minions: + additionalProperties: + $ref: '#/components/schemas/models.MinionCategory' + type: object + minionsSlots: + $ref: '#/components/schemas/models.MinionSlotsOutput' + totalMinions: + type: integer + totalTiers: + type: integer + type: object + models.MiscAuctions: + properties: + bids: + type: number + created: + type: number + fees: + type: number + gold_earned: + type: number + gold_spent: + type: number + highest_bid: + type: number + no_bids: + type: number + total_bought: + additionalProperties: + type: number + type: object + total_sold: + additionalProperties: + type: number + type: object + won: + type: number + type: object + models.MiscDamage: + properties: + highest_critical_damage: + type: number + type: object + models.MiscDragons: + properties: + deaths: + additionalProperties: + type: number + type: object + ender_crystals_destroyed: + type: integer + fastest_kill: + additionalProperties: + type: number + type: object + last_hits: + additionalProperties: + type: number + type: object + most_damage: + additionalProperties: + type: number + type: object + type: object + models.MiscEndstoneProtector: + properties: + deaths: + type: integer + kills: + type: integer + type: object + models.MiscEssence: + properties: + amount: + type: integer + name: + type: string + texture: + type: string + type: object + models.MiscGifts: + properties: + given: + type: integer + received: + type: integer + type: object + models.MiscKill: + properties: + amount: + type: integer + name: + type: string + type: object + models.MiscKills: + properties: + deaths: + items: + $ref: '#/components/schemas/models.MiscKill' + type: array + uniqueItems: false + kills: + items: + $ref: '#/components/schemas/models.MiscKill' + type: array + uniqueItems: false + total_deaths: + type: integer + total_kills: + type: integer + type: object + models.MiscMythologicalEvent: + properties: + burrows_chains_complete: + additionalProperties: + type: number + type: object + burrows_dug_combat: + additionalProperties: + type: number + type: object + burrows_dug_next: + additionalProperties: + type: number + type: object + burrows_dug_treasure: + additionalProperties: + type: number + type: object + kills: + type: number + type: object + models.MiscOutput: + properties: + auctions: + $ref: '#/components/schemas/models.MiscAuctions' + claimed_items: + additionalProperties: + type: integer + type: object + damage: + $ref: '#/components/schemas/models.MiscDamage' + dragons: + $ref: '#/components/schemas/models.MiscDragons' + endstone_protector: + $ref: '#/components/schemas/models.MiscEndstoneProtector' + essence: + items: + $ref: '#/components/schemas/models.MiscEssence' + type: array + uniqueItems: false + gifts: + $ref: '#/components/schemas/models.MiscGifts' + kills: + $ref: '#/components/schemas/models.MiscKills' + mythological_event: + $ref: '#/components/schemas/models.MiscMythologicalEvent' + pet_milestones: + additionalProperties: + $ref: '#/components/schemas/models.MiscPetMilestone' + type: object + profile_upgrades: + $ref: '#/components/schemas/models.MiscProfileUpgrades' + season_of_jerry: + $ref: '#/components/schemas/models.MiscSeasonOfJerry' + uncategorized: + additionalProperties: {} + type: object + type: object + models.MiscPetMilestone: + properties: + amount: + type: integer + progress: + type: string + rarity: + type: string + total: + type: integer + type: object + models.MiscProfileUpgrades: + additionalProperties: + type: integer + type: object + models.MiscSeasonOfJerry: + properties: + most_cannonballs_hit: + type: integer + most_damage_dealt: + type: integer + most_magma_damage_dealt: + type: integer + most_snowballs_hit: + type: integer + type: object + models.MostDamageOutput: + properties: + damage: + type: number + type: + type: string + type: object + models.OutputPets: + properties: + amount: + type: integer + amountSkins: + type: integer + missing: + items: + $ref: '#/components/schemas/models.StrippedPet' + type: array + uniqueItems: false + petScore: + $ref: '#/components/schemas/models.PetScore' + pets: + items: + $ref: '#/components/schemas/models.StrippedPet' + type: array + uniqueItems: false + total: + type: integer + totalCandyUsed: + type: integer + totalPetExp: + type: integer + type: object + models.PeakOfTheMountain: + properties: + level: + type: integer + max_level: + type: integer + type: object + models.PetScore: + properties: + amount: + type: integer + reward: + items: + $ref: '#/components/schemas/models.PetScoreReward' + type: array + uniqueItems: false + stats: + additionalProperties: + type: number + type: object + type: object + models.PetScoreReward: + properties: + bonus: + type: integer + score: + type: integer + unlocked: + type: boolean + type: object + models.PlayerResolve: + properties: + username: + type: string + uuid: + type: string + type: object + models.PlotLayout: + properties: + barnSkin: + type: string + layout: + items: + $ref: '#/components/schemas/models.ProcessedItem' + type: array + uniqueItems: false + total: + type: integer + unlocked: + type: integer + type: object + models.PowderAmount: + properties: + available: + type: integer + spent: + type: integer + total: + type: integer + type: object + models.PowderOutput: + properties: + gemstone: + $ref: '#/components/schemas/models.PowderAmount' + glacite: + $ref: '#/components/schemas/models.PowderAmount' + mithril: + $ref: '#/components/schemas/models.PowderAmount' + type: object + models.ProcessedItem: + properties: + Count: + type: integer + Damage: + type: integer + categories: + items: + type: string + type: array + uniqueItems: false + containsItems: + items: + $ref: '#/components/schemas/models.ProcessedItem' + type: array + uniqueItems: false + display_name: + type: string + id: + type: string + isInactive: + type: boolean + lore: + items: + type: string + type: array + uniqueItems: false + price: + type: number + rarity: + type: string + recombobulated: + type: boolean + shiny: + type: boolean + source: + type: string + tag: + $ref: '#/components/schemas/skycrypttypes.Tag' + texture_pack: + type: string + texture_path: + type: string + wiki: + $ref: '#/components/schemas/models.WikipediaLinks' + type: object + models.ProcessingError: + properties: + error: + type: string + message: + type: string + status: + type: string + type: object + models.ProfilesStats: + properties: + cute_name: + type: string + game_mode: + type: string + profile_id: + type: string + selected: + type: boolean + type: object + models.RankOutput: + properties: + plusColor: + type: string + plusText: + type: string + rankColor: + type: string + rankText: + type: string + type: object + models.RiftCastleOutput: + properties: + grubberStacks: + type: integer + maxBurgers: + type: integer + type: object + models.RiftEnigmaOutput: + properties: + souls: + type: integer + totalSouls: + type: integer + type: object + models.RiftMotesOutput: + properties: + lifetime: + type: integer + orbs: + type: integer + purse: + type: integer + type: object + models.RiftOutput: + properties: + armor: + $ref: '#/components/schemas/models.ArmorResult' + castle: + $ref: '#/components/schemas/models.RiftCastleOutput' + enigma: + $ref: '#/components/schemas/models.RiftEnigmaOutput' + equipment: + $ref: '#/components/schemas/models.EquipmentResult' + motes: + $ref: '#/components/schemas/models.RiftMotesOutput' + porhtal: + $ref: '#/components/schemas/models.RiftPortalsOutput' + timecharms: + $ref: '#/components/schemas/models.RiftTimecharmsOutput' + visits: + type: integer + type: object + models.RiftPorhtal: + properties: + name: + type: string + texture: + type: string + unlocked: + type: boolean + type: object + models.RiftPortalsOutput: + properties: + porhtals: + items: + $ref: '#/components/schemas/models.RiftPorhtal' + type: array + uniqueItems: false + porhtalsFound: + type: integer + type: object + models.RiftTimecharms: + properties: + name: + type: string + texture: + type: string + unlocked: + type: boolean + unlockedAt: + type: integer + type: object + models.RiftTimecharmsOutput: + properties: + timecharms: + items: + $ref: '#/components/schemas/models.RiftTimecharms' + type: array + uniqueItems: false + timecharmsFound: + type: integer + type: object + models.SecretsOutput: + properties: + found: + type: integer + secretsPerRun: + type: number + type: object + models.Skill: + properties: + level: + type: integer + levelCap: + type: integer + levelWithProgress: + type: number + maxLevel: + type: integer + maxed: + type: boolean + progress: + type: number + texture: + type: string + uncappedLevel: + type: integer + unlockableLevelWithProgress: + type: number + xp: + type: integer + xpCurrent: + type: integer + xpForNext: + type: integer + type: object + models.SkillToolsResult: + properties: + highest_priority_tool: + $ref: '#/components/schemas/models.StrippedItem' + tools: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + type: object + models.Skills: + properties: + averageSkillLevel: + type: number + averageSkillLevelWithProgress: + type: number + skills: + additionalProperties: + $ref: '#/components/schemas/models.Skill' + type: object + totalSkillXp: + type: integer + type: object + models.SkillsOutput: + properties: + enchanting: + $ref: '#/components/schemas/models.EnchantingOutput' + farming: + $ref: '#/components/schemas/models.FarmingOutput' + fishing: + $ref: '#/components/schemas/models.FishingOuput' + mining: + $ref: '#/components/schemas/models.MiningOutput' + type: object + models.SlayerData: + properties: + kills: + additionalProperties: + type: integer + type: object + level: + $ref: '#/components/schemas/models.SlayerLevel' + name: + type: string + texture: + type: string + type: object + models.SlayerLevel: + properties: + level: + type: integer + maxLevel: + type: integer + maxed: + type: boolean + xp: + type: integer + xpForNext: + type: integer + type: object + models.SlayersOutput: + properties: + data: + additionalProperties: + $ref: '#/components/schemas/models.SlayerData' + type: object + stats: + additionalProperties: + type: number + type: object + totalSlayerExp: + type: integer + type: object + models.StatsInfo: + additionalProperties: + type: integer + type: object + models.StatsOutput: + properties: + apiSettings: + additionalProperties: + type: boolean + type: object + bank: + type: number + displayName: + type: string + fairySouls: + $ref: '#/components/schemas/models.FairySouls' + game_mode: + type: string + joined: + type: integer + members: + items: + $ref: '#/components/schemas/models.MemberStats' + type: array + uniqueItems: false + personalBank: + type: number + profile_cute_name: + type: string + profile_id: + type: string + profiles: + items: + $ref: '#/components/schemas/models.ProfilesStats' + type: array + uniqueItems: false + purse: + type: number + rank: + $ref: '#/components/schemas/models.RankOutput' + selected: + type: boolean + skills: + $ref: '#/components/schemas/models.Skills' + skyblock_level: + $ref: '#/components/schemas/models.Skill' + social: + $ref: '#/components/schemas/skycrypttypes.SocialMediaLinks' + username: + type: string + uuid: + type: string + type: object + models.StrippedItem: + properties: + Count: + type: integer + containsItems: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + display_name: + type: string + isInactive: + type: boolean + lore: + items: + type: string + type: array + uniqueItems: false + rarity: + type: string + recombobulated: + type: boolean + shiny: + type: boolean + source: + type: string + texture_pack: + type: string + texture_path: + type: string + wiki: + $ref: '#/components/schemas/models.WikipediaLinks' + type: object + models.StrippedPet: + properties: + active: + type: boolean + display_name: + type: string + level: + type: integer + lore: + items: + type: string + type: array + uniqueItems: false + rarity: + type: string + stats: + additionalProperties: + type: number + type: object + texture_path: + type: string + type: + type: string + type: object + models.TrophyFish: + properties: + bronze: + type: integer + description: + type: string + diamond: + type: integer + gold: + type: integer + id: + type: string + maxed: + type: boolean + name: + type: string + silver: + type: integer + texture: + type: string + type: object + models.TrophyFishOutput: + properties: + stage: + $ref: '#/components/schemas/models.TrophyFishStage' + totalCaught: + type: integer + trophyFish: + items: + $ref: '#/components/schemas/models.TrophyFish' + type: array + uniqueItems: false + type: object + models.TrophyFishProgress: + properties: + caught: + type: integer + tier: + type: string + total: + type: integer + type: object + models.TrophyFishStage: + properties: + name: + type: string + progress: + items: + $ref: '#/components/schemas/models.TrophyFishProgress' + type: array + uniqueItems: false + type: object + models.VisitorRarityData: + properties: + completed: + type: integer + maxUnique: + type: integer + unique: + type: integer + visited: + type: integer + type: object + models.Visitors: + properties: + completed: + type: integer + uniqueVisitors: + type: integer + visited: + type: integer + visitors: + additionalProperties: + $ref: '#/components/schemas/models.VisitorRarityData' + type: object + type: object + models.WeaponsResult: + properties: + highest_priority_weapon: + $ref: '#/components/schemas/models.StrippedItem' + weapons: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array + uniqueItems: false + type: object + models.WikipediaLinks: + properties: + fandom: type: string - type: array - containsItems: - items: - $ref: '#/definitions/models.ProcessedItem' - type: array - display_name: - type: string - id: - type: string - isInactive: - type: boolean - lore: - items: + official: type: string - type: array - rarity: - type: string - recombobulated: - type: boolean - shiny: - type: boolean - source: - type: string - tag: - $ref: '#/definitions/skycrypttypes.Tag' - texture_pack: - type: string - texture_path: - type: string - wiki: - $ref: '#/definitions/models.WikipediaLinks' - type: object - models.ProcessingError: - properties: - error: - type: string - message: - type: string - status: - type: string - type: object - models.ProfilesStats: - properties: - cute_name: - type: string - game_mode: - type: string - profile_id: - type: string - selected: - type: boolean - type: object - models.RankOutput: - properties: - plusColor: - type: string - plusText: - type: string - rankColor: - type: string - rankText: - type: string - type: object - models.RiftCastleOutput: - properties: - grubberStacks: - type: integer - maxBurgers: - type: integer - type: object - models.RiftEnigmaOutput: - properties: - souls: - type: integer - totalSouls: - type: integer - type: object - models.RiftMotesOutput: - properties: - lifetime: - type: integer - orbs: - type: integer - purse: - type: integer - type: object - models.RiftOutput: - properties: - armor: - $ref: '#/definitions/models.ArmorResult' - castle: - $ref: '#/definitions/models.RiftCastleOutput' - enigma: - $ref: '#/definitions/models.RiftEnigmaOutput' - equipment: - $ref: '#/definitions/models.EquipmentResult' - motes: - $ref: '#/definitions/models.RiftMotesOutput' - porhtal: - $ref: '#/definitions/models.RiftPortalsOutput' - timecharms: - $ref: '#/definitions/models.RiftTimecharmsOutput' - visits: - type: integer - type: object - models.RiftPorhtal: - properties: - name: - type: string - texture: - type: string - unlocked: - type: boolean - type: object - models.RiftPortalsOutput: - properties: - porhtals: - items: - $ref: '#/definitions/models.RiftPorhtal' - type: array - porhtalsFound: - type: integer - type: object - models.RiftTimecharms: - properties: - name: - type: string - texture: - type: string - unlocked: - type: boolean - unlockedAt: - type: integer - type: object - models.RiftTimecharmsOutput: - properties: - timecharms: - items: - $ref: '#/definitions/models.RiftTimecharms' - type: array - timecharmsFound: - type: integer - type: object - models.SecretsOutput: - properties: - found: - type: integer - secretsPerRun: - type: number - type: object - models.Skill: - properties: - level: - type: integer - levelCap: - type: integer - levelWithProgress: - type: number - maxLevel: - type: integer - maxed: - type: boolean - progress: - type: number - texture: - type: string - uncappedLevel: - type: integer - unlockableLevelWithProgress: - type: number - xp: - type: integer - xpCurrent: - type: integer - xpForNext: - type: integer - type: object - models.SkillToolsResult: - properties: - highest_priority_tool: - $ref: '#/definitions/models.StrippedItem' - tools: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - type: object - models.Skills: - properties: - averageSkillLevel: - type: number - averageSkillLevelWithProgress: - type: number - skills: - additionalProperties: - $ref: '#/definitions/models.Skill' - type: object - totalSkillXp: - type: integer - type: object - models.SkillsOutput: - properties: - enchanting: - $ref: '#/definitions/models.EnchantingOutput' - farming: - $ref: '#/definitions/models.FarmingOutput' - fishing: - $ref: '#/definitions/models.FishingOuput' - mining: - $ref: '#/definitions/models.MiningOutput' - type: object - models.SlayerData: - properties: - kills: - additionalProperties: + type: object + skycrypttypes.Display: + properties: + Lore: + items: + type: string + type: array + uniqueItems: false + Name: + type: string + color: type: integer - type: object - level: - $ref: '#/definitions/models.SlayerLevel' - name: - type: string - texture: - type: string - type: object - models.SlayerLevel: - properties: - level: - type: integer - maxLevel: - type: integer - maxed: - type: boolean - xp: - type: integer - xpForNext: - type: integer - type: object - models.SlayersOutput: - properties: - data: - additionalProperties: - $ref: '#/definitions/models.SlayerData' - type: object - stats: - additionalProperties: - format: float64 + type: object + skycrypttypes.ExtraAttributes: + description: |- + HideFlags int `nbt:"HideFlags" json:"HideFlags,omitempty"` + Unbreakable int `nbt:"Unbreakable" json:"Unbreakable,omitempty"` + Enchantments []Enchantment `nbt:"ench" json:"ench,omitempty"` + properties: + ability_scroll: + items: + type: string + type: array + uniqueItems: false + additional_coins: + type: integer + art_of_war_count: + type: integer + artOfPeaceApplied: + type: integer + attributes: + additionalProperties: + type: integer + type: object + auction: + type: integer + bid: + type: integer + boosters: + items: + type: string + type: array + uniqueItems: false + champion_combat_xp: type: number - type: object - totalSlayerExp: - type: integer - type: object - models.StatsInfo: - additionalProperties: - type: integer - type: object - models.StatsOutput: - properties: - apiSettings: - additionalProperties: + compact_blocks: + type: integer + divan_powder_coating: + type: integer + donated_museum: type: boolean - type: object - bank: - type: number - displayName: - type: string - fairySouls: - $ref: '#/definitions/models.FairySouls' - joined: - type: integer - members: - items: - $ref: '#/definitions/models.MemberStats' - type: array - personalBank: - type: number - profile_cute_name: - type: string - profile_id: - type: string - profiles: - items: - $ref: '#/definitions/models.ProfilesStats' - type: array - purse: - type: number - rank: - $ref: '#/definitions/models.RankOutput' - selected: - type: boolean - skills: - $ref: '#/definitions/models.Skills' - skyblock_level: - $ref: '#/definitions/models.Skill' - social: - $ref: '#/definitions/skycrypttypes.SocialMediaLinks' - username: - type: string - uuid: - type: string - type: object - models.StrippedItem: - properties: - Count: - type: integer - containsItems: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - display_name: - type: string - isInactive: - type: boolean - lore: - items: + drill_part_engine: type: string - type: array - rarity: - type: string - recombobulated: - type: boolean - shiny: - type: boolean - source: - type: string - texture_pack: - type: string - texture_path: - type: string - wiki: - $ref: '#/definitions/models.WikipediaLinks' - type: object - models.StrippedPet: - properties: - active: - type: boolean - display_name: - type: string - level: - type: integer - lore: - items: + drill_part_fuel_tank: type: string - type: array - rarity: - type: string - stats: - additionalProperties: - format: float64 - type: number - type: object - texture_path: - type: string - type: - type: string - type: object - models.TrophyFish: - properties: - bronze: - type: integer - description: - type: string - diamond: - type: integer - gold: - type: integer - id: - type: string - maxed: - type: boolean - name: - type: string - silver: - type: integer - texture: - type: string - type: object - models.TrophyFishOutput: - properties: - stage: - $ref: '#/definitions/models.TrophyFishStage' - totalCaught: - type: integer - trophyFish: - items: - $ref: '#/definitions/models.TrophyFish' - type: array - type: object - models.TrophyFishProgress: - properties: - caught: - type: integer - tier: - type: string - total: - type: integer - type: object - models.TrophyFishStage: - properties: - name: - type: string - progress: - items: - $ref: '#/definitions/models.TrophyFishProgress' - type: array - type: object - models.VisitorRarityData: - properties: - completed: - type: integer - maxUnique: - type: integer - unique: - type: integer - visited: - type: integer - type: object - models.Visitors: - properties: - completed: - type: integer - uniqueVisitors: - type: integer - visited: - type: integer - visitors: - additionalProperties: - $ref: '#/definitions/models.VisitorRarityData' - type: object - type: object - models.WeaponsResult: - properties: - highest_priority_weapon: - $ref: '#/definitions/models.StrippedItem' - weapons: - items: - $ref: '#/definitions/models.StrippedItem' - type: array - type: object - models.WikipediaLinks: - properties: - fandom: - type: string - official: - type: string - type: object - skycrypttypes.Display: - properties: - Lore: - items: + drill_part_upgrade_module: type: string - type: array - Name: - type: string - color: - type: integer - type: object - skycrypttypes.ExtraAttributes: - properties: - ability_scroll: - items: + dungeon_item_level: {} + dye_item: type: string - type: array - additional_coins: - type: integer - art_of_war_count: - type: integer - artOfPeaceApplied: - type: integer - attributes: - additionalProperties: + edition: type: integer - type: object - auction: - type: integer - bid: - type: integer - boosters: - items: + enchantments: + additionalProperties: + type: integer + type: object + ethermerge: + type: integer + expertise_kills: + type: integer + farmed_cultivating: + type: integer + farming_for_dummies_count: + type: integer + gems: + additionalProperties: {} + type: object + hecatomb_s_runs: + type: integer + hook: + $ref: '#/components/schemas/skycrypttypes.RodPart' + hot_potato_count: + type: integer + id: type: string - type: array - champion_combat_xp: - type: number - compact_blocks: - type: integer - divan_powder_coating: - type: integer - donated_museum: - type: boolean - drill_part_engine: - type: string - drill_part_fuel_tank: - type: string - drill_part_upgrade_module: - type: string - dungeon_item_level: {} - dye_item: - type: string - edition: - type: integer - enchantments: - additionalProperties: + is_shiny: + type: boolean + item_tier: type: integer - type: object - ethermerge: - type: integer - expertise_kills: - type: integer - farmed_cultivating: - type: integer - farming_for_dummies_count: - type: integer - gems: - additionalProperties: {} - type: object - hecatomb_s_runs: - type: integer - hook: - $ref: '#/definitions/skycrypttypes.RodPart' - hot_potato_count: - type: integer - id: - type: string - is_shiny: - type: boolean - item_tier: - type: integer - jalapeno_count: - type: integer - line: - $ref: '#/definitions/skycrypttypes.RodPart' - mana_disintegrator_count: - type: integer - model: - type: string - modifier: - type: string - new_year_cake_bag_data: - items: + jalapeno_count: type: integer - type: array - new_year_cake_bag_years: - items: + line: + $ref: '#/components/schemas/skycrypttypes.RodPart' + mana_disintegrator_count: type: integer - type: array - new_years_cake: - type: integer - party_hat_color: - type: string - party_hat_emoji: - type: string - petInfo: - type: string - pickonimbus_durability: - type: integer - polarvoid: - type: integer - power_ability_scroll: - type: string - price: - type: integer - rarity_upgrades: - type: integer - runes: - additionalProperties: + model: + type: string + modifier: + type: string + new_year_cake_bag_data: + items: + type: integer + type: array + uniqueItems: false + new_year_cake_bag_years: + items: + type: integer + type: array + uniqueItems: false + new_years_cake: type: integer - type: object - sack_pss: - type: integer - sinker: - $ref: '#/definitions/skycrypttypes.RodPart' - skin: - type: string - talisman_enrichment: - type: string - thunder_charge: - type: integer - timestamp: {} - tuned_transmission: - type: integer - upgrade_level: {} - uuid: - type: string - winning_bid: - type: integer - wood_singularity_count: - type: integer - type: object - skycrypttypes.Item: - properties: - Count: - type: integer - Damage: - type: integer - containsItems: - items: - $ref: '#/definitions/skycrypttypes.Item' - type: array - id: - type: integer - tag: - $ref: '#/definitions/skycrypttypes.Tag' - type: object - skycrypttypes.Properties: - properties: - textures: - items: - $ref: '#/definitions/skycrypttypes.Texture' - type: array - type: object - skycrypttypes.RodPart: - properties: - donated_museum: - type: boolean - part: - type: string - type: object - skycrypttypes.SkullOwner: - properties: - Id: - type: string - Properties: - $ref: '#/definitions/skycrypttypes.Properties' - type: object - skycrypttypes.SocialMediaLinks: - properties: - DISCORD: - type: string - HYPIXEL: - type: string - TWITCH: - type: string - TWITTER: - type: string - type: object - skycrypttypes.Tag: - properties: - ExtraAttributes: - allOf: - - $ref: '#/definitions/skycrypttypes.ExtraAttributes' - description: |- - HideFlags int `nbt:"HideFlags" json:"HideFlags,omitempty"` - Unbreakable int `nbt:"Unbreakable" json:"Unbreakable,omitempty"` - Enchantments []Enchantment `nbt:"ench" json:"ench,omitempty"` - SkullOwner: - $ref: '#/definitions/skycrypttypes.SkullOwner' - display: - $ref: '#/definitions/skycrypttypes.Display' - type: object - skycrypttypes.Texture: - properties: - Signature: - type: string - Value: - type: string - type: object + party_hat_color: + type: string + party_hat_emoji: + type: string + petInfo: + type: string + pickonimbus_durability: + type: integer + polarvoid: + type: integer + power_ability_scroll: + type: string + price: + type: integer + rarity_upgrades: + type: integer + runes: + additionalProperties: + type: integer + type: object + sack_pss: + type: integer + sinker: + $ref: '#/components/schemas/skycrypttypes.RodPart' + skin: + type: string + talisman_enrichment: + type: string + thunder_charge: + type: integer + timestamp: {} + tuned_transmission: + type: integer + upgrade_level: {} + uuid: + type: string + winning_bid: + type: integer + wood_singularity_count: + type: integer + type: object + skycrypttypes.Item: + properties: + Count: + type: integer + Damage: + type: integer + containsItems: + items: + $ref: '#/components/schemas/skycrypttypes.Item' + type: array + uniqueItems: false + id: + type: integer + price: + type: number + tag: + $ref: '#/components/schemas/skycrypttypes.Tag' + type: object + skycrypttypes.Properties: + properties: + textures: + items: + $ref: '#/components/schemas/skycrypttypes.Texture' + type: array + uniqueItems: false + type: object + skycrypttypes.RodPart: + properties: + donated_museum: + type: boolean + part: + type: string + type: object + skycrypttypes.SkullOwner: + properties: + Id: + type: string + Properties: + $ref: '#/components/schemas/skycrypttypes.Properties' + type: object + skycrypttypes.SocialMediaLinks: + properties: + DISCORD: + type: string + HYPIXEL: + type: string + TWITCH: + type: string + TWITTER: + type: string + type: object + skycrypttypes.Tag: + properties: + ExtraAttributes: + $ref: '#/components/schemas/skycrypttypes.ExtraAttributes' + SkullOwner: + $ref: '#/components/schemas/skycrypttypes.SkullOwner' + display: + $ref: '#/components/schemas/skycrypttypes.Display' + type: object + skycrypttypes.Texture: + properties: + Signature: + type: string + Value: + type: string + type: object +externalDocs: + description: "" + url: "" info: - contact: {} + description: API for SkyCrypt - A Hypixel SkyBlock Stats Viewer + title: SkyCrypt API + version: "1.0" +openapi: 3.1.0 paths: /api/accessories/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns accessories for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.GetMissingAccessoresOutput' description: OK - schema: - $ref: '#/definitions/models.GetMissingAccessoresOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get accessories stats of a specified player tags: - accessories /api/bestiary/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns bestiary for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.BestiaryOutput' description: OK - schema: - $ref: '#/definitions/models.BestiaryOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get bestiary stats of a specified player tags: - bestiary /api/collections/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns collections for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.CollectionsOutput' description: OK - schema: - $ref: '#/definitions/models.CollectionsOutput' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get collections stats of a specified player tags: - collections /api/crimson_isle/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns Crimson Isle stats for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.CrimsonIsleOutput' description: OK - schema: - $ref: '#/definitions/models.CrimsonIsleOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get Crimson Isle stats of a specified player tags: - crimson_isle /api/dungeons/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns dungeons for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.DungeonsOutput' description: OK - schema: - $ref: '#/definitions/models.DungeonsOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get dungeons stats of a specified player tags: - dungeons /api/embed/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns embed data for the given user (UUID or username) and optional profile ID parameters: @@ -1931,85 +2011,111 @@ paths: in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID (optional) in: path name: profileId - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.EmbedData' description: OK - schema: - $ref: '#/definitions/models.EmbedData' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get embed data for a specified player tags: - embed /api/garden/{profileId}: get: - consumes: - - application/json description: Returns garden data for the given profile ID parameters: - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.Garden' description: OK - schema: - $ref: '#/definitions/models.Garden' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get garden stats of a specified profile tags: - garden /api/gear/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns gear for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.Gear' description: OK - schema: - $ref: '#/definitions/models.Gear' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get gear stats of a specified player tags: - gear @@ -2021,29 +2127,36 @@ paths: in: path name: textureId required: true - type: string - produces: - - image/png + schema: + type: string responses: "200": + content: + application/json: + schema: + type: file + image/png: + schema: + format: binary + type: string description: PNG image of the head - schema: - type: file "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + type: string description: Failed to render head - schema: - type: string summary: Render and return a head image tags: - head /api/inventory/{uuid}/{profileId}/{inventoryId}: get: - consumes: - - application/json description: Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories. parameters: @@ -2051,41 +2164,56 @@ paths: in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string + schema: + type: string - description: Inventory ID (e.g., museum, search, or other inventory types) in: path name: inventoryId required: true - type: string - produces: - - application/json + schema: + type: string + - description: Search string (required when inventoryId is 'search') + in: path + name: search + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array description: OK - schema: - items: - $ref: '#/definitions/models.StrippedItem' - type: array "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get inventory items for a specified player tags: - inventory /api/inventory/{uuid}/{profileId}/search/{search}: get: - consumes: - - application/json description: Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories. parameters: @@ -2093,33 +2221,51 @@ paths: in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string + schema: + type: string + - description: Inventory ID (e.g., museum, search, or other inventory types) + in: path + name: inventoryId + required: true + schema: + type: string - description: Search string (required when inventoryId is 'search') in: path name: search - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + items: + $ref: '#/components/schemas/models.StrippedItem' + type: array description: OK - schema: - items: - $ref: '#/definitions/models.StrippedItem' - type: array "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get inventory items for a specified player tags: - inventory @@ -2131,22 +2277,31 @@ paths: in: path name: itemId required: true - type: string - produces: - - image/png + schema: + type: string responses: "200": + content: + application/json: + schema: + type: file + image/png: + schema: + format: binary + type: string description: PNG image of the item - schema: - type: file "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + type: string description: Failed to render item - schema: - type: string summary: Render and return an item image tags: - item @@ -2158,184 +2313,231 @@ paths: in: path name: type required: true - type: string + schema: + type: string - description: Armor Color in: path name: color required: true - type: string - produces: - - image/png + schema: + type: string responses: "200": + content: + application/json: + schema: + type: file + image/png: + schema: + format: binary + type: string description: PNG image of the leather armor - schema: - type: file "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Render and return a leather armor image tags: - leather /api/minions/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns minions for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.MinionsOutput' description: OK - schema: - $ref: '#/definitions/models.MinionsOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get minions stats of a specified player tags: - minions /api/misc/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns misc stats for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.MiscOutput' description: OK - schema: - $ref: '#/definitions/models.MiscOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get misc stats of a specified player tags: - misc /api/networth/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns networth for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + additionalProperties: {} + type: object description: OK - schema: - additionalProperties: true - type: object "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get networth of a specified player tags: - networth /api/pets/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns pets for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.OutputPets' description: OK - schema: - $ref: '#/definitions/models.OutputPets' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get pets stats of a specified player tags: - pets /api/playerStats/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns player stats for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + additionalProperties: + $ref: '#/components/schemas/models.StatsInfo' + type: object description: OK - schema: - additionalProperties: - $ref: '#/definitions/models.StatsInfo' - type: object "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get player stats of a specified player tags: - playerStats @@ -2347,210 +2549,267 @@ paths: in: path name: type required: true - type: string + schema: + type: string - description: Potion Color in: path name: color required: true - type: string - produces: - - image/png + schema: + type: string responses: "200": + content: + application/json: + schema: + type: file + image/png: + schema: + format: binary + type: string description: PNG image of the potion - schema: - type: file "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Render and return a potion image tags: - potion /api/rift/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns rift data for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.RiftOutput' description: OK - schema: - $ref: '#/definitions/models.RiftOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get rift stats of a specified player tags: - rift /api/skills/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns skills for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.SkillsOutput' description: OK - schema: - $ref: '#/definitions/models.SkillsOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get skills stats of a specified player tags: - skills /api/slayer/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns slayer statistics for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.SlayersOutput' description: OK - schema: - $ref: '#/definitions/models.SlayersOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get slayer stats of a specified player tags: - slayers /api/stats/{uuid}/{profileId}: get: - consumes: - - application/json description: Returns stats for the given user and profile ID parameters: - description: User UUID in: path name: uuid required: true - type: string + schema: + type: string - description: Profile ID in: path name: profileId required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.StatsOutput' description: OK - schema: - $ref: '#/definitions/models.StatsOutput' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' "500": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Internal Server Error - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get stats of a specified player tags: - stats /api/username/{uuid}: get: - consumes: - - application/json description: Returns the username associated with the given UUID parameters: - description: UUID in: path name: uuid required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.PlayerResolve' description: OK - schema: - $ref: '#/definitions/models.PlayerResolve' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get username for a specified UUID tags: - username /api/uuid/{username}: get: - consumes: - - application/json description: Returns the UUID associated with the given username parameters: - description: Username in: path name: username required: true - type: string - produces: - - application/json + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object responses: "200": + content: + application/json: + schema: + $ref: '#/components/schemas/models.PlayerResolve' description: OK - schema: - $ref: '#/definitions/models.PlayerResolve' "400": + content: + application/json: + schema: + $ref: '#/components/schemas/models.ProcessingError' description: Bad Request - schema: - $ref: '#/definitions/models.ProcessingError' summary: Get UUID for a specified username tags: - uuid -swagger: "2.0" +servers: +- url: localhost:8080/ diff --git a/go.mod b/go.mod index 792cd9b31..13bbbd71e 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/go-git/go-git/v5 v5.16.2 github.com/gofiber/fiber/v2 v2.52.9 github.com/joho/godotenv v1.5.1 - github.com/swaggo/swag v1.16.4 + github.com/swaggo/swag/v2 v2.0.0-rc4 github.com/yokeTH/gofiber-scalar v0.1.1 ) @@ -24,6 +24,7 @@ require ( github.com/bytedance/sonic v1.14.1 // indirect github.com/bytedance/sonic/loader v0.3.0 // indirect github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/clipperhouse/uax29/v2 v2.2.0 // indirect github.com/cloudflare/circl v1.6.1 // indirect github.com/cloudwego/base64x v0.1.6 // indirect github.com/cyphar/filepath-securejoin v0.4.1 // indirect @@ -31,21 +32,21 @@ require ( github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.6.2 // indirect - github.com/go-openapi/jsonpointer v0.22.0 // indirect - github.com/go-openapi/jsonreference v0.21.1 // indirect - github.com/go-openapi/spec v0.21.0 // indirect - github.com/go-openapi/swag v0.25.0 // indirect - github.com/go-openapi/swag/cmdutils v0.25.0 // indirect - github.com/go-openapi/swag/conv v0.25.0 // indirect - github.com/go-openapi/swag/fileutils v0.25.0 // indirect - github.com/go-openapi/swag/jsonname v0.25.0 // indirect - github.com/go-openapi/swag/jsonutils v0.25.0 // indirect - github.com/go-openapi/swag/loading v0.25.0 // indirect - github.com/go-openapi/swag/mangling v0.25.0 // indirect - github.com/go-openapi/swag/netutils v0.25.0 // indirect - github.com/go-openapi/swag/stringutils v0.25.0 // indirect - github.com/go-openapi/swag/typeutils v0.25.0 // indirect - github.com/go-openapi/swag/yamlutils v0.25.0 // indirect + github.com/go-openapi/jsonpointer v0.22.1 // indirect + github.com/go-openapi/jsonreference v0.21.2 // indirect + github.com/go-openapi/spec v0.22.0 // indirect + github.com/go-openapi/swag v0.25.1 // indirect + github.com/go-openapi/swag/cmdutils v0.25.1 // indirect + github.com/go-openapi/swag/conv v0.25.1 // indirect + github.com/go-openapi/swag/fileutils v0.25.1 // indirect + github.com/go-openapi/swag/jsonname v0.25.1 // indirect + github.com/go-openapi/swag/jsonutils v0.25.1 // indirect + github.com/go-openapi/swag/loading v0.25.1 // indirect + github.com/go-openapi/swag/mangling v0.25.1 // indirect + github.com/go-openapi/swag/netutils v0.25.1 // indirect + github.com/go-openapi/swag/stringutils v0.25.1 // indirect + github.com/go-openapi/swag/typeutils v0.25.1 // indirect + github.com/go-openapi/swag/yamlutils v0.25.1 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect @@ -53,16 +54,25 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pjbgf/sha1cd v0.3.2 // indirect + github.com/pkg/errors v0.9.1 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/skeema/knownhosts v1.3.1 // indirect + github.com/sv-tools/openapi v0.2.1 // indirect + github.com/swaggo/fiber-swagger v1.3.0 // indirect + github.com/swaggo/files v1.0.1 // indirect + github.com/swaggo/swag v1.16.6 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect go.yaml.in/yaml/v3 v3.0.4 // indirect golang.org/x/arch v0.21.0 // indirect - golang.org/x/crypto v0.42.0 // indirect - golang.org/x/net v0.44.0 // indirect - golang.org/x/tools v0.37.0 // indirect + golang.org/x/crypto v0.43.0 // indirect + golang.org/x/mod v0.29.0 // indirect + golang.org/x/net v0.46.0 // indirect + golang.org/x/sync v0.17.0 // indirect + golang.org/x/tools v0.38.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) require ( @@ -75,11 +85,11 @@ require ( github.com/klauspost/compress v1.18.0 // indirect github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-runewidth v0.0.17 // indirect + github.com/mattn/go-runewidth v0.0.19 // indirect github.com/rivo/uniseg v0.4.7 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasthttp v1.66.0 // indirect + github.com/valyala/fasthttp v1.67.0 // indirect golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 - golang.org/x/sys v0.36.0 // indirect - golang.org/x/text v0.29.0 + golang.org/x/sys v0.37.0 // indirect + golang.org/x/text v0.30.0 ) diff --git a/go.sum b/go.sum index 65110a772..d93d0775b 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,6 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DuckySoLucky/SkyCrypt-Types v0.1.10 h1:65kEYXMhA6Ve/CcPCbdijncB7KO/c2gEx42NPOhPKgA= github.com/DuckySoLucky/SkyCrypt-Types v0.1.10/go.mod h1:5tR65bmeXxmxzcWoM+8zQeN/1sC0NuA7//mxW2UlI5k= github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc= @@ -9,14 +10,14 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2 h1:tejveRivA8pwvNuUE1cKJEv4eyOdAGOkGYc7/ljAR4k= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.2/go.mod h1:SE+6+ASyA2r0QJM7Je8OCxN2GZCOaioDLujuvBymyjI= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3 h1:Dz+KV2ZJsrKYE8C4cppgCTr/NKjIiWoNW4YIkrFQwt4= -github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.3/go.mod h1:8AdNFYBlDU8YGIDj0tIrlPkW5J1ojrvvbxyHzHvcCXw= +github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.4 h1:FIYSrJWOmx1quVvmfmRLeoZFHQTq1WTIWDPLxZludMk= github.com/SkyCryptWebsite/SkyHelper-Networth-Go v1.2.4/go.mod h1:8AdNFYBlDU8YGIDj0tIrlPkW5J1ojrvvbxyHzHvcCXw= github.com/Tnze/go-mc v1.20.2 h1:arHCE/WxLCxY73C/4ZNLdOymRYtdwoXE05ohB7HVN6Q= github.com/Tnze/go-mc v1.20.2/go.mod h1:geoRj2HsXSkB3FJBuhr7wCzXegRlzWsVXd7h7jiJ6aQ= +github.com/agiledragon/gomonkey/v2 v2.3.1/go.mod h1:ap1AmDzcVOAz1YpeJ3TCzIgstoaWLA6jbbgxfB4w2iY= +github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ= github.com/andybalholm/brotli v1.2.0/go.mod h1:rzTDkvFWvIrjDXZHkuS16NPggd91W3kUSvPlQ1pLaKY= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= @@ -31,10 +32,14 @@ github.com/bytedance/sonic/loader v0.3.0 h1:dskwH8edlzNMctoruo8FPTJDF3vLtDT0sXZw github.com/bytedance/sonic/loader v0.3.0/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/clipperhouse/uax29/v2 v2.2.0 h1:ChwIKnQN3kcZteTXMgb1wztSgaU+ZemkgWdohwgs8tY= +github.com/clipperhouse/uax29/v2 v2.2.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM= github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ0= github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs= github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M= github.com/cloudwego/base64x v0.1.6/go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s= github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -48,6 +53,7 @@ github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gliderlabs/ssh v0.3.8 h1:a4YXD1V7xMF9g5nTkdfnja3Sxy1PVDCj1Zg4Wb8vY6c= github.com/gliderlabs/ssh v0.3.8/go.mod h1:xYoytBv1sV0aL3CavoDuJIQNURXkkfPA/wxQ1pL1fAU= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= @@ -58,40 +64,77 @@ github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMj github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= github.com/go-git/go-git/v5 v5.16.2 h1:fT6ZIOjE5iEnkzKyxTHK1W4HGAsPhqEqiSAssSO77hM= github.com/go-git/go-git/v5 v5.16.2/go.mod h1:4Ge4alE/5gPs30F2H1esi2gPd69R0C39lolkucHBOp8= +github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.22.0 h1:TmMhghgNef9YXxTu1tOopo+0BGEytxA+okbry0HjZsM= github.com/go-openapi/jsonpointer v0.22.0/go.mod h1:xt3jV88UtExdIkkL7NloURjRQjbeUgcxFblMjq2iaiU= +github.com/go-openapi/jsonpointer v0.22.1 h1:sHYI1He3b9NqJ4wXLoJDKmUmHkWy/L7rtEo92JUxBNk= +github.com/go-openapi/jsonpointer v0.22.1/go.mod h1:pQT9OsLkfz1yWoMgYFy4x3U5GY5nUlsOn1qSBH5MkCM= +github.com/go-openapi/jsonreference v0.19.6/go.mod h1:diGHMEHg2IqXZGKxqyvWdfWU/aim5Dprw5bqpKkTvns= github.com/go-openapi/jsonreference v0.21.1 h1:bSKrcl8819zKiOgxkbVNRUBIr6Wwj9KYrDbMjRs0cDA= github.com/go-openapi/jsonreference v0.21.1/go.mod h1:PWs8rO4xxTUqKGu+lEvvCxD5k2X7QYkKAepJyCmSTT8= +github.com/go-openapi/jsonreference v0.21.2 h1:Wxjda4M/BBQllegefXrY/9aq1fxBA8sI5M/lFU6tSWU= +github.com/go-openapi/jsonreference v0.21.2/go.mod h1:pp3PEjIsJ9CZDGCNOyXIQxsNuroxm8FAJ/+quA0yKzQ= +github.com/go-openapi/spec v0.20.4/go.mod h1:faYFR1CvsJZ0mNsmsphTMSoRrNV3TEDoAM7FOEWeq8I= github.com/go-openapi/spec v0.21.0 h1:LTVzPc3p/RzRnkQqLRndbAzjY0d0BCL72A6j3CdL9ZY= github.com/go-openapi/spec v0.21.0/go.mod h1:78u6VdPw81XU44qEWGhtr982gJ5BWg2c0I5XwVMotYk= +github.com/go-openapi/spec v0.22.0 h1:xT/EsX4frL3U09QviRIZXvkh80yibxQmtoEvyqug0Tw= +github.com/go-openapi/spec v0.22.0/go.mod h1:K0FhKxkez8YNS94XzF8YKEMULbFrRw4m15i2YUht4L0= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= github.com/go-openapi/swag v0.25.0 h1:xyZhlgInBg6wOtyTD5b+pzwVqHSOliAvgvKW+POFUts= github.com/go-openapi/swag v0.25.0/go.mod h1:yhsa7GJvO1JBFZccLq9uh/MawsC0PQd8sNz88VBXQlU= +github.com/go-openapi/swag v0.25.1 h1:6uwVsx+/OuvFVPqfQmOOPsqTcm5/GkBhNwLqIR916n8= +github.com/go-openapi/swag v0.25.1/go.mod h1:bzONdGlT0fkStgGPd3bhZf1MnuPkf2YAys6h+jZipOo= github.com/go-openapi/swag/cmdutils v0.25.0 h1:iYZ24DEGPEk6L1jO09vw39KfpxbG7KhS+WeQexS8U5A= github.com/go-openapi/swag/cmdutils v0.25.0/go.mod h1:pdae/AFo6WxLl5L0rq87eRzVPm/XRHM3MoYgRMvG4A0= +github.com/go-openapi/swag/cmdutils v0.25.1 h1:nDke3nAFDArAa631aitksFGj2omusks88GF1VwdYqPY= +github.com/go-openapi/swag/cmdutils v0.25.1/go.mod h1:pdae/AFo6WxLl5L0rq87eRzVPm/XRHM3MoYgRMvG4A0= github.com/go-openapi/swag/conv v0.25.0 h1:5K+e44HkOgCVE0IJTbivurzHahT62DPr2DEJqR/+4pA= github.com/go-openapi/swag/conv v0.25.0/go.mod h1:oa1ZZnb1jubNdZlD1iAhGXt6Ic4hHtuO23MwTgAXR88= +github.com/go-openapi/swag/conv v0.25.1 h1:+9o8YUg6QuqqBM5X6rYL/p1dpWeZRhoIt9x7CCP+he0= +github.com/go-openapi/swag/conv v0.25.1/go.mod h1:Z1mFEGPfyIKPu0806khI3zF+/EUXde+fdeksUl2NiDs= github.com/go-openapi/swag/fileutils v0.25.0 h1:t7aQRuRfsP29dY4vfrNvDZv7RurwRHuyjUedtYVDmYY= github.com/go-openapi/swag/fileutils v0.25.0/go.mod h1:+NXtt5xNZZqmpIpjqcujqojGFek9/w55b3ecmOdtg8M= +github.com/go-openapi/swag/fileutils v0.25.1 h1:rSRXapjQequt7kqalKXdcpIegIShhTPXx7yw0kek2uU= +github.com/go-openapi/swag/fileutils v0.25.1/go.mod h1:+NXtt5xNZZqmpIpjqcujqojGFek9/w55b3ecmOdtg8M= github.com/go-openapi/swag/jsonname v0.25.0 h1:+fuNs9gdkb2w10hgsgOBx9jtx0pvtUaDRYxD91BEpEQ= github.com/go-openapi/swag/jsonname v0.25.0/go.mod h1:71Tekow6UOLBD3wS7XhdT98g5J5GR13NOTQ9/6Q11Zo= +github.com/go-openapi/swag/jsonname v0.25.1 h1:Sgx+qbwa4ej6AomWC6pEfXrA6uP2RkaNjA9BR8a1RJU= +github.com/go-openapi/swag/jsonname v0.25.1/go.mod h1:71Tekow6UOLBD3wS7XhdT98g5J5GR13NOTQ9/6Q11Zo= github.com/go-openapi/swag/jsonutils v0.25.0 h1:ELKpJT29T4N/AvmDqMeDFLx2QRZQOYFthzctbIX30+A= github.com/go-openapi/swag/jsonutils v0.25.0/go.mod h1:KYL8GyGoi6tek9ajpvn0le4BWmKoUVVv8yPxklViIMo= +github.com/go-openapi/swag/jsonutils v0.25.1 h1:AihLHaD0brrkJoMqEZOBNzTLnk81Kg9cWr+SPtxtgl8= +github.com/go-openapi/swag/jsonutils v0.25.1/go.mod h1:JpEkAjxQXpiaHmRO04N1zE4qbUEg3b7Udll7AMGTNOo= github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.0 h1:ca9vKxLnJegL2bzqXRWNabKdqVGxBzrnO8/UZnr5W0Y= github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.0/go.mod h1:kjmweouyPwRUEYMSrbAidoLMGeJ5p6zdHi9BgZiqmsg= github.com/go-openapi/swag/loading v0.25.0 h1:e9mjE5fJeaK0LTepHMtG0Ief+9ETXLFhWCx7ZfiI6LI= github.com/go-openapi/swag/loading v0.25.0/go.mod h1:2ZCWXwVY1XYuoue8Bdjbn5GJK4/ufXbCfcvoSPFQJqM= +github.com/go-openapi/swag/loading v0.25.1 h1:6OruqzjWoJyanZOim58iG2vj934TysYVptyaoXS24kw= +github.com/go-openapi/swag/loading v0.25.1/go.mod h1:xoIe2EG32NOYYbqxvXgPzne989bWvSNoWoyQVWEZicc= github.com/go-openapi/swag/mangling v0.25.0 h1:VdTfDWX5lS3yURxYHF5SK7kYelSK69Lv2xEAeudTzM8= github.com/go-openapi/swag/mangling v0.25.0/go.mod h1:CdiMQ6pnfAgyQGSOIYnZkXvqhnnwOn997uXZMAd/7mQ= +github.com/go-openapi/swag/mangling v0.25.1 h1:XzILnLzhZPZNtmxKaz/2xIGPQsBsvmCjrJOWGNz/ync= +github.com/go-openapi/swag/mangling v0.25.1/go.mod h1:CdiMQ6pnfAgyQGSOIYnZkXvqhnnwOn997uXZMAd/7mQ= github.com/go-openapi/swag/netutils v0.25.0 h1:/e1LPmXfF9fcOYbbaP3+SQgon1fRwe5EZ0FjpR4vAjs= github.com/go-openapi/swag/netutils v0.25.0/go.mod h1:CAkkvqnUJX8NV96tNhEQvKz8SQo2KF0f7LleiJwIeRE= +github.com/go-openapi/swag/netutils v0.25.1 h1:2wFLYahe40tDUHfKT1GRC4rfa5T1B4GWZ+msEFA4Fl4= +github.com/go-openapi/swag/netutils v0.25.1/go.mod h1:CAkkvqnUJX8NV96tNhEQvKz8SQo2KF0f7LleiJwIeRE= github.com/go-openapi/swag/stringutils v0.25.0 h1:iYfCF45GUeI/1Yrh8rQtTFCp5K1ToqWhUdzJZwvXvv8= github.com/go-openapi/swag/stringutils v0.25.0/go.mod h1:JLdSAq5169HaiDUbTvArA2yQxmgn4D6h4A+4HqVvAYg= +github.com/go-openapi/swag/stringutils v0.25.1 h1:Xasqgjvk30eUe8VKdmyzKtjkVjeiXx1Iz0zDfMNpPbw= +github.com/go-openapi/swag/stringutils v0.25.1/go.mod h1:JLdSAq5169HaiDUbTvArA2yQxmgn4D6h4A+4HqVvAYg= github.com/go-openapi/swag/typeutils v0.25.0 h1:iUTsxu3F3h9v6CBzVFGXKPSBQt6d8XXgYy1YAlu+HJ8= github.com/go-openapi/swag/typeutils v0.25.0/go.mod h1:9McMC/oCdS4BKwk2shEB7x17P6HmMmA6dQRtAkSnNb8= +github.com/go-openapi/swag/typeutils v0.25.1 h1:rD/9HsEQieewNt6/k+JBwkxuAHktFtH3I3ysiFZqukA= +github.com/go-openapi/swag/typeutils v0.25.1/go.mod h1:9McMC/oCdS4BKwk2shEB7x17P6HmMmA6dQRtAkSnNb8= github.com/go-openapi/swag/yamlutils v0.25.0 h1:apgy77seWLEM9HKDcieIgW8bG9aSZgH6nQ9THlHYgHA= github.com/go-openapi/swag/yamlutils v0.25.0/go.mod h1:0JvBRtc0mR02IqHURUeGgS9cG+Dfms4FCGXCnsgnt7c= +github.com/go-openapi/swag/yamlutils v0.25.1 h1:mry5ez8joJwzvMbaTGLhw8pXUnhDK91oSJLDPF1bmGk= +github.com/go-openapi/swag/yamlutils v0.25.1/go.mod h1:cm9ywbzncy3y6uPm/97ysW8+wZ09qsks+9RS8fLWKqg= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= +github.com/gofiber/fiber/v2 v2.32.0/go.mod h1:CMy5ZLiXkn6qwthrl03YMyW1NLfj0rhxz2LKl4t7ZTY= github.com/gofiber/fiber/v2 v2.52.9 h1:YjKl5DOiyP3j0mO61u3NTmK7or8GzzWzCFzkboyP5cw= github.com/gofiber/fiber/v2 v2.52.9/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 h1:f+oWsMOmNPc8JmEHVZIycC7hBoQxHH9pNKQORJNozsQ= @@ -101,16 +144,20 @@ github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/kettek/apng v0.0.0-20220823221153-ff692776a607 h1:8tP9cdXzcGX2AvweVVG/lxbI7BSjWbNNUustwJ9dQVA= github.com/kettek/apng v0.0.0-20220823221153-ff692776a607/go.mod h1:x78/VRQYKuCftMWS0uK5e+F5RJ7S4gSlESRWI0Prl6Q= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= +github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= @@ -122,23 +169,34 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE= github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.17 h1:78v8ZlW0bP43XfmAfPsdXcoNCelfMHsDmd/pkENfrjQ= github.com/mattn/go-runewidth v0.0.17/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-runewidth v0.0.19 h1:v++JhqYnZuu5jSKrk9RbgF5v4CGUjqRfBm05byFGLdw= +github.com/mattn/go-runewidth v0.0.19/go.mod h1:XBkDxAl56ILZc9knddidhrOlY5R/pDhgLpndooCuJAs= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= github.com/onsi/gomega v1.34.1 h1:EUMJIKUjM8sKjYbtxQI9A4z2o+rruxnzNvpknOXie6k= github.com/onsi/gomega v1.34.1/go.mod h1:kU1QgUvBDLXBJq618Xvm2LUX6rSAfRaFRTcdOeDLwwY= +github.com/otiai10/copy v1.7.0/go.mod h1:rmRl6QPdJj6EiUqXQ/4Nn2lLXoNQjFCQbbNrxgc/t3U= +github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE= +github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= +github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= +github.com/otiai10/mint v1.3.3/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc= github.com/pjbgf/sha1cd v0.3.2 h1:a9wb0bp1oC2TGwStyn0Umc/IGKQnEgF0vVaZ8QF8eo4= github.com/pjbgf/sha1cd v0.3.2/go.mod h1:zQWigSxVmsHEZow5qaLtPYxpcKMMQpa09ixqBxuCS6A= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -150,72 +208,153 @@ github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ= github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/skeema/knownhosts v1.3.1 h1:X2osQ+RAjK76shCbvhHHHVl3ZlgDm8apHEHFqRjnBY8= github.com/skeema/knownhosts v1.3.1/go.mod h1:r7KTdC8l4uxWRyK2TpQZ/1o5HaSzh06ePQNxPwTcfiY= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/sv-tools/openapi v0.2.1 h1:ES1tMQMJFGibWndMagvdoo34T1Vllxr1Nlm5wz6b1aA= +github.com/sv-tools/openapi v0.2.1/go.mod h1:k5VuZamTw1HuiS9p2Wl5YIDWzYnHG6/FgPOSFXLAhGg= +github.com/swaggo/fiber-swagger v1.3.0 h1:RMjIVDleQodNVdKuu7GRs25Eq8RVXK7MwY9f5jbobNg= +github.com/swaggo/fiber-swagger v1.3.0/go.mod h1:18MuDqBkYEiUmeM/cAAB8CI28Bi62d/mys39j1QqF9w= +github.com/swaggo/files v0.0.0-20220610200504-28940afbdbfe/go.mod h1:lKJPbtWzJ9JhsTN1k1gZgleJWY/cqq0psdoMmaThG3w= +github.com/swaggo/files v1.0.1 h1:J1bVJ4XHZNq0I46UU90611i9/YzdrF7x92oX1ig5IdE= +github.com/swaggo/files v1.0.1/go.mod h1:0qXmMNH6sXNf+73t65aKeB+ApmgxdnkQzVTAj2uaMUg= +github.com/swaggo/swag v1.8.1/go.mod h1:ugemnJsPZm/kRwFUnzBlbHRd0JY9zE1M4F+uy2pAaPQ= github.com/swaggo/swag v1.16.4 h1:clWJtd9LStiG3VeijiCfOVODP6VpHtKdQy9ELFG3s1A= github.com/swaggo/swag v1.16.4/go.mod h1:VBsHJRsDvfYvqoiMKnsdwhNV9LEMHgEDZcyVYX0sxPg= +github.com/swaggo/swag v1.16.6 h1:qBNcx53ZaX+M5dxVyTrgQ0PJ/ACK+NzhwcbieTt+9yI= +github.com/swaggo/swag v1.16.6/go.mod h1:ngP2etMK5a0P3QBizic5MEwpRmluJZPHjXcMoj4Xesg= +github.com/swaggo/swag/v2 v2.0.0-rc4 h1:SZ8cK68gcV6cslwrJMIOqPkJELRwq4gmjvk77MrvHvY= +github.com/swaggo/swag/v2 v2.0.0-rc4/go.mod h1:Ow7Y8gF16BTCDn8YxZbyKn8FkMLRUHekv1kROJZpbvE= github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasthttp v1.35.0/go.mod h1:t/G+3rLek+CyY9bnIE+YlMRddxVAAGjhxndDB4i4C0I= +github.com/valyala/fasthttp v1.36.0/go.mod h1:t/G+3rLek+CyY9bnIE+YlMRddxVAAGjhxndDB4i4C0I= github.com/valyala/fasthttp v1.66.0 h1:M87A0Z7EayeyNaV6pfO3tUTUiYO0dZfEJnRGXTVNuyU= github.com/valyala/fasthttp v1.66.0/go.mod h1:Y4eC+zwoocmXSVCB1JmhNbYtS7tZPRI2ztPB72EVObs= +github.com/valyala/fasthttp v1.67.0 h1:tqKlJMUP6iuNG8hGjK/s9J4kadH7HLV4ijEcPGsezac= +github.com/valyala/fasthttp v1.67.0/go.mod h1:qYSIpqt/0XNmShgo/8Aq8E3UYWVVwNS2QYmzd8WIEPM= +github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xyproto/randomstring v1.0.5 h1:YtlWPoRdgMu3NZtP45drfy1GKoojuR7hmRcnhZqKjWU= github.com/xyproto/randomstring v1.0.5/go.mod h1:rgmS5DeNXLivK7YprL0pY+lTuhNQW3iGxZ18UQApw/E= github.com/yokeTH/gofiber-scalar v0.1.1 h1:Oab4nLRCVv4TqdTOqVeDpQfnOITzg3OYNI5UL+O4fEY= github.com/yokeTH/gofiber-scalar v0.1.1/go.mod h1:EETyzIX2XbCIMUCFX9gShTjGgOUeJbpWUuCwL09A2b0= +github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= golang.org/x/arch v0.21.0 h1:iTC9o7+wP6cPWpDWkivCvQFGAHDQ59SrSxsLPcnkArw= golang.org/x/arch v0.21.0/go.mod h1:dNHoOeKiyja7GTvF9NJS1l3Z2yntpQNzgrjh1cU103A= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.42.0 h1:chiH31gIWm57EkTXpwnqf8qeuMUi0yekh6mT2AvFlqI= golang.org/x/crypto v0.42.0/go.mod h1:4+rDnOTJhQCx2q7/j6rAN5XDw8kPjeaXEUR2eL94ix8= +golang.org/x/crypto v0.43.0 h1:dduJYIi3A3KOfdGOHX8AVZ/jGiyPa3IbBozJ5kNuE04= +golang.org/x/crypto v0.43.0/go.mod h1:BFbav4mRNlXJL4wNeejLpWxB7wMbc79PdRGhWKncxR0= golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 h1:R9PFI6EUdfVKgwKjZef7QIwGcBKu86OEFpJ9nUEP2l4= golang.org/x/exp v0.0.0-20250718183923-645b1fa84792/go.mod h1:A+z0yzpGtvnG90cToK5n2tu8UJVP2XUATh+r+sfOOOc= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.28.0 h1:gQBtGhjxykdjY9YhZpSlZIsbnaE2+PgjfLWUQTnoZ1U= golang.org/x/mod v0.28.0/go.mod h1:yfB/L0NOf/kmEbXjzCPOx1iK1fRutOydrCMsqRhEBxI= +golang.org/x/mod v0.29.0 h1:HV8lRxZC4l2cr3Zq1LvtOsi/ThTgWnUk/y64QSs8GwA= +golang.org/x/mod v0.29.0/go.mod h1:NyhrlYXJ2H4eJiRy/WDBO6HMqZQ6q9nk4JzS3NuCK+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.44.0 h1:evd8IRDyfNBMBTTY5XRF1vaZlD+EmWx6x8PkhR04H/I= golang.org/x/net v0.44.0/go.mod h1:ECOoLqd5U3Lhyeyo/QDCEVQ4sNgYsqvCZ722XogGieY= +golang.org/x/net v0.46.0 h1:giFlY12I07fugqwPuWJi68oOnpfqFnJIJzaIIm2JVV4= +golang.org/x/net v0.46.0/go.mod h1:Q9BGdFy1y4nkUwiLvT5qtyhAnEHgnQ/zd8PfU6nc210= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug= golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.36.0 h1:KVRy2GtZBrk1cBYA7MKu5bEZFxQk4NIDV6RLVcC8o0k= golang.org/x/sys v0.36.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ= +golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.35.0 h1:bZBVKBudEyhRcajGcNc3jIfWPqV4y/Kt2XcoigOWtDQ= golang.org/x/term v0.35.0/go.mod h1:TPGtkTLesOwf2DE8CgVYiZinHAOuy5AYUYT1lENIZnA= +golang.org/x/term v0.36.0 h1:zMPR+aF8gfksFprF/Nc/rd1wRS1EI6nDBGyWAvDzx2Q= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.29.0 h1:1neNs90w9YzJ9BocxfsQNHKuAT4pkghyXc4nhZ6sJvk= golang.org/x/text v0.29.0/go.mod h1:7MhJOA9CD2qZyOKYazxdYMF85OwPdEr9jTtBpO7ydH4= +golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k= +golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.7/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.37.0 h1:DVSRzp7FwePZW356yEAChSdNcQo6Nsp+fex1SUW09lE= golang.org/x/tools v0.37.0/go.mod h1:MBN5QPQtLMHVdvsbtarmTNukZDdgwdwlO5qGacAzF0w= +golang.org/x/tools v0.38.0 h1:Hx2Xv8hISq8Lm16jvBZ2VQf+RLmbd7wVUsALibYI/IQ= +golang.org/x/tools v0.38.0/go.mod h1:yEsQ/d/YK8cjh0L6rZlY8tgtlKiBNTL14pGDJPJpYQs= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= @@ -223,7 +362,10 @@ gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWD gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/main.go b/main.go index 158c25afd..05a7af11a 100644 --- a/main.go +++ b/main.go @@ -13,6 +13,11 @@ import ( "github.com/gofiber/fiber/v2/middleware/recover" ) +// @title SkyCrypt API +// @version 1.0 +// @description API for SkyCrypt - A Hypixel SkyBlock Stats Viewer +// @host localhost:8080 +// @BasePath / func main() { app := fiber.New(fiber.Config{ Prefork: true, // Enable prefork (requires --pid=host in Docker) diff --git a/src/routes.go b/src/routes.go index 1c450653f..71f73d245 100644 --- a/src/routes.go +++ b/src/routes.go @@ -15,7 +15,6 @@ import ( "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/compress" "github.com/joho/godotenv" - scalar "github.com/yokeTH/gofiber-scalar" ) func SetupApplication() error { @@ -89,12 +88,6 @@ func SetupRoutes(app *fiber.App) { // Assets folder app.Static("/assets", "assets") - // Documentation - app.Get("/scalar/*", scalar.New(scalar.Config{ - Path: "/scalar", - RawSpecUrl: "/swagger/doc.json", - })) - if os.Getenv("DEV") != "true" { if os.Getenv("FIBER_PREFORK_CHILD") == "" { fmt.Println("[ENVIROMENT] Running in production mode") @@ -111,6 +104,26 @@ func SetupRoutes(app *fiber.App) { api := app.Group("/api") + // Documentation - serve openapi files directly + api.Static("/openapi/doc.json", "./docs/swagger.json") + + api.Get("/openapi/", func(c *fiber.Ctx) error { + html := ` + + + API Documentation + + + + + + + + ` + c.Set("Content-Type", "text/html") + return c.SendString(html) + }) + // USERNAME AND UUID RESOLVING api.Get("/uuid/:username", routes.UUIDHandler) api.Get("/username/:uuid", routes.UsernameHandler) From fb495cc0e2c52663ab437ac1806e17529d0a7e9d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sun, 12 Oct 2025 22:05:45 +0200 Subject: [PATCH 46/55] fix: invalid pet data in profiel --- src/stats/pets.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stats/pets.go b/src/stats/pets.go index d9af292b0..3d249a7f0 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -441,6 +441,10 @@ func GetPetScore(pets []models.ProcessedPet) models.PetScore { } func GetPets(userProfile *skycrypttypes.Member, profile *skycrypttypes.Profile) models.OutputPets { + if userProfile.Pets == nil { + userProfile.Pets = &skycrypttypes.Pets{} + } + allPets := []skycrypttypes.Pet{} allPets = append(allPets, userProfile.Pets.Pets...) if userProfile.Rift.DeadCats.Montezuma.Rarity != "" { From 6d829b0c849a1e93afdd0c60518f2e059eeb92bf Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 13 Oct 2025 22:04:54 +0200 Subject: [PATCH 47/55] feat: add option to disable furfsky pack, query param for now --- NotEnoughUpdates-REPO | 2 +- assets/resourcepacks/FurfSky/config.json | 7 +++ assets/resourcepacks/Vanilla/config.json | 4 +- src/lib/custom_resources.go | 18 +++++-- src/lib/renderer.go | 4 +- src/models/resourcepacks.go | 10 ++++ src/routes.go | 2 + src/routes/accessories.go | 9 +++- src/routes/gear.go | 9 +++- src/routes/inventory.go | 12 +++-- src/routes/item.go | 9 +++- src/routes/resourcepacks.go | 63 ++++++++++++++++++++++++ src/routes/rift.go | 9 +++- src/routes/skills.go | 9 +++- src/stats/accessories.go | 8 +-- src/stats/items/museum.go | 14 +++--- src/stats/items/processing.go | 10 ++-- src/stats/player_stats.go | 2 +- 18 files changed, 165 insertions(+), 36 deletions(-) create mode 100644 assets/resourcepacks/FurfSky/config.json create mode 100644 src/models/resourcepacks.go create mode 100644 src/routes/resourcepacks.go diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 97350709f..0977fa5bc 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 97350709f2ef6c019725ee1c9bc9fedde13b32dd +Subproject commit 0977fa5bc176a19a05981d7f775059f87f1ce501 diff --git a/assets/resourcepacks/FurfSky/config.json b/assets/resourcepacks/FurfSky/config.json new file mode 100644 index 000000000..6bc467f0b --- /dev/null +++ b/assets/resourcepacks/FurfSky/config.json @@ -0,0 +1,7 @@ +{ + "id": "FURFSKY_REBORN", + "name": "FurfSky Reborn", + "version": "v1.9.0", + "author": "The Reborn Team", + "url": "https://furfsky.net/" +} diff --git a/assets/resourcepacks/Vanilla/config.json b/assets/resourcepacks/Vanilla/config.json index a54bdedea..5b6e4df25 100644 --- a/assets/resourcepacks/Vanilla/config.json +++ b/assets/resourcepacks/Vanilla/config.json @@ -2,7 +2,5 @@ "id": "VANILLA", "name": "Vanilla", "author": "Mojang", - "url": "https://minecraft.net/", - "priority": -1, - "default": true + "url": "https://minecraft.net/" } diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 776adb5dc..17de79e59 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -293,7 +293,7 @@ func init() { } } -func ApplyTexture(item models.TextureItem) string { +func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) string { // ? NOTE: we're ignoring enchanted books because they're quite expensive to render and not really worth the performance hit if item.Tag.ExtraAttributes == nil || item.Tag.ExtraAttributes["id"] == "ENCHANTED_BOOK" { if os.Getenv("DEV") == "true" { @@ -303,10 +303,18 @@ func ApplyTexture(item models.TextureItem) string { return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" } - customTexture := GetTexture(item) - if customTexture != "" { - if !strings.Contains(customTexture, "Vanilla") && !strings.Contains(customTexture, "skull") { - return customTexture + disabledPacks := "" + if len(disabledPacksParam) > 0 { + // ? NOTE: Currently only 1 resource pack exists so this is fine for now, but in the future we may want to change thi + disabledPacks = disabledPacksParam[0][0] + } + + if disabledPacks != "FURFSKY_REBORN" { + customTexture := GetTexture(item) + if customTexture != "" { + if !strings.Contains(customTexture, "Vanilla") && !strings.Contains(customTexture, "skull") { + return customTexture + } } } diff --git a/src/lib/renderer.go b/src/lib/renderer.go index 5297249ee..1afd6d2b9 100644 --- a/src/lib/renderer.go +++ b/src/lib/renderer.go @@ -732,7 +732,7 @@ func (e RedirectError) Error() string { return "redirect:" + e.URL } -func RenderItem(itemID string) ([]byte, error) { +func RenderItem(itemID string, disabledPacks ...[]string) ([]byte, error) { damage := 0 if strings.Contains(itemID, ":") { splitId := strings.Split(itemID, ":") @@ -760,7 +760,7 @@ func RenderItem(itemID string) ([]byte, error) { TextureItem.Damage = &damage } - output := ApplyTexture(TextureItem) + output := ApplyTexture(TextureItem, disabledPacks...) if output == "" { return nil, fmt.Errorf("couldn't find the texture") } diff --git a/src/models/resourcepacks.go b/src/models/resourcepacks.go new file mode 100644 index 000000000..17c237330 --- /dev/null +++ b/src/models/resourcepacks.go @@ -0,0 +1,10 @@ +package models + +type ResourcePackConfig struct { + Id string `json:"id"` + Name string `json:"name"` + Version string `json:"version,omitempty"` + Author string `json:"author"` + Url string `json:"url"` + Icon string `json:"icon"` +} diff --git a/src/routes.go b/src/routes.go index 71f73d245..3bb7c79e0 100644 --- a/src/routes.go +++ b/src/routes.go @@ -180,4 +180,6 @@ func SetupRoutes(app *fiber.App) { api.Get("/potion/:type/:color", routes.PotionHandlers) api.Get("/leather/:type/:color", routes.LeatherHandlers) + + api.Get("/resourcepacks", routes.ResourcePackHandler) } diff --git a/src/routes/accessories.go b/src/routes/accessories.go index 4c7ae5029..bd9847b83 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -4,6 +4,7 @@ import ( "fmt" "skycrypt/src/api" "skycrypt/src/stats" + "strings" "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" @@ -70,9 +71,15 @@ func AccessoriesHandler(c *fiber.Ctx) error { "talisman_bag": accessories, } + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + fmt.Printf("Returning /api/accessories/%s in %s\n", profileId, time.Since(timeNow)) return c.JSON(fiber.Map{ - "accessories": stats.GetAccessories(&userProfile, items), + "accessories": stats.GetAccessories(&userProfile, items, disabledPacks), }) } diff --git a/src/routes/gear.go b/src/routes/gear.go index ad3168f9f..f342f5fc1 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -6,6 +6,7 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" + "strings" "time" @@ -67,6 +68,12 @@ func GearHandler(c *fiber.Ctx) error { }) } + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + processedItems := map[string][]models.ProcessedItem{} for inventoryId := range specifiedInventories { if decodedItems.Types[inventoryId] == nil { @@ -88,7 +95,7 @@ func GearHandler(c *fiber.Ctx) error { combinedItems[i].Price = item.Price } - processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId, disabledPacks) } allItems := make([]models.ProcessedItem, 0) diff --git a/src/routes/inventory.go b/src/routes/inventory.go index fe26fcbe5..be0d7015c 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -71,6 +71,12 @@ func getIcon(source string, uuid string) string { func InventoryHandler(c *fiber.Ctx) error { timeNow := time.Now() + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + uuid := c.Params("uuid") profileId := c.Params("profileId") inventoryId := c.Params("inventoryId") @@ -91,7 +97,7 @@ func InventoryHandler(c *fiber.Ctx) error { fmt.Printf("Returning /api/inventory/%s/%s in %s\n", uuid, inventoryId, time.Since(timeNow)) - museumItems := statsItems.GetMuseum(museum) + museumItems := statsItems.GetMuseum(museum, disabledPacks) return c.JSON(fiber.Map{ "items": statsItems.StripItems(&museumItems), @@ -144,7 +150,7 @@ func InventoryHandler(c *fiber.Ctx) error { } if strings.Contains(strings.ToLower(item.Tag.Display.Name), searchString) || strings.Contains(strings.Join(item.Tag.Display.Lore, " "), searchString) { - item := statsItems.ProcessItem(item, inventoryId) + item := statsItems.ProcessItem(item, inventoryId, disabledPacks) formattedItems = append(formattedItems, item) } @@ -178,7 +184,7 @@ func InventoryHandler(c *fiber.Ctx) error { } itemSlice := stats.GetInventory(userProfile, inventoryId) - output := statsItems.ProcessItems(itemSlice, inventoryId) + output := statsItems.ProcessItems(itemSlice, inventoryId, disabledPacks) strippedItems := statsItems.StripItems(&output) if strings.HasSuffix(inventoryId, "inventory") { diff --git a/src/routes/item.go b/src/routes/item.go index 0b3c08260..0caccc081 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -3,6 +3,7 @@ package routes import ( "skycrypt/src/constants" "skycrypt/src/lib" + "strings" "github.com/gofiber/fiber/v2" ) @@ -25,7 +26,13 @@ func ItemHandlers(c *fiber.Ctx) error { return c.JSON(constants.InvalidItemProvidedError) } - textureBytes, err := lib.RenderItem(textureId) + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + + textureBytes, err := lib.RenderItem(textureId, disabledPacks) if err != nil { if redirectErr, ok := err.(lib.RedirectError); ok { return c.Redirect(redirectErr.URL, 302) diff --git a/src/routes/resourcepacks.go b/src/routes/resourcepacks.go new file mode 100644 index 000000000..9b0c783fa --- /dev/null +++ b/src/routes/resourcepacks.go @@ -0,0 +1,63 @@ +package routes + +import ( + "encoding/json" + "fmt" + "os" + "skycrypt/src/models" + "time" + + "github.com/gofiber/fiber/v2" +) + +var RESOURCE_PACKS = []models.ResourcePackConfig{} + +// ResourcePackHandler godoc +// @Summary Get list of resource packs +// @Description Returns a list of resource packs +// @Tags resourcepacks +// @Accept json +// @Produce json +// @Success 200 {object} []ResourcePackConfig +// @Router /api/resourcepacks/{uuid}/{profileId} [get] +func ResourcePackHandler(c *fiber.Ctx) error { + timeNow := time.Now() + + if len(RESOURCE_PACKS) == 0 { + filePath := "assets/resourcepacks/" + files, err := os.ReadDir(filePath) + if err != nil { + return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ + "error": "Failed to read resource packs directory", + }) + } + + for _, file := range files { + if !file.IsDir() { + continue + } + + configPath := fmt.Sprintf("%s/%s/config.json", filePath, file.Name()) + configFile, err := os.Open(configPath) + if err != nil { + continue + } + + defer configFile.Close() + + var configData models.ResourcePackConfig + if err := json.NewDecoder(configFile).Decode(&configData); err != nil { + continue + } + + configData.Icon = fmt.Sprintf("/assets/resourcepacks/%s/pack.png", file.Name()) + RESOURCE_PACKS = append(RESOURCE_PACKS, configData) + } + } + + fmt.Printf("Returning /api/resourcepacks in %s\n", time.Since(timeNow)) + + return c.JSON(fiber.Map{ + "resourcepacks": RESOURCE_PACKS, + }) +} diff --git a/src/routes/rift.go b/src/routes/rift.go index 1c69e85f1..30a9b6a90 100644 --- a/src/routes/rift.go +++ b/src/routes/rift.go @@ -6,6 +6,7 @@ import ( "skycrypt/src/models" "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" + "strings" "time" skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" @@ -31,6 +32,12 @@ func RiftHandler(c *fiber.Ctx) error { uuid := c.Params("uuid") profileId := c.Params("profileId") + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + profile, err := api.GetProfile(uuid, profileId) if err != nil { return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ @@ -77,7 +84,7 @@ func RiftHandler(c *fiber.Ctx) error { combinedItems[i].Price = item.Price } - processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId, disabledPacks) } fmt.Printf("Returning /api/rift/%s in %s\n", profileId, time.Since(timeNow)) diff --git a/src/routes/skills.go b/src/routes/skills.go index 26b080d68..b0e6ceb57 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -6,6 +6,7 @@ import ( "skycrypt/src/models" "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" + "strings" "time" @@ -32,6 +33,12 @@ func SkillsHandler(c *fiber.Ctx) error { uuid := c.Params("uuid") profileId := c.Params("profileId") + disabledPacks := []string{""} + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + profile, err := api.GetProfile(uuid, profileId) if err != nil { return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{ @@ -92,7 +99,7 @@ func SkillsHandler(c *fiber.Ctx) error { combinedItems[i].Price = item.Price } - processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId) + processedItems[inventoryId] = statsItems.ProcessItems(combinedItems, inventoryId, disabledPacks) } allItems := make([]models.ProcessedItem, 0) diff --git a/src/stats/accessories.go b/src/stats/accessories.go index f59e39db1..42ab08eaf 100644 --- a/src/stats/accessories.go +++ b/src/stats/accessories.go @@ -13,7 +13,7 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycrypttypes.Item) models.GetMissingAccessoresOutput { +func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycrypttypes.Item, disabledPacks ...[]string) models.GetMissingAccessoresOutput { if items == nil { return models.GetMissingAccessoresOutput{} } @@ -21,7 +21,7 @@ func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycry talismanBag := items["talisman_bag"] accessoryIds := make([]models.AccessoryIds, 0) accessories := make([]models.InsertAccessory, 0) - for _, item := range stats.ProcessItems(talismanBag, "talisman_bag") { + for _, item := range stats.ProcessItems(talismanBag, "talisman_bag", disabledPacks...) { id := stats.GetId(item) if len(id) == 0 { continue @@ -50,7 +50,7 @@ func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycry continue } - processedItems[inventoryId] = stats.ProcessItems(inventoryData, inventoryId) + processedItems[inventoryId] = stats.ProcessItems(inventoryData, inventoryId, disabledPacks...) } for _, inventoryId := range inventoryKeys { @@ -162,7 +162,7 @@ func GetAccessories(useProfile *skycrypttypes.Member, items map[string][]*skycry Tag: &riftPrismItem.NBT, ID: &itemId, Damage: &riftPrismItem.Damage, - }, "Rift") + }, "Rift", disabledPacks...) // Remove the three lines from the lore which say that player should use the prism in Wizard Portal for i, lore := range processedItem.Lore { diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index aa0d98941..c4aa84569 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -11,7 +11,7 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumItems { +func decodeMuseumItems(museumData *skycrypttypes.Museum, disabledPacks ...[]string) models.DecodedMuseumItems { output := models.DecodedMuseumItems{ Items: make(map[string]models.ProcessedMuseumItem), Special: []models.ProcessedMuseumItem{}, @@ -24,7 +24,7 @@ func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumIte continue } - processedItems := ProcessItems(decodedItem.Items, "museum") + processedItems := ProcessItems(decodedItem.Items, "museum", disabledPacks...) data := models.ProcessedMuseumItem{ Items: processedItems, SkyblockID: itemId, @@ -41,7 +41,7 @@ func decodeMuseumItems(museumData *skycrypttypes.Museum) models.DecodedMuseumIte continue } - processedItem := ProcessItems(decodedItem.Items, "museum") + processedItem := ProcessItems(decodedItem.Items, "museum", disabledPacks...) data := models.ProcessedMuseumItem{ Items: processedItem, Missing: false, @@ -124,12 +124,12 @@ func getMaxMissingItems(category string, output map[string]ProcessedMuseumItem) } */ -func ProcessMuseumItems(museumData *skycrypttypes.Museum) models.MuseumResult { +func ProcessMuseumItems(museumData *skycrypttypes.Museum, disabledPacks ...[]string) models.MuseumResult { if museumData.Items == nil || museumData.Special == nil { return models.MuseumResult{} } - decodedMuseum := decodeMuseumItems(museumData) + decodedMuseum := decodeMuseumItems(museumData, disabledPacks...) output := make(map[string]models.ProcessedMuseumItem) for _, itemId := range constants.MUSEUM.GetAllItems() { @@ -327,8 +327,8 @@ func getMuseumItems(section string) []string { } } -func GetMuseum(museum *skycrypttypes.Museum) []models.ProcessedItem { - museumItems := ProcessMuseumItems(museum) +func GetMuseum(museum *skycrypttypes.Museum, disabledPacks ...[]string) []models.ProcessedItem { + museumItems := ProcessMuseumItems(museum, disabledPacks...) output := make([]models.ProcessedItem, 6*9) for _, item := range constants.MUSEUM_INVENTORY { diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index 25266ec53..fc3af6754 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -15,17 +15,17 @@ import ( skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" ) -func ProcessItems(items []*skycrypttypes.Item, source string) []models.ProcessedItem { +func ProcessItems(items []*skycrypttypes.Item, source string, disabledPacks ...[]string) []models.ProcessedItem { var processedItems []models.ProcessedItem for _, item := range items { - processedItem := ProcessItem(item, source) + processedItem := ProcessItem(item, source, disabledPacks...) processedItems = append(processedItems, processedItem) } return processedItems } -func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { +func ProcessItem(item *skycrypttypes.Item, source string, disabledPacks ...[]string) models.ProcessedItem { if item == nil || item.Tag == nil { return models.ProcessedItem{} } @@ -166,7 +166,7 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { Tag: item.Tag.ToMap(), } - processedItem.Texture = lib.ApplyTexture(TextureItem) + processedItem.Texture = lib.ApplyTexture(TextureItem, disabledPacks...) if strings.Contains(processedItem.Texture, "/assets/resourcepacks/FurfSky/") { processedItem.TexturePack = "FURFSKY_REBORN" } @@ -188,7 +188,7 @@ func ProcessItem(item *skycrypttypes.Item, source string) models.ProcessedItem { processedItem.Lore = append(processedItem.Lore, "", fmt.Sprintf("§7Container Value: §6%s Coins §7(§6%s§7)", utility.AddCommas(int(containerValue)), utility.FormatNumber(containerValue))) } - processedItem.ContainsItems = ProcessItems(item.ContainsItems, source) + processedItem.ContainsItems = ProcessItems(item.ContainsItems, source, disabledPacks...) } if item.Price > 0 { diff --git a/src/stats/player_stats.go b/src/stats/player_stats.go index 4859a5dad..dad96c6b5 100644 --- a/src/stats/player_stats.go +++ b/src/stats/player_stats.go @@ -170,7 +170,7 @@ func processItems(rawItems map[string][]*skycrypttypes.Item) map[string][]models continue } - processedItems[inventoryId] = statsItems.ProcessItems(inventoryData, inventoryId) + processedItems[inventoryId] = statsItems.ProcessItems(inventoryData, inventoryId, []string{}) } return processedItems From a341fce2f8a7cf001e731cdffc2bf4e43a658002 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 13 Oct 2025 22:10:59 +0200 Subject: [PATCH 48/55] feat: add check for cookies --- src/routes/gear.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/routes/gear.go b/src/routes/gear.go index f342f5fc1..0f0defdd0 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -6,6 +6,7 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" + "skycrypt/src/utility" "strings" "time" @@ -74,6 +75,9 @@ func GearHandler(c *fiber.Ctx) error { disabledPacks = strings.Split(disabledResourcePacks, ",") } + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + utility.SendWebhook("/api/gear", "FOUND REQUESTED", fmt.Appendf(nil, "Cookies: %s", disabledPacksCookies)) + processedItems := map[string][]models.ProcessedItem{} for inventoryId := range specifiedInventories { if decodedItems.Types[inventoryId] == nil { From 7d9e5e3bcae029ad853ceb942e898b5acc2c71c6 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 13 Oct 2025 22:29:29 +0200 Subject: [PATCH 49/55] feat: add cookie support, use queries in dev --- src/lib/custom_resources.go | 8 ++++---- src/routes/accessories.go | 17 ++++++++++++++--- src/routes/gear.go | 21 ++++++++++++++------- src/routes/inventory.go | 16 +++++++++++++--- src/routes/item.go | 17 ++++++++++++++--- src/routes/rift.go | 17 ++++++++++++++--- src/routes/skills.go | 17 ++++++++++++++--- 7 files changed, 87 insertions(+), 26 deletions(-) diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 17de79e59..7fd020e4d 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -303,13 +303,13 @@ func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) strin return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" } - disabledPacks := "" + disabledPacks := []string{} if len(disabledPacksParam) > 0 { - // ? NOTE: Currently only 1 resource pack exists so this is fine for now, but in the future we may want to change thi - disabledPacks = disabledPacksParam[0][0] + disabledPacks = disabledPacksParam[0] } - if disabledPacks != "FURFSKY_REBORN" { + // ? NOTE: Currently only 1 resource pack exists so this is fine for now, but in the future we may want to change this + if !slices.Contains(disabledPacks, "FURFSKY_REBORN") { customTexture := GetTexture(item) if customTexture != "" { if !strings.Contains(customTexture, "Vanilla") && !strings.Contains(customTexture, "skull") { diff --git a/src/routes/accessories.go b/src/routes/accessories.go index bd9847b83..340902de3 100644 --- a/src/routes/accessories.go +++ b/src/routes/accessories.go @@ -1,7 +1,9 @@ package routes import ( + "encoding/json" "fmt" + "os" "skycrypt/src/api" "skycrypt/src/stats" "strings" @@ -72,9 +74,18 @@ func AccessoriesHandler(c *fiber.Ctx) error { } disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } } fmt.Printf("Returning /api/accessories/%s in %s\n", profileId, time.Since(timeNow)) diff --git a/src/routes/gear.go b/src/routes/gear.go index 0f0defdd0..ab6986a94 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -1,12 +1,13 @@ package routes import ( + "encoding/json" "fmt" + "os" "skycrypt/src/api" "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" - "skycrypt/src/utility" "strings" "time" @@ -70,13 +71,19 @@ func GearHandler(c *fiber.Ctx) error { } disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") - } - disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") - utility.SendWebhook("/api/gear", "FOUND REQUESTED", fmt.Appendf(nil, "Cookies: %s", disabledPacksCookies)) + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } + } processedItems := map[string][]models.ProcessedItem{} for inventoryId := range specifiedInventories { diff --git a/src/routes/inventory.go b/src/routes/inventory.go index be0d7015c..4ee459916 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -1,6 +1,7 @@ package routes import ( + "encoding/json" "fmt" "os" "skycrypt/src/api" @@ -72,9 +73,18 @@ func InventoryHandler(c *fiber.Ctx) error { timeNow := time.Now() disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } } uuid := c.Params("uuid") diff --git a/src/routes/item.go b/src/routes/item.go index 0caccc081..548eeef1a 100644 --- a/src/routes/item.go +++ b/src/routes/item.go @@ -1,6 +1,8 @@ package routes import ( + "encoding/json" + "os" "skycrypt/src/constants" "skycrypt/src/lib" "strings" @@ -27,9 +29,18 @@ func ItemHandlers(c *fiber.Ctx) error { } disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } } textureBytes, err := lib.RenderItem(textureId, disabledPacks) diff --git a/src/routes/rift.go b/src/routes/rift.go index 30a9b6a90..247e1e953 100644 --- a/src/routes/rift.go +++ b/src/routes/rift.go @@ -1,7 +1,9 @@ package routes import ( + "encoding/json" "fmt" + "os" "skycrypt/src/api" "skycrypt/src/models" "skycrypt/src/stats" @@ -33,9 +35,18 @@ func RiftHandler(c *fiber.Ctx) error { profileId := c.Params("profileId") disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } } profile, err := api.GetProfile(uuid, profileId) diff --git a/src/routes/skills.go b/src/routes/skills.go index b0e6ceb57..03b11a843 100644 --- a/src/routes/skills.go +++ b/src/routes/skills.go @@ -1,7 +1,9 @@ package routes import ( + "encoding/json" "fmt" + "os" "skycrypt/src/api" "skycrypt/src/models" "skycrypt/src/stats" @@ -34,9 +36,18 @@ func SkillsHandler(c *fiber.Ctx) error { profileId := c.Params("profileId") disabledPacks := []string{""} - disabledResourcePacks := c.Query("disabledPacks", "") - if disabledResourcePacks != "" { - disabledPacks = strings.Split(disabledResourcePacks, ",") + disabledPacksCookies := c.Cookies("disabledPacks", "FAILED") + if disabledPacksCookies != "FAILED" { + var parsedPacks []string + err := json.Unmarshal([]byte(disabledPacksCookies), &parsedPacks) + if err == nil { + disabledPacks = append(disabledPacks, parsedPacks...) + } + } else if os.Getenv("DEV") == "true" { + disabledResourcePacks := c.Query("disabledPacks", "") + if disabledResourcePacks != "" { + disabledPacks = strings.Split(disabledResourcePacks, ",") + } } profile, err := api.GetProfile(uuid, profileId) From dc4dab0286b1f0ca5f6d38b2a875f724dd49fe34 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Mon, 13 Oct 2025 22:52:13 +0200 Subject: [PATCH 50/55] feat: add docs to dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 84a2bd364..7245539b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,7 @@ COPY --from=builder /app/main . # Copy assets and other necessary files COPY --from=builder /app/assets ./assets COPY --from=builder /app/NotEnoughUpdates-REPO ./NotEnoughUpdates-REPO +COPY --from=builder /app/docs ./docs # Expose port EXPOSE 8080 From 1d22d002fe6a83387d308eb6e14cc646f9a6739d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 16 Oct 2025 15:25:23 +0200 Subject: [PATCH 51/55] feat: add HYPIXEL_PLUS resource pack, multi pack support, few fixes --- .env.example | 2 +- NotEnoughUpdates-REPO | 2 +- .../abicase/abicase_blue_aqua_back.png | Bin 0 -> 215 bytes .../abicase/abicase_blue_aqua_front.png | Bin 0 -> 123 bytes .../abicase/abicase_blue_blue_back.png | Bin 0 -> 217 bytes .../abicase/abicase_blue_blue_front.png | Bin 0 -> 126 bytes .../abicase/abicase_blue_green_back.png | Bin 0 -> 211 bytes .../abicase/abicase_blue_green_front.png | Bin 0 -> 136 bytes .../abicase/abicase_blue_red_back.png | Bin 0 -> 217 bytes .../abicase/abicase_blue_red_front.png | Bin 0 -> 134 bytes .../abicase/abicase_blue_yellow_back.png | Bin 0 -> 209 bytes .../abicase/abicase_blue_yellow_front.png | Bin 0 -> 136 bytes .../abicase/abicase_rezar_back.png | Bin 0 -> 196 bytes .../abicase/abicase_rezar_front.png | Bin 0 -> 129 bytes .../abicase/abicase_sumsung_1_back.png | Bin 0 -> 230 bytes .../abicase/abicase_sumsung_1_front.png | Bin 0 -> 198 bytes .../abicase/abicase_sumsung_2_back.png | Bin 0 -> 230 bytes .../abicase/abicase_sumsung_2_front.png | Bin 0 -> 198 bytes .../agarimoo/agarimoo_artifact.png | Bin 0 -> 189 bytes .../accessories/agarimoo/agarimoo_ring.png | Bin 0 -> 207 bytes .../agarimoo/agarimoo_talisman.png | Bin 0 -> 209 bytes .../item/accessories/anita/anita_artifact.png | Bin 0 -> 280 bytes .../item/accessories/anita/anita_ring.png | Bin 0 -> 193 bytes .../item/accessories/anita/anita_talisman.png | Bin 0 -> 212 bytes .../accessories/archaeologist_compass.png | Bin 0 -> 206 bytes .../atmospheric_filter/atmospheric_filter.png | Bin 0 -> 214 bytes .../atmospheric_filter_spring.png | Bin 0 -> 214 bytes .../atmospheric_filter_summer.png | Bin 0 -> 214 bytes .../atmospheric_filter_winter.png | Bin 0 -> 214 bytes .../item/accessories/auto_recombobulator.png | Bin 0 -> 256 bytes .../item/accessories/bait_ring/bait_ring.png | Bin 0 -> 246 bytes .../accessories/bait_ring/spiked_atrocity.png | Bin 0 -> 239 bytes .../item/accessories/bat/bat_ring.png | Bin 0 -> 195 bytes .../item/accessories/bat/bat_talisman.png | Bin 0 -> 193 bytes .../bat_person/bat_person_ring.png | Bin 0 -> 214 bytes .../bat_person/bat_person_talisman.png | Bin 0 -> 212 bytes .../beastmaster_crest_common.png | Bin 0 -> 221 bytes .../beastmaster_crest_epic.png | Bin 0 -> 223 bytes .../beastmaster_crest_legendary.png | Bin 0 -> 223 bytes .../beastmaster_crest_rare.png | Bin 0 -> 223 bytes .../beastmaster_crest_uncommon.png | Bin 0 -> 223 bytes .../item/accessories/bingo/bingo_artifact.png | Bin 0 -> 218 bytes .../bingo/bingo_combat_talisman.png | Bin 0 -> 209 bytes .../item/accessories/bingo/bingo_heirloom.png | Bin 0 -> 221 bytes .../item/accessories/bingo/bingo_relic.png | Bin 0 -> 221 bytes .../item/accessories/bingo/bingo_ring.png | Bin 0 -> 213 bytes .../item/accessories/bingo/bingo_talisman.png | Bin 0 -> 221 bytes .../item/accessories/bits_talisman.png | Bin 0 -> 202 bytes .../item/accessories/blaze_talisman.png | Bin 0 -> 201 bytes .../blood_donor/blood_donor_artifact.png | Bin 0 -> 190 bytes .../blood_donor/blood_donor_ring.png | Bin 0 -> 218 bytes .../blood_donor/blood_donor_talisman.png | Bin 0 -> 231 bytes .../book_of_progression.png | Bin 0 -> 235 bytes .../book_of_progression_epic.png | Bin 0 -> 239 bytes .../book_of_progression_legendary.png | Bin 0 -> 240 bytes .../book_of_progression_mythic.png | Bin 0 -> 240 bytes .../book_of_progression_rare.png | Bin 0 -> 240 bytes .../book_of_progression_uncommon.png | Bin 0 -> 240 bytes .../bucket_of_dye_aquamarine.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_archfiend.png | Bin 0 -> 214 bytes .../bucket_of_dye_bingo_blue.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_bone.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_brick_red.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_byzantium.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_carmine.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_celadon.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_celeste.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_chocolate.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_copper.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_cyclamen.png | Bin 0 -> 214 bytes .../bucket_of_dye_dark_purple.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_dung.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_emerald.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_flame.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_fossil.png | Bin 0 -> 214 bytes .../bucket_of_dye_frostbitten.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_holly.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_iceberg.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_jade.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_lava.png | Bin 0 -> 334 bytes .../bucket_of_dye_lava.png.mcmeta | 1 + .../bucket_of_dye/bucket_of_dye_livid.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_lucky.png | Bin 0 -> 300 bytes .../bucket_of_dye_lucky.png.mcmeta | 1 + .../bucket_of_dye/bucket_of_dye_mango.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_matcha.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_midnight.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_mocha.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_nadeshiko.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_necron.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_nyanza.png | Bin 0 -> 214 bytes .../bucket_of_dye_pastel_sky.png | Bin 0 -> 334 bytes .../bucket_of_dye_pastel_sky.png.mcmeta | 1 + .../bucket_of_dye_pearlescent.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_pelt.png | Bin 0 -> 214 bytes .../bucket_of_dye_periwinkle.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_portal.png | Bin 0 -> 300 bytes .../bucket_of_dye_portal.png.mcmeta | 1 + .../bucket_of_dye_pure_black.png | Bin 0 -> 165 bytes .../bucket_of_dye/bucket_of_dye_pure_blue.png | Bin 0 -> 214 bytes .../bucket_of_dye_pure_white.png | Bin 0 -> 183 bytes .../bucket_of_dye_pure_yellow.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_rose.png | Bin 0 -> 300 bytes .../bucket_of_dye_rose.png.mcmeta | 1 + .../bucket_of_dye/bucket_of_dye_sangria.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_secret.png | Bin 0 -> 184 bytes .../bucket_of_dye/bucket_of_dye_tentacle.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_treasure.png | Bin 0 -> 214 bytes .../bucket_of_dye/bucket_of_dye_warden.png | Bin 0 -> 300 bytes .../bucket_of_dye_warden.png.mcmeta | 1 + .../bucket_of_dye_wild_strawberry.png | Bin 0 -> 214 bytes .../burststopper/burststopper_artifact.png | Bin 0 -> 166 bytes .../burststopper/burststopper_talisman.png | Bin 0 -> 234 bytes .../campfire_talisman/campfire_talisman_1.png | Bin 0 -> 208 bytes .../campfire_talisman/campfire_talisman_2.png | Bin 0 -> 216 bytes .../campfire_talisman/campfire_talisman_3.png | Bin 0 -> 234 bytes .../campfire_talisman/campfire_talisman_4.png | Bin 0 -> 241 bytes .../campfire_talisman/campfire_talisman_5.png | Bin 0 -> 242 bytes .../soul_campfire_talisman_1.png | Bin 0 -> 208 bytes .../soul_campfire_talisman_2.png | Bin 0 -> 216 bytes .../soul_campfire_talisman_3.png | Bin 0 -> 234 bytes .../soul_campfire_talisman_4.png | Bin 0 -> 237 bytes .../soul_campfire_talisman_5.png | Bin 0 -> 242 bytes .../item/accessories/candy/candy_artifact.png | Bin 0 -> 242 bytes .../item/accessories/candy/candy_relic.png | Bin 0 -> 248 bytes .../item/accessories/candy/candy_ring.png | Bin 0 -> 206 bytes .../item/accessories/candy/candy_talisman.png | Bin 0 -> 219 bytes .../carnival_mask_bag/carnival_mask_bag.png | Bin 0 -> 294 bytes .../carnival_mask_bag_empty.png | Bin 0 -> 240 bytes .../accessories/catacombs_expert_ring.png | Bin 0 -> 221 bytes .../item/accessories/century/century_ring.png | Bin 0 -> 220 bytes .../accessories/century/century_talisman.png | Bin 0 -> 238 bytes .../chocolate_bar/ganache_chocolate_slab.png | Bin 0 -> 230 bytes .../chocolate_bar/nibble_chocolate_stick.png | Bin 0 -> 212 bytes .../prestige_chocolate_realm.png | Bin 0 -> 230 bytes .../chocolate_bar/rich_chocolate_chunk.png | Bin 0 -> 221 bytes .../chocolate_bar/smooth_chocolate_bar.png | Bin 0 -> 232 bytes .../item/accessories/chumming_talisman.png | Bin 0 -> 203 bytes .../accessories/coin/artifact_of_coins.png | Bin 0 -> 200 bytes .../item/accessories/coin/coin_talisman.png | Bin 0 -> 219 bytes .../item/accessories/coin/relic_of_coins.png | Bin 0 -> 242 bytes .../item/accessories/coin/ring_of_coins.png | Bin 0 -> 209 bytes .../accessories/cropie/cropie_talisman.png | Bin 0 -> 234 bytes .../accessories/cropie/fermento_artifact.png | Bin 0 -> 224 bytes .../item/accessories/cropie/squash_ring.png | Bin 0 -> 224 bytes .../crux_talisman/crux_talisman_1.png | Bin 0 -> 202 bytes .../crux_talisman/crux_talisman_2.png | Bin 0 -> 218 bytes .../crux_talisman/crux_talisman_3.png | Bin 0 -> 252 bytes .../crux_talisman/crux_talisman_4.png | Bin 0 -> 280 bytes .../crux_talisman/crux_talisman_5.png | Bin 0 -> 307 bytes .../crux_talisman/crux_talisman_6.png | Bin 0 -> 333 bytes .../crux_talisman/crux_talisman_7.png | Bin 0 -> 354 bytes .../crux_talisman/crux_talisman_7_maxed.png | Bin 0 -> 351 bytes .../item/accessories/dante/dante_ring.png | Bin 0 -> 232 bytes .../item/accessories/dante/dante_talisman.png | Bin 0 -> 238 bytes .../dark_auction/crooked_artifact.png | Bin 0 -> 190 bytes .../dark_auction/hegemony_artifact.png | Bin 0 -> 201 bytes .../dark_auction/hocus_pocus_cipher.png | Bin 0 -> 207 bytes .../accessories/dark_auction/magic_8_ball.png | Bin 0 -> 203 bytes .../dark_auction/seal_of_the_family.png | Bin 0 -> 201 bytes .../accessories/dark_auction/shady_ring.png | Bin 0 -> 193 bytes .../accessories/day_crystal/day_crystal.png | Bin 0 -> 205 bytes .../day_crystal/eternal_crystal.png | Bin 0 -> 237 bytes .../accessories/day_crystal/night_crystal.png | Bin 0 -> 209 bytes .../textures/item/accessories/devour_ring.png | Bin 0 -> 207 bytes .../draconic/draconic_artifact.png | Bin 0 -> 188 bytes .../accessories/draconic/draconic_ring.png | Bin 0 -> 220 bytes .../draconic/draconic_talisman.png | Bin 0 -> 225 bytes .../item/accessories/dwarven_metal.png | Bin 0 -> 226 bytes .../accessories/emerald/emerald_artifact.png | Bin 0 -> 237 bytes .../item/accessories/emerald/emerald_ring.png | Bin 0 -> 215 bytes .../accessories/emperor/emperor_artifact.png | Bin 0 -> 222 bytes .../item/accessories/emperor/emperor_ring.png | Bin 0 -> 193 bytes .../accessories/emperor/emperor_talisman.png | Bin 0 -> 212 bytes .../item/accessories/experience_artifact.png | Bin 0 -> 221 bytes .../item/accessories/farming_talisman.png | Bin 0 -> 270 bytes .../item/accessories/feather/feather_ring.png | Bin 0 -> 193 bytes .../accessories/feather/feather_talisman.png | Bin 0 -> 213 bytes .../item/accessories/fire_talisman.png | Bin 0 -> 251 bytes .../accessories/fish_affinity_talisman.png | Bin 0 -> 232 bytes .../accessories/fish_bowl/large_fish_bowl.png | Bin 0 -> 276 bytes .../fish_bowl/medium_fish_bowl.png | Bin 0 -> 246 bytes .../accessories/fish_bowl/small_fish_bowl.png | Bin 0 -> 231 bytes .../item/accessories/general_medallion.png | Bin 0 -> 246 bytes .../gift_talisman/blue_gift_talisman.png | Bin 0 -> 206 bytes .../gift_talisman/gold_gift_talisman.png | Bin 0 -> 206 bytes .../gift_talisman/green_gift_talisman.png | Bin 0 -> 206 bytes .../gift_talisman/purple_gift_talisman.png | Bin 0 -> 206 bytes .../gift_talisman/white_gift_talisman.png | Bin 0 -> 206 bytes .../item/accessories/glacial/glacial_ring.png | Bin 0 -> 208 bytes .../accessories/glacial/glacial_talisman.png | Bin 0 -> 213 bytes .../item/accessories/gravity_talisman.png | Bin 0 -> 215 bytes .../great_spook/great_spook_artifact.png | Bin 0 -> 283 bytes .../great_spook_artifact.png.mcmeta | 1 + .../great_spook/great_spook_artifact_1st.png | Bin 0 -> 286 bytes .../great_spook_artifact_1st.png.mcmeta | 1 + .../great_spook/great_spook_ring.png | Bin 0 -> 283 bytes .../great_spook/great_spook_ring.png.mcmeta | 1 + .../great_spook/great_spook_ring_1st.png | Bin 0 -> 283 bytes .../great_spook_ring_1st.png.mcmeta | 1 + .../great_spook/great_spook_talisman.png | Bin 0 -> 293 bytes .../great_spook_talisman.png.mcmeta | 1 + .../great_spook/great_spook_talisman_1st.png | Bin 0 -> 294 bytes .../great_spook_talisman_1st.png.mcmeta | 1 + .../item/accessories/handy_blood_chalice.png | Bin 0 -> 198 bytes .../item/accessories/haste/haste_artifact.png | Bin 0 -> 170 bytes .../item/accessories/haste/haste_ring.png | Bin 0 -> 204 bytes .../item/accessories/healing/healing_ring.png | Bin 0 -> 193 bytes .../accessories/healing/healing_talisman.png | Bin 0 -> 207 bytes .../item/accessories/hunter/hunter_ring.png | Bin 0 -> 193 bytes .../accessories/hunter/hunter_talisman.png | Bin 0 -> 207 bytes .../intimidation/intimidation_artifact.png | Bin 0 -> 249 bytes .../intimidation/intimidation_relic.png | Bin 0 -> 248 bytes .../intimidation/intimidation_ring.png | Bin 0 -> 219 bytes .../intimidation/intimidation_talisman.png | Bin 0 -> 226 bytes .../item/accessories/jacobus_register.png | Bin 0 -> 199 bytes .../item/accessories/jake_plushie.png | Bin 0 -> 210 bytes .../accessories/jerry/jerry_talisman_blue.png | Bin 0 -> 220 bytes .../jerry/jerry_talisman_golden.png | Bin 0 -> 239 bytes .../jerry/jerry_talisman_green.png | Bin 0 -> 222 bytes .../jerry/jerry_talisman_purple.png | Bin 0 -> 223 bytes .../item/accessories/jungle_amulet.png | Bin 0 -> 218 bytes .../item/accessories/junk/junk_artifact.png | Bin 0 -> 252 bytes .../item/accessories/junk/junk_ring.png | Bin 0 -> 244 bytes .../item/accessories/junk/junk_talisman.png | Bin 0 -> 234 bytes .../item/accessories/king_talisman.png | Bin 0 -> 217 bytes .../kuudra_core/burning_kuudra_core.png | Bin 0 -> 183 bytes .../kuudra_core/fiery_kuudra_core.png | Bin 0 -> 204 bytes .../kuudra_core/infernal_kuudra_core.png | Bin 0 -> 224 bytes .../kuudra_follower_artifact.png | Bin 0 -> 210 bytes .../kuudra_follower/kuudra_follower_relic.png | Bin 0 -> 225 bytes .../item/accessories/lava_talisman.png | Bin 0 -> 238 bytes .../item/accessories/luck_talisman.png | Bin 0 -> 208 bytes .../accessories/lucky_hoof/eternal_hoof.png | Bin 0 -> 188 bytes .../accessories/lucky_hoof/lucky_hoof.png | Bin 0 -> 184 bytes .../item/accessories/lush/lush_artifact.png | Bin 0 -> 225 bytes .../item/accessories/lush/lush_ring.png | Bin 0 -> 219 bytes .../item/accessories/lush/lush_talisman.png | Bin 0 -> 221 bytes .../item/accessories/magnetic_talisman.png | Bin 0 -> 189 bytes .../master_skull/master_skull_tier_1.png | Bin 0 -> 212 bytes .../master_skull/master_skull_tier_10.png | Bin 0 -> 210 bytes .../master_skull/master_skull_tier_2.png | Bin 0 -> 212 bytes .../master_skull/master_skull_tier_3.png | Bin 0 -> 207 bytes .../master_skull/master_skull_tier_4.png | Bin 0 -> 211 bytes .../master_skull/master_skull_tier_5.png | Bin 0 -> 210 bytes .../master_skull/master_skull_tier_6.png | Bin 0 -> 206 bytes .../master_skull/master_skull_tier_7.png | Bin 0 -> 196 bytes .../master_skull/master_skull_tier_8.png | Bin 0 -> 206 bytes .../master_skull/master_skull_tier_9.png | Bin 0 -> 208 bytes .../textures/item/accessories/melody_hair.png | Bin 0 -> 218 bytes .../item/accessories/mine_talisman.png | Bin 0 -> 238 bytes .../mineral/glossy_mineral_talisman.png | Bin 0 -> 219 bytes .../accessories/mineral/mineral_talisman.png | Bin 0 -> 222 bytes .../moonglade/moonglade_artifact.png | Bin 0 -> 245 bytes .../accessories/moonglade/moonglade_ring.png | Bin 0 -> 215 bytes .../moonglade/moonglade_talisman.png | Bin 0 -> 226 bytes .../netherrack_looking_sunshade.png | Bin 0 -> 219 bytes .../new_year_cake_bag/new_year_cake_bag.png | Bin 0 -> 241 bytes .../new_year_cake_bag_empty.png | Bin 0 -> 215 bytes .../new_year_cake_bag_full.png | Bin 0 -> 252 bytes .../item/accessories/night_vision_charm.png | Bin 0 -> 231 bytes .../odgers_tooth/odgers_bronze_tooth.png | Bin 0 -> 212 bytes .../odgers_tooth/odgers_diamond_tooth.png | Bin 0 -> 212 bytes .../odgers_tooth/odgers_gold_tooth.png | Bin 0 -> 212 bytes .../odgers_tooth/odgers_silver_tooth.png | Bin 0 -> 212 bytes .../personal_compactor_4000.png | Bin 0 -> 826 bytes .../personal_compactor_5000.png | Bin 0 -> 827 bytes .../personal_compactor_6000.png | Bin 0 -> 776 bytes .../personal_compactor_7000.png | Bin 0 -> 801 bytes .../personal_deletor_4000.png | Bin 0 -> 212 bytes .../personal_deletor_5000.png | Bin 0 -> 232 bytes .../personal_deletor_6000.png | Bin 0 -> 229 bytes .../personal_deletor_7000.png | Bin 0 -> 232 bytes .../pesthunter/pesthunter_artifact.png | Bin 0 -> 207 bytes .../pesthunter/pesthunter_badge.png | Bin 0 -> 212 bytes .../pesthunter/pesthunter_ring.png | Bin 0 -> 207 bytes .../piggy_bank/broken_piggy_bank.png | Bin 0 -> 213 bytes .../piggy_bank/cracked_piggy_bank.png | Bin 0 -> 215 bytes .../accessories/piggy_bank/piggy_bank.png | Bin 0 -> 209 bytes .../accessories/pocket_espresso_machine.png | Bin 0 -> 249 bytes .../artifact_potion_affinity.png | Bin 0 -> 237 bytes .../potion_affinity_talisman.png | Bin 0 -> 223 bytes .../potion_affinity/ring_potion_affinity.png | Bin 0 -> 238 bytes .../power/old/power_artifact_full_old.png | Bin 0 -> 277 bytes .../power/old/power_artifact_old.png | Bin 0 -> 208 bytes .../power/old/power_relic_full_old.png | Bin 0 -> 361 bytes .../accessories/power/old/power_relic_old.png | Bin 0 -> 219 bytes .../power/old/power_ring_full_old.png | Bin 0 -> 253 bytes .../accessories/power/old/power_ring_old.png | Bin 0 -> 210 bytes .../power/old/power_talisman_full_old.png | Bin 0 -> 211 bytes .../power/old/power_talisman_old.png | Bin 0 -> 192 bytes .../item/accessories/power/power_artifact.png | Bin 0 -> 208 bytes .../power/power_artifact_amber.png | Bin 0 -> 91 bytes .../power/power_artifact_amethyst.png | Bin 0 -> 93 bytes .../accessories/power/power_artifact_jade.png | Bin 0 -> 93 bytes .../power/power_artifact_jasper.png | Bin 0 -> 92 bytes .../accessories/power/power_artifact_ruby.png | Bin 0 -> 91 bytes .../power/power_artifact_sapphire.png | Bin 0 -> 92 bytes .../power/power_artifact_topaz.png | Bin 0 -> 92 bytes .../item/accessories/power/power_relic.png | Bin 0 -> 219 bytes .../accessories/power/power_relic_amber.png | Bin 0 -> 91 bytes .../power/power_relic_amethyst.png | Bin 0 -> 92 bytes .../power/power_relic_aquamarine.png | Bin 0 -> 92 bytes .../accessories/power/power_relic_citrine.png | Bin 0 -> 92 bytes .../accessories/power/power_relic_jade.png | Bin 0 -> 91 bytes .../accessories/power/power_relic_jasper.png | Bin 0 -> 93 bytes .../accessories/power/power_relic_onyx.png | Bin 0 -> 91 bytes .../accessories/power/power_relic_opal.png | Bin 0 -> 95 bytes .../accessories/power/power_relic_peridot.png | Bin 0 -> 92 bytes .../accessories/power/power_relic_ruby.png | Bin 0 -> 93 bytes .../power/power_relic_sapphire.png | Bin 0 -> 92 bytes .../accessories/power/power_relic_topaz.png | Bin 0 -> 93 bytes .../item/accessories/power/power_ring.png | Bin 0 -> 210 bytes .../accessories/power/power_ring_amber.png | Bin 0 -> 91 bytes .../accessories/power/power_ring_amethyst.png | Bin 0 -> 92 bytes .../accessories/power/power_ring_jade.png | Bin 0 -> 102 bytes .../accessories/power/power_ring_ruby.png | Bin 0 -> 99 bytes .../item/accessories/power/power_talisman.png | Bin 0 -> 192 bytes .../power/power_talisman_amber.png | Bin 0 -> 100 bytes .../accessories/power/power_talisman_ruby.png | Bin 0 -> 101 bytes .../pressure/pressure_artifact.png | Bin 0 -> 227 bytes .../accessories/pressure/pressure_ring.png | Bin 0 -> 231 bytes .../pressure/pressure_talisman.png | Bin 0 -> 229 bytes .../accessories/pulse_ring/pulse_ring.png | Bin 0 -> 201 bytes .../pulse_ring/pulse_ring_epic.png | Bin 0 -> 201 bytes .../pulse_ring/pulse_ring_legendary.png | Bin 0 -> 215 bytes .../pulse_ring/pulse_ring_rare.png | Bin 0 -> 210 bytes .../accessories/race_rewards/cat_talisman.png | Bin 0 -> 214 bytes .../race_rewards/cheetah_talisman.png | Bin 0 -> 226 bytes .../race_rewards/fried_frozen_chicken.png | Bin 0 -> 238 bytes .../race_rewards/frozen_chicken.png | Bin 0 -> 246 bytes .../accessories/race_rewards/grizzly_paw.png | Bin 0 -> 217 bytes .../race_rewards/lynx_talisman.png | Bin 0 -> 229 bytes .../accessories/race_rewards/pigs_foot.png | Bin 0 -> 168 bytes .../accessories/race_rewards/wolf_paw.png | Bin 0 -> 212 bytes .../textures/item/accessories/reaper_orb.png | Bin 0 -> 171 bytes .../accessories/red_claw/red_claw_ring.png | Bin 0 -> 193 bytes .../red_claw/red_claw_talisman.png | Bin 0 -> 207 bytes .../respiration/respiration_artifact.png | Bin 0 -> 192 bytes .../respiration/respiration_ring.png | Bin 0 -> 210 bytes .../respiration/respiration_talisman.png | Bin 0 -> 211 bytes .../accessories/rift/big_brain_talisman.png | Bin 0 -> 200 bytes .../item/accessories/rift/bluertooth_ring.png | Bin 0 -> 207 bytes .../item/accessories/rift/bluetooth_ring.png | Bin 0 -> 206 bytes .../accessories/rift/combo_mania_talisman.png | Bin 0 -> 197 bytes .../accessories/rift/defective_monitor.png | Bin 0 -> 234 bytes .../item/accessories/rift/future_calories.png | Bin 0 -> 222 bytes .../rift/garlic_flavored_gummy_bear.png | Bin 0 -> 175 bytes .../rift/harmonious_surgery_toolkit.png | Bin 0 -> 218 bytes .../item/accessories/rift/iq_point.png | Bin 0 -> 179 bytes .../rift/miniaturized_tubulator.png | Bin 0 -> 195 bytes .../accessories/rift/punchcard_artifact.png | Bin 0 -> 206 bytes .../item/accessories/rift/rift_prism.png | Bin 0 -> 197 bytes .../accessories/rift/ring_of_broken_love.png | Bin 0 -> 196 bytes .../accessories/rift/ring_of_eternal_love.png | Bin 0 -> 199 bytes .../item/accessories/rift/satelite.png | Bin 0 -> 219 bytes .../rift/test_bucket_please_ignore.png | Bin 0 -> 224 bytes .../item/accessories/rift/tiny_dancer.png | Bin 0 -> 231 bytes .../item/accessories/rift/two_iq_point.png | Bin 0 -> 202 bytes .../rift/vampire_dentist_relic.png | Bin 0 -> 189 bytes .../item/accessories/rift/warding_trinket.png | Bin 0 -> 199 bytes .../runeblade/runeblade_artifact.png | Bin 0 -> 276 bytes .../accessories/runeblade/runeblade_ring.png | Bin 0 -> 262 bytes .../runeblade/runeblade_talisman.png | Bin 0 -> 231 bytes .../item/accessories/runebook/runebook.png | Bin 0 -> 243 bytes .../accessories/runebook/runebook_epic.png | Bin 0 -> 243 bytes .../runebook/runebook_legendary.png | Bin 0 -> 243 bytes .../accessories/runebook/runebook_rare.png | Bin 0 -> 243 bytes .../runebook/runebook_uncommon.png | Bin 0 -> 243 bytes .../item/accessories/scarf/scarf_grimoire.png | Bin 0 -> 268 bytes .../item/accessories/scarf/scarf_studies.png | Bin 0 -> 221 bytes .../item/accessories/scarf/scarf_thesis.png | Bin 0 -> 236 bytes .../scavenger/scavenger_artifact.png | Bin 0 -> 251 bytes .../accessories/scavenger/scavenger_ring.png | Bin 0 -> 215 bytes .../scavenger/scavenger_talisman.png | Bin 0 -> 216 bytes .../sea_creature/sea_creature_ring.png | Bin 0 -> 193 bytes .../sea_creature/sea_creature_talisman.png | Bin 0 -> 207 bytes .../item/accessories/seal/seal_ring.png | Bin 0 -> 229 bytes .../item/accessories/seal/seal_talisman.png | Bin 0 -> 238 bytes .../dull_shark_tooth_necklace.png | Bin 0 -> 208 bytes .../honed_shark_tooth_necklace.png | Bin 0 -> 208 bytes .../raggedy_shark_tooth_necklace.png | Bin 0 -> 208 bytes .../razor_sharp_shark_tooth_necklace.png | Bin 0 -> 208 bytes .../sharp_shark_tooth_necklace.png | Bin 0 -> 208 bytes .../shens_auction/artifact_of_control.png | Bin 0 -> 204 bytes .../shens_auction/pandoras_box.png | Bin 0 -> 202 bytes .../shens_auction/pandoras_box_epic.png | Bin 0 -> 202 bytes .../shens_auction/pandoras_box_legendary.png | Bin 0 -> 202 bytes .../shens_auction/pandoras_box_mythic.png | Bin 0 -> 202 bytes .../shens_auction/pandoras_box_rare.png | Bin 0 -> 202 bytes .../shens_auction/pandoras_box_uncommon.png | Bin 0 -> 202 bytes .../shens_auction/shens_regalia.png | Bin 0 -> 223 bytes .../item/accessories/skeleton_talisman.png | Bin 0 -> 212 bytes .../accessories/soulflow/soulflow_battery.png | Bin 0 -> 205 bytes .../accessories/soulflow/soulflow_pile.png | Bin 0 -> 201 bytes .../soulflow/soulflow_supercell.png | Bin 0 -> 205 bytes .../accessories/space/artifact_of_space.png | Bin 0 -> 188 bytes .../item/accessories/space/ring_of_space.png | Bin 0 -> 200 bytes .../accessories/space/talisman_of_space.png | Bin 0 -> 216 bytes .../item/accessories/speed/speed_artifact.png | Bin 0 -> 212 bytes .../item/accessories/speed/speed_ring.png | Bin 0 -> 197 bytes .../item/accessories/speed/speed_talisman.png | Bin 0 -> 207 bytes .../accessories/spider/spider_artifact.png | Bin 0 -> 219 bytes .../item/accessories/spider/spider_ring.png | Bin 0 -> 228 bytes .../accessories/spider/spider_talisman.png | Bin 0 -> 214 bytes .../accessories/tarantula/tarantula_ring.png | Bin 0 -> 206 bytes .../tarantula/tarantula_talisman.png | Bin 0 -> 213 bytes .../technoblade/blood_god_crest.png | Bin 0 -> 249 bytes .../technoblade/potato_talisman.png | Bin 0 -> 226 bytes .../titanium/titanium_artifact.png | Bin 0 -> 215 bytes .../accessories/titanium/titanium_relic.png | Bin 0 -> 210 bytes .../accessories/titanium/titanium_ring.png | Bin 0 -> 205 bytes .../titanium/titanium_talisman.png | Bin 0 -> 205 bytes .../trapper_crest/trapper_crest.png | Bin 0 -> 195 bytes .../trapper_crest/trapper_crest_uncommon.png | Bin 0 -> 195 bytes .../treasure/treasure_artifact.png | Bin 0 -> 279 bytes .../accessories/treasure/treasure_ring.png | Bin 0 -> 231 bytes .../treasure/treasure_talisman.png | Bin 0 -> 228 bytes .../accessories/vaccine/vaccine_artifact.png | Bin 0 -> 190 bytes .../item/accessories/vaccine/vaccine_ring.png | Bin 0 -> 206 bytes .../accessories/vaccine/vaccine_talisman.png | Bin 0 -> 214 bytes .../item/accessories/village_talisman.png | Bin 0 -> 218 bytes .../wedding_ring/wedding_ring_common.png | Bin 0 -> 150 bytes .../wedding_ring/wedding_ring_epic.png | Bin 0 -> 189 bytes .../wedding_ring/wedding_ring_legendary.png | Bin 0 -> 178 bytes .../wedding_ring/wedding_ring_rare.png | Bin 0 -> 198 bytes .../wedding_ring/wedding_ring_uncommon.png | Bin 0 -> 199 bytes .../item/accessories/wolf/wolf_ring.png | Bin 0 -> 227 bytes .../item/accessories/wolf/wolf_talisman.png | Bin 0 -> 216 bytes .../item/accessories/wood_talisman.png | Bin 0 -> 218 bytes .../item/accessories/zombie/zombie_ring.png | Bin 0 -> 193 bytes .../accessories/zombie/zombie_talisman.png | Bin 0 -> 241 bytes .../item/armor/abyssal/abyssal_boots.png | Bin 0 -> 195 bytes .../item/armor/abyssal/abyssal_boots_dyed.png | Bin 0 -> 107 bytes .../armor/abyssal/abyssal_boots_overlay.png | Bin 0 -> 162 bytes .../item/armor/abyssal/abyssal_chestplate.png | Bin 0 -> 233 bytes .../armor/abyssal/abyssal_chestplate_dyed.png | Bin 0 -> 130 bytes .../abyssal/abyssal_chestplate_overlay.png | Bin 0 -> 193 bytes .../item/armor/abyssal/abyssal_leggings.png | Bin 0 -> 197 bytes .../armor/abyssal/abyssal_leggings_dyed.png | Bin 0 -> 119 bytes .../abyssal/abyssal_leggings_overlay.png | Bin 0 -> 159 bytes .../item/armor/adaptive/adaptive_boots.png | Bin 0 -> 204 bytes .../armor/adaptive/adaptive_boots_archer.png | Bin 0 -> 199 bytes .../adaptive/adaptive_boots_berserker.png | Bin 0 -> 199 bytes .../armor/adaptive/adaptive_boots_dyed.png | Bin 0 -> 155 bytes .../armor/adaptive/adaptive_boots_healer.png | Bin 0 -> 195 bytes .../armor/adaptive/adaptive_boots_mage.png | Bin 0 -> 199 bytes .../armor/adaptive/adaptive_boots_overlay.png | Bin 0 -> 71 bytes .../armor/adaptive/adaptive_boots_tank.png | Bin 0 -> 199 bytes .../armor/adaptive/adaptive_chestplate.png | Bin 0 -> 260 bytes .../adaptive/adaptive_chestplate_archer.png | Bin 0 -> 244 bytes .../adaptive_chestplate_berserker.png | Bin 0 -> 244 bytes .../adaptive/adaptive_chestplate_dyed.png | Bin 0 -> 212 bytes .../adaptive/adaptive_chestplate_healer.png | Bin 0 -> 248 bytes .../adaptive/adaptive_chestplate_mage.png | Bin 0 -> 244 bytes .../adaptive/adaptive_chestplate_overlay.png | Bin 0 -> 71 bytes .../adaptive/adaptive_chestplate_tank.png | Bin 0 -> 248 bytes .../item/armor/adaptive/adaptive_leggings.png | Bin 0 -> 219 bytes .../adaptive/adaptive_leggings_archer.png | Bin 0 -> 209 bytes .../adaptive/adaptive_leggings_berserker.png | Bin 0 -> 209 bytes .../armor/adaptive/adaptive_leggings_dyed.png | Bin 0 -> 170 bytes .../adaptive/adaptive_leggings_healer.png | Bin 0 -> 206 bytes .../armor/adaptive/adaptive_leggings_mage.png | Bin 0 -> 209 bytes .../adaptive/adaptive_leggings_overlay.png | Bin 0 -> 71 bytes .../armor/adaptive/adaptive_leggings_tank.png | Bin 0 -> 209 bytes .../armor/adaptive/starred_adaptive_boots.png | Bin 0 -> 216 bytes .../adaptive/starred_adaptive_boots_dyed.png | Bin 0 -> 147 bytes .../starred_adaptive_boots_overlay.png | Bin 0 -> 128 bytes .../adaptive/starred_adaptive_chestplate.png | Bin 0 -> 276 bytes .../starred_adaptive_chestplate_dyed.png | Bin 0 -> 206 bytes .../starred_adaptive_chestplate_overlay.png | Bin 0 -> 105 bytes .../adaptive/starred_adaptive_leggings.png | Bin 0 -> 224 bytes .../starred_adaptive_leggings_dyed.png | Bin 0 -> 160 bytes .../starred_adaptive_leggings_overlay.png | Bin 0 -> 104 bytes .../textures/item/armor/admin/star_boots.png | Bin 0 -> 181 bytes .../item/armor/admin/star_boots_dyed.png | Bin 0 -> 144 bytes .../item/armor/admin/star_boots_overlay.png | Bin 0 -> 123 bytes .../item/armor/admin/star_chestplate.png | Bin 0 -> 205 bytes .../item/armor/admin/star_chestplate_dyed.png | Bin 0 -> 165 bytes .../armor/admin/star_chestplate_overlay.png | Bin 0 -> 123 bytes .../textures/item/armor/admin/star_helmet.png | Bin 0 -> 169 bytes .../item/armor/admin/star_helmet_dyed.png | Bin 0 -> 136 bytes .../item/armor/admin/star_helmet_overlay.png | Bin 0 -> 111 bytes .../item/armor/admin/star_leggings.png | Bin 0 -> 178 bytes .../item/armor/admin/star_leggings_dyed.png | Bin 0 -> 147 bytes .../armor/admin/star_leggings_overlay.png | Bin 0 -> 116 bytes .../textures/item/armor/admin/titan_boots.png | Bin 0 -> 177 bytes .../item/armor/admin/titan_boots_dyed.png | Bin 0 -> 112 bytes .../item/armor/admin/titan_boots_overlay.png | Bin 0 -> 139 bytes .../item/armor/admin/titan_chestplate.png | Bin 0 -> 185 bytes .../armor/admin/titan_chestplate_dyed.png | Bin 0 -> 128 bytes .../armor/admin/titan_chestplate_overlay.png | Bin 0 -> 165 bytes .../item/armor/admin/titan_leggings.png | Bin 0 -> 142 bytes .../item/armor/admin/titan_leggings_dyed.png | Bin 0 -> 98 bytes .../armor/admin/titan_leggings_overlay.png | Bin 0 -> 120 bytes .../item/armor/angler/angler_boots.png | Bin 0 -> 199 bytes .../item/armor/angler/angler_boots_dyed.png | Bin 0 -> 139 bytes .../armor/angler/angler_boots_overlay.png | Bin 0 -> 154 bytes .../item/armor/angler/angler_chestplate.png | Bin 0 -> 202 bytes .../armor/angler/angler_chestplate_dyed.png | Bin 0 -> 160 bytes .../angler/angler_chestplate_overlay.png | Bin 0 -> 116 bytes .../item/armor/angler/angler_helmet.png | Bin 0 -> 186 bytes .../item/armor/angler/angler_helmet_dyed.png | Bin 0 -> 137 bytes .../armor/angler/angler_helmet_overlay.png | Bin 0 -> 124 bytes .../item/armor/angler/angler_leggings.png | Bin 0 -> 200 bytes .../armor/angler/angler_leggings_dyed.png | Bin 0 -> 155 bytes .../armor/angler/angler_leggings_overlay.png | Bin 0 -> 115 bytes .../item/armor/arachne/arachne_boots.png | Bin 0 -> 200 bytes .../item/armor/arachne/arachne_boots_dyed.png | Bin 0 -> 138 bytes .../armor/arachne/arachne_boots_overlay.png | Bin 0 -> 138 bytes .../item/armor/arachne/arachne_chestplate.png | Bin 0 -> 229 bytes .../armor/arachne/arachne_chestplate_dyed.png | Bin 0 -> 145 bytes .../arachne/arachne_chestplate_overlay.png | Bin 0 -> 165 bytes .../item/armor/arachne/arachne_leggings.png | Bin 0 -> 207 bytes .../armor/arachne/arachne_leggings_dyed.png | Bin 0 -> 120 bytes .../arachne/arachne_leggings_overlay.png | Bin 0 -> 161 bytes .../armor_of_magma/armor_of_magma_boots.png | Bin 0 -> 188 bytes .../armor_of_magma_boots_dyed.png | Bin 0 -> 112 bytes .../armor_of_magma_boots_overlay.png | Bin 0 -> 143 bytes .../armor_of_magma_chestplate.png | Bin 0 -> 315 bytes .../armor_of_magma_chestplate_dyed.png | Bin 0 -> 156 bytes .../armor_of_magma_chestplate_overlay.png | Bin 0 -> 188 bytes .../armor_of_magma/armor_of_magma_helmet.png | Bin 0 -> 163 bytes .../armor_of_magma_helmet_dyed.png | Bin 0 -> 104 bytes .../armor_of_magma_helmet_overlay.png | Bin 0 -> 138 bytes .../armor_of_magma_leggings.png | Bin 0 -> 205 bytes .../armor_of_magma_leggings_dyed.png | Bin 0 -> 118 bytes .../armor_of_magma_leggings_overlay.png | Bin 0 -> 160 bytes .../armor_of_the_resistance_boots.png | Bin 0 -> 200 bytes .../armor_of_the_resistance_boots_dyed.png | Bin 0 -> 97 bytes .../armor_of_the_resistance_boots_overlay.png | Bin 0 -> 188 bytes .../armor_of_the_resistance_chestplate.png | Bin 0 -> 246 bytes ...rmor_of_the_resistance_chestplate_dyed.png | Bin 0 -> 116 bytes ...r_of_the_resistance_chestplate_overlay.png | Bin 0 -> 222 bytes .../armor_of_the_resistance_leggings.png | Bin 0 -> 224 bytes .../armor_of_the_resistance_leggings_dyed.png | Bin 0 -> 93 bytes ...mor_of_the_resistance_leggings_overlay.png | Bin 0 -> 202 bytes .../armor/armor_of_yog/armor_of_yog_boots.png | Bin 0 -> 205 bytes .../armor_of_yog/armor_of_yog_boots_dyed.png | Bin 0 -> 126 bytes .../armor_of_yog_boots_overlay.png | Bin 0 -> 153 bytes .../armor_of_yog/armor_of_yog_chestplate.png | Bin 0 -> 225 bytes .../armor_of_yog_chestplate_dyed.png | Bin 0 -> 141 bytes .../armor_of_yog_chestplate_overlay.png | Bin 0 -> 167 bytes .../armor_of_yog/armor_of_yog_helmet.png | Bin 0 -> 192 bytes .../armor_of_yog/armor_of_yog_helmet_dyed.png | Bin 0 -> 109 bytes .../armor_of_yog_helmet_overlay.png | Bin 0 -> 146 bytes .../armor_of_yog/armor_of_yog_leggings.png | Bin 0 -> 203 bytes .../armor_of_yog_leggings_dyed.png | Bin 0 -> 117 bytes .../armor_of_yog_leggings_overlay.png | Bin 0 -> 155 bytes .../item/armor/aurora/aurora/aurora_boots.png | Bin 0 -> 204 bytes .../armor/aurora/aurora/aurora_boots_dyed.png | Bin 0 -> 78 bytes .../aurora/aurora/aurora_boots_overlay.png | Bin 0 -> 194 bytes .../armor/aurora/aurora/aurora_chestplate.png | Bin 0 -> 221 bytes .../aurora/aurora/aurora_chestplate_dyed.png | Bin 0 -> 108 bytes .../aurora/aurora_chestplate_overlay.png | Bin 0 -> 206 bytes .../armor/aurora/aurora/aurora_leggings.png | Bin 0 -> 190 bytes .../aurora/aurora/aurora_leggings_dyed.png | Bin 0 -> 81 bytes .../aurora/aurora/aurora_leggings_overlay.png | Bin 0 -> 182 bytes .../aurora/burning/burning_aurora_boots.png | Bin 0 -> 205 bytes .../burning/burning_aurora_boots_dyed.png | Bin 0 -> 107 bytes .../burning/burning_aurora_boots_overlay.png | Bin 0 -> 178 bytes .../burning/burning_aurora_chestplate.png | Bin 0 -> 244 bytes .../burning_aurora_chestplate_dyed.png | Bin 0 -> 152 bytes .../burning_aurora_chestplate_overlay.png | Bin 0 -> 204 bytes .../burning/burning_aurora_leggings.png | Bin 0 -> 206 bytes .../burning/burning_aurora_leggings_dyed.png | Bin 0 -> 108 bytes .../burning_aurora_leggings_overlay.png | Bin 0 -> 177 bytes .../armor/aurora/fiery/fiery_aurora_boots.png | Bin 0 -> 186 bytes .../aurora/fiery/fiery_aurora_boots_dyed.png | Bin 0 -> 113 bytes .../fiery/fiery_aurora_boots_overlay.png | Bin 0 -> 157 bytes .../aurora/fiery/fiery_aurora_chestplate.png | Bin 0 -> 206 bytes .../fiery/fiery_aurora_chestplate_dyed.png | Bin 0 -> 162 bytes .../fiery/fiery_aurora_chestplate_overlay.png | Bin 0 -> 171 bytes .../aurora/fiery/fiery_aurora_leggings.png | Bin 0 -> 179 bytes .../fiery/fiery_aurora_leggings_dyed.png | Bin 0 -> 108 bytes .../fiery/fiery_aurora_leggings_overlay.png | Bin 0 -> 153 bytes .../armor/aurora/hot/hot_aurora_boots.png | Bin 0 -> 209 bytes .../aurora/hot/hot_aurora_boots_dyed.png | Bin 0 -> 98 bytes .../aurora/hot/hot_aurora_boots_overlay.png | Bin 0 -> 193 bytes .../aurora/hot/hot_aurora_chestplate.png | Bin 0 -> 243 bytes .../aurora/hot/hot_aurora_chestplate_dyed.png | Bin 0 -> 141 bytes .../hot/hot_aurora_chestplate_overlay.png | Bin 0 -> 211 bytes .../armor/aurora/hot/hot_aurora_leggings.png | Bin 0 -> 198 bytes .../aurora/hot/hot_aurora_leggings_dyed.png | Bin 0 -> 106 bytes .../hot/hot_aurora_leggings_overlay.png | Bin 0 -> 179 bytes .../aurora/infernal/infernal_aurora_boots.png | Bin 0 -> 186 bytes .../infernal/infernal_aurora_boots_dyed.png | Bin 0 -> 113 bytes .../infernal_aurora_boots_overlay.png | Bin 0 -> 157 bytes .../infernal/infernal_aurora_chestplate.png | Bin 0 -> 203 bytes .../infernal_aurora_chestplate_dyed.png | Bin 0 -> 162 bytes .../infernal_aurora_chestplate_overlay.png | Bin 0 -> 165 bytes .../infernal/infernal_aurora_leggings.png | Bin 0 -> 179 bytes .../infernal_aurora_leggings_dyed.png | Bin 0 -> 108 bytes .../infernal_aurora_leggings_overlay.png | Bin 0 -> 153 bytes .../item/armor/backwater/backwater_boots.png | Bin 0 -> 233 bytes .../armor/backwater/backwater_boots_dyed.png | Bin 0 -> 113 bytes .../backwater/backwater_boots_overlay.png | Bin 0 -> 199 bytes .../armor/backwater/backwater_chestplate.png | Bin 0 -> 269 bytes .../backwater/backwater_chestplate_dyed.png | Bin 0 -> 143 bytes .../backwater_chestplate_overlay.png | Bin 0 -> 225 bytes .../armor/backwater/backwater_leggings.png | Bin 0 -> 228 bytes .../backwater/backwater_leggings_dyed.png | Bin 0 -> 100 bytes .../backwater/backwater_leggings_overlay.png | Bin 0 -> 206 bytes .../armor/bat_person/bat_person_boots.png | Bin 0 -> 195 bytes .../bat_person/bat_person_boots_dyed.png | Bin 0 -> 138 bytes .../bat_person/bat_person_boots_overlay.png | Bin 0 -> 124 bytes .../bat_person/bat_person_chestplate.png | Bin 0 -> 259 bytes .../bat_person/bat_person_chestplate_dyed.png | Bin 0 -> 173 bytes .../bat_person_chestplate_overlay.png | Bin 0 -> 169 bytes .../armor/bat_person/bat_person_leggings.png | Bin 0 -> 201 bytes .../bat_person/bat_person_leggings_dyed.png | Bin 0 -> 122 bytes .../bat_person_leggings_overlay.png | Bin 0 -> 145 bytes .../item/armor/berserker/berserker_boots.png | Bin 0 -> 215 bytes .../armor/berserker/berserker_boots_dyed.png | Bin 0 -> 109 bytes .../berserker/berserker_boots_overlay.png | Bin 0 -> 180 bytes .../armor/berserker/berserker_chestplate.png | Bin 0 -> 241 bytes .../berserker/berserker_chestplate_dyed.png | Bin 0 -> 156 bytes .../berserker_chestplate_overlay.png | Bin 0 -> 188 bytes .../armor/berserker/berserker_leggings.png | Bin 0 -> 215 bytes .../berserker/berserker_leggings_dyed.png | Bin 0 -> 122 bytes .../berserker/berserker_leggings_overlay.png | Bin 0 -> 182 bytes .../item/armor/biohazard/biohazard_boots.png | Bin 0 -> 193 bytes .../armor/biohazard/biohazard_boots_dyed.png | Bin 0 -> 103 bytes .../biohazard/biohazard_boots_overlay.png | Bin 0 -> 163 bytes .../armor/biohazard/biohazard_leggings.png | Bin 0 -> 195 bytes .../biohazard/biohazard_leggings_dyed.png | Bin 0 -> 128 bytes .../biohazard/biohazard_leggings_overlay.png | Bin 0 -> 127 bytes .../item/armor/biohazard/biohazard_suit.png | Bin 0 -> 235 bytes .../armor/biohazard/biohazard_suit_dyed.png | Bin 0 -> 160 bytes .../biohazard/biohazard_suit_overlay.png | Bin 0 -> 162 bytes .../textures/item/armor/blaze/blaze_boots.png | Bin 0 -> 200 bytes .../item/armor/blaze/blaze_boots_dyed.png | Bin 0 -> 122 bytes .../item/armor/blaze/blaze_boots_overlay.png | Bin 0 -> 129 bytes .../item/armor/blaze/blaze_chestplate.png | Bin 0 -> 229 bytes .../armor/blaze/blaze_chestplate_dyed.png | Bin 0 -> 156 bytes .../armor/blaze/blaze_chestplate_overlay.png | Bin 0 -> 162 bytes .../item/armor/blaze/blaze_leggings.png | Bin 0 -> 205 bytes .../item/armor/blaze/blaze_leggings_dyed.png | Bin 0 -> 135 bytes .../armor/blaze/blaze_leggings_overlay.png | Bin 0 -> 126 bytes .../item/armor/bouncy/bouncy_boots.png | Bin 0 -> 174 bytes .../item/armor/bouncy/bouncy_boots_dyed.png | Bin 0 -> 147 bytes .../item/armor/bouncy/bouncy_chestplate.png | Bin 0 -> 202 bytes .../armor/bouncy/bouncy_chestplate_dyed.png | Bin 0 -> 167 bytes .../item/armor/bouncy/bouncy_helmet.png | Bin 0 -> 171 bytes .../item/armor/bouncy/bouncy_helmet_dyed.png | Bin 0 -> 135 bytes .../item/armor/bouncy/bouncy_leggings.png | Bin 0 -> 181 bytes .../armor/bouncy/bouncy_leggings_dyed.png | Bin 0 -> 152 bytes .../item/armor/bouncy/bouncy_overlay.png | Bin 0 -> 71 bytes .../item/armor/cactus/cactus_boots.png | Bin 0 -> 230 bytes .../item/armor/cactus/cactus_boots_dyed.png | Bin 0 -> 158 bytes .../item/armor/cactus/cactus_chestplate.png | Bin 0 -> 206 bytes .../armor/cactus/cactus_chestplate_dyed.png | Bin 0 -> 187 bytes .../item/armor/cactus/cactus_helmet.png | Bin 0 -> 192 bytes .../item/armor/cactus/cactus_helmet_dyed.png | Bin 0 -> 142 bytes .../item/armor/cactus/cactus_leggings.png | Bin 0 -> 201 bytes .../armor/cactus/cactus_leggings_dyed.png | Bin 0 -> 156 bytes .../item/armor/cactus/cactus_overlay.png | Bin 0 -> 71 bytes .../item/armor/canopy/canopy_boots.png | Bin 0 -> 232 bytes .../item/armor/canopy/canopy_boots_dyed.png | Bin 0 -> 110 bytes .../armor/canopy/canopy_boots_overlay.png | Bin 0 -> 198 bytes .../item/armor/canopy/canopy_chestplate.png | Bin 0 -> 272 bytes .../armor/canopy/canopy_chestplate_dyed.png | Bin 0 -> 142 bytes .../canopy/canopy_chestplate_overlay.png | Bin 0 -> 217 bytes .../item/armor/canopy/canopy_leggings.png | Bin 0 -> 240 bytes .../armor/canopy/canopy_leggings_dyed.png | Bin 0 -> 136 bytes .../armor/canopy/canopy_leggings_overlay.png | Bin 0 -> 192 bytes .../item/armor/celeste/celeste_boots.png | Bin 0 -> 181 bytes .../item/armor/celeste/celeste_boots_dyed.png | Bin 0 -> 137 bytes .../armor/celeste/celeste_boots_overlay.png | Bin 0 -> 107 bytes .../item/armor/celeste/celeste_chestplate.png | Bin 0 -> 209 bytes .../armor/celeste/celeste_chestplate_dyed.png | Bin 0 -> 162 bytes .../celeste/celeste_chestplate_overlay.png | Bin 0 -> 153 bytes .../item/armor/celeste/celeste_helmet.png | Bin 0 -> 176 bytes .../armor/celeste/celeste_helmet_dyed.png | Bin 0 -> 134 bytes .../armor/celeste/celeste_helmet_overlay.png | Bin 0 -> 104 bytes .../item/armor/celeste/celeste_leggings.png | Bin 0 -> 189 bytes .../armor/celeste/celeste_leggings_dyed.png | Bin 0 -> 145 bytes .../celeste/celeste_leggings_overlay.png | Bin 0 -> 108 bytes .../crimson/burning/burning_crimson_boots.png | Bin 0 -> 201 bytes .../burning/burning_crimson_boots_dyed.png | Bin 0 -> 116 bytes .../burning/burning_crimson_boots_overlay.png | Bin 0 -> 173 bytes .../burning/burning_crimson_chestplate.png | Bin 0 -> 238 bytes .../burning_crimson_chestplate_dyed.png | Bin 0 -> 122 bytes .../burning_crimson_chestplate_overlay.png | Bin 0 -> 215 bytes .../burning/burning_crimson_leggings.png | Bin 0 -> 203 bytes .../burning/burning_crimson_leggings_dyed.png | Bin 0 -> 119 bytes .../burning_crimson_leggings_overlay.png | Bin 0 -> 171 bytes .../armor/crimson/crimson/crimson_boots.png | Bin 0 -> 200 bytes .../crimson/crimson/crimson_boots_dyed.png | Bin 0 -> 78 bytes .../crimson/crimson/crimson_boots_overlay.png | Bin 0 -> 199 bytes .../crimson/crimson/crimson_chestplate.png | Bin 0 -> 242 bytes .../crimson/crimson_chestplate_dyed.png | Bin 0 -> 96 bytes .../crimson/crimson_chestplate_overlay.png | Bin 0 -> 226 bytes .../crimson/crimson/crimson_leggings.png | Bin 0 -> 211 bytes .../crimson/crimson/crimson_leggings_dyed.png | Bin 0 -> 89 bytes .../crimson/crimson_leggings_overlay.png | Bin 0 -> 200 bytes .../crimson/fiery/fiery_crimson_boots.png | Bin 0 -> 187 bytes .../fiery/fiery_crimson_boots_dyed.png | Bin 0 -> 136 bytes .../fiery/fiery_crimson_boots_overlay.png | Bin 0 -> 150 bytes .../fiery/fiery_crimson_chestplate.png | Bin 0 -> 214 bytes .../fiery/fiery_crimson_chestplate_dyed.png | Bin 0 -> 151 bytes .../fiery_crimson_chestplate_overlay.png | Bin 0 -> 170 bytes .../crimson/fiery/fiery_crimson_leggings.png | Bin 0 -> 188 bytes .../fiery/fiery_crimson_leggings_dyed.png | Bin 0 -> 128 bytes .../fiery/fiery_crimson_leggings_overlay.png | Bin 0 -> 146 bytes .../armor/crimson/hot/hot_crimson_boots.png | Bin 0 -> 207 bytes .../crimson/hot/hot_crimson_boots_dyed.png | Bin 0 -> 101 bytes .../crimson/hot/hot_crimson_boots_overlay.png | Bin 0 -> 193 bytes .../crimson/hot/hot_crimson_chestplate.png | Bin 0 -> 242 bytes .../hot/hot_crimson_chestplate_dyed.png | Bin 0 -> 122 bytes .../hot/hot_crimson_chestplate_overlay.png | Bin 0 -> 221 bytes .../crimson/hot/hot_crimson_leggings.png | Bin 0 -> 210 bytes .../crimson/hot/hot_crimson_leggings_dyed.png | Bin 0 -> 114 bytes .../hot/hot_crimson_leggings_overlay.png | Bin 0 -> 183 bytes .../infernal/infernal_crimson_boots.png | Bin 0 -> 187 bytes .../infernal/infernal_crimson_boots_dyed.png | Bin 0 -> 133 bytes .../infernal_crimson_boots_overlay.png | Bin 0 -> 150 bytes .../infernal/infernal_crimson_chestplate.png | Bin 0 -> 215 bytes .../infernal_crimson_chestplate_dyed.png | Bin 0 -> 146 bytes .../infernal_crimson_chestplate_overlay.png | Bin 0 -> 175 bytes .../infernal/infernal_crimson_leggings.png | Bin 0 -> 188 bytes .../infernal_crimson_leggings_dyed.png | Bin 0 -> 124 bytes .../infernal_crimson_leggings_overlay.png | Bin 0 -> 146 bytes .../item/armor/cropie/cropie_boots.png | Bin 0 -> 193 bytes .../item/armor/cropie/cropie_boots_dyed.png | Bin 0 -> 155 bytes .../armor/cropie/cropie_boots_overlay.png | Bin 0 -> 135 bytes .../item/armor/cropie/cropie_chestplate.png | Bin 0 -> 209 bytes .../armor/cropie/cropie_chestplate_dyed.png | Bin 0 -> 174 bytes .../cropie/cropie_chestplate_overlay.png | Bin 0 -> 137 bytes .../item/armor/cropie/cropie_leggings.png | Bin 0 -> 206 bytes .../armor/cropie/cropie_leggings_dyed.png | Bin 0 -> 156 bytes .../armor/cropie/cropie_leggings_overlay.png | Bin 0 -> 143 bytes .../crypt_witherlord_boots.png | Bin 0 -> 295 bytes .../crypt_witherlord_boots_dyed.png | Bin 0 -> 136 bytes .../crypt_witherlord_boots_overlay.png | Bin 0 -> 168 bytes .../crypt_witherlord_chestplate.png | Bin 0 -> 308 bytes .../crypt_witherlord_chestplate_dyed.png | Bin 0 -> 163 bytes .../crypt_witherlord_chestplate_overlay.png | Bin 0 -> 171 bytes .../crypt_witherlord_helmet.png | Bin 0 -> 267 bytes .../crypt_witherlord_helmet_dyed.png | Bin 0 -> 120 bytes .../crypt_witherlord_helmet_overlay.png | Bin 0 -> 172 bytes .../crypt_witherlord_leggings.png | Bin 0 -> 292 bytes .../crypt_witherlord_leggings_dyed.png | Bin 0 -> 142 bytes .../crypt_witherlord_leggings_overlay.png | Bin 0 -> 174 bytes .../armor/crystal/crystal_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/crystal/crystal_boots.png | Bin 0 -> 168 bytes .../item/armor/crystal/crystal_chestplate.png | Bin 0 -> 215 bytes .../item/armor/crystal/crystal_helmet.png | Bin 0 -> 177 bytes .../item/armor/crystal/crystal_leggings.png | Bin 0 -> 177 bytes .../textures/item/armor/divan/divan_boots.png | Bin 0 -> 218 bytes .../item/armor/divan/divan_boots_dyed.png | Bin 0 -> 127 bytes .../item/armor/divan/divan_boots_overlay.png | Bin 0 -> 179 bytes .../item/armor/divan/divan_chestplate.png | Bin 0 -> 250 bytes .../armor/divan/divan_chestplate_dyed.png | Bin 0 -> 145 bytes .../armor/divan/divan_chestplate_overlay.png | Bin 0 -> 210 bytes .../item/armor/divan/divan_leggings.png | Bin 0 -> 220 bytes .../item/armor/divan/divan_leggings_dyed.png | Bin 0 -> 107 bytes .../armor/divan/divan_leggings_overlay.png | Bin 0 -> 175 bytes .../textures/item/armor/diver/diver_boots.png | Bin 0 -> 201 bytes .../item/armor/diver/diver_boots_dyed.png | Bin 0 -> 96 bytes .../item/armor/diver/diver_boots_overlay.png | Bin 0 -> 173 bytes .../item/armor/diver/diver_chestplate.png | Bin 0 -> 236 bytes .../armor/diver/diver_chestplate_dyed.png | Bin 0 -> 150 bytes .../armor/diver/diver_chestplate_overlay.png | Bin 0 -> 187 bytes .../item/armor/diver/diver_leggings.png | Bin 0 -> 204 bytes .../item/armor/diver/diver_leggings_dyed.png | Bin 0 -> 122 bytes .../armor/diver/diver_leggings_overlay.png | Bin 0 -> 158 bytes .../item/armor/eleanor/eleanor_cap.png | Bin 0 -> 190 bytes .../item/armor/eleanor/eleanor_cap_dyed.png | Bin 0 -> 137 bytes .../armor/eleanor/eleanor_cap_overlay.png | Bin 0 -> 122 bytes .../item/armor/eleanor/eleanor_slippers.png | Bin 0 -> 182 bytes .../armor/eleanor/eleanor_slippers_dyed.png | Bin 0 -> 121 bytes .../eleanor/eleanor_slippers_overlay.png | Bin 0 -> 140 bytes .../item/armor/eleanor/eleanor_trousers.png | Bin 0 -> 193 bytes .../armor/eleanor/eleanor_trousers_dyed.png | Bin 0 -> 143 bytes .../eleanor/eleanor_trousers_overlay.png | Bin 0 -> 105 bytes .../item/armor/eleanor/eleanor_tunic.png | Bin 0 -> 213 bytes .../item/armor/eleanor/eleanor_tunic_dyed.png | Bin 0 -> 164 bytes .../armor/eleanor/eleanor_tunic_overlay.png | Bin 0 -> 118 bytes .../textures/item/armor/ember/ember_boots.png | Bin 0 -> 191 bytes .../item/armor/ember/ember_boots_dyed.png | Bin 0 -> 142 bytes .../item/armor/ember/ember_boots_overlay.png | Bin 0 -> 134 bytes .../item/armor/ember/ember_chestplate.png | Bin 0 -> 224 bytes .../armor/ember/ember_chestplate_dyed.png | Bin 0 -> 165 bytes .../armor/ember/ember_chestplate_overlay.png | Bin 0 -> 165 bytes .../item/armor/ember/ember_leggings.png | Bin 0 -> 187 bytes .../item/armor/ember/ember_leggings_dyed.png | Bin 0 -> 148 bytes .../armor/ember/ember_leggings_overlay.png | Bin 0 -> 116 bytes .../emerald_armor/emerald_armor_boots.png | Bin 0 -> 180 bytes .../emerald_armor_boots_dyed.png | Bin 0 -> 143 bytes .../emerald_armor_chestplate.png | Bin 0 -> 210 bytes .../emerald_armor_chestplate_dyed.png | Bin 0 -> 163 bytes .../emerald_armor/emerald_armor_helmet.png | Bin 0 -> 178 bytes .../emerald_armor_helmet_dyed.png | Bin 0 -> 134 bytes .../emerald_armor/emerald_armor_leggings.png | Bin 0 -> 199 bytes .../emerald_armor_leggings_dyed.png | Bin 0 -> 144 bytes .../emerald_armor/emerald_armor_overlay.png | Bin 0 -> 71 bytes .../textures/item/armor/end/end_boots.png | Bin 0 -> 181 bytes .../item/armor/end/end_boots_dyed.png | Bin 0 -> 112 bytes .../item/armor/end/end_boots_overlay.png | Bin 0 -> 141 bytes .../item/armor/end/end_chestplate.png | Bin 0 -> 194 bytes .../item/armor/end/end_chestplate_dyed.png | Bin 0 -> 140 bytes .../item/armor/end/end_chestplate_overlay.png | Bin 0 -> 141 bytes .../textures/item/armor/end/end_leggings.png | Bin 0 -> 176 bytes .../item/armor/end/end_leggings_dyed.png | Bin 0 -> 117 bytes .../item/armor/end/end_leggings_overlay.png | Bin 0 -> 125 bytes .../textures/item/armor/fairy/fairy_boots.png | Bin 0 -> 112 bytes .../item/armor/fairy/fairy_boots_overlay.png | Bin 0 -> 155 bytes .../item/armor/fairy/fairy_chestplate.png | Bin 0 -> 154 bytes .../armor/fairy/fairy_chestplate_overlay.png | Bin 0 -> 130 bytes .../item/armor/fairy/fairy_helmet.png | Bin 0 -> 139 bytes .../item/armor/fairy/fairy_helmet_overlay.png | Bin 0 -> 98 bytes .../item/armor/fairy/fairy_leggings.png | Bin 0 -> 139 bytes .../armor/fairy/fairy_leggings_overlay.png | Bin 0 -> 88 bytes .../armor/farm_armor/farm_armor_boots.png | Bin 0 -> 184 bytes .../farm_armor/farm_armor_boots_dyed.png | Bin 0 -> 94 bytes .../farm_armor/farm_armor_boots_overlay.png | Bin 0 -> 175 bytes .../farm_armor/farm_armor_chestplate.png | Bin 0 -> 213 bytes .../farm_armor/farm_armor_chestplate_dyed.png | Bin 0 -> 108 bytes .../farm_armor_chestplate_overlay.png | Bin 0 -> 191 bytes .../armor/farm_armor/farm_armor_helmet.png | Bin 0 -> 185 bytes .../farm_armor/farm_armor_helmet_dyed.png | Bin 0 -> 89 bytes .../farm_armor/farm_armor_helmet_overlay.png | Bin 0 -> 163 bytes .../armor/farm_armor/farm_armor_leggings.png | Bin 0 -> 192 bytes .../farm_armor/farm_armor_leggings_dyed.png | Bin 0 -> 98 bytes .../farm_armor_leggings_overlay.png | Bin 0 -> 179 bytes .../item/armor/farm_suit/farm_suit_boots.png | Bin 0 -> 185 bytes .../armor/farm_suit/farm_suit_boots_dyed.png | Bin 0 -> 91 bytes .../farm_suit/farm_suit_boots_overlay.png | Bin 0 -> 177 bytes .../armor/farm_suit/farm_suit_chestplate.png | Bin 0 -> 214 bytes .../farm_suit/farm_suit_chestplate_dyed.png | Bin 0 -> 104 bytes .../farm_suit_chestplate_overlay.png | Bin 0 -> 201 bytes .../item/armor/farm_suit/farm_suit_helmet.png | Bin 0 -> 179 bytes .../armor/farm_suit/farm_suit_helmet_dyed.png | Bin 0 -> 83 bytes .../farm_suit/farm_suit_helmet_overlay.png | Bin 0 -> 161 bytes .../armor/farm_suit/farm_suit_leggings.png | Bin 0 -> 193 bytes .../farm_suit/farm_suit_leggings_dyed.png | Bin 0 -> 96 bytes .../farm_suit/farm_suit_leggings_overlay.png | Bin 0 -> 176 bytes .../item/armor/fermento/fermento_boots.png | Bin 0 -> 199 bytes .../armor/fermento/fermento_boots_dyed.png | Bin 0 -> 146 bytes .../armor/fermento/fermento_boots_overlay.png | Bin 0 -> 113 bytes .../armor/fermento/fermento_chestplate.png | Bin 0 -> 223 bytes .../fermento/fermento_chestplate_dyed.png | Bin 0 -> 170 bytes .../fermento/fermento_chestplate_overlay.png | Bin 0 -> 135 bytes .../item/armor/fermento/fermento_leggings.png | Bin 0 -> 204 bytes .../armor/fermento/fermento_leggings_dyed.png | Bin 0 -> 141 bytes .../fermento/fermento_leggings_overlay.png | Bin 0 -> 155 bytes .../fervor/burning/burning_fervor_boots.png | Bin 0 -> 205 bytes .../burning/burning_fervor_boots_dyed.png | Bin 0 -> 113 bytes .../burning/burning_fervor_boots_overlay.png | Bin 0 -> 173 bytes .../burning/burning_fervor_chestplate.png | Bin 0 -> 255 bytes .../burning_fervor_chestplate_dyed.png | Bin 0 -> 126 bytes .../burning_fervor_chestplate_overlay.png | Bin 0 -> 225 bytes .../burning/burning_fervor_leggings.png | Bin 0 -> 215 bytes .../burning/burning_fervor_leggings_dyed.png | Bin 0 -> 104 bytes .../burning_fervor_leggings_overlay.png | Bin 0 -> 202 bytes .../item/armor/fervor/fervor/fervor_boots.png | Bin 0 -> 214 bytes .../armor/fervor/fervor/fervor_boots_dyed.png | Bin 0 -> 96 bytes .../fervor/fervor/fervor_boots_overlay.png | Bin 0 -> 202 bytes .../armor/fervor/fervor/fervor_chestplate.png | Bin 0 -> 263 bytes .../fervor/fervor/fervor_chestplate_dyed.png | Bin 0 -> 110 bytes .../fervor/fervor_chestplate_overlay.png | Bin 0 -> 243 bytes .../armor/fervor/fervor/fervor_leggings.png | Bin 0 -> 217 bytes .../fervor/fervor/fervor_leggings_dyed.png | Bin 0 -> 76 bytes .../fervor/fervor/fervor_leggings_overlay.png | Bin 0 -> 219 bytes .../armor/fervor/fiery/fiery_fervor_boots.png | Bin 0 -> 192 bytes .../fervor/fiery/fiery_fervor_boots_dyed.png | Bin 0 -> 117 bytes .../fiery/fiery_fervor_boots_overlay.png | Bin 0 -> 161 bytes .../fervor/fiery/fiery_fervor_chestplate.png | Bin 0 -> 232 bytes .../fiery/fiery_fervor_chestplate_dyed.png | Bin 0 -> 140 bytes .../fiery/fiery_fervor_chestplate_overlay.png | Bin 0 -> 194 bytes .../fervor/fiery/fiery_fervor_leggings.png | Bin 0 -> 189 bytes .../fiery/fiery_fervor_leggings_dyed.png | Bin 0 -> 106 bytes .../fiery/fiery_fervor_leggings_overlay.png | Bin 0 -> 172 bytes .../armor/fervor/hot/hot_fervor_boots.png | Bin 0 -> 224 bytes .../fervor/hot/hot_fervor_boots_dyed.png | Bin 0 -> 109 bytes .../fervor/hot/hot_fervor_boots_overlay.png | Bin 0 -> 201 bytes .../fervor/hot/hot_fervor_chestplate.png | Bin 0 -> 261 bytes .../fervor/hot/hot_fervor_chestplate_dyed.png | Bin 0 -> 122 bytes .../hot/hot_fervor_chestplate_overlay.png | Bin 0 -> 231 bytes .../armor/fervor/hot/hot_fervor_leggings.png | Bin 0 -> 216 bytes .../fervor/hot/hot_fervor_leggings_dyed.png | Bin 0 -> 94 bytes .../hot/hot_fervor_leggings_overlay.png | Bin 0 -> 198 bytes .../fervor/infernal/infernal_fervor_boots.png | Bin 0 -> 192 bytes .../infernal/infernal_fervor_boots_dyed.png | Bin 0 -> 117 bytes .../infernal_fervor_boots_overlay.png | Bin 0 -> 161 bytes .../infernal/infernal_fervor_chestplate.png | Bin 0 -> 232 bytes .../infernal_fervor_chestplate_dyed.png | Bin 0 -> 140 bytes .../infernal_fervor_chestplate_overlay.png | Bin 0 -> 194 bytes .../infernal/infernal_fervor_leggings.png | Bin 0 -> 192 bytes .../infernal_fervor_leggings_dyed.png | Bin 0 -> 106 bytes .../infernal_fervor_leggings_overlay.png | Bin 0 -> 172 bytes .../textures/item/armor/fig/fig_boots.png | Bin 0 -> 193 bytes .../item/armor/fig/fig_boots_dyed.png | Bin 0 -> 137 bytes .../item/armor/fig/fig_boots_overlay.png | Bin 0 -> 125 bytes .../item/armor/fig/fig_chestplate.png | Bin 0 -> 227 bytes .../item/armor/fig/fig_chestplate_dyed.png | Bin 0 -> 141 bytes .../item/armor/fig/fig_chestplate_overlay.png | Bin 0 -> 179 bytes .../textures/item/armor/fig/fig_leggings.png | Bin 0 -> 190 bytes .../item/armor/fig/fig_leggings_dyed.png | Bin 0 -> 142 bytes .../item/armor/fig/fig_leggings_overlay.png | Bin 0 -> 112 bytes .../final_destination_boots.png | Bin 0 -> 196 bytes .../final_destination_boots_dyed.png | Bin 0 -> 155 bytes .../final_destination_boots_overlay.png | Bin 0 -> 130 bytes .../final_destination_chestplate.png | Bin 0 -> 209 bytes .../final_destination_chestplate_dyed.png | Bin 0 -> 153 bytes .../final_destination_chestplate_overlay.png | Bin 0 -> 162 bytes .../final_destination_leggings.png | Bin 0 -> 183 bytes .../final_destination_leggings_dyed.png | Bin 0 -> 123 bytes .../final_destination_leggings_overlay.png | Bin 0 -> 141 bytes .../flame_breaker/flame_breaker_boots.png | Bin 0 -> 187 bytes .../flame_breaker_boots_dyed.png | Bin 0 -> 161 bytes .../flame_breaker_boots_overlay.png | Bin 0 -> 71 bytes .../flame_breaker_chestplate.png | Bin 0 -> 196 bytes .../flame_breaker_chestplate_dyed.png | Bin 0 -> 133 bytes .../flame_breaker_chestplate_overlay.png | Bin 0 -> 171 bytes .../flame_breaker/flame_breaker_helmet.png | Bin 0 -> 171 bytes .../flame_breaker_helmet_dyed.png | Bin 0 -> 140 bytes .../flame_breaker_helmet_overlay.png | Bin 0 -> 71 bytes .../flame_breaker/flame_breaker_leggings.png | Bin 0 -> 176 bytes .../flame_breaker_leggings_dyed.png | Bin 0 -> 92 bytes .../flame_breaker_leggings_overlay.png | Bin 0 -> 160 bytes .../armor/flamebreaker/flamebreaker_boots.png | Bin 0 -> 184 bytes .../flamebreaker/flamebreaker_boots_dyed.png | Bin 0 -> 101 bytes .../flamebreaker_boots_overlay.png | Bin 0 -> 170 bytes .../flamebreaker/flamebreaker_chestplate.png | Bin 0 -> 207 bytes .../flamebreaker_chestplate_dyed.png | Bin 0 -> 119 bytes .../flamebreaker_chestplate_overlay.png | Bin 0 -> 186 bytes .../flamebreaker/flamebreaker_helmet.png | Bin 0 -> 173 bytes .../flamebreaker/flamebreaker_helmet_dyed.png | Bin 0 -> 98 bytes .../flamebreaker_helmet_overlay.png | Bin 0 -> 153 bytes .../flamebreaker/flamebreaker_leggings.png | Bin 0 -> 192 bytes .../flamebreaker_leggings_dyed.png | Bin 0 -> 111 bytes .../flamebreaker_leggings_overlay.png | Bin 0 -> 173 bytes .../armor/frozen_blaze/frozen_blaze_boots.png | Bin 0 -> 199 bytes .../frozen_blaze/frozen_blaze_boots_dyed.png | Bin 0 -> 122 bytes .../frozen_blaze_boots_overlay.png | Bin 0 -> 168 bytes .../frozen_blaze/frozen_blaze_chestplate.png | Bin 0 -> 228 bytes .../frozen_blaze_chestplate_dyed.png | Bin 0 -> 156 bytes .../frozen_blaze_chestplate_overlay.png | Bin 0 -> 203 bytes .../frozen_blaze/frozen_blaze_leggings.png | Bin 0 -> 205 bytes .../frozen_blaze_leggings_dyed.png | Bin 0 -> 135 bytes .../frozen_blaze_leggings_overlay.png | Bin 0 -> 184 bytes .../item/armor/glacite/glacite_boots.png | Bin 0 -> 178 bytes .../item/armor/glacite/glacite_boots_dyed.png | Bin 0 -> 124 bytes .../armor/glacite/glacite_boots_overlay.png | Bin 0 -> 147 bytes .../item/armor/glacite/glacite_chestplate.png | Bin 0 -> 211 bytes .../armor/glacite/glacite_chestplate_dyed.png | Bin 0 -> 145 bytes .../glacite/glacite_chestplate_overlay.png | Bin 0 -> 161 bytes .../item/armor/glacite/glacite_helmet.png | Bin 0 -> 169 bytes .../armor/glacite/glacite_helmet_armor.png | Bin 0 -> 231 bytes .../armor/glacite/glacite_helmet_dyed.png | Bin 0 -> 119 bytes .../armor/glacite/glacite_helmet_overlay.png | Bin 0 -> 136 bytes .../item/armor/glacite/glacite_leggings.png | Bin 0 -> 187 bytes .../armor/glacite/glacite_leggings_dyed.png | Bin 0 -> 135 bytes .../glacite/glacite_leggings_overlay.png | Bin 0 -> 144 bytes .../glossy_mineral/glossy_mineral_boots.png | Bin 0 -> 174 bytes .../glossy_mineral_boots_dyed.png | Bin 0 -> 143 bytes .../glossy_mineral_boots_overlay.png | Bin 0 -> 167 bytes .../glossy_mineral_chestplate.png | Bin 0 -> 214 bytes .../glossy_mineral_chestplate_dyed.png | Bin 0 -> 188 bytes .../glossy_mineral_chestplate_overlay.png | Bin 0 -> 222 bytes .../glossy_mineral_leggings.png | Bin 0 -> 180 bytes .../glossy_mineral_leggings_dyed.png | Bin 0 -> 153 bytes .../glossy_mineral_leggings_overlay.png | Bin 0 -> 187 bytes .../armor/goblin/goblin_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/goblin/goblin_boots.png | Bin 0 -> 167 bytes .../item/armor/goblin/goblin_boots_dyed.png | Bin 0 -> 139 bytes .../item/armor/goblin/goblin_chestplate.png | Bin 0 -> 244 bytes .../armor/goblin/goblin_chestplate_dyed.png | Bin 0 -> 159 bytes .../goblin/goblin_chestplate_overlay.png | Bin 0 -> 155 bytes .../item/armor/goblin/goblin_leggings.png | Bin 0 -> 178 bytes .../armor/goblin/goblin_leggings_dyed.png | Bin 0 -> 148 bytes .../armor/golem_armor/golem_armor_boots.png | Bin 0 -> 278 bytes .../golem_armor/golem_armor_boots_dyed.png | Bin 0 -> 139 bytes .../golem_armor/golem_armor_boots_overlay.png | Bin 0 -> 169 bytes .../golem_armor/golem_armor_chestplate.png | Bin 0 -> 355 bytes .../golem_armor_chestplate_dyed.png | Bin 0 -> 168 bytes .../golem_armor_chestplate_overlay.png | Bin 0 -> 190 bytes .../armor/golem_armor/golem_armor_helmet.png | Bin 0 -> 249 bytes .../golem_armor/golem_armor_helmet_dyed.png | Bin 0 -> 120 bytes .../golem_armor_helmet_overlay.png | Bin 0 -> 127 bytes .../golem_armor/golem_armor_leggings.png | Bin 0 -> 289 bytes .../golem_armor/golem_armor_leggings_dyed.png | Bin 0 -> 137 bytes .../golem_armor_leggings_overlay.png | Bin 0 -> 177 bytes .../armor/great_spook/great_spook_boots.png | Bin 0 -> 286 bytes .../great_spook/great_spook_boots.png.mcmeta | 1 + .../great_spook/great_spook_boots_1st.png | Bin 0 -> 286 bytes .../great_spook_boots_1st.png.mcmeta | 1 + .../great_spook/great_spook_chestplate.png | Bin 0 -> 311 bytes .../great_spook_chestplate.png.mcmeta | 1 + .../great_spook_chestplate_1st.png | Bin 0 -> 312 bytes .../great_spook_chestplate_1st.png.mcmeta | 1 + .../armor/great_spook/great_spook_helmet.png | Bin 0 -> 257 bytes .../great_spook/great_spook_helmet.png.mcmeta | 1 + .../great_spook/great_spook_helmet_1st.png | Bin 0 -> 257 bytes .../great_spook_helmet_1st.png.mcmeta | 1 + .../great_spook/great_spook_leggings.png | Bin 0 -> 276 bytes .../great_spook_leggings.png.mcmeta | 1 + .../great_spook/great_spook_leggings_1st.png | Bin 0 -> 273 bytes .../great_spook_leggings_1st.png.mcmeta | 1 + .../item/armor/growth/growth_boots.png | Bin 0 -> 194 bytes .../item/armor/growth/growth_boots_dyed.png | Bin 0 -> 105 bytes .../armor/growth/growth_boots_overlay.png | Bin 0 -> 173 bytes .../item/armor/growth/growth_chestplate.png | Bin 0 -> 239 bytes .../armor/growth/growth_chestplate_dyed.png | Bin 0 -> 116 bytes .../growth/growth_chestplate_overlay.png | Bin 0 -> 216 bytes .../item/armor/growth/growth_helmet.png | Bin 0 -> 203 bytes .../item/armor/growth/growth_helmet_dyed.png | Bin 0 -> 102 bytes .../armor/growth/growth_helmet_overlay.png | Bin 0 -> 173 bytes .../item/armor/growth/growth_leggings.png | Bin 0 -> 226 bytes .../armor/growth/growth_leggings_dyed.png | Bin 0 -> 128 bytes .../armor/growth/growth_leggings_overlay.png | Bin 0 -> 191 bytes .../hardened_diamond_armor_overlay.png | Bin 0 -> 71 bytes .../hardened_diamond_boots.png | Bin 0 -> 178 bytes .../hardened_diamond_boots_dyed.png | Bin 0 -> 141 bytes .../hardened_diamond_chestplate.png | Bin 0 -> 209 bytes .../hardened_diamond_chestplate_dyed.png | Bin 0 -> 188 bytes .../hardened_diamond_helmet.png | Bin 0 -> 170 bytes .../hardened_diamond_helmet_dyed.png | Bin 0 -> 135 bytes .../hardened_diamond_leggings.png | Bin 0 -> 175 bytes .../hardened_diamond_leggings_dyed.png | Bin 0 -> 145 bytes .../item/armor/heat/heat_armor_overlay.png | Bin 0 -> 71 bytes .../textures/item/armor/heat/heat_boots.png | Bin 0 -> 186 bytes .../item/armor/heat/heat_boots_dyed.png | Bin 0 -> 158 bytes .../item/armor/heat/heat_chestplate.png | Bin 0 -> 211 bytes .../item/armor/heat/heat_chestplate_dyed.png | Bin 0 -> 197 bytes .../textures/item/armor/heat/heat_helmet.png | Bin 0 -> 173 bytes .../item/armor/heat/heat_helmet_dyed.png | Bin 0 -> 139 bytes .../item/armor/heat/heat_leggings.png | Bin 0 -> 201 bytes .../item/armor/heat/heat_leggings_dyed.png | Bin 0 -> 166 bytes .../item/armor/heavy/heavy_armor_overlay.png | Bin 0 -> 71 bytes .../textures/item/armor/heavy/heavy_boots.png | Bin 0 -> 168 bytes .../item/armor/heavy/heavy_boots_dyed.png | Bin 0 -> 144 bytes .../item/armor/heavy/heavy_chestplate.png | Bin 0 -> 205 bytes .../armor/heavy/heavy_chestplate_dyed.png | Bin 0 -> 176 bytes .../armor/heavy/heavy_chestplate_overlay.png | Bin 0 -> 94 bytes .../item/armor/heavy/heavy_helmet.png | Bin 0 -> 158 bytes .../item/armor/heavy/heavy_helmet_dyed.png | Bin 0 -> 133 bytes .../item/armor/heavy/heavy_leggings.png | Bin 0 -> 169 bytes .../item/armor/heavy/heavy_leggings_dyed.png | Bin 0 -> 143 bytes .../hollow/burning/burning_hollow_boots.png | Bin 0 -> 214 bytes .../burning/burning_hollow_boots_dyed.png | Bin 0 -> 126 bytes .../burning/burning_hollow_boots_overlay.png | Bin 0 -> 174 bytes .../burning/burning_hollow_chestplate.png | Bin 0 -> 259 bytes .../burning_hollow_chestplate_dyed.png | Bin 0 -> 151 bytes .../burning_hollow_chestplate_overlay.png | Bin 0 -> 206 bytes .../burning/burning_hollow_leggings.png | Bin 0 -> 223 bytes .../burning/burning_hollow_leggings_dyed.png | Bin 0 -> 142 bytes .../burning_hollow_leggings_overlay.png | Bin 0 -> 176 bytes .../armor/hollow/fiery/fiery_hollow_boots.png | Bin 0 -> 206 bytes .../hollow/fiery/fiery_hollow_boots_dyed.png | Bin 0 -> 126 bytes .../fiery/fiery_hollow_boots_overlay.png | Bin 0 -> 168 bytes .../hollow/fiery/fiery_hollow_chestplate.png | Bin 0 -> 244 bytes .../fiery/fiery_hollow_chestplate_dyed.png | Bin 0 -> 154 bytes .../fiery/fiery_hollow_chestplate_overlay.png | Bin 0 -> 178 bytes .../hollow/fiery/fiery_hollow_leggings.png | Bin 0 -> 206 bytes .../fiery/fiery_hollow_leggings_dyed.png | Bin 0 -> 144 bytes .../fiery/fiery_hollow_leggings_overlay.png | Bin 0 -> 152 bytes .../item/armor/hollow/hollow/hollow_boots.png | Bin 0 -> 211 bytes .../armor/hollow/hollow/hollow_boots_dyed.png | Bin 0 -> 105 bytes .../hollow/hollow/hollow_boots_overlay.png | Bin 0 -> 190 bytes .../armor/hollow/hollow/hollow_chestplate.png | Bin 0 -> 265 bytes .../hollow/hollow/hollow_chestplate_dyed.png | Bin 0 -> 121 bytes .../hollow/hollow_chestplate_overlay.png | Bin 0 -> 224 bytes .../armor/hollow/hollow/hollow_leggings.png | Bin 0 -> 220 bytes .../hollow/hollow/hollow_leggings_dyed.png | Bin 0 -> 107 bytes .../hollow/hollow/hollow_leggings_overlay.png | Bin 0 -> 197 bytes .../armor/hollow/hot/hot_hollow_boots.png | Bin 0 -> 226 bytes .../hollow/hot/hot_hollow_boots_dyed.png | Bin 0 -> 118 bytes .../hollow/hot/hot_hollow_boots_overlay.png | Bin 0 -> 192 bytes .../hollow/hot/hot_hollow_chestplate.png | Bin 0 -> 269 bytes .../hollow/hot/hot_hollow_chestplate_dyed.png | Bin 0 -> 137 bytes .../hot/hot_hollow_chestplate_overlay.png | Bin 0 -> 222 bytes .../armor/hollow/hot/hot_hollow_leggings.png | Bin 0 -> 221 bytes .../hollow/hot/hot_hollow_leggings_dyed.png | Bin 0 -> 135 bytes .../hot/hot_hollow_leggings_overlay.png | Bin 0 -> 180 bytes .../hollow/infernal/infernal_hollow_boots.png | Bin 0 -> 209 bytes .../infernal/infernal_hollow_boots_dyed.png | Bin 0 -> 116 bytes .../infernal_hollow_boots_overlay.png | Bin 0 -> 174 bytes .../infernal/infernal_hollow_chestplate.png | Bin 0 -> 247 bytes .../infernal_hollow_chestplate_dyed.png | Bin 0 -> 156 bytes .../infernal_hollow_chestplate_overlay.png | Bin 0 -> 186 bytes .../infernal/infernal_hollow_leggings.png | Bin 0 -> 205 bytes .../infernal_hollow_leggings_dyed.png | Bin 0 -> 124 bytes .../infernal_hollow_leggings_overlay.png | Bin 0 -> 167 bytes .../armor/holy_dragon/holy_dragon_boots.png | Bin 0 -> 189 bytes .../holy_dragon/holy_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../holy_dragon/holy_dragon_boots_overlay.png | Bin 0 -> 150 bytes .../holy_dragon/holy_dragon_chestplate.png | Bin 0 -> 208 bytes .../holy_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../holy_dragon_chestplate_overlay.png | Bin 0 -> 200 bytes .../holy_dragon/holy_dragon_leggings.png | Bin 0 -> 200 bytes .../holy_dragon/holy_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../holy_dragon_leggings_overlay.png | Bin 0 -> 183 bytes .../hunter/bronze/bronze_hunter_boots.png | Bin 0 -> 214 bytes .../bronze/bronze_hunter_boots_dyed.png | Bin 0 -> 150 bytes .../bronze/bronze_hunter_boots_overlay.png | Bin 0 -> 177 bytes .../bronze/bronze_hunter_chestplate.png | Bin 0 -> 246 bytes .../bronze/bronze_hunter_chestplate_dyed.png | Bin 0 -> 164 bytes .../bronze_hunter_chestplate_overlay.png | Bin 0 -> 200 bytes .../hunter/bronze/bronze_hunter_helmet.png | Bin 0 -> 204 bytes .../bronze/bronze_hunter_helmet_dyed.png | Bin 0 -> 152 bytes .../bronze/bronze_hunter_helmet_overlay.png | Bin 0 -> 174 bytes .../hunter/bronze/bronze_hunter_leggings.png | Bin 0 -> 203 bytes .../bronze/bronze_hunter_leggings_dyed.png | Bin 0 -> 93 bytes .../bronze/bronze_hunter_leggings_overlay.png | Bin 0 -> 191 bytes .../hunter/diamond/diamond_hunter_boots.png | Bin 0 -> 214 bytes .../diamond/diamond_hunter_boots_dyed.png | Bin 0 -> 150 bytes .../diamond/diamond_hunter_boots_overlay.png | Bin 0 -> 177 bytes .../diamond/diamond_hunter_chestplate.png | Bin 0 -> 255 bytes .../diamond_hunter_chestplate_dyed.png | Bin 0 -> 164 bytes .../diamond_hunter_chestplate_overlay.png | Bin 0 -> 200 bytes .../hunter/diamond/diamond_hunter_helmet.png | Bin 0 -> 204 bytes .../diamond/diamond_hunter_helmet_dyed.png | Bin 0 -> 152 bytes .../diamond/diamond_hunter_helmet_overlay.png | Bin 0 -> 174 bytes .../diamond/diamond_hunter_leggings.png | Bin 0 -> 203 bytes .../diamond/diamond_hunter_leggings_dyed.png | Bin 0 -> 93 bytes .../diamond_hunter_leggings_overlay.png | Bin 0 -> 187 bytes .../armor/hunter/gold/gold_hunter_boots.png | Bin 0 -> 214 bytes .../hunter/gold/gold_hunter_boots_dyed.png | Bin 0 -> 150 bytes .../hunter/gold/gold_hunter_boots_overlay.png | Bin 0 -> 177 bytes .../hunter/gold/gold_hunter_chestplate.png | Bin 0 -> 255 bytes .../gold/gold_hunter_chestplate_dyed.png | Bin 0 -> 164 bytes .../gold/gold_hunter_chestplate_overlay.png | Bin 0 -> 200 bytes .../armor/hunter/gold/gold_hunter_helmet.png | Bin 0 -> 204 bytes .../hunter/gold/gold_hunter_helmet_dyed.png | Bin 0 -> 152 bytes .../gold/gold_hunter_helmet_overlay.png | Bin 0 -> 174 bytes .../hunter/gold/gold_hunter_leggings.png | Bin 0 -> 203 bytes .../hunter/gold/gold_hunter_leggings_dyed.png | Bin 0 -> 93 bytes .../gold/gold_hunter_leggings_overlay.png | Bin 0 -> 187 bytes .../hunter/silver/silver_hunter_boots.png | Bin 0 -> 214 bytes .../silver/silver_hunter_boots_dyed.png | Bin 0 -> 150 bytes .../silver/silver_hunter_boots_overlay.png | Bin 0 -> 177 bytes .../silver/silver_hunter_chestplate.png | Bin 0 -> 255 bytes .../silver/silver_hunter_chestplate_dyed.png | Bin 0 -> 164 bytes .../silver_hunter_chestplate_overlay.png | Bin 0 -> 200 bytes .../hunter/silver/silver_hunter_helmet.png | Bin 0 -> 204 bytes .../silver/silver_hunter_helmet_dyed.png | Bin 0 -> 152 bytes .../silver/silver_hunter_helmet_overlay.png | Bin 0 -> 158 bytes .../hunter/silver/silver_hunter_leggings.png | Bin 0 -> 203 bytes .../silver/silver_hunter_leggings_dyed.png | Bin 0 -> 93 bytes .../silver/silver_hunter_leggings_overlay.png | Bin 0 -> 187 bytes .../kuudra_follower/kuudra_follower_boots.png | Bin 0 -> 188 bytes .../kuudra_follower_boots_dyed.png | Bin 0 -> 131 bytes .../kuudra_follower_boots_overlay.png | Bin 0 -> 122 bytes .../kuudra_follower_chestplate.png | Bin 0 -> 224 bytes .../kuudra_follower_chestplate_dyed.png | Bin 0 -> 158 bytes .../kuudra_follower_chestplate_overlay.png | Bin 0 -> 159 bytes .../kuudra_follower_leggings.png | Bin 0 -> 186 bytes .../kuudra_follower_leggings_dyed.png | Bin 0 -> 148 bytes .../kuudra_follower_leggings_overlay.png | Bin 0 -> 107 bytes .../armor/lapis_armor/lapis_armor_boots.png | Bin 0 -> 173 bytes .../lapis_armor/lapis_armor_boots_dyed.png | Bin 0 -> 140 bytes .../lapis_armor/lapis_armor_chestplate.png | Bin 0 -> 190 bytes .../lapis_armor_chestplate_dyed.png | Bin 0 -> 165 bytes .../armor/lapis_armor/lapis_armor_helmet.png | Bin 0 -> 158 bytes .../lapis_armor/lapis_armor_helmet_armor.png | Bin 0 -> 226 bytes .../lapis_armor/lapis_armor_helmet_dyed.png | Bin 0 -> 133 bytes .../lapis_armor/lapis_armor_leggings.png | Bin 0 -> 174 bytes .../lapis_armor/lapis_armor_leggings_dyed.png | Bin 0 -> 143 bytes .../armor/lapis_armor/lapis_armor_overlay.png | Bin 0 -> 71 bytes .../lava_sea_creature/flaming_chestplate.png | Bin 0 -> 201 bytes .../flaming_chestplate_dyed.png | Bin 0 -> 131 bytes .../flaming_chestplate_overlay.png | Bin 0 -> 172 bytes .../lava_sea_creature/moogma_leggings.png | Bin 0 -> 224 bytes .../moogma_leggings_dyed.png | Bin 0 -> 124 bytes .../moogma_leggings_overlay.png | Bin 0 -> 190 bytes .../armor/lava_sea_creature/slug_boots.png | Bin 0 -> 208 bytes .../lava_sea_creature/slug_boots_dyed.png | Bin 0 -> 121 bytes .../lava_sea_creature/slug_boots_overlay.png | Bin 0 -> 151 bytes .../armor/leaflet/leaflet_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/leaflet/leaflet_boots.png | Bin 0 -> 183 bytes .../item/armor/leaflet/leaflet_boots_dyed.png | Bin 0 -> 183 bytes .../item/armor/leaflet/leaflet_chestplate.png | Bin 0 -> 193 bytes .../armor/leaflet/leaflet_chestplate_dyed.png | Bin 0 -> 193 bytes .../item/armor/leaflet/leaflet_helmet.png | Bin 0 -> 166 bytes .../armor/leaflet/leaflet_helmet_armor.png | Bin 0 -> 198 bytes .../armor/leaflet/leaflet_helmet_dyed.png | Bin 0 -> 172 bytes .../item/armor/leaflet/leaflet_leggings.png | Bin 0 -> 179 bytes .../armor/leaflet/leaflet_leggings_dyed.png | Bin 0 -> 179 bytes .../armor/magma_lord/magma_lord_boots.png | Bin 0 -> 189 bytes .../magma_lord/magma_lord_boots_dyed.png | Bin 0 -> 145 bytes .../magma_lord/magma_lord_boots_overlay.png | Bin 0 -> 111 bytes .../magma_lord/magma_lord_chestplate.png | Bin 0 -> 232 bytes .../magma_lord/magma_lord_chestplate_dyed.png | Bin 0 -> 175 bytes .../magma_lord_chestplate_overlay.png | Bin 0 -> 170 bytes .../armor/magma_lord/magma_lord_leggings.png | Bin 0 -> 205 bytes .../magma_lord/magma_lord_leggings_dyed.png | Bin 0 -> 145 bytes .../magma_lord_leggings_overlay.png | Bin 0 -> 144 bytes .../item/armor/masks/armadillo_mask.png | Bin 0 -> 245 bytes .../textures/item/armor/masks/bee_mask.png | Bin 0 -> 229 bytes .../textures/item/armor/masks/bonzo_mask.png | Bin 0 -> 301 bytes .../item/armor/masks/detransfigured_mask.png | Bin 0 -> 243 bytes .../item/armor/masks/enderman_mask.png | Bin 0 -> 158 bytes .../textures/item/armor/masks/frog_mask.png | Bin 0 -> 240 bytes .../textures/item/armor/masks/happy_mask.png | Bin 0 -> 184 bytes .../item/armor/masks/kalhuiki_mask.png | Bin 0 -> 264 bytes .../item/armor/masks/not_deadgehog_mask.png | Bin 0 -> 219 bytes .../textures/item/armor/masks/parrot_mask.png | Bin 0 -> 241 bytes .../textures/item/armor/masks/pig_mask.png | Bin 0 -> 199 bytes .../textures/item/armor/masks/salmon_mask.png | Bin 0 -> 280 bytes .../item/armor/masks/snowman_mask.png | Bin 0 -> 217 bytes .../textures/item/armor/masks/spirit_mask.png | Bin 0 -> 237 bytes .../item/armor/masks/starred_bonzo_mask.png | Bin 0 -> 301 bytes .../item/armor/masks/starred_spirit_mask.png | Bin 0 -> 237 bytes .../item/armor/masks/vampire_mask.png | Bin 0 -> 205 bytes .../item/armor/masks/vampire_witch_mask.png | Bin 0 -> 295 bytes .../textures/item/armor/masks/witch_mask.png | Bin 0 -> 275 bytes .../textures/item/armor/masks/zombie_mask.png | Bin 0 -> 258 bytes .../item/armor/mastiff/mastiff_boots.png | Bin 0 -> 192 bytes .../item/armor/mastiff/mastiff_boots_dyed.png | Bin 0 -> 105 bytes .../armor/mastiff/mastiff_boots_overlay.png | Bin 0 -> 161 bytes .../item/armor/mastiff/mastiff_chestplate.png | Bin 0 -> 235 bytes .../armor/mastiff/mastiff_chestplate_dyed.png | Bin 0 -> 132 bytes .../mastiff/mastiff_chestplate_overlay.png | Bin 0 -> 177 bytes .../item/armor/mastiff/mastiff_leggings.png | Bin 0 -> 192 bytes .../armor/mastiff/mastiff_leggings_dyed.png | Bin 0 -> 104 bytes .../mastiff/mastiff_leggings_overlay.png | Bin 0 -> 150 bytes .../textures/item/armor/melon/melon_boots.png | Bin 0 -> 182 bytes .../item/armor/melon/melon_boots_dyed.png | Bin 0 -> 124 bytes .../item/armor/melon/melon_boots_overlay.png | Bin 0 -> 130 bytes .../item/armor/melon/melon_chestplate.png | Bin 0 -> 209 bytes .../armor/melon/melon_chestplate_dyed.png | Bin 0 -> 168 bytes .../armor/melon/melon_chestplate_overlay.png | Bin 0 -> 103 bytes .../item/armor/melon/melon_helmet.png | Bin 0 -> 171 bytes .../item/armor/melon/melon_helmet_armor.png | Bin 0 -> 265 bytes .../item/armor/melon/melon_helmet_dyed.png | Bin 0 -> 125 bytes .../item/armor/melon/melon_helmet_overlay.png | Bin 0 -> 105 bytes .../item/armor/melon/melon_leggings.png | Bin 0 -> 183 bytes .../item/armor/melon/melon_leggings_dyed.png | Bin 0 -> 139 bytes .../armor/melon/melon_leggings_overlay.png | Bin 0 -> 93 bytes .../item/armor/mercenary/mercenary_boots.png | Bin 0 -> 203 bytes .../armor/mercenary/mercenary_boots_dyed.png | Bin 0 -> 114 bytes .../mercenary/mercenary_boots_overlay.png | Bin 0 -> 130 bytes .../armor/mercenary/mercenary_chestplate.png | Bin 0 -> 257 bytes .../mercenary/mercenary_chestplate_dyed.png | Bin 0 -> 104 bytes .../mercenary_chestplate_overlay.png | Bin 0 -> 194 bytes .../item/armor/mercenary/mercenary_helmet.png | Bin 0 -> 140 bytes .../armor/mercenary/mercenary_helmet_dyed.png | Bin 0 -> 92 bytes .../mercenary/mercenary_helmet_overlay.png | Bin 0 -> 140 bytes .../armor/mercenary/mercenary_leggings.png | Bin 0 -> 161 bytes .../mercenary/mercenary_leggings_dyed.png | Bin 0 -> 125 bytes .../mercenary/mercenary_leggings_overlay.png | Bin 0 -> 116 bytes .../armor/miner_outfit/miner_outfit_boots.png | Bin 0 -> 160 bytes .../miner_outfit/miner_outfit_boots_dyed.png | Bin 0 -> 160 bytes .../miner_outfit_boots_overlay.png | Bin 0 -> 160 bytes .../miner_outfit/miner_outfit_chestplate.png | Bin 0 -> 227 bytes .../miner_outfit_chestplate_dyed.png | Bin 0 -> 119 bytes .../miner_outfit_chestplate_overlay.png | Bin 0 -> 173 bytes .../miner_outfit/miner_outfit_helmet.png | Bin 0 -> 141 bytes .../miner_outfit/miner_outfit_helmet_dyed.png | Bin 0 -> 141 bytes .../miner_outfit_helmet_overlay.png | Bin 0 -> 141 bytes .../miner_outfit/miner_outfit_leggings.png | Bin 0 -> 209 bytes .../miner_outfit_leggings_dyed.png | Bin 0 -> 114 bytes .../miner_outfit_leggings_overlay.png | Bin 0 -> 158 bytes .../item/armor/mineral/mineral_boots.png | Bin 0 -> 175 bytes .../item/armor/mineral/mineral_boots_dyed.png | Bin 0 -> 143 bytes .../armor/mineral/mineral_boots_overlay.png | Bin 0 -> 166 bytes .../item/armor/mineral/mineral_chestplate.png | Bin 0 -> 214 bytes .../armor/mineral/mineral_chestplate_dyed.png | Bin 0 -> 188 bytes .../mineral/mineral_chestplate_overlay.png | Bin 0 -> 222 bytes .../item/armor/mineral/mineral_leggings.png | Bin 0 -> 181 bytes .../armor/mineral/mineral_leggings_dyed.png | Bin 0 -> 153 bytes .../mineral/mineral_leggings_overlay.png | Bin 0 -> 188 bytes .../item/armor/misc/big_spring_boots.png | Bin 0 -> 177 bytes .../item/armor/misc/big_spring_boots_dyed.png | Bin 0 -> 133 bytes .../armor/misc/big_spring_boots_overlay.png | Bin 0 -> 130 bytes .../item/armor/misc/bigger_spring_boots.png | Bin 0 -> 177 bytes .../armor/misc/bigger_spring_boots_dyed.png | Bin 0 -> 133 bytes .../misc/bigger_spring_boots_overlay.png | Bin 0 -> 130 bytes .../item/armor/misc/crown_of_greed.png | Bin 0 -> 190 bytes .../item/armor/misc/crown_of_greed_dyed.png | Bin 0 -> 81 bytes .../armor/misc/crown_of_greed_overlay.png | Bin 0 -> 176 bytes .../item/armor/misc/dctr_space_helm.png | Bin 0 -> 332 bytes .../armor/misc/dctr_space_helm.png.mcmeta | 1 + .../textures/item/armor/misc/farmer_boots.png | Bin 0 -> 221 bytes .../item/armor/misc/farmer_boots_overlay.png | Bin 0 -> 167 bytes .../textures/item/armor/misc/ghost_boots.png | Bin 0 -> 135 bytes .../item/armor/misc/ghost_boots_overlay.png | Bin 0 -> 71 bytes .../item/armor/misc/metal_chestplate.png | Bin 0 -> 153 bytes .../item/armor/misc/metal_chestplate_dyed.png | Bin 0 -> 153 bytes .../armor/misc/metal_chestplate_overlay.png | Bin 0 -> 155 bytes .../textures/item/armor/misc/mithril_coat.png | Bin 0 -> 191 bytes .../item/armor/misc/mithril_coat_dyed.png | Bin 0 -> 118 bytes .../item/armor/misc/mithril_coat_overlay.png | Bin 0 -> 172 bytes .../textures/item/armor/misc/music_pants.png | Bin 0 -> 113 bytes .../item/armor/misc/music_pants_overlay.png | Bin 0 -> 161 bytes .../textures/item/armor/misc/party_hat.png | Bin 0 -> 201 bytes .../item/armor/misc/party_hat_dyed.png | Bin 0 -> 170 bytes .../item/armor/misc/party_hat_overlay.png | Bin 0 -> 111 bytes .../textures/item/armor/misc/potato_crown.png | Bin 0 -> 197 bytes .../item/armor/misc/potato_crown_dyed.png | Bin 0 -> 125 bytes .../item/armor/misc/potato_crown_overlay.png | Bin 0 -> 135 bytes .../item/armor/misc/ranchers_boots.png | Bin 0 -> 153 bytes .../armor/misc/ranchers_boots_overlay.png | Bin 0 -> 145 bytes .../item/armor/misc/sea_lantern_hat.png | Bin 0 -> 165 bytes .../item/armor/misc/sea_lantern_hat_armor.png | Bin 0 -> 219 bytes .../armor/misc/shimmersparkle_chestplate.png | Bin 0 -> 210 bytes .../misc/shimmersparkle_chestplate_dyed.png | Bin 0 -> 174 bytes .../shimmersparkle_chestplate_overlay.png | Bin 0 -> 118 bytes .../textures/item/armor/misc/spring_boots.png | Bin 0 -> 150 bytes .../item/armor/misc/spring_boots_dyed.png | Bin 0 -> 133 bytes .../item/armor/misc/spring_boots_overlay.png | Bin 0 -> 116 bytes .../textures/item/armor/misc/squid_boots.png | Bin 0 -> 184 bytes .../item/armor/misc/squid_boots_dyed.png | Bin 0 -> 135 bytes .../item/armor/misc/squid_boots_overlay.png | Bin 0 -> 97 bytes .../item/armor/misc/starred_thorns_boots.png | Bin 0 -> 197 bytes .../armor/misc/starred_thorns_boots_dyed.png | Bin 0 -> 109 bytes .../misc/starred_thorns_boots_overlay.png | Bin 0 -> 173 bytes .../item/armor/misc/steel_chestplate.png | Bin 0 -> 156 bytes .../item/armor/misc/steel_chestplate_dyed.png | Bin 0 -> 153 bytes .../armor/misc/steel_chestplate_overlay.png | Bin 0 -> 154 bytes .../item/armor/misc/stone_chestplate.png | Bin 0 -> 193 bytes .../item/armor/misc/stone_chestplate_dyed.png | Bin 0 -> 193 bytes .../armor/misc/stone_chestplate_overlay.png | Bin 0 -> 71 bytes .../textures/item/armor/misc/thorns_boots.png | Bin 0 -> 194 bytes .../item/armor/misc/thorns_boots_dyed.png | Bin 0 -> 109 bytes .../item/armor/misc/thorns_boots_overlay.png | Bin 0 -> 170 bytes .../armor/mobs/emperor/emperor_leggings.png | Bin 0 -> 220 bytes .../item/armor/mobs/emperor/emperor_robes.png | Bin 0 -> 243 bytes .../item/armor/mobs/emperor/emperor_shoes.png | Bin 0 -> 219 bytes .../item/armor/mobs/hydra1/hydra1_boots.png | Bin 0 -> 165 bytes .../armor/mobs/hydra1/hydra1_chestplate.png | Bin 0 -> 177 bytes .../armor/mobs/hydra1/hydra1_leggings.png | Bin 0 -> 160 bytes .../mobs/sea_walker/sea_walker_boots.png | Bin 0 -> 165 bytes .../mobs/sea_walker/sea_walker_chestplate.png | Bin 0 -> 202 bytes .../mobs/sea_walker/sea_walker_leggings.png | Bin 0 -> 177 bytes .../item/armor/mobs/watcher/watcher_boots.png | Bin 0 -> 169 bytes .../armor/mobs/watcher/watcher_chestplate.png | Bin 0 -> 224 bytes .../item/armor/mobs/watcher/watcher_legs.png | Bin 0 -> 184 bytes .../armor/monster_hunter/creeper_leggings.png | Bin 0 -> 318 bytes .../monster_hunter/creeper_leggings_dyed.png | Bin 0 -> 213 bytes .../creeper_leggings_overlay.png | Bin 0 -> 71 bytes .../monster_hunter/guardian_chestplate.png | Bin 0 -> 273 bytes .../guardian_chestplate_dyed.png | Bin 0 -> 155 bytes .../guardian_chestplate_overlay.png | Bin 0 -> 204 bytes .../armor/monster_hunter/skeleton_helmet.png | Bin 0 -> 193 bytes .../monster_hunter/skeleton_helmet_dyed.png | Bin 0 -> 193 bytes .../skeleton_helmet_overlay.png | Bin 0 -> 71 bytes .../armor/monster_hunter/spider_boots.png | Bin 0 -> 185 bytes .../monster_hunter/spider_boots_dyed.png | Bin 0 -> 132 bytes .../monster_hunter/spider_boots_overlay.png | Bin 0 -> 126 bytes .../item/armor/mushroom/mushroom_boots.png | Bin 0 -> 165 bytes .../armor/mushroom/mushroom_boots_dyed.png | Bin 0 -> 138 bytes .../armor/mushroom/mushroom_boots_overlay.png | Bin 0 -> 71 bytes .../armor/mushroom/mushroom_chestplate.png | Bin 0 -> 194 bytes .../mushroom/mushroom_chestplate_dyed.png | Bin 0 -> 171 bytes .../mushroom/mushroom_chestplate_overlay.png | Bin 0 -> 95 bytes .../item/armor/mushroom/mushroom_helmet.png | Bin 0 -> 167 bytes .../armor/mushroom/mushroom_helmet_dyed.png | Bin 0 -> 137 bytes .../mushroom/mushroom_helmet_overlay.png | Bin 0 -> 83 bytes .../item/armor/mushroom/mushroom_leggings.png | Bin 0 -> 169 bytes .../armor/mushroom/mushroom_leggings_dyed.png | Bin 0 -> 139 bytes .../mushroom/mushroom_leggings_overlay.png | Bin 0 -> 71 bytes .../necromancer_lord_boots.png | Bin 0 -> 188 bytes .../necromancer_lord_boots_dyed.png | Bin 0 -> 112 bytes .../necromancer_lord_boots_overlay.png | Bin 0 -> 138 bytes .../necromancer_lord_chestplate.png | Bin 0 -> 228 bytes .../necromancer_lord_chestplate_dyed.png | Bin 0 -> 116 bytes .../necromancer_lord_chestplate_overlay.png | Bin 0 -> 201 bytes .../necromancer_lord_leggings.png | Bin 0 -> 186 bytes .../necromancer_lord_leggings_dyed.png | Bin 0 -> 100 bytes .../necromancer_lord_leggings_overlay.png | Bin 0 -> 162 bytes .../item/armor/null/null_armor_overlay.png | Bin 0 -> 71 bytes .../textures/item/armor/null/null_boots.png | Bin 0 -> 125 bytes .../item/armor/null/null_boots_dyed.png | Bin 0 -> 116 bytes .../item/armor/null/null_chestplate.png | Bin 0 -> 131 bytes .../item/armor/null/null_chestplate_dyed.png | Bin 0 -> 119 bytes .../textures/item/armor/null/null_helmet.png | Bin 0 -> 139 bytes .../item/armor/null/null_helmet_dyed.png | Bin 0 -> 133 bytes .../item/armor/null/null_leggings.png | Bin 0 -> 113 bytes .../item/armor/null/null_leggings_dyed.png | Bin 0 -> 105 bytes .../armor/nutcracker/nutcracker_boots.png | Bin 0 -> 183 bytes .../nutcracker/nutcracker_boots_dyed.png | Bin 0 -> 150 bytes .../nutcracker/nutcracker_boots_overlay.png | Bin 0 -> 130 bytes .../nutcracker/nutcracker_chestplate.png | Bin 0 -> 227 bytes .../nutcracker/nutcracker_chestplate_dyed.png | Bin 0 -> 131 bytes .../nutcracker_chestplate_overlay.png | Bin 0 -> 193 bytes .../armor/nutcracker/nutcracker_leggings.png | Bin 0 -> 205 bytes .../nutcracker/nutcracker_leggings_dyed.png | Bin 0 -> 112 bytes .../nutcracker_leggings_overlay.png | Bin 0 -> 161 bytes .../armor/obsidian/obsidian_chestplate.png | Bin 0 -> 171 bytes .../obsidian/obsidian_chestplate_dyed.png | Bin 0 -> 151 bytes .../obsidian/obsidian_chestplate_overlay.png | Bin 0 -> 71 bytes .../armor/of_the_pack/boots_of_the_pack.png | Bin 0 -> 222 bytes .../of_the_pack/boots_of_the_pack_dyed.png | Bin 0 -> 134 bytes .../of_the_pack/boots_of_the_pack_overlay.png | Bin 0 -> 166 bytes .../of_the_pack/chestplate_of_the_pack.png | Bin 0 -> 238 bytes .../chestplate_of_the_pack_dyed.png | Bin 0 -> 137 bytes .../chestplate_of_the_pack_overlay.png | Bin 0 -> 180 bytes .../armor/of_the_pack/helmet_of_the_pack.png | Bin 0 -> 221 bytes .../of_the_pack/helmet_of_the_pack_dyed.png | Bin 0 -> 118 bytes .../helmet_of_the_pack_overlay.png | Bin 0 -> 166 bytes .../of_the_pack/leggings_of_the_pack.png | Bin 0 -> 204 bytes .../of_the_pack/leggings_of_the_pack_dyed.png | Bin 0 -> 128 bytes .../leggings_of_the_pack_overlay.png | Bin 0 -> 145 bytes .../armor/old_dragon/old_dragon_boots.png | Bin 0 -> 189 bytes .../old_dragon/old_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../old_dragon/old_dragon_boots_overlay.png | Bin 0 -> 151 bytes .../old_dragon/old_dragon_chestplate.png | Bin 0 -> 208 bytes .../old_dragon/old_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../old_dragon_chestplate_overlay.png | Bin 0 -> 200 bytes .../armor/old_dragon/old_dragon_leggings.png | Bin 0 -> 200 bytes .../old_dragon/old_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../old_dragon_leggings_overlay.png | Bin 0 -> 183 bytes .../item/armor/park/charlie_trousers.png | Bin 0 -> 206 bytes .../item/armor/park/charlie_trousers_dyed.png | Bin 0 -> 124 bytes .../armor/park/charlie_trousers_overlay.png | Bin 0 -> 167 bytes .../textures/item/armor/park/kelly_tshirt.png | Bin 0 -> 215 bytes .../item/armor/park/kelly_tshirt_dyed.png | Bin 0 -> 170 bytes .../item/armor/park/kelly_tshirt_overlay.png | Bin 0 -> 141 bytes .../textures/item/armor/park/melody_shoes.png | Bin 0 -> 182 bytes .../item/armor/park/melody_shoes_dyed.png | Bin 0 -> 146 bytes .../item/armor/park/melody_shoes_overlay.png | Bin 0 -> 83 bytes .../perfect_1/perfect_armor_1_overlay.png | Bin 0 -> 92 bytes .../perfect/perfect_1/perfect_boots_1.png | Bin 0 -> 190 bytes .../perfect_1/perfect_boots_1_dyed.png | Bin 0 -> 148 bytes .../perfect_1/perfect_chestplate_1.png | Bin 0 -> 213 bytes .../perfect_1/perfect_chestplate_1_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_1/perfect_helmet_1.png | Bin 0 -> 184 bytes .../perfect_1/perfect_helmet_1_dyed.png | Bin 0 -> 139 bytes .../perfect/perfect_1/perfect_leggings_1.png | Bin 0 -> 191 bytes .../perfect_1/perfect_leggings_1_dyed.png | Bin 0 -> 149 bytes .../perfect_10/perfect_armor_10_overlay.png | Bin 0 -> 106 bytes .../perfect/perfect_10/perfect_boots_10.png | Bin 0 -> 200 bytes .../perfect_10/perfect_boots_10_dyed.png | Bin 0 -> 147 bytes .../perfect_10/perfect_chestplate_10.png | Bin 0 -> 225 bytes .../perfect_10/perfect_chestplate_10_dyed.png | Bin 0 -> 174 bytes .../perfect/perfect_10/perfect_helmet_10.png | Bin 0 -> 192 bytes .../perfect_10/perfect_helmet_10_dyed.png | Bin 0 -> 140 bytes .../perfect_10/perfect_leggings_10.png | Bin 0 -> 194 bytes .../perfect_10/perfect_leggings_10_dyed.png | Bin 0 -> 148 bytes .../perfect_11/perfect_armor_11_overlay.png | Bin 0 -> 98 bytes .../perfect/perfect_11/perfect_boots_11.png | Bin 0 -> 195 bytes .../perfect_11/perfect_boots_11_dyed.png | Bin 0 -> 148 bytes .../perfect_11/perfect_chestplate_11.png | Bin 0 -> 220 bytes .../perfect_11/perfect_chestplate_11_dyed.png | Bin 0 -> 183 bytes .../perfect/perfect_11/perfect_helmet_11.png | Bin 0 -> 190 bytes .../perfect_11/perfect_helmet_11_dyed.png | Bin 0 -> 140 bytes .../perfect_11/perfect_leggings_11.png | Bin 0 -> 194 bytes .../perfect_11/perfect_leggings_11_dyed.png | Bin 0 -> 155 bytes .../perfect_12/perfect_armor_12_overlay.png | Bin 0 -> 103 bytes .../perfect/perfect_12/perfect_boots_12.png | Bin 0 -> 196 bytes .../perfect_12/perfect_boots_12_dyed.png | Bin 0 -> 146 bytes .../perfect_12/perfect_chestplate_12.png | Bin 0 -> 221 bytes .../perfect_12/perfect_chestplate_12_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_12/perfect_helmet_12.png | Bin 0 -> 191 bytes .../perfect_12/perfect_helmet_12_dyed.png | Bin 0 -> 140 bytes .../perfect_12/perfect_leggings_12.png | Bin 0 -> 195 bytes .../perfect_12/perfect_leggings_12_dyed.png | Bin 0 -> 151 bytes .../perfect_13/perfect_armor_13_overlay.png | Bin 0 -> 107 bytes .../perfect/perfect_13/perfect_boots_13.png | Bin 0 -> 197 bytes .../perfect_13/perfect_boots_13_dyed.png | Bin 0 -> 146 bytes .../perfect_13/perfect_chestplate_13.png | Bin 0 -> 219 bytes .../perfect_13/perfect_chestplate_13_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_13/perfect_helmet_13.png | Bin 0 -> 192 bytes .../perfect_13/perfect_helmet_13_dyed.png | Bin 0 -> 140 bytes .../perfect_13/perfect_leggings_13.png | Bin 0 -> 195 bytes .../perfect_13/perfect_leggings_13_dyed.png | Bin 0 -> 152 bytes .../perfect_2/perfect_armor_2_overlay.png | Bin 0 -> 92 bytes .../perfect/perfect_2/perfect_boots_2.png | Bin 0 -> 195 bytes .../perfect_2/perfect_boots_2_dyed.png | Bin 0 -> 144 bytes .../perfect_2/perfect_chestplate_2.png | Bin 0 -> 216 bytes .../perfect_2/perfect_chestplate_2_dyed.png | Bin 0 -> 179 bytes .../perfect/perfect_2/perfect_helmet_2.png | Bin 0 -> 187 bytes .../perfect_2/perfect_helmet_2_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_2/perfect_leggings_2.png | Bin 0 -> 190 bytes .../perfect_2/perfect_leggings_2_dyed.png | Bin 0 -> 148 bytes .../perfect_3/perfect_armor_3_overlay.png | Bin 0 -> 88 bytes .../perfect/perfect_3/perfect_boots_3.png | Bin 0 -> 185 bytes .../perfect_3/perfect_boots_3_dyed.png | Bin 0 -> 144 bytes .../perfect_3/perfect_chestplate_3.png | Bin 0 -> 218 bytes .../perfect_3/perfect_chestplate_3_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_3/perfect_helmet_3.png | Bin 0 -> 187 bytes .../perfect_3/perfect_helmet_3_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_3/perfect_leggings_3.png | Bin 0 -> 199 bytes .../perfect_3/perfect_leggings_3_dyed.png | Bin 0 -> 149 bytes .../perfect_4/perfect_armor_4_overlay.png | Bin 0 -> 96 bytes .../perfect/perfect_4/perfect_boots_4.png | Bin 0 -> 184 bytes .../perfect_4/perfect_boots_4_dyed.png | Bin 0 -> 141 bytes .../perfect_4/perfect_chestplate_4.png | Bin 0 -> 215 bytes .../perfect_4/perfect_chestplate_4_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_4/perfect_helmet_4.png | Bin 0 -> 183 bytes .../perfect_4/perfect_helmet_4_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_4/perfect_leggings_4.png | Bin 0 -> 188 bytes .../perfect_4/perfect_leggings_4_dyed.png | Bin 0 -> 149 bytes .../perfect_5/perfect_armor_5_overlay.png | Bin 0 -> 92 bytes .../perfect/perfect_5/perfect_boots_5.png | Bin 0 -> 197 bytes .../perfect_5/perfect_boots_5_dyed.png | Bin 0 -> 144 bytes .../perfect_5/perfect_chestplate_5.png | Bin 0 -> 213 bytes .../perfect_5/perfect_chestplate_5_dyed.png | Bin 0 -> 179 bytes .../perfect/perfect_5/perfect_helmet_5.png | Bin 0 -> 186 bytes .../perfect_5/perfect_helmet_5_dyed.png | Bin 0 -> 138 bytes .../perfect/perfect_5/perfect_leggings_5.png | Bin 0 -> 191 bytes .../perfect_5/perfect_leggings_5_dyed.png | Bin 0 -> 151 bytes .../perfect_6/perfect_armor_6_overlay.png | Bin 0 -> 92 bytes .../perfect/perfect_6/perfect_boots_6.png | Bin 0 -> 193 bytes .../perfect_6/perfect_boots_6_dyed.png | Bin 0 -> 144 bytes .../perfect_6/perfect_chestplate_6.png | Bin 0 -> 215 bytes .../perfect_6/perfect_chestplate_6_dyed.png | Bin 0 -> 179 bytes .../perfect/perfect_6/perfect_helmet_6.png | Bin 0 -> 187 bytes .../perfect_6/perfect_helmet_6_dyed.png | Bin 0 -> 138 bytes .../perfect/perfect_6/perfect_leggings_6.png | Bin 0 -> 191 bytes .../perfect_6/perfect_leggings_6_dyed.png | Bin 0 -> 151 bytes .../perfect_7/perfect_armor_7_overlay.png | Bin 0 -> 90 bytes .../perfect/perfect_7/perfect_boots_7.png | Bin 0 -> 189 bytes .../perfect_7/perfect_boots_7_dyed.png | Bin 0 -> 147 bytes .../perfect_7/perfect_chestplate_7.png | Bin 0 -> 212 bytes .../perfect_7/perfect_chestplate_7_dyed.png | Bin 0 -> 177 bytes .../perfect/perfect_7/perfect_helmet_7.png | Bin 0 -> 183 bytes .../perfect_7/perfect_helmet_7_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_7/perfect_leggings_7.png | Bin 0 -> 189 bytes .../perfect_7/perfect_leggings_7_dyed.png | Bin 0 -> 149 bytes .../perfect_8/perfect_armor_8_overlay.png | Bin 0 -> 89 bytes .../perfect/perfect_8/perfect_boots_8.png | Bin 0 -> 190 bytes .../perfect_8/perfect_boots_8_dyed.png | Bin 0 -> 141 bytes .../perfect_8/perfect_chestplate_8.png | Bin 0 -> 216 bytes .../perfect_8/perfect_chestplate_8_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_8/perfect_helmet_8.png | Bin 0 -> 187 bytes .../perfect_8/perfect_helmet_8_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_8/perfect_leggings_8.png | Bin 0 -> 189 bytes .../perfect_8/perfect_leggings_8_dyed.png | Bin 0 -> 149 bytes .../perfect_9/perfect_armor_9_overlay.png | Bin 0 -> 93 bytes .../perfect/perfect_9/perfect_boots_9.png | Bin 0 -> 198 bytes .../perfect_9/perfect_boots_9_dyed.png | Bin 0 -> 141 bytes .../perfect_9/perfect_chestplate_9.png | Bin 0 -> 216 bytes .../perfect_9/perfect_chestplate_9_dyed.png | Bin 0 -> 178 bytes .../perfect/perfect_9/perfect_helmet_9.png | Bin 0 -> 186 bytes .../perfect_9/perfect_helmet_9_dyed.png | Bin 0 -> 137 bytes .../perfect/perfect_9/perfect_leggings_9.png | Bin 0 -> 190 bytes .../perfect_9/perfect_leggings_9_dyed.png | Bin 0 -> 149 bytes .../armor/power_wither/power_wither_boots.png | Bin 0 -> 201 bytes .../power_wither/power_wither_boots_dyed.png | Bin 0 -> 126 bytes .../power_wither_boots_overlay.png | Bin 0 -> 165 bytes .../power_wither/power_wither_chestplate.png | Bin 0 -> 232 bytes .../power_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../power_wither_chestplate_overlay.png | Bin 0 -> 183 bytes .../power_wither/power_wither_leggings.png | Bin 0 -> 199 bytes .../power_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../power_wither_leggings_overlay.png | Bin 0 -> 157 bytes .../shiny/shiny_power_wither_boots.png | Bin 0 -> 209 bytes .../shiny/shiny_power_wither_boots_dyed.png | Bin 0 -> 126 bytes .../shiny_power_wither_boots_overlay.png | Bin 0 -> 172 bytes .../shiny/shiny_power_wither_chestplate.png | Bin 0 -> 236 bytes .../shiny_power_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../shiny_power_wither_chestplate_overlay.png | Bin 0 -> 186 bytes .../shiny/shiny_power_wither_leggings.png | Bin 0 -> 203 bytes .../shiny_power_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../shiny_power_wither_leggings_overlay.png | Bin 0 -> 160 bytes .../primal_dragon/primal_dragon_boots.png | Bin 0 -> 197 bytes .../primal_dragon_boots_dyed.png | Bin 0 -> 121 bytes .../primal_dragon_boots_overlay.png | Bin 0 -> 157 bytes .../primal_dragon_chestplate.png | Bin 0 -> 219 bytes .../primal_dragon_chestplate_dyed.png | Bin 0 -> 130 bytes .../primal_dragon_chestplate_overlay.png | Bin 0 -> 191 bytes .../primal_dragon/primal_dragon_leggings.png | Bin 0 -> 202 bytes .../primal_dragon_leggings_dyed.png | Bin 0 -> 128 bytes .../primal_dragon_leggings_overlay.png | Bin 0 -> 145 bytes .../armor/primordial/primordial_boots.png | Bin 0 -> 212 bytes .../primordial/primordial_boots_dyed.png | Bin 0 -> 102 bytes .../primordial/primordial_boots_overlay.png | Bin 0 -> 194 bytes .../primordial/primordial_chestplate.png | Bin 0 -> 255 bytes .../primordial/primordial_chestplate_dyed.png | Bin 0 -> 133 bytes .../primordial_chestplate_overlay.png | Bin 0 -> 209 bytes .../armor/primordial/primordial_leggings.png | Bin 0 -> 221 bytes .../primordial/primordial_leggings_dyed.png | Bin 0 -> 138 bytes .../primordial_leggings_overlay.png | Bin 0 -> 170 bytes .../protector_dragon_boots.png | Bin 0 -> 189 bytes .../protector_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../protector_dragon_boots_overlay.png | Bin 0 -> 131 bytes .../protector_dragon_chestplate.png | Bin 0 -> 208 bytes .../protector_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../protector_dragon_chestplate_overlay.png | Bin 0 -> 169 bytes .../protector_dragon_leggings.png | Bin 0 -> 200 bytes .../protector_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../protector_dragon_leggings_overlay.png | Bin 0 -> 158 bytes .../armor/pumpkin/pumpkin_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/pumpkin/pumpkin_boots.png | Bin 0 -> 169 bytes .../item/armor/pumpkin/pumpkin_boots_dyed.png | Bin 0 -> 144 bytes .../item/armor/pumpkin/pumpkin_chestplate.png | Bin 0 -> 196 bytes .../armor/pumpkin/pumpkin_chestplate_dyed.png | Bin 0 -> 175 bytes .../item/armor/pumpkin/pumpkin_helmet.png | Bin 0 -> 165 bytes .../armor/pumpkin/pumpkin_helmet_dyed.png | Bin 0 -> 137 bytes .../item/armor/pumpkin/pumpkin_leggings.png | Bin 0 -> 185 bytes .../armor/pumpkin/pumpkin_leggings_dyed.png | Bin 0 -> 158 bytes .../item/armor/rabbit/rabbit_boots.png | Bin 0 -> 180 bytes .../item/armor/rabbit/rabbit_boots_dyed.png | Bin 0 -> 134 bytes .../armor/rabbit/rabbit_boots_overlay.png | Bin 0 -> 111 bytes .../item/armor/rabbit/rabbit_chestplate.png | Bin 0 -> 203 bytes .../armor/rabbit/rabbit_chestplate_dyed.png | Bin 0 -> 138 bytes .../rabbit/rabbit_chestplate_overlay.png | Bin 0 -> 147 bytes .../item/armor/rabbit/rabbit_helmet.png | Bin 0 -> 196 bytes .../item/armor/rabbit/rabbit_helmet_dyed.png | Bin 0 -> 156 bytes .../armor/rabbit/rabbit_helmet_overlay.png | Bin 0 -> 106 bytes .../item/armor/rabbit/rabbit_leggings.png | Bin 0 -> 187 bytes .../armor/rabbit/rabbit_leggings_dyed.png | Bin 0 -> 149 bytes .../armor/rabbit/rabbit_leggings_overlay.png | Bin 0 -> 104 bytes .../armor/rampart/rampart_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/rampart/rampart_boots.png | Bin 0 -> 186 bytes .../item/armor/rampart/rampart_boots_dyed.png | Bin 0 -> 159 bytes .../item/armor/rampart/rampart_chestplate.png | Bin 0 -> 207 bytes .../armor/rampart/rampart_chestplate_dyed.png | Bin 0 -> 195 bytes .../item/armor/rampart/rampart_leggings.png | Bin 0 -> 195 bytes .../armor/rampart/rampart_leggings_dyed.png | Bin 0 -> 166 bytes .../item/armor/reaper/reaper_boots.png | Bin 0 -> 190 bytes .../item/armor/reaper/reaper_boots_dyed.png | Bin 0 -> 105 bytes .../armor/reaper/reaper_boots_overlay.png | Bin 0 -> 132 bytes .../item/armor/reaper/reaper_boots_rage.png | Bin 0 -> 187 bytes .../item/armor/reaper/reaper_chestplate.png | Bin 0 -> 230 bytes .../armor/reaper/reaper_chestplate_dyed.png | Bin 0 -> 137 bytes .../reaper/reaper_chestplate_overlay.png | Bin 0 -> 144 bytes .../armor/reaper/reaper_chestplate_rage.png | Bin 0 -> 230 bytes .../item/armor/reaper/reaper_leggings.png | Bin 0 -> 189 bytes .../armor/reaper/reaper_leggings_dyed.png | Bin 0 -> 106 bytes .../armor/reaper/reaper_leggings_overlay.png | Bin 0 -> 114 bytes .../armor/reaper/reaper_leggings_rage.png | Bin 0 -> 189 bytes .../rekindled_ember/rekindled_ember_boots.png | Bin 0 -> 191 bytes .../rekindled_ember_boots_dyed.png | Bin 0 -> 142 bytes .../rekindled_ember_boots_overlay.png | Bin 0 -> 131 bytes .../rekindled_ember_chestplate.png | Bin 0 -> 224 bytes .../rekindled_ember_chestplate_dyed.png | Bin 0 -> 165 bytes .../rekindled_ember_chestplate_overlay.png | Bin 0 -> 165 bytes .../rekindled_ember_leggings.png | Bin 0 -> 187 bytes .../rekindled_ember_leggings_dyed.png | Bin 0 -> 148 bytes .../rekindled_ember_leggings_overlay.png | Bin 0 -> 116 bytes .../item/armor/revenant/revenant_boots.png | Bin 0 -> 190 bytes .../armor/revenant/revenant_boots_dyed.png | Bin 0 -> 105 bytes .../armor/revenant/revenant_boots_overlay.png | Bin 0 -> 163 bytes .../armor/revenant/revenant_chestplate.png | Bin 0 -> 239 bytes .../revenant/revenant_chestplate_dyed.png | Bin 0 -> 137 bytes .../revenant/revenant_chestplate_overlay.png | Bin 0 -> 173 bytes .../item/armor/revenant/revenant_leggings.png | Bin 0 -> 189 bytes .../armor/revenant/revenant_leggings_dyed.png | Bin 0 -> 106 bytes .../revenant/revenant_leggings_overlay.png | Bin 0 -> 139 bytes .../rift/anti_bite_scarf/anti_bite_scarf.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_aqua.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_aqua_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_black.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_black_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_blue.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_blue_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_brown.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_brown_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_cyan.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_cyan_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_gray.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_gray_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_green.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_green_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_lime.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_lime_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_magenta.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_magenta_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_orange.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_orange_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_pink.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_pink_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_purple.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_purple_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf/anti_bite_scarf_2_red.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_red_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_silver.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_silver_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_white.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_white_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf_2_yellow.png | Bin 0 -> 196 bytes .../anti_bite_scarf_2_yellow_armor.png | Bin 0 -> 200 bytes .../anti_bite_scarf/anti_bite_scarf_armor.png | Bin 0 -> 200 bytes .../textures/item/armor/rift/burned_pants.png | Bin 0 -> 171 bytes .../item/armor/rift/chicken_leggs.png | Bin 0 -> 200 bytes .../armor/rift/exceedingly_comfy_sneakers.png | Bin 0 -> 165 bytes .../item/armor/rift/femurgrowth_leggings.png | Bin 0 -> 233 bytes .../item/armor/rift/gunther_sneakers.png | Bin 0 -> 165 bytes .../item/armor/rift/leggings_of_the_coven.png | Bin 0 -> 109 bytes .../rift/leggings_of_the_coven_overlay.png | Bin 0 -> 199 bytes .../rift/lively_sepulture_chestplate.png | Bin 0 -> 262 bytes .../item/armor/rift/orange_chestplate.png | Bin 0 -> 223 bytes .../item/armor/rift/snake_in_a_boot.png | Bin 0 -> 205 bytes .../rift/wizard_face/warm_wizard_face.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_aqua.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_black.png | Bin 0 -> 274 bytes .../wizard_face/warm_wizard_face_2_blue.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_brown.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_cyan.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_gray.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_green.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_lime.png | Bin 0 -> 274 bytes .../warm_wizard_face_2_magenta.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_orange.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_pink.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_purple.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_red.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_silver.png | Bin 0 -> 275 bytes .../wizard_face/warm_wizard_face_2_white.png | Bin 0 -> 270 bytes .../wizard_face/warm_wizard_face_2_yellow.png | Bin 0 -> 275 bytes .../armor/rift/wizard_face/wizard_face.png | Bin 0 -> 240 bytes .../rift/wizardman/s_logo_chestplate.png | Bin 0 -> 239 bytes .../item/armor/rift/wizardman/ugly_boots.png | Bin 0 -> 187 bytes .../rift/wizardman/wizardman_leggings.png | Bin 0 -> 135 bytes .../wizardman/wizardman_leggings_overlay.png | Bin 0 -> 154 bytes .../item/armor/rift/wyld/wyld_boots.png | Bin 0 -> 202 bytes .../item/armor/rift/wyld/wyld_chestplate.png | Bin 0 -> 232 bytes .../item/armor/rift/wyld/wyld_leggings.png | Bin 0 -> 204 bytes .../armor/rosetta/rosetta_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/rosetta/rosetta_boots.png | Bin 0 -> 175 bytes .../item/armor/rosetta/rosetta_boots_dyed.png | Bin 0 -> 142 bytes .../item/armor/rosetta/rosetta_chestplate.png | Bin 0 -> 190 bytes .../armor/rosetta/rosetta_chestplate_dyed.png | Bin 0 -> 164 bytes .../item/armor/rosetta/rosetta_helmet.png | Bin 0 -> 157 bytes .../armor/rosetta/rosetta_helmet_dyed.png | Bin 0 -> 134 bytes .../item/armor/rosetta/rosetta_leggings.png | Bin 0 -> 177 bytes .../armor/rosetta/rosetta_leggings_dyed.png | Bin 0 -> 146 bytes .../item/armor/rotten/rotten_boots.png | Bin 0 -> 184 bytes .../item/armor/rotten/rotten_boots_dyed.png | Bin 0 -> 107 bytes .../armor/rotten/rotten_boots_overlay.png | Bin 0 -> 172 bytes .../item/armor/rotten/rotten_chestplate.png | Bin 0 -> 196 bytes .../armor/rotten/rotten_chestplate_dyed.png | Bin 0 -> 130 bytes .../rotten/rotten_chestplate_overlay.png | Bin 0 -> 186 bytes .../item/armor/rotten/rotten_helmet.png | Bin 0 -> 168 bytes .../item/armor/rotten/rotten_helmet_dyed.png | Bin 0 -> 101 bytes .../armor/rotten/rotten_helmet_overlay.png | Bin 0 -> 163 bytes .../item/armor/rotten/rotten_leggings.png | Bin 0 -> 180 bytes .../armor/rotten/rotten_leggings_dyed.png | Bin 0 -> 117 bytes .../armor/rotten/rotten_leggings_overlay.png | Bin 0 -> 177 bytes .../item/armor/salmon/salmon_boots.png | Bin 0 -> 183 bytes .../item/armor/salmon/salmon_boots_dyed.png | Bin 0 -> 120 bytes .../armor/salmon/salmon_boots_overlay.png | Bin 0 -> 146 bytes .../item/armor/salmon/salmon_chestplate.png | Bin 0 -> 217 bytes .../armor/salmon/salmon_chestplate_dyed.png | Bin 0 -> 141 bytes .../salmon/salmon_chestplate_overlay.png | Bin 0 -> 154 bytes .../item/armor/salmon/salmon_helmet.png | Bin 0 -> 197 bytes .../item/armor/salmon/salmon_helmet_dyed.png | Bin 0 -> 106 bytes .../armor/salmon/salmon_helmet_overlay.png | Bin 0 -> 176 bytes .../item/armor/salmon/salmon_leggings.png | Bin 0 -> 175 bytes .../armor/salmon/salmon_leggings_dyed.png | Bin 0 -> 116 bytes .../armor/salmon/salmon_leggings_overlay.png | Bin 0 -> 112 bytes .../shadow_assassin/shadow_assassin_boots.png | Bin 0 -> 182 bytes .../shadow_assassin_boots_dyed.png | Bin 0 -> 132 bytes .../shadow_assassin_boots_overlay.png | Bin 0 -> 129 bytes .../shadow_assassin_chestplate.png | Bin 0 -> 209 bytes .../shadow_assassin_chestplate_dyed.png | Bin 0 -> 127 bytes .../shadow_assassin_chestplate_overlay.png | Bin 0 -> 163 bytes .../shadow_assassin_leggings.png | Bin 0 -> 183 bytes .../shadow_assassin_leggings_dyed.png | Bin 0 -> 119 bytes .../shadow_assassin_leggings_overlay.png | Bin 0 -> 135 bytes .../starred_shadow_assassin_boots.png | Bin 0 -> 186 bytes .../starred_shadow_assassin_boots_dyed.png | Bin 0 -> 115 bytes .../starred_shadow_assassin_boots_overlay.png | Bin 0 -> 148 bytes .../starred_shadow_assassin_chestplate.png | Bin 0 -> 211 bytes ...tarred_shadow_assassin_chestplate_dyed.png | Bin 0 -> 118 bytes ...red_shadow_assassin_chestplate_overlay.png | Bin 0 -> 188 bytes .../starred_shadow_assassin_leggings.png | Bin 0 -> 196 bytes .../starred_shadow_assassin_leggings_dyed.png | Bin 0 -> 95 bytes ...arred_shadow_assassin_leggings_overlay.png | Bin 0 -> 174 bytes .../armor/shark_scale/shark_scale_boots.png | Bin 0 -> 179 bytes .../shark_scale/shark_scale_boots_dyed.png | Bin 0 -> 139 bytes .../shark_scale/shark_scale_boots_overlay.png | Bin 0 -> 71 bytes .../shark_scale/shark_scale_chestplate.png | Bin 0 -> 220 bytes .../shark_scale_chestplate_dyed.png | Bin 0 -> 183 bytes .../shark_scale_chestplate_overlay.png | Bin 0 -> 96 bytes .../shark_scale/shark_scale_leggings.png | Bin 0 -> 184 bytes .../shark_scale/shark_scale_leggings_dyed.png | Bin 0 -> 159 bytes .../shark_scale_leggings_overlay.png | Bin 0 -> 71 bytes .../shimmering_light_slippers.png | Bin 0 -> 171 bytes .../shimmering_light_slippers_dyed.png | Bin 0 -> 152 bytes .../shimmering_light_slippers_overlay.png | Bin 0 -> 71 bytes .../shimmering_light_trousers.png | Bin 0 -> 177 bytes .../shimmering_light_trousers_dyed.png | Bin 0 -> 146 bytes .../shimmering_light_trousers_overlay.png | Bin 0 -> 84 bytes .../shimmering_light_tunic.png | Bin 0 -> 206 bytes .../shimmering_light_tunic_dyed.png | Bin 0 -> 178 bytes .../shimmering_light_tunic_overlay.png | Bin 0 -> 83 bytes .../skeleton_grunt/skeleton_grunt_boots.png | Bin 0 -> 184 bytes .../skeleton_grunt_boots_dyed.png | Bin 0 -> 134 bytes .../skeleton_grunt_boots_overlay.png | Bin 0 -> 125 bytes .../skeleton_grunt_chestplate.png | Bin 0 -> 196 bytes .../skeleton_grunt_chestplate_dyed.png | Bin 0 -> 161 bytes .../skeleton_grunt_chestplate_overlay.png | Bin 0 -> 149 bytes .../skeleton_grunt/skeleton_grunt_helmet.png | Bin 0 -> 168 bytes .../skeleton_grunt_helmet_dyed.png | Bin 0 -> 129 bytes .../skeleton_grunt_helmet_overlay.png | Bin 0 -> 124 bytes .../skeleton_grunt_leggings.png | Bin 0 -> 180 bytes .../skeleton_grunt_leggings_dyed.png | Bin 0 -> 138 bytes .../skeleton_grunt_leggings_overlay.png | Bin 0 -> 136 bytes .../skeleton_lord/skeleton_lord_boots.png | Bin 0 -> 219 bytes .../skeleton_lord_boots_dyed.png | Bin 0 -> 121 bytes .../skeleton_lord_boots_overlay.png | Bin 0 -> 174 bytes .../skeleton_lord_chestplate.png | Bin 0 -> 243 bytes .../skeleton_lord_chestplate_dyed.png | Bin 0 -> 108 bytes .../skeleton_lord_chestplate_overlay.png | Bin 0 -> 203 bytes .../skeleton_lord/skeleton_lord_helmet.png | Bin 0 -> 184 bytes .../skeleton_lord_helmet_dyed.png | Bin 0 -> 134 bytes .../skeleton_lord_helmet_overlay.png | Bin 0 -> 115 bytes .../skeleton_lord/skeleton_lord_leggings.png | Bin 0 -> 220 bytes .../skeleton_lord_leggings_dyed.png | Bin 0 -> 124 bytes .../skeleton_lord_leggings_overlay.png | Bin 0 -> 185 bytes .../skeleton_master/skeleton_master_boots.png | Bin 0 -> 193 bytes .../skeleton_master_boots_dyed.png | Bin 0 -> 121 bytes .../skeleton_master_boots_overlay.png | Bin 0 -> 153 bytes .../skeleton_master_chestplate.png | Bin 0 -> 205 bytes .../skeleton_master_chestplate_dyed.png | Bin 0 -> 116 bytes .../skeleton_master_chestplate_overlay.png | Bin 0 -> 164 bytes .../skeleton_master_helmet.png | Bin 0 -> 171 bytes .../skeleton_master_helmet_dyed.png | Bin 0 -> 86 bytes .../skeleton_master_helmet_overlay.png | Bin 0 -> 160 bytes .../skeleton_master_leggings.png | Bin 0 -> 202 bytes .../skeleton_master_leggings_dyed.png | Bin 0 -> 124 bytes .../skeleton_master_leggings_overlay.png | Bin 0 -> 168 bytes .../skeleton_soldier_boots.png | Bin 0 -> 171 bytes .../skeleton_soldier_boots_dyed.png | Bin 0 -> 124 bytes .../skeleton_soldier_boots_overlay.png | Bin 0 -> 146 bytes .../skeleton_soldier_chestplate.png | Bin 0 -> 182 bytes .../skeleton_soldier_chestplate_dyed.png | Bin 0 -> 155 bytes .../skeleton_soldier_chestplate_overlay.png | Bin 0 -> 92 bytes .../skeleton_soldier_helmet.png | Bin 0 -> 160 bytes .../skeleton_soldier_helmet_dyed.png | Bin 0 -> 132 bytes .../skeleton_soldier_helmet_overlay.png | Bin 0 -> 99 bytes .../skeleton_soldier_leggings.png | Bin 0 -> 179 bytes .../skeleton_soldier_leggings_dyed.png | Bin 0 -> 135 bytes .../skeleton_soldier_leggings_overlay.png | Bin 0 -> 143 bytes .../item/armor/skeletor/skeletor_boots.png | Bin 0 -> 202 bytes .../armor/skeletor/skeletor_boots_dyed.png | Bin 0 -> 125 bytes .../armor/skeletor/skeletor_boots_overlay.png | Bin 0 -> 159 bytes .../armor/skeletor/skeletor_chestplate.png | Bin 0 -> 230 bytes .../skeletor/skeletor_chestplate_dyed.png | Bin 0 -> 115 bytes .../skeletor/skeletor_chestplate_overlay.png | Bin 0 -> 201 bytes .../item/armor/skeletor/skeletor_leggings.png | Bin 0 -> 210 bytes .../armor/skeletor/skeletor_leggings_dyed.png | Bin 0 -> 121 bytes .../skeletor/skeletor_leggings_overlay.png | Bin 0 -> 180 bytes .../armor/snorkeling/snorkeling_boots.png | Bin 0 -> 177 bytes .../snorkeling/snorkeling_boots_dyed.png | Bin 0 -> 90 bytes .../snorkeling/snorkeling_boots_overlay.png | Bin 0 -> 156 bytes .../snorkeling/snorkeling_chestplate.png | Bin 0 -> 232 bytes .../snorkeling/snorkeling_chestplate_dyed.png | Bin 0 -> 151 bytes .../snorkeling_chestplate_overlay.png | Bin 0 -> 180 bytes .../armor/snorkeling/snorkeling_leggings.png | Bin 0 -> 189 bytes .../snorkeling/snorkeling_leggings_dyed.png | Bin 0 -> 111 bytes .../snorkeling_leggings_overlay.png | Bin 0 -> 168 bytes .../item/armor/snow_suit/snow_suit_boots.png | Bin 0 -> 188 bytes .../armor/snow_suit/snow_suit_boots_dyed.png | Bin 0 -> 131 bytes .../snow_suit/snow_suit_boots_overlay.png | Bin 0 -> 191 bytes .../armor/snow_suit/snow_suit_chestplate.png | Bin 0 -> 208 bytes .../snow_suit/snow_suit_chestplate_dyed.png | Bin 0 -> 150 bytes .../snow_suit_chestplate_overlay.png | Bin 0 -> 222 bytes .../armor/snow_suit/snow_suit_leggings.png | Bin 0 -> 198 bytes .../snow_suit/snow_suit_leggings_dyed.png | Bin 0 -> 127 bytes .../snow_suit/snow_suit_leggings_overlay.png | Bin 0 -> 202 bytes .../armor/sorrow/sorrow_armor_overlay.png | Bin 0 -> 71 bytes .../item/armor/sorrow/sorrow_boots.png | Bin 0 -> 124 bytes .../item/armor/sorrow/sorrow_boots_dyed.png | Bin 0 -> 115 bytes .../item/armor/sorrow/sorrow_chestplate.png | Bin 0 -> 140 bytes .../armor/sorrow/sorrow_chestplate_dyed.png | Bin 0 -> 135 bytes .../item/armor/sorrow/sorrow_helmet.png | Bin 0 -> 117 bytes .../item/armor/sorrow/sorrow_helmet_dyed.png | Bin 0 -> 110 bytes .../item/armor/sorrow/sorrow_leggings.png | Bin 0 -> 110 bytes .../armor/sorrow/sorrow_leggings_dyed.png | Bin 0 -> 104 bytes .../shiny/shiny_speed_wither_boots.png | Bin 0 -> 209 bytes .../shiny/shiny_speed_wither_boots_dyed.png | Bin 0 -> 126 bytes .../shiny_speed_wither_boots_overlay.png | Bin 0 -> 173 bytes .../shiny/shiny_speed_wither_chestplate.png | Bin 0 -> 236 bytes .../shiny_speed_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../shiny_speed_wither_chestplate_overlay.png | Bin 0 -> 186 bytes .../shiny/shiny_speed_wither_leggings.png | Bin 0 -> 211 bytes .../shiny_speed_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../shiny_speed_wither_leggings_overlay.png | Bin 0 -> 160 bytes .../armor/speed_wither/speed_wither_boots.png | Bin 0 -> 201 bytes .../speed_wither/speed_wither_boots_dyed.png | Bin 0 -> 126 bytes .../speed_wither_boots_overlay.png | Bin 0 -> 165 bytes .../speed_wither/speed_wither_chestplate.png | Bin 0 -> 232 bytes .../speed_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../speed_wither_chestplate_overlay.png | Bin 0 -> 183 bytes .../speed_wither/speed_wither_leggings.png | Bin 0 -> 199 bytes .../speed_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../speed_wither_leggings_overlay.png | Bin 0 -> 157 bytes .../item/armor/speedster/speedster_boots.png | Bin 0 -> 175 bytes .../armor/speedster/speedster_boots_dyed.png | Bin 0 -> 139 bytes .../speedster/speedster_boots_overlay.png | Bin 0 -> 146 bytes .../armor/speedster/speedster_chestplate.png | Bin 0 -> 184 bytes .../speedster/speedster_chestplate_dyed.png | Bin 0 -> 166 bytes .../speedster_chestplate_overlay.png | Bin 0 -> 168 bytes .../item/armor/speedster/speedster_helmet.png | Bin 0 -> 146 bytes .../armor/speedster/speedster_helmet_dyed.png | Bin 0 -> 127 bytes .../speedster/speedster_helmet_overlay.png | Bin 0 -> 127 bytes .../armor/speedster/speedster_leggings.png | Bin 0 -> 169 bytes .../speedster/speedster_leggings_dyed.png | Bin 0 -> 149 bytes .../speedster/speedster_leggings_overlay.png | Bin 0 -> 149 bytes .../item/armor/sponge/sponge_boots.png | Bin 0 -> 218 bytes .../item/armor/sponge/sponge_boots_dyed.png | Bin 0 -> 101 bytes .../armor/sponge/sponge_boots_overlay.png | Bin 0 -> 173 bytes .../item/armor/sponge/sponge_chestplate.png | Bin 0 -> 263 bytes .../armor/sponge/sponge_chestplate_dyed.png | Bin 0 -> 113 bytes .../sponge/sponge_chestplate_overlay.png | Bin 0 -> 189 bytes .../item/armor/sponge/sponge_helmet.png | Bin 0 -> 196 bytes .../item/armor/sponge/sponge_helmet_armor.png | Bin 0 -> 259 bytes .../item/armor/sponge/sponge_helmet_dyed.png | Bin 0 -> 91 bytes .../armor/sponge/sponge_helmet_overlay.png | Bin 0 -> 166 bytes .../item/armor/sponge/sponge_leggings.png | Bin 0 -> 237 bytes .../armor/sponge/sponge_leggings_dyed.png | Bin 0 -> 112 bytes .../armor/sponge/sponge_leggings_overlay.png | Bin 0 -> 170 bytes .../item/armor/spooky/spooky_boots.png | Bin 0 -> 171 bytes .../item/armor/spooky/spooky_boots_dyed.png | Bin 0 -> 84 bytes .../armor/spooky/spooky_boots_overlay.png | Bin 0 -> 160 bytes .../item/armor/spooky/spooky_chestplate.png | Bin 0 -> 213 bytes .../armor/spooky/spooky_chestplate_dyed.png | Bin 0 -> 103 bytes .../spooky/spooky_chestplate_overlay.png | Bin 0 -> 200 bytes .../item/armor/spooky/spooky_leggings.png | Bin 0 -> 195 bytes .../armor/spooky/spooky_leggings_dyed.png | Bin 0 -> 85 bytes .../armor/spooky/spooky_leggings_overlay.png | Bin 0 -> 179 bytes .../item/armor/squash/squash_boots.png | Bin 0 -> 184 bytes .../item/armor/squash/squash_boots_dyed.png | Bin 0 -> 150 bytes .../armor/squash/squash_boots_overlay.png | Bin 0 -> 96 bytes .../item/armor/squash/squash_chestplate.png | Bin 0 -> 200 bytes .../armor/squash/squash_chestplate_dyed.png | Bin 0 -> 171 bytes .../squash/squash_chestplate_overlay.png | Bin 0 -> 96 bytes .../item/armor/squash/squash_leggings.png | Bin 0 -> 189 bytes .../armor/squash/squash_leggings_dyed.png | Bin 0 -> 156 bytes .../armor/squash/squash_leggings_overlay.png | Bin 0 -> 96 bytes .../item/armor/squire/squire_boots.png | Bin 0 -> 150 bytes .../item/armor/squire/squire_boots_dyed.png | Bin 0 -> 115 bytes .../armor/squire/squire_boots_overlay.png | Bin 0 -> 128 bytes .../item/armor/squire/squire_chestplate.png | Bin 0 -> 271 bytes .../armor/squire/squire_chestplate_dyed.png | Bin 0 -> 128 bytes .../squire/squire_chestplate_overlay.png | Bin 0 -> 232 bytes .../item/armor/squire/squire_helmet.png | Bin 0 -> 149 bytes .../item/armor/squire/squire_helmet_dyed.png | Bin 0 -> 127 bytes .../armor/squire/squire_helmet_overlay.png | Bin 0 -> 71 bytes .../item/armor/squire/squire_leggings.png | Bin 0 -> 204 bytes .../armor/squire/squire_leggings_dyed.png | Bin 0 -> 118 bytes .../armor/squire/squire_leggings_overlay.png | Bin 0 -> 126 bytes .../item/armor/starlight/starlight_boots.png | Bin 0 -> 173 bytes .../armor/starlight/starlight_boots_dyed.png | Bin 0 -> 80 bytes .../starlight/starlight_boots_overlay.png | Bin 0 -> 173 bytes .../armor/starlight/starlight_chestplate.png | Bin 0 -> 202 bytes .../starlight/starlight_chestplate_dyed.png | Bin 0 -> 104 bytes .../starlight_chestplate_overlay.png | Bin 0 -> 187 bytes .../item/armor/starlight/starlight_helmet.png | Bin 0 -> 170 bytes .../armor/starlight/starlight_helmet_dyed.png | Bin 0 -> 85 bytes .../starlight/starlight_helmet_overlay.png | Bin 0 -> 161 bytes .../armor/starlight/starlight_leggings.png | Bin 0 -> 183 bytes .../starlight/starlight_leggings_dyed.png | Bin 0 -> 77 bytes .../starlight/starlight_leggings_overlay.png | Bin 0 -> 167 bytes .../strong_dragon/strong_dragon_boots.png | Bin 0 -> 168 bytes .../strong_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../strong_dragon_boots_overlay.png | Bin 0 -> 143 bytes .../strong_dragon_chestplate.png | Bin 0 -> 208 bytes .../strong_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../strong_dragon_chestplate_overlay.png | Bin 0 -> 196 bytes .../strong_dragon/strong_dragon_leggings.png | Bin 0 -> 201 bytes .../strong_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../strong_dragon_leggings_overlay.png | Bin 0 -> 183 bytes .../armor/super_heavy/super_heavy_boots.png | Bin 0 -> 168 bytes .../super_heavy/super_heavy_boots_dyed.png | Bin 0 -> 106 bytes .../super_heavy/super_heavy_boots_overlay.png | Bin 0 -> 125 bytes .../super_heavy/super_heavy_chestplate.png | Bin 0 -> 197 bytes .../super_heavy_chestplate_dyed.png | Bin 0 -> 145 bytes .../super_heavy_chestplate_overlay.png | Bin 0 -> 147 bytes .../armor/super_heavy/super_heavy_helmet.png | Bin 0 -> 158 bytes .../super_heavy/super_heavy_helmet_dyed.png | Bin 0 -> 101 bytes .../super_heavy_helmet_overlay.png | Bin 0 -> 119 bytes .../super_heavy/super_heavy_leggings.png | Bin 0 -> 169 bytes .../super_heavy/super_heavy_leggings_dyed.png | Bin 0 -> 100 bytes .../super_heavy_leggings_overlay.png | Bin 0 -> 125 bytes .../superior_dragon/superior_dragon_boots.png | Bin 0 -> 172 bytes .../superior_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../superior_dragon_boots_overlay.png | Bin 0 -> 149 bytes .../superior_dragon_chestplate.png | Bin 0 -> 212 bytes .../superior_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../superior_dragon_chestplate_overlay.png | Bin 0 -> 195 bytes .../superior_dragon_leggings.png | Bin 0 -> 200 bytes .../superior_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../superior_dragon_leggings_overlay.png | Bin 0 -> 183 bytes .../armor/tank_miner/tank_miner_boots.png | Bin 0 -> 202 bytes .../tank_miner/tank_miner_boots_dyed.png | Bin 0 -> 119 bytes .../tank_miner/tank_miner_boots_overlay.png | Bin 0 -> 133 bytes .../tank_miner/tank_miner_chestplate.png | Bin 0 -> 238 bytes .../tank_miner/tank_miner_chestplate_dyed.png | Bin 0 -> 109 bytes .../tank_miner_chestplate_overlay.png | Bin 0 -> 194 bytes .../armor/tank_miner/tank_miner_helmet.png | Bin 0 -> 197 bytes .../tank_miner/tank_miner_helmet_dyed.png | Bin 0 -> 112 bytes .../tank_miner/tank_miner_helmet_overlay.png | Bin 0 -> 150 bytes .../armor/tank_miner/tank_miner_leggings.png | Bin 0 -> 214 bytes .../tank_miner/tank_miner_leggings_dyed.png | Bin 0 -> 123 bytes .../tank_miner_leggings_overlay.png | Bin 0 -> 148 bytes .../shiny/shiny_tank_wither_boots.png | Bin 0 -> 209 bytes .../shiny/shiny_tank_wither_boots_dyed.png | Bin 0 -> 126 bytes .../shiny/shiny_tank_wither_boots_overlay.png | Bin 0 -> 173 bytes .../shiny/shiny_tank_wither_chestplate.png | Bin 0 -> 236 bytes .../shiny_tank_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../shiny_tank_wither_chestplate_overlay.png | Bin 0 -> 186 bytes .../shiny/shiny_tank_wither_leggings.png | Bin 0 -> 203 bytes .../shiny/shiny_tank_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../shiny_tank_wither_leggings_overlay.png | Bin 0 -> 160 bytes .../armor/tank_wither/tank_wither_boots.png | Bin 0 -> 201 bytes .../tank_wither/tank_wither_boots_dyed.png | Bin 0 -> 126 bytes .../tank_wither/tank_wither_boots_overlay.png | Bin 0 -> 165 bytes .../tank_wither/tank_wither_chestplate.png | Bin 0 -> 232 bytes .../tank_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../tank_wither_chestplate_overlay.png | Bin 0 -> 183 bytes .../tank_wither/tank_wither_leggings.png | Bin 0 -> 199 bytes .../tank_wither/tank_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../tank_wither_leggings_overlay.png | Bin 0 -> 157 bytes .../item/armor/tarantula/tarantula_boots.png | Bin 0 -> 203 bytes .../armor/tarantula/tarantula_boots_dyed.png | Bin 0 -> 129 bytes .../tarantula/tarantula_boots_overlay.png | Bin 0 -> 146 bytes .../armor/tarantula/tarantula_chestplate.png | Bin 0 -> 236 bytes .../tarantula/tarantula_chestplate_dyed.png | Bin 0 -> 176 bytes .../tarantula_chestplate_overlay.png | Bin 0 -> 159 bytes .../item/armor/tarantula/tarantula_helmet.png | Bin 0 -> 189 bytes .../armor/tarantula/tarantula_helmet_dyed.png | Bin 0 -> 126 bytes .../tarantula/tarantula_helmet_overlay.png | Bin 0 -> 137 bytes .../armor/tarantula/tarantula_leggings.png | Bin 0 -> 207 bytes .../tarantula/tarantula_leggings_dyed.png | Bin 0 -> 157 bytes .../tarantula/tarantula_leggings_overlay.png | Bin 0 -> 118 bytes .../terror/burning/burning_terror_boots.png | Bin 0 -> 203 bytes .../burning/burning_terror_boots_dyed.png | Bin 0 -> 129 bytes .../burning/burning_terror_boots_overlay.png | Bin 0 -> 175 bytes .../burning/burning_terror_chestplate.png | Bin 0 -> 227 bytes .../burning_terror_chestplate_dyed.png | Bin 0 -> 149 bytes .../burning_terror_chestplate_overlay.png | Bin 0 -> 183 bytes .../burning/burning_terror_leggings.png | Bin 0 -> 222 bytes .../burning/burning_terror_leggings_dyed.png | Bin 0 -> 118 bytes .../burning_terror_leggings_overlay.png | Bin 0 -> 191 bytes .../armor/terror/fiery/fiery_terror_boots.png | Bin 0 -> 190 bytes .../terror/fiery/fiery_terror_boots_dyed.png | Bin 0 -> 130 bytes .../fiery/fiery_terror_boots_overlay.png | Bin 0 -> 168 bytes .../terror/fiery/fiery_terror_chestplate.png | Bin 0 -> 199 bytes .../fiery/fiery_terror_chestplate_dyed.png | Bin 0 -> 161 bytes .../fiery/fiery_terror_chestplate_overlay.png | Bin 0 -> 123 bytes .../terror/fiery/fiery_terror_leggings.png | Bin 0 -> 192 bytes .../fiery/fiery_terror_leggings_dyed.png | Bin 0 -> 124 bytes .../fiery/fiery_terror_leggings_overlay.png | Bin 0 -> 158 bytes .../armor/terror/hot/hot_terror_boots.png | Bin 0 -> 214 bytes .../terror/hot/hot_terror_boots_dyed.png | Bin 0 -> 112 bytes .../terror/hot/hot_terror_boots_overlay.png | Bin 0 -> 198 bytes .../terror/hot/hot_terror_chestplate.png | Bin 0 -> 224 bytes .../terror/hot/hot_terror_chestplate_dyed.png | Bin 0 -> 136 bytes .../hot/hot_terror_chestplate_overlay.png | Bin 0 -> 193 bytes .../armor/terror/hot/hot_terror_leggings.png | Bin 0 -> 222 bytes .../terror/hot/hot_terror_leggings_dyed.png | Bin 0 -> 107 bytes .../hot/hot_terror_leggings_overlay.png | Bin 0 -> 200 bytes .../terror/infernal/infernal_terror_boots.png | Bin 0 -> 200 bytes .../infernal/infernal_terror_boots_dyed.png | Bin 0 -> 130 bytes .../infernal_terror_boots_overlay.png | Bin 0 -> 168 bytes .../infernal/infernal_terror_chestplate.png | Bin 0 -> 208 bytes .../infernal_terror_chestplate_dyed.png | Bin 0 -> 161 bytes .../infernal_terror_chestplate_overlay.png | Bin 0 -> 122 bytes .../infernal/infernal_terror_leggings.png | Bin 0 -> 192 bytes .../infernal_terror_leggings_dyed.png | Bin 0 -> 124 bytes .../infernal_terror_leggings_overlay.png | Bin 0 -> 146 bytes .../item/armor/terror/terror/terror_boots.png | Bin 0 -> 207 bytes .../armor/terror/terror/terror_boots_dyed.png | Bin 0 -> 105 bytes .../terror/terror/terror_boots_overlay.png | Bin 0 -> 189 bytes .../armor/terror/terror/terror_chestplate.png | Bin 0 -> 233 bytes .../terror/terror/terror_chestplate_dyed.png | Bin 0 -> 116 bytes .../terror/terror_chestplate_overlay.png | Bin 0 -> 210 bytes .../armor/terror/terror/terror_leggings.png | Bin 0 -> 214 bytes .../terror/terror/terror_leggings_dyed.png | Bin 0 -> 76 bytes .../terror/terror/terror_leggings_overlay.png | Bin 0 -> 220 bytes .../item/armor/thunder/thunder_boots.png | Bin 0 -> 191 bytes .../item/armor/thunder/thunder_boots_dyed.png | Bin 0 -> 121 bytes .../armor/thunder/thunder_boots_overlay.png | Bin 0 -> 155 bytes .../item/armor/thunder/thunder_chestplate.png | Bin 0 -> 213 bytes .../armor/thunder/thunder_chestplate_dyed.png | Bin 0 -> 145 bytes .../thunder/thunder_chestplate_overlay.png | Bin 0 -> 181 bytes .../item/armor/thunder/thunder_leggings.png | Bin 0 -> 189 bytes .../armor/thunder/thunder_leggings_dyed.png | Bin 0 -> 119 bytes .../thunder/thunder_leggings_overlay.png | Bin 0 -> 143 bytes .../armor/tuxedo/cheap/cheap_tuxedo_boots.png | Bin 0 -> 131 bytes .../tuxedo/cheap/cheap_tuxedo_boots_dyed.png | Bin 0 -> 112 bytes .../cheap/cheap_tuxedo_boots_overlay.png | Bin 0 -> 71 bytes .../tuxedo/cheap/cheap_tuxedo_chestplate.png | Bin 0 -> 200 bytes .../cheap/cheap_tuxedo_chestplate_dyed.png | Bin 0 -> 159 bytes .../cheap/cheap_tuxedo_chestplate_overlay.png | Bin 0 -> 99 bytes .../tuxedo/cheap/cheap_tuxedo_leggings.png | Bin 0 -> 166 bytes .../cheap/cheap_tuxedo_leggings_dyed.png | Bin 0 -> 134 bytes .../cheap/cheap_tuxedo_leggings_overlay.png | Bin 0 -> 81 bytes .../tuxedo/elegant/elegant_tuxedo_boots.png | Bin 0 -> 131 bytes .../elegant/elegant_tuxedo_boots_dyed.png | Bin 0 -> 112 bytes .../elegant/elegant_tuxedo_boots_overlay.png | Bin 0 -> 71 bytes .../elegant/elegant_tuxedo_chestplate.png | Bin 0 -> 200 bytes .../elegant_tuxedo_chestplate_dyed.png | Bin 0 -> 159 bytes .../elegant_tuxedo_chestplate_overlay.png | Bin 0 -> 99 bytes .../elegant/elegant_tuxedo_leggings.png | Bin 0 -> 166 bytes .../elegant/elegant_tuxedo_leggings_dyed.png | Bin 0 -> 134 bytes .../elegant_tuxedo_leggings_overlay.png | Bin 0 -> 81 bytes .../armor/tuxedo/fancy/fancy_tuxedo_boots.png | Bin 0 -> 111 bytes .../tuxedo/fancy/fancy_tuxedo_boots_dyed.png | Bin 0 -> 112 bytes .../fancy/fancy_tuxedo_boots_overlay.png | Bin 0 -> 71 bytes .../tuxedo/fancy/fancy_tuxedo_chestplate.png | Bin 0 -> 200 bytes .../fancy/fancy_tuxedo_chestplate_dyed.png | Bin 0 -> 159 bytes .../fancy/fancy_tuxedo_chestplate_overlay.png | Bin 0 -> 99 bytes .../tuxedo/fancy/fancy_tuxedo_leggings.png | Bin 0 -> 155 bytes .../fancy/fancy_tuxedo_leggings_dyed.png | Bin 0 -> 134 bytes .../fancy/fancy_tuxedo_leggings_overlay.png | Bin 0 -> 81 bytes .../armor/tuxedo/seymour/cashmere_jacket.png | Bin 0 -> 201 bytes .../seymour/cashmere_jacket_overlay.png | Bin 0 -> 111 bytes .../armor/tuxedo/seymour/oxford_shoes.png | Bin 0 -> 134 bytes .../tuxedo/seymour/oxford_shoes_overlay.png | Bin 0 -> 71 bytes .../armor/tuxedo/seymour/satin_trousers.png | Bin 0 -> 159 bytes .../tuxedo/seymour/satin_trousers_overlay.png | Bin 0 -> 71 bytes .../armor/tuxedo/seymour/velvet_top_hat.png | Bin 0 -> 167 bytes .../tuxedo/seymour/velvet_top_hat_overlay.png | Bin 0 -> 97 bytes .../unstable_dragon/unstable_dragon_boots.png | Bin 0 -> 189 bytes .../unstable_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../unstable_dragon_boots_overlay.png | Bin 0 -> 131 bytes .../unstable_dragon_chestplate.png | Bin 0 -> 206 bytes .../unstable_dragon_chestplate_dyed.png | Bin 0 -> 120 bytes .../unstable_dragon_chestplate_overlay.png | Bin 0 -> 169 bytes .../unstable_dragon_leggings.png | Bin 0 -> 199 bytes .../unstable_dragon_leggings_dyed.png | Bin 0 -> 117 bytes .../unstable_dragon_leggings_overlay.png | Bin 0 -> 150 bytes .../item/armor/vanguard/vanguard_boots.png | Bin 0 -> 212 bytes .../armor/vanguard/vanguard_boots_dyed.png | Bin 0 -> 127 bytes .../armor/vanguard/vanguard_boots_overlay.png | Bin 0 -> 179 bytes .../armor/vanguard/vanguard_chestplate.png | Bin 0 -> 241 bytes .../vanguard/vanguard_chestplate_dyed.png | Bin 0 -> 145 bytes .../vanguard/vanguard_chestplate_overlay.png | Bin 0 -> 210 bytes .../item/armor/vanguard/vanguard_leggings.png | Bin 0 -> 199 bytes .../armor/vanguard/vanguard_leggings_dyed.png | Bin 0 -> 107 bytes .../vanguard/vanguard_leggings_overlay.png | Bin 0 -> 174 bytes .../item/armor/werewolf/werewolf_boots.png | Bin 0 -> 178 bytes .../armor/werewolf/werewolf_boots_dyed.png | Bin 0 -> 142 bytes .../armor/werewolf/werewolf_boots_overlay.png | Bin 0 -> 83 bytes .../armor/werewolf/werewolf_chestplate.png | Bin 0 -> 211 bytes .../werewolf/werewolf_chestplate_dyed.png | Bin 0 -> 189 bytes .../werewolf/werewolf_chestplate_overlay.png | Bin 0 -> 83 bytes .../item/armor/werewolf/werewolf_leggings.png | Bin 0 -> 178 bytes .../armor/werewolf/werewolf_leggings_dyed.png | Bin 0 -> 153 bytes .../werewolf/werewolf_leggings_overlay.png | Bin 0 -> 71 bytes .../armor/wise_dragon/wise_dragon_boots.png | Bin 0 -> 173 bytes .../wise_dragon/wise_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../wise_dragon/wise_dragon_boots_overlay.png | Bin 0 -> 151 bytes .../wise_dragon/wise_dragon_chestplate.png | Bin 0 -> 208 bytes .../wise_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../wise_dragon_chestplate_overlay.png | Bin 0 -> 195 bytes .../wise_dragon/wise_dragon_leggings.png | Bin 0 -> 200 bytes .../wise_dragon/wise_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../wise_dragon_leggings_overlay.png | Bin 0 -> 183 bytes .../shiny/shiny_wise_wither_boots.png | Bin 0 -> 209 bytes .../shiny/shiny_wise_wither_boots_dyed.png | Bin 0 -> 126 bytes .../shiny/shiny_wise_wither_boots_overlay.png | Bin 0 -> 173 bytes .../shiny/shiny_wise_wither_chestplate.png | Bin 0 -> 236 bytes .../shiny_wise_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../shiny_wise_wither_chestplate_overlay.png | Bin 0 -> 186 bytes .../shiny/shiny_wise_wither_leggings.png | Bin 0 -> 203 bytes .../shiny/shiny_wise_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../shiny_wise_wither_leggings_overlay.png | Bin 0 -> 160 bytes .../armor/wise_wither/wise_wither_boots.png | Bin 0 -> 201 bytes .../wise_wither/wise_wither_boots_dyed.png | Bin 0 -> 126 bytes .../wise_wither/wise_wither_boots_overlay.png | Bin 0 -> 165 bytes .../wise_wither/wise_wither_chestplate.png | Bin 0 -> 232 bytes .../wise_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../wise_wither_chestplate_overlay.png | Bin 0 -> 183 bytes .../wise_wither/wise_wither_leggings.png | Bin 0 -> 199 bytes .../wise_wither/wise_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../wise_wither_leggings_overlay.png | Bin 0 -> 157 bytes .../armor/wither/shiny/shiny_wither_boots.png | Bin 0 -> 216 bytes .../wither/shiny/shiny_wither_boots_dyed.png | Bin 0 -> 126 bytes .../shiny/shiny_wither_boots_overlay.png | Bin 0 -> 173 bytes .../wither/shiny/shiny_wither_chestplate.png | Bin 0 -> 236 bytes .../shiny/shiny_wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../shiny/shiny_wither_chestplate_overlay.png | Bin 0 -> 186 bytes .../wither/shiny/shiny_wither_leggings.png | Bin 0 -> 203 bytes .../shiny/shiny_wither_leggings_dyed.png | Bin 0 -> 128 bytes .../shiny/shiny_wither_leggings_overlay.png | Bin 0 -> 160 bytes .../item/armor/wither/wither_boots.png | Bin 0 -> 201 bytes .../item/armor/wither/wither_boots_dyed.png | Bin 0 -> 126 bytes .../armor/wither/wither_boots_overlay.png | Bin 0 -> 165 bytes .../item/armor/wither/wither_chestplate.png | Bin 0 -> 232 bytes .../armor/wither/wither_chestplate_dyed.png | Bin 0 -> 155 bytes .../wither/wither_chestplate_overlay.png | Bin 0 -> 183 bytes .../item/armor/wither/wither_leggings.png | Bin 0 -> 199 bytes .../armor/wither/wither_leggings_dyed.png | Bin 0 -> 128 bytes .../armor/wither/wither_leggings_overlay.png | Bin 0 -> 157 bytes .../armor/young_dragon/young_dragon_boots.png | Bin 0 -> 169 bytes .../young_dragon/young_dragon_boots_dyed.png | Bin 0 -> 97 bytes .../young_dragon_boots_overlay.png | Bin 0 -> 130 bytes .../young_dragon/young_dragon_chestplate.png | Bin 0 -> 208 bytes .../young_dragon_chestplate_dyed.png | Bin 0 -> 99 bytes .../young_dragon_chestplate_overlay.png | Bin 0 -> 166 bytes .../young_dragon/young_dragon_leggings.png | Bin 0 -> 200 bytes .../young_dragon_leggings_dyed.png | Bin 0 -> 98 bytes .../young_dragon_leggings_overlay.png | Bin 0 -> 156 bytes .../item/armor/zombie/zombie_boots.png | Bin 0 -> 179 bytes .../item/armor/zombie/zombie_boots_dyed.png | Bin 0 -> 123 bytes .../armor/zombie/zombie_boots_overlay.png | Bin 0 -> 124 bytes .../item/armor/zombie/zombie_chestplate.png | Bin 0 -> 210 bytes .../armor/zombie/zombie_chestplate_dyed.png | Bin 0 -> 139 bytes .../zombie/zombie_chestplate_overlay.png | Bin 0 -> 154 bytes .../item/armor/zombie/zombie_leggings.png | Bin 0 -> 186 bytes .../armor/zombie/zombie_leggings_dyed.png | Bin 0 -> 115 bytes .../armor/zombie/zombie_leggings_overlay.png | Bin 0 -> 130 bytes .../zombie_commander_boots.png | Bin 0 -> 193 bytes .../zombie_commander_boots_dyed.png | Bin 0 -> 121 bytes .../zombie_commander_boots_overlay.png | Bin 0 -> 153 bytes .../zombie_commander_chestplate.png | Bin 0 -> 203 bytes .../zombie_commander_chestplate_dyed.png | Bin 0 -> 116 bytes .../zombie_commander_chestplate_overlay.png | Bin 0 -> 164 bytes .../zombie_commander_helmet.png | Bin 0 -> 171 bytes .../zombie_commander_helmet_dyed.png | Bin 0 -> 86 bytes .../zombie_commander_helmet_overlay.png | Bin 0 -> 160 bytes .../zombie_commander_leggings.png | Bin 0 -> 202 bytes .../zombie_commander_leggings_dyed.png | Bin 0 -> 124 bytes .../zombie_commander_leggings_overlay.png | Bin 0 -> 168 bytes .../zombie_knight/zombie_knight_boots.png | Bin 0 -> 191 bytes .../zombie_knight_boots_dyed.png | Bin 0 -> 123 bytes .../zombie_knight_boots_overlay.png | Bin 0 -> 149 bytes .../zombie_knight_chestplate.png | Bin 0 -> 216 bytes .../zombie_knight_chestplate_dyed.png | Bin 0 -> 112 bytes .../zombie_knight_chestplate_overlay.png | Bin 0 -> 185 bytes .../zombie_knight/zombie_knight_helmet.png | Bin 0 -> 185 bytes .../zombie_knight_helmet_dyed.png | Bin 0 -> 86 bytes .../zombie_knight_helmet_overlay.png | Bin 0 -> 172 bytes .../zombie_knight/zombie_knight_leggings.png | Bin 0 -> 191 bytes .../zombie_knight_leggings_dyed.png | Bin 0 -> 110 bytes .../zombie_knight_leggings_overlay.png | Bin 0 -> 165 bytes .../armor/zombie_lord/zombie_lord_boots.png | Bin 0 -> 219 bytes .../zombie_lord/zombie_lord_boots_dyed.png | Bin 0 -> 121 bytes .../zombie_lord/zombie_lord_boots_overlay.png | Bin 0 -> 175 bytes .../zombie_lord/zombie_lord_chestplate.png | Bin 0 -> 243 bytes .../zombie_lord_chestplate_dyed.png | Bin 0 -> 108 bytes .../zombie_lord_chestplate_overlay.png | Bin 0 -> 203 bytes .../armor/zombie_lord/zombie_lord_helmet.png | Bin 0 -> 194 bytes .../zombie_lord/zombie_lord_helmet_dyed.png | Bin 0 -> 134 bytes .../zombie_lord_helmet_overlay.png | Bin 0 -> 126 bytes .../zombie_lord/zombie_lord_leggings.png | Bin 0 -> 220 bytes .../zombie_lord/zombie_lord_leggings_dyed.png | Bin 0 -> 124 bytes .../zombie_lord_leggings_overlay.png | Bin 0 -> 185 bytes .../zombie_soldier/zombie_soldier_boots.png | Bin 0 -> 171 bytes .../zombie_soldier_boots_dyed.png | Bin 0 -> 124 bytes .../zombie_soldier_boots_overlay.png | Bin 0 -> 146 bytes .../zombie_soldier_chestplate.png | Bin 0 -> 182 bytes .../zombie_soldier_chestplate_dyed.png | Bin 0 -> 155 bytes .../zombie_soldier_chestplate_overlay.png | Bin 0 -> 92 bytes .../zombie_soldier/zombie_soldier_helmet.png | Bin 0 -> 160 bytes .../zombie_soldier_helmet_dyed.png | Bin 0 -> 132 bytes .../zombie_soldier_helmet_overlay.png | Bin 0 -> 99 bytes .../zombie_soldier_leggings.png | Bin 0 -> 174 bytes .../zombie_soldier_leggings_dyed.png | Bin 0 -> 135 bytes .../zombie_soldier_leggings_overlay.png | Bin 0 -> 143 bytes .../textures/item/equipment/ancient_cloak.png | Bin 0 -> 227 bytes .../item/equipment/angler/angler_belt.png | Bin 0 -> 197 bytes .../item/equipment/angler/angler_bracelet.png | Bin 0 -> 194 bytes .../item/equipment/angler/angler_cloak.png | Bin 0 -> 211 bytes .../item/equipment/angler/angler_necklace.png | Bin 0 -> 190 bytes .../item/equipment/arachne/arachne_belt.png | Bin 0 -> 212 bytes .../item/equipment/arachne/arachne_cloak.png | Bin 0 -> 229 bytes .../item/equipment/arachne/arachne_gloves.png | Bin 0 -> 212 bytes .../equipment/arachne/arachne_necklace.png | Bin 0 -> 190 bytes .../equipment/backwater/backwater_belt.png | Bin 0 -> 231 bytes .../equipment/backwater/backwater_cloak.png | Bin 0 -> 261 bytes .../equipment/backwater/backwater_gloves.png | Bin 0 -> 255 bytes .../backwater/backwater_necklace.png | Bin 0 -> 215 bytes .../blaze_slayer/annihilation_cloak.png | Bin 0 -> 236 bytes .../blaze_slayer/demonlord_gauntlet.png | Bin 0 -> 205 bytes .../blaze_slayer/destruction_cloak.png | Bin 0 -> 240 bytes .../equipment/crimson_hunter/blaze_belt.png | Bin 0 -> 195 bytes .../equipment/crimson_hunter/ghast_cloak.png | Bin 0 -> 183 bytes .../crimson_hunter/glowstone_gauntlet.png | Bin 0 -> 212 bytes .../crimson_hunter/magma_necklace.png | Bin 0 -> 176 bytes .../equipment/davids_cloak/davids_cloak.png | Bin 0 -> 204 bytes .../davids_cloak/davids_cloak_epic.png | Bin 0 -> 213 bytes .../davids_cloak/davids_cloak_legendary.png | Bin 0 -> 222 bytes .../davids_cloak/davids_cloak_mythic.png | Bin 0 -> 244 bytes .../davids_cloak/davids_cloak_rare.png | Bin 0 -> 214 bytes .../davids_cloak/davids_cloak_uncommon.png | Bin 0 -> 209 bytes .../textures/item/equipment/divan_pendant.png | Bin 0 -> 276 bytes .../item/equipment/dojo/dojo_black_belt.png | Bin 0 -> 186 bytes .../item/equipment/dojo/dojo_blue_belt.png | Bin 0 -> 186 bytes .../item/equipment/dojo/dojo_brown_belt.png | Bin 0 -> 186 bytes .../item/equipment/dojo/dojo_green_belt.png | Bin 0 -> 186 bytes .../item/equipment/dojo/dojo_white_belt.png | Bin 0 -> 186 bytes .../item/equipment/dojo/dojo_yellow_belt.png | Bin 0 -> 186 bytes .../equipment/draconic/dragonfade_cloak.png | Bin 0 -> 242 bytes .../equipment/draconic/dragonfuse_glove.png | Bin 0 -> 225 bytes .../item/equipment/dungeons/adaptive_belt.png | Bin 0 -> 217 bytes .../item/equipment/dungeons/balloon_snake.png | Bin 0 -> 205 bytes .../item/equipment/dungeons/bone_necklace.png | Bin 0 -> 170 bytes .../dungeons/shadow_assassin_cloak.png | Bin 0 -> 209 bytes .../equipment/dungeons/soulweaver_gloves.png | Bin 0 -> 218 bytes .../dungeons/starred_adaptive_belt.png | Bin 0 -> 220 bytes .../dungeons/starred_bone_necklace.png | Bin 0 -> 191 bytes .../starred_shadow_assassin_cloak.png | Bin 0 -> 229 bytes .../item/equipment/dwarven_handwarmers.png | Bin 0 -> 274 bytes .../equipment/ember/delirium_necklace.png | Bin 0 -> 178 bytes .../item/equipment/ember/scourge_cloak.png | Bin 0 -> 230 bytes .../item/equipment/ember/scoville_belt.png | Bin 0 -> 206 bytes .../item/equipment/ender/ender_belt.png | Bin 0 -> 197 bytes .../item/equipment/ender/ender_cloak.png | Bin 0 -> 229 bytes .../item/equipment/ender/ender_gauntlet.png | Bin 0 -> 212 bytes .../item/equipment/ender/ender_necklace.png | Bin 0 -> 178 bytes .../item/equipment/finwave/finwave_belt.png | Bin 0 -> 212 bytes .../item/equipment/finwave/finwave_cloak.png | Bin 0 -> 222 bytes .../item/equipment/finwave/finwave_gloves.png | Bin 0 -> 225 bytes .../equipment/fisherman/clay_bracelet.png | Bin 0 -> 184 bytes .../equipment/fisherman/clownfish_cloak.png | Bin 0 -> 201 bytes .../fisherman/prismarine_necklace.png | Bin 0 -> 193 bytes .../item/equipment/fisherman/sponge_belt.png | Bin 0 -> 191 bytes .../textures/item/equipment/flaming_fist.png | Bin 0 -> 182 bytes .../textures/item/equipment/frozen_amulet.png | Bin 0 -> 214 bytes .../item/equipment/gauntlet_of_contagion.png | Bin 0 -> 219 bytes .../equipment/gemstone/amber_necklace.png | Bin 0 -> 192 bytes .../equipment/gemstone/amethyst_gauntlet.png | Bin 0 -> 219 bytes .../item/equipment/gemstone/jade_belt.png | Bin 0 -> 212 bytes .../equipment/gemstone/sapphire_cloak.png | Bin 0 -> 231 bytes .../equipment/gillsplash/gillsplash_belt.png | Bin 0 -> 207 bytes .../equipment/gillsplash/gillsplash_cloak.png | Bin 0 -> 222 bytes .../gillsplash/gillsplash_gloves.png | Bin 0 -> 225 bytes .../great_spook/great_spook_belt.png | Bin 0 -> 266 bytes .../great_spook/great_spook_belt.png.mcmeta | 1 + .../great_spook/great_spook_belt_1st.png | Bin 0 -> 266 bytes .../great_spook_belt_1st.png.mcmeta | 1 + .../great_spook/great_spook_cloak.png | Bin 0 -> 308 bytes .../great_spook/great_spook_cloak.png.mcmeta | 1 + .../great_spook/great_spook_cloak_1st.png | Bin 0 -> 311 bytes .../great_spook_cloak_1st.png.mcmeta | 1 + .../great_spook/great_spook_gloves.png | Bin 0 -> 303 bytes .../great_spook/great_spook_gloves.png.mcmeta | 1 + .../great_spook/great_spook_gloves_1st.png | Bin 0 -> 294 bytes .../great_spook_gloves_1st.png.mcmeta | 1 + .../great_spook/great_spook_necklace.png | Bin 0 -> 269 bytes .../great_spook_necklace.png.mcmeta | 1 + .../great_spook/great_spook_necklace_1st.png | Bin 0 -> 268 bytes .../great_spook_necklace_1st.png.mcmeta | 1 + .../item/equipment/ichthyic/ichthyic_belt.png | Bin 0 -> 203 bytes .../equipment/ichthyic/ichthyic_cloak.png | Bin 0 -> 217 bytes .../equipment/ichthyic/ichthyic_gloves.png | Bin 0 -> 214 bytes .../item/equipment/implosion_belt.png | Bin 0 -> 187 bytes .../item/equipment/knuckle_sandwich.png | Bin 0 -> 223 bytes .../item/equipment/lava_shell_necklace.png | Bin 0 -> 196 bytes .../item/equipment/lotus/lotus_belt.png | Bin 0 -> 200 bytes .../item/equipment/lotus/lotus_bracelet.png | Bin 0 -> 196 bytes .../item/equipment/lotus/lotus_cloak.png | Bin 0 -> 219 bytes .../item/equipment/lotus/lotus_necklace.png | Bin 0 -> 182 bytes .../item/equipment/luminous_bracelet.png | Bin 0 -> 199 bytes .../item/equipment/magma_lord_gauntlet.png | Bin 0 -> 223 bytes .../equipment/mangrove/mangrove_grippers.png | Bin 0 -> 228 bytes .../equipment/mangrove/mangrove_locket.png | Bin 0 -> 185 bytes .../item/equipment/mangrove/mangrove_vine.png | Bin 0 -> 213 bytes .../item/equipment/mithril/mithril_belt.png | Bin 0 -> 185 bytes .../item/equipment/mithril/mithril_cloak.png | Bin 0 -> 200 bytes .../equipment/mithril/mithril_gauntlet.png | Bin 0 -> 186 bytes .../equipment/mithril/mithril_necklace.png | Bin 0 -> 178 bytes .../item/equipment/molten/molten_belt.png | Bin 0 -> 207 bytes .../item/equipment/molten/molten_bracelet.png | Bin 0 -> 196 bytes .../item/equipment/molten/molten_cloak.png | Bin 0 -> 212 bytes .../item/equipment/molten/molten_necklace.png | Bin 0 -> 179 bytes .../item/equipment/party/party_belt.png | Bin 0 -> 235 bytes .../item/equipment/party/party_cloak.png | Bin 0 -> 275 bytes .../item/equipment/party/party_gloves.png | Bin 0 -> 236 bytes .../item/equipment/party/party_necklace.png | Bin 0 -> 223 bytes .../textures/item/equipment/pelt_belt.png | Bin 0 -> 191 bytes .../textures/item/equipment/pest_vest.png | Bin 0 -> 202 bytes .../equipment/pesthunter/pesthunters_belt.png | Bin 0 -> 210 bytes .../pesthunter/pesthunters_cloak.png | Bin 0 -> 229 bytes .../pesthunter/pesthunters_gloves.png | Bin 0 -> 223 bytes .../pesthunter/pesthunters_necklace.png | Bin 0 -> 187 bytes .../equipment/rift/disinfestor_gloves.png | Bin 0 -> 191 bytes .../item/equipment/rift/enigma_cloak.png | Bin 0 -> 210 bytes .../item/equipment/rift/golden_belt.png | Bin 0 -> 212 bytes .../item/equipment/rift/leech_belt.png | Bin 0 -> 195 bytes .../equipment/rift/rift_necklace_inside.png | Bin 0 -> 174 bytes .../equipment/rift/rift_necklace_outside.png | Bin 0 -> 177 bytes .../item/equipment/rift/shens_ringalia.png | Bin 0 -> 199 bytes .../equipment/rift/silkrider_safety_belt.png | Bin 0 -> 221 bytes .../item/equipment/rift/vermin_belt.png | Bin 0 -> 195 bytes .../item/equipment/shriveled_bracelet.png | Bin 0 -> 221 bytes .../item/equipment/snow/snow_belt.png | Bin 0 -> 196 bytes .../item/equipment/snow/snow_cloak.png | Bin 0 -> 214 bytes .../item/equipment/snow/snow_gloves.png | Bin 0 -> 207 bytes .../item/equipment/snow/snow_necklace.png | Bin 0 -> 176 bytes .../equipment/synthesizer/synthesizer_v1.png | Bin 0 -> 185 bytes .../equipment/synthesizer/synthesizer_v2.png | Bin 0 -> 185 bytes .../equipment/synthesizer/synthesizer_v3.png | Bin 0 -> 196 bytes .../item/equipment/tera_shell_necklace.png | Bin 0 -> 230 bytes .../item/equipment/the_primordial.png | Bin 0 -> 240 bytes .../item/equipment/thunderbolt_necklace.png | Bin 0 -> 167 bytes .../item/equipment/titanium/titanium_belt.png | Bin 0 -> 179 bytes .../equipment/titanium/titanium_cloak.png | Bin 0 -> 200 bytes .../equipment/titanium/titanium_gauntlet.png | Bin 0 -> 186 bytes .../equipment/titanium/titanium_necklace.png | Bin 0 -> 175 bytes .../vanquisher/vanquished_blaze_belt.png | Bin 0 -> 195 bytes .../vanquisher/vanquished_ghast_cloak.png | Bin 0 -> 197 bytes .../vanquished_glowstone_gauntlet.png | Bin 0 -> 215 bytes .../vanquisher/vanquished_magma_necklace.png | Bin 0 -> 174 bytes .../textures/item/equipment/zorros_cape.png | Bin 0 -> 205 bytes .../textures/item/glitch/frosty_snow_ball.png | Bin 0 -> 183 bytes .../textures/item/glitch/null/alpha_slab.png | Bin 0 -> 190 bytes .../item/glitch/null/null_overlay.png | Bin 0 -> 99 bytes .../textures/item/glitch/null_map.png | Bin 0 -> 126 bytes .../black_greater_backpack.png | Bin 0 -> 187 bytes .../blue_greater_backpack.png | Bin 0 -> 187 bytes .../brown_greater_backpack.png | Bin 0 -> 187 bytes .../cyan_greater_backpack.png | Bin 0 -> 187 bytes .../greater_backpack/greater_backpack.png | Bin 0 -> 187 bytes .../green_greater_backpack.png | Bin 0 -> 187 bytes .../grey_greater_backpack.png | Bin 0 -> 187 bytes .../light_blue_greater_backpack.png | Bin 0 -> 187 bytes .../light_grey_greater_backpack.png | Bin 0 -> 187 bytes .../lime_greater_backpack.png | Bin 0 -> 187 bytes .../magenta_greater_backpack.png | Bin 0 -> 187 bytes .../orange_greater_backpack.png | Bin 0 -> 187 bytes .../pink_greater_backpack.png | Bin 0 -> 187 bytes .../purple_greater_backpack.png | Bin 0 -> 187 bytes .../greater_backpack/red_greater_backpack.png | Bin 0 -> 187 bytes .../white_greater_backpack.png | Bin 0 -> 187 bytes .../yellow_greater_backpack.png | Bin 0 -> 187 bytes .../jumbo_backpack/black_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/blue_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/brown_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/cyan_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/green_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/grey_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/jumbo_backpack.png | Bin 0 -> 196 bytes .../light_blue_jumbo_backpack.png | Bin 0 -> 196 bytes .../light_grey_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/lime_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/magenta_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/orange_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/pink_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/purple_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/red_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/white_jumbo_backpack.png | Bin 0 -> 196 bytes .../jumbo_backpack/yellow_jumbo_backpack.png | Bin 0 -> 196 bytes .../backpacks/jumbo_backpack_upgrade.png | Bin 0 -> 181 bytes .../large_backpack/black_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/blue_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/brown_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/cyan_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/green_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/grey_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/large_backpack.png | Bin 0 -> 189 bytes .../light_blue_large_backpack.png | Bin 0 -> 189 bytes .../light_grey_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/lime_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/magenta_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/orange_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/pink_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/purple_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/red_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/white_large_backpack.png | Bin 0 -> 189 bytes .../large_backpack/yellow_large_backpack.png | Bin 0 -> 189 bytes .../medium_backpack/black_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/blue_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/brown_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/cyan_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/green_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/grey_medium_backpack.png | Bin 0 -> 184 bytes .../light_blue_medium_backpack.png | Bin 0 -> 184 bytes .../light_grey_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/lime_medium_backpack.png | Bin 0 -> 184 bytes .../magenta_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/medium_backpack.png | Bin 0 -> 184 bytes .../orange_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/pink_medium_backpack.png | Bin 0 -> 184 bytes .../purple_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/red_medium_backpack.png | Bin 0 -> 184 bytes .../medium_backpack/white_medium_backpack.png | Bin 0 -> 184 bytes .../yellow_medium_backpack.png | Bin 0 -> 184 bytes .../backpacks/skins/awakened_eye_backpack.png | Bin 0 -> 258 bytes .../skins/awakened_eye_backpack_applied.png | Bin 0 -> 247 bytes .../backpacks/skins/babyseal_backpack.png | Bin 0 -> 248 bytes .../skins/babyseal_backpack_applied.png | Bin 0 -> 227 bytes .../skins/backpack_cat_o_lantern.png | Bin 0 -> 234 bytes .../skins/backpack_cat_o_lantern_applied.png | Bin 0 -> 216 bytes .../items/backpacks/skins/backpack_cooler.png | Bin 0 -> 251 bytes .../skins/backpack_cooler_applied.png | Bin 0 -> 230 bytes .../backpacks/skins/bag_of_coal_backpack.png | Bin 0 -> 268 bytes .../skins/bag_of_coal_backpack_applied.png | Bin 0 -> 252 bytes .../item/items/backpacks/skins/blue_egg.png | Bin 0 -> 302 bytes .../backpacks/skins/blue_egg_applied.png | Bin 0 -> 289 bytes .../skins/christmas_stocking_backpack.png | Bin 0 -> 212 bytes .../christmas_stocking_backpack_applied.png | Bin 0 -> 180 bytes .../backpacks/skins/dragon_egg_backpack.png | Bin 0 -> 258 bytes .../skins/dragon_egg_backpack_applied.png | Bin 0 -> 232 bytes .../item/items/backpacks/skins/enderpack.png | Bin 0 -> 247 bytes .../backpacks/skins/enderpack_applied.png | Bin 0 -> 233 bytes .../items/backpacks/skins/fairy_backpack.png | Bin 0 -> 321 bytes .../skins/fairy_backpack_applied.png | Bin 0 -> 308 bytes .../backpacks/skins/gift_black_backpack.png | Bin 0 -> 253 bytes .../skins/gift_black_backpack_applied.png | Bin 0 -> 234 bytes .../backpacks/skins/gift_blue_backpack.png | Bin 0 -> 253 bytes .../skins/gift_blue_backpack_applied.png | Bin 0 -> 234 bytes .../backpacks/skins/gift_gold_backpack.png | Bin 0 -> 253 bytes .../skins/gift_gold_backpack_applied.png | Bin 0 -> 234 bytes .../backpacks/skins/gift_green_backpack.png | Bin 0 -> 253 bytes .../skins/gift_green_backpack_applied.png | Bin 0 -> 235 bytes .../backpacks/skins/gift_purple_backpack.png | Bin 0 -> 253 bytes .../skins/gift_purple_backpack_applied.png | Bin 0 -> 235 bytes .../backpacks/skins/gift_white_backpack.png | Bin 0 -> 251 bytes .../skins/gift_white_backpack_applied.png | Bin 0 -> 232 bytes .../item/items/backpacks/skins/green_egg.png | Bin 0 -> 302 bytes .../backpacks/skins/green_egg_applied.png | Bin 0 -> 289 bytes .../backpacks/skins/hambagger_backpack.png | Bin 0 -> 297 bytes .../skins/hambagger_backpack_applied.png | Bin 0 -> 281 bytes .../skins/holiday_chest_ender_backpack.png | Bin 0 -> 305 bytes .../holiday_chest_ender_backpack_applied.png | Bin 0 -> 272 bytes .../skins/holiday_chest_green_backpack.png | Bin 0 -> 283 bytes .../holiday_chest_green_backpack_applied.png | Bin 0 -> 254 bytes .../skins/holiday_chest_red_backpack.png | Bin 0 -> 265 bytes .../holiday_chest_red_backpack_applied.png | Bin 0 -> 250 bytes .../skins/holiday_chest_teal_backpack.png | Bin 0 -> 283 bytes .../holiday_chest_teal_backpack_applied.png | Bin 0 -> 254 bytes .../skins/holiday_chest_yellow_backpack.png | Bin 0 -> 264 bytes .../holiday_chest_yellow_backpack_applied.png | Bin 0 -> 251 bytes .../backpacks/skins/hot_cocoa_backpack.png | Bin 0 -> 252 bytes .../skins/hot_cocoa_backpack_applied.png | Bin 0 -> 251 bytes .../backpacks/skins/north_star_backpack.png | Bin 0 -> 243 bytes .../skins/north_star_backpack_applied.png | Bin 0 -> 227 bytes .../backpacks/skins/penguin_backpack.png | Bin 0 -> 249 bytes .../skins/penguin_backpack_applied.png | Bin 0 -> 233 bytes .../item/items/backpacks/skins/purple_egg.png | Bin 0 -> 302 bytes .../backpacks/skins/purple_egg_applied.png | Bin 0 -> 283 bytes .../backpacks/skins/reindeer_backpack.png | Bin 0 -> 268 bytes .../skins/reindeer_backpack_applied.png | Bin 0 -> 252 bytes .../small_backpack/black_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/blue_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/brown_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/cyan_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/green_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/grey_small_backpack.png | Bin 0 -> 178 bytes .../light_blue_small_backpack.png | Bin 0 -> 178 bytes .../light_grey_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/lime_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/magenta_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/orange_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/pink_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/purple_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/red_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/white_small_backpack.png | Bin 0 -> 178 bytes .../small_backpack/yellow_small_backpack.png | Bin 0 -> 178 bytes .../items/backpacks/trick_or_treat_bag.png | Bin 0 -> 238 bytes .../dean_letter_of_recommendation.png | Bin 0 -> 198 bytes .../crimson_isle/enchanted_mycelium_cube.png | Bin 0 -> 339 bytes .../crimson_isle/enchanted_red_sand_cube.png | Bin 0 -> 176 bytes .../crimson_isle/enchanted_sulphur_cube.png | Bin 0 -> 180 bytes .../item/items/crimson_isle/fire_soul.png | Bin 0 -> 165 bytes .../item/items/crimson_isle/heavy_pearl.png | Bin 0 -> 180 bytes .../crimson_isle/kuudra_burning_tier_key.png | Bin 0 -> 161 bytes .../crimson_isle/kuudra_fiery_tier_key.png | Bin 0 -> 164 bytes .../crimson_isle/kuudra_hot_tier_key.png | Bin 0 -> 159 bytes .../crimson_isle/kuudra_infernal_tier_key.png | Bin 0 -> 161 bytes .../items/crimson_isle/kuudra_tier_key.png | Bin 0 -> 161 bytes .../items/crimson_isle/marsh_spore_soup.png | Bin 0 -> 187 bytes .../item/items/crimson_isle/match_sticks.png | Bin 0 -> 133 bytes .../items/crimson_isle/mob_loot/bezos.png | Bin 0 -> 179 bytes .../crimson_isle/mob_loot/blaze_ashes.png | Bin 0 -> 223 bytes .../crimson_isle/mob_loot/burning_eye.png | Bin 0 -> 181 bytes .../crimson_isle/mob_loot/compact_ooze.png | Bin 0 -> 182 bytes .../mob_loot/corrupted_fragment.png | Bin 0 -> 198 bytes .../mob_loot/digested_mushrooms.png | Bin 0 -> 262 bytes .../crimson_isle/mob_loot/ember_fragment.png | Bin 0 -> 187 bytes .../items/crimson_isle/mob_loot/flames.png | Bin 0 -> 201 bytes .../crimson_isle/mob_loot/gazing_pearl.png | Bin 0 -> 226 bytes .../crimson_isle/mob_loot/hallowed_skull.png | Bin 0 -> 184 bytes .../items/crimson_isle/mob_loot/kada_lead.png | Bin 0 -> 178 bytes .../crimson_isle/mob_loot/kuudra_teeth.png | Bin 0 -> 187 bytes .../crimson_isle/mob_loot/leather_cloth.png | Bin 0 -> 171 bytes .../crimson_isle/mob_loot/lumino_fiber.png | Bin 0 -> 215 bytes .../crimson_isle/mob_loot/magma_chunk.png | Bin 0 -> 185 bytes .../items/crimson_isle/mob_loot/magmag.png | Bin 0 -> 210 bytes .../mob_loot/millenia_old_blaze_ashes.png | Bin 0 -> 219 bytes .../mob_loot/mutated_blaze_ashes.png | Bin 0 -> 219 bytes .../mob_loot/rekindled_ember_fragment.png | Bin 0 -> 205 bytes .../crimson_isle/mob_loot/spectre_dust.png | Bin 0 -> 192 bytes .../crimson_isle/mob_loot/spell_powder.png | Bin 0 -> 183 bytes .../crimson_isle/mob_loot/tentacle_meat.png | Bin 0 -> 213 bytes .../crimson_isle/mob_loot/wither_soul.png | Bin 0 -> 188 bytes .../item/items/crimson_isle/mob_loot/x.png | Bin 0 -> 114 bytes .../item/items/crimson_isle/mob_loot/y.png | Bin 0 -> 155 bytes .../item/items/crimson_isle/mob_loot/z.png | Bin 0 -> 158 bytes .../items/crimson_isle/mushroom_spore.png | Bin 0 -> 169 bytes .../item/items/crimson_isle/red_thornleaf.png | Bin 0 -> 210 bytes .../crimson_isle/scorched_power_crystal.png | Bin 0 -> 202 bytes .../item/items/crimson_isle/sulphur_ore.png | Bin 0 -> 203 bytes .../crimson_isle/whipped_magma_cream.png | Bin 0 -> 202 bytes .../items/dungeons/architect_first_draft.png | Bin 0 -> 188 bytes .../item/items/dungeons/aspiring_leap.png | Bin 0 -> 206 bytes .../item/items/dungeons/bonzo_fragment.png | Bin 0 -> 168 bytes .../catacombs_pass/catacombs_pass_10.png | Bin 0 -> 298 bytes .../catacombs_pass/catacombs_pass_3.png | Bin 0 -> 272 bytes .../catacombs_pass/catacombs_pass_4.png | Bin 0 -> 297 bytes .../catacombs_pass/catacombs_pass_5.png | Bin 0 -> 288 bytes .../catacombs_pass/catacombs_pass_6.png | Bin 0 -> 293 bytes .../catacombs_pass/catacombs_pass_7.png | Bin 0 -> 288 bytes .../catacombs_pass/catacombs_pass_8.png | Bin 0 -> 280 bytes .../catacombs_pass/catacombs_pass_9.png | Bin 0 -> 285 bytes .../master_catacombs_pass_10.png | Bin 0 -> 294 bytes .../master_catacombs_pass_3.png | Bin 0 -> 273 bytes .../master_catacombs_pass_4.png | Bin 0 -> 295 bytes .../master_catacombs_pass_5.png | Bin 0 -> 289 bytes .../master_catacombs_pass_6.png | Bin 0 -> 291 bytes .../master_catacombs_pass_7.png | Bin 0 -> 288 bytes .../master_catacombs_pass_8.png | Bin 0 -> 271 bytes .../master_catacombs_pass_9.png | Bin 0 -> 285 bytes .../item/items/dungeons/crypt_skull_key.png | Bin 0 -> 150 bytes .../item/items/dungeons/defuse_kit.png | Bin 0 -> 173 bytes .../item/items/dungeons/dungeon_boss_key.png | Bin 0 -> 148 bytes .../item/items/dungeons/dungeon_chest_key.png | Bin 0 -> 150 bytes .../item/items/dungeons/dungeon_decoy.png | Bin 0 -> 159 bytes .../items/dungeons/dungeon_golden_key.png | Bin 0 -> 150 bytes .../items/dungeons/dungeon_lore_diary.png | Bin 0 -> 235 bytes .../items/dungeons/dungeon_lore_journal.png | Bin 0 -> 235 bytes .../items/dungeons/dungeon_lore_paper.png | Bin 0 -> 198 bytes .../items/dungeons/dungeon_normal_key.png | Bin 0 -> 125 bytes .../item/items/dungeons/dungeon_trap.png | Bin 0 -> 199 bytes .../items/dungeons/dungeon_wizard_crystal.png | Bin 0 -> 179 bytes .../item/items/dungeons/fel_pearl.png | Bin 0 -> 205 bytes .../textures/item/items/dungeons/fel_rose.png | Bin 0 -> 220 bytes .../item/items/dungeons/fel_skull.png | Bin 0 -> 208 bytes .../items/dungeons/giant_fragment_bigfoot.png | Bin 0 -> 198 bytes .../items/dungeons/giant_fragment_boulder.png | Bin 0 -> 194 bytes .../items/dungeons/giant_fragment_diamond.png | Bin 0 -> 184 bytes .../items/dungeons/giant_fragment_laser.png | Bin 0 -> 196 bytes .../item/items/dungeons/golem_poppy.png | Bin 0 -> 156 bytes .../item/items/dungeons/haunt_ability.png | Bin 0 -> 195 bytes .../items/dungeons/haunt_ability_click.png | Bin 0 -> 189 bytes .../item/items/dungeons/healing_tissue.png | Bin 0 -> 193 bytes .../items/dungeons/infinite_spirit_leap.png | Bin 0 -> 198 bytes .../items/dungeons/infinite_superboom_tnt.png | Bin 0 -> 233 bytes .../item/items/dungeons/inflatable_jerry.png | Bin 0 -> 201 bytes .../textures/item/items/dungeons/key_a.png | Bin 0 -> 127 bytes .../textures/item/items/dungeons/key_b.png | Bin 0 -> 126 bytes .../textures/item/items/dungeons/key_c.png | Bin 0 -> 123 bytes .../textures/item/items/dungeons/key_d.png | Bin 0 -> 127 bytes .../textures/item/items/dungeons/key_f.png | Bin 0 -> 128 bytes .../textures/item/items/dungeons/key_s.png | Bin 0 -> 125 bytes .../textures/item/items/dungeons/key_x.png | Bin 0 -> 126 bytes .../item/items/dungeons/kismet_feather.png | Bin 0 -> 172 bytes .../item/items/dungeons/livid_fragment.png | Bin 0 -> 193 bytes .../item/items/dungeons/mimic_fragment.png | Bin 0 -> 201 bytes .../item/items/dungeons/necron_handle.png | Bin 0 -> 163 bytes .../item/items/dungeons/revive_stone.png | Bin 0 -> 177 bytes .../items/dungeons/revive_stone_broken.png | Bin 0 -> 184 bytes .../items/dungeons/sauls_recommendation.png | Bin 0 -> 204 bytes .../item/items/dungeons/scarf_fragment.png | Bin 0 -> 181 bytes .../dungeons/secret_dungeon_redstone_key.png | Bin 0 -> 150 bytes .../item/items/dungeons/secret_tracker.png | Bin 0 -> 206 bytes .../items/dungeons/shiny_necron_handle.png | Bin 0 -> 163 bytes .../item/items/dungeons/spirit_bone.png | Bin 0 -> 188 bytes .../item/items/dungeons/spirit_leap.png | Bin 0 -> 212 bytes .../item/items/dungeons/spirit_wing.png | Bin 0 -> 178 bytes .../item/items/dungeons/summoning_ring.png | Bin 0 -> 218 bytes .../item/items/dungeons/superboom_tnt.png | Bin 0 -> 225 bytes .../item/items/dungeons/thorn_fragment.png | Bin 0 -> 180 bytes .../item/items/dungeons/training_weights.png | Bin 0 -> 161 bytes .../item/items/dungeons/wither_catalyst.png | Bin 0 -> 193 bytes .../item/items/dyes/dye_aquamarine.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_archfiend.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_aurora.png | Bin 0 -> 555 bytes .../item/items/dyes/dye_aurora.png.mcmeta | 1 + .../item/items/dyes/dye_bingo_blue.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_black_ice.png | Bin 0 -> 392 bytes .../item/items/dyes/dye_black_ice.png.mcmeta | 1 + .../textures/item/items/dyes/dye_bone.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_brick_red.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_byzantium.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_carmine.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_celadon.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_celeste.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_chocolate.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_copper.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_cyclamen.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_dark_purple.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_dung.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_emerald.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_flame.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_fossil.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_frog.png | Bin 0 -> 393 bytes .../item/items/dyes/dye_frog.png.mcmeta | 1 + .../item/items/dyes/dye_frostbitten.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_holly.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_iceberg.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_jade.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_lava.png | Bin 0 -> 372 bytes .../item/items/dyes/dye_lava.png.mcmeta | 1 + .../textures/item/items/dyes/dye_livid.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_lucky.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_lucky.png.mcmeta | 1 + .../textures/item/items/dyes/dye_mango.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_matcha.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_midnight.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_mocha.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_nadeshiko.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_necron.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_nyanza.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_oasis.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_oasis.png.mcmeta | 1 + .../textures/item/items/dyes/dye_ocean.png | Bin 0 -> 474 bytes .../item/items/dyes/dye_ocean.png.mcmeta | 1 + .../item/items/dyes/dye_pastel_sky.png | Bin 0 -> 380 bytes .../item/items/dyes/dye_pastel_sky.png.mcmeta | 1 + .../item/items/dyes/dye_pearlescent.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_pelt.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_periwinkle.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_portal.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_portal.png.mcmeta | 1 + .../item/items/dyes/dye_pure_black.png | Bin 0 -> 166 bytes .../item/items/dyes/dye_pure_blue.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_pure_white.png | Bin 0 -> 158 bytes .../item/items/dyes/dye_pure_yellow.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_red_tulip.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_red_tulip.png.mcmeta | 1 + .../textures/item/items/dyes/dye_rose.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_rose.png.mcmeta | 1 + .../textures/item/items/dyes/dye_sangria.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_secret.png | Bin 0 -> 213 bytes .../item/items/dyes/dye_snowflake.png | Bin 0 -> 508 bytes .../item/items/dyes/dye_snowflake.png.mcmeta | 1 + .../item/items/dyes/dye_sunflower.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_sunflower.png.mcmeta | 1 + .../textures/item/items/dyes/dye_sunset.png | Bin 0 -> 374 bytes .../item/items/dyes/dye_sunset.png.mcmeta | 1 + .../textures/item/items/dyes/dye_treasure.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/dye_warden.png | Bin 0 -> 311 bytes .../item/items/dyes/dye_warden.png.mcmeta | 1 + .../item/items/dyes/dye_wild_strawberry.png | Bin 0 -> 213 bytes .../textures/item/items/dyes/tentacle_dye.png | Bin 0 -> 213 bytes .../item/items/end/awakened_summoning_eye.png | Bin 0 -> 227 bytes .../textures/item/items/end/catalyst.png | Bin 0 -> 207 bytes .../item/items/end/crystal_fragment.png | Bin 0 -> 223 bytes .../item/items/end/draconic_blade.png | Bin 0 -> 214 bytes .../textures/item/items/end/endstone_rose.png | Bin 0 -> 227 bytes .../textures/item/items/end/holy_fragment.png | Bin 0 -> 216 bytes .../item/items/end/hyper_catalyst.png | Bin 0 -> 221 bytes .../item/items/end/hyper_catalyst_upgrade.png | Bin 0 -> 199 bytes .../textures/item/items/end/mite_gel.png | Bin 0 -> 159 bytes .../textures/item/items/end/mite_gel2.png | Bin 0 -> 112 bytes .../textures/item/items/end/old_fragment.png | Bin 0 -> 215 bytes .../item/items/end/primal_dragon_heart.png | Bin 0 -> 229 bytes .../item/items/end/primal_fragment.png | Bin 0 -> 215 bytes .../item/items/end/protector_fragment.png | Bin 0 -> 215 bytes .../item/items/end/remnant_of_the_eye.png | Bin 0 -> 185 bytes .../item/items/end/ritual_residue.png | Bin 0 -> 185 bytes .../textures/item/items/end/silent_pearl.png | Bin 0 -> 213 bytes .../textures/item/items/end/sleeping_eye.png | Bin 0 -> 175 bytes .../item/items/end/strong_fragment.png | Bin 0 -> 215 bytes .../textures/item/items/end/summoning_eye.png | Bin 0 -> 215 bytes .../item/items/end/superior_fragment.png | Bin 0 -> 215 bytes .../item/items/end/unstable_fragment.png | Bin 0 -> 215 bytes .../textures/item/items/end/wise_fragment.png | Bin 0 -> 215 bytes .../item/items/end/young_fragment.png | Bin 0 -> 215 bytes .../items/events/chuckleton/blazetekk_ham.png | Bin 0 -> 229 bytes .../events/chuckleton/fudge_mint_core.png | Bin 0 -> 228 bytes .../chuckleton/fudge_mint_core_blink.png | Bin 0 -> 302 bytes .../fudge_mint_core_blink.png.mcmeta | 1 + .../items/events/chuckleton/noisy_pearl.png | Bin 0 -> 223 bytes .../items/events/chuckleton/novice_skull.png | Bin 0 -> 186 bytes .../items/events/chuckleton/ragna_rock.png | Bin 0 -> 200 bytes .../item/items/events/chuckleton/red_belt.png | Bin 0 -> 186 bytes .../events/chuckleton/suspicious_red_gift.png | Bin 0 -> 221 bytes .../items/events/chuckleton/vitamin_life.png | Bin 0 -> 179 bytes .../items/events/chuckleton/warden_art.png | Bin 0 -> 237 bytes .../events/great_spook/alchemist_recipe.png | Bin 0 -> 198 bytes .../items/events/great_spook/dark_candy.png | Bin 0 -> 188 bytes .../items/events/great_spook/dead_seed.png | Bin 0 -> 153 bytes .../items/events/great_spook/decayed_bat.png | Bin 0 -> 254 bytes .../great_spook/dwarven_iron_hammer.png | Bin 0 -> 214 bytes .../items/events/great_spook/eerie_toy.png | Bin 0 -> 225 bytes .../great_spook/ephemeral_gratitude.png | Bin 0 -> 182 bytes .../events/great_spook/expired_pumpkin.png | Bin 0 -> 227 bytes .../items/events/great_spook/fairy_wings.png | Bin 0 -> 196 bytes .../items/events/great_spook/free_spider.png | Bin 0 -> 255 bytes .../items/events/great_spook/french_fries.png | Bin 0 -> 187 bytes .../events/great_spook/frozen_spider.png | Bin 0 -> 219 bytes .../great_spook_reforging_manual.png | Bin 0 -> 238 bytes .../great_spook/nightmare_nullifier.png | Bin 0 -> 199 bytes .../events/great_spook/obscure_ending.png | Bin 0 -> 185 bytes .../events/great_spook/poisoned_candy.png | Bin 0 -> 204 bytes .../items/events/great_spook/precious.png | Bin 0 -> 220 bytes .../items/events/great_spook/rogue_flesh.png | Bin 0 -> 222 bytes .../events/great_spook/scare_fragment.png | Bin 0 -> 193 bytes .../events/great_spook/scary_grimoire.png | Bin 0 -> 350 bytes .../great_spook/scary_grimoire.png.mcmeta | 1 + .../events/great_spook/scary_grimoire_1st.png | Bin 0 -> 353 bytes .../great_spook/scary_grimoire_1st.png.mcmeta | 1 + .../items/events/great_spook/sewer_fish.png | Bin 0 -> 207 bytes .../items/events/great_spook/sirius_book.png | Bin 0 -> 247 bytes .../events/great_spook/sleepy_hollow.png | Bin 0 -> 216 bytes .../items/events/great_spook/spooky_tree.png | Bin 0 -> 196 bytes .../items/events/great_spook/sweet_flesh.png | Bin 0 -> 216 bytes .../events/great_spook/the_soup_painting.png | Bin 0 -> 270 bytes .../items/events/great_spook/wet_pumpkin.png | Bin 0 -> 219 bytes .../events/hoppity/dark_cacao_truffle.png | Bin 0 -> 236 bytes .../item/items/events/hoppity/egglocator.png | Bin 0 -> 177 bytes .../items/events/hoppity/egglocator_blink.png | Bin 0 -> 176 bytes .../hoppity/refined_dark_cacao_truffle.png | Bin 0 -> 259 bytes .../events/hoppity/steamed_chocolate_fish.png | Bin 0 -> 201 bytes .../events/hoppity/supreme_chocolate_bar.png | Bin 0 -> 188 bytes .../item/items/events/jerry/blue_ice_hunk.png | Bin 0 -> 176 bytes .../items/events/jerry/bottle_of_jyrre.png | Bin 0 -> 141 bytes .../items/events/jerry/bottle_of_jyrre2.png | Bin 0 -> 144 bytes .../items/events/jerry/cryopowder_shard.png | Bin 0 -> 180 bytes .../items/events/jerry/einary_red_hoodie.png | Bin 0 -> 210 bytes .../item/items/events/jerry/gift_compass.png | Bin 0 -> 208 bytes .../items/events/jerry/gift_of_learning.png | Bin 0 -> 240 bytes .../items/events/jerry/glacial_fragment.png | Bin 0 -> 188 bytes .../item/items/events/jerry/gold_gift.png | Bin 0 -> 190 bytes .../item/items/events/jerry/green_gift.png | Bin 0 -> 197 bytes .../items/events/jerry/hilt_of_true_ice.png | Bin 0 -> 168 bytes .../item/items/events/jerry/ice_hunk.png | Bin 0 -> 179 bytes .../items/events/jerry/jerry_box_blue.png | Bin 0 -> 228 bytes .../items/events/jerry/jerry_box_golden.png | Bin 0 -> 223 bytes .../items/events/jerry/jerry_box_green.png | Bin 0 -> 223 bytes .../items/events/jerry/jerry_box_mega.png | Bin 0 -> 223 bytes .../items/events/jerry/jerry_box_purple.png | Bin 0 -> 221 bytes .../item/items/events/jerry/jerry_candy.png | Bin 0 -> 189 bytes .../item/items/events/jerry/party_gift.png | Bin 0 -> 232 bytes .../item/items/events/jerry/red_gift.png | Bin 0 -> 198 bytes .../events/jerry/refined_bottle_of_jyrre.png | Bin 0 -> 205 bytes .../item/items/events/jerry/volcanic_rock.png | Bin 0 -> 198 bytes .../item/items/events/jerry/walnut.png | Bin 0 -> 175 bytes .../item/items/events/jerry/white_gift.png | Bin 0 -> 197 bytes .../items/events/jerry/winter_fragment.png | Bin 0 -> 179 bytes .../items/events/mythology/ancient_claw.png | Bin 0 -> 169 bytes .../items/events/mythology/daedalus_stick.png | Bin 0 -> 145 bytes .../events/mythology/griffin_feather.png | Bin 0 -> 163 bytes .../item/items/events/spooky/bat_firework.png | Bin 0 -> 209 bytes .../item/items/events/spooky/blue_candy.png | Bin 0 -> 188 bytes .../item/items/events/spooky/echolocator.png | Bin 0 -> 215 bytes .../item/items/events/spooky/ectoplasm.png | Bin 0 -> 140 bytes .../item/items/events/spooky/gold_candy.png | Bin 0 -> 181 bytes .../item/items/events/spooky/green_candy.png | Bin 0 -> 188 bytes .../items/events/spooky/horseman_candle.png | Bin 0 -> 199 bytes .../item/items/events/spooky/pumpkin_guts.png | Bin 0 -> 245 bytes .../item/items/events/spooky/purple_candy.png | Bin 0 -> 188 bytes .../items/events/spooky/soul_fragment.png | Bin 0 -> 186 bytes .../item/items/events/spooky/spooky_shard.png | Bin 0 -> 190 bytes .../items/events/spooky/werewolf_skin.png | Bin 0 -> 204 bytes .../item/items/farming/box_of_seeds.png | Bin 0 -> 214 bytes .../item/items/farming/chirping_stereo.png | Bin 0 -> 214 bytes .../textures/item/items/farming/compost.png | Bin 0 -> 226 bytes .../item/items/farming/condensed_fermento.png | Bin 0 -> 203 bytes .../textures/item/items/farming/cropie.png | Bin 0 -> 213 bytes .../textures/item/items/farming/dung.png | Bin 0 -> 181 bytes .../item/items/farming/enchanted_compost.png | Bin 0 -> 244 bytes .../textures/item/items/farming/fermento.png | Bin 0 -> 211 bytes .../item/items/farming/fine_flour.png | Bin 0 -> 176 bytes .../textures/item/items/farming/honey_jar.png | Bin 0 -> 212 bytes .../item/items/farming/jacobs_ticket.png | Bin 0 -> 179 bytes .../item/items/farming/mouse_pest_trap.png | Bin 0 -> 222 bytes .../items/farming/mutant_nether_stalk.png | Bin 0 -> 193 bytes .../item/items/farming/mycelium_dust.png | Bin 0 -> 194 bytes .../textures/item/items/farming/omega_egg.png | Bin 0 -> 201 bytes .../item/items/farming/pest_repellent.png | Bin 0 -> 192 bytes .../item/items/farming/pest_repellent_max.png | Bin 0 -> 191 bytes .../items/farming/pest_repellent_spraying.png | Bin 0 -> 89 bytes .../textures/item/items/farming/pest_trap.png | Bin 0 -> 203 bytes .../item/items/farming/plant_matter.png | Bin 0 -> 193 bytes .../item/items/farming/polished_pumpkin.png | Bin 0 -> 209 bytes .../item/items/farming/prismapump.png | Bin 0 -> 185 bytes .../textures/item/items/farming/squash.png | Bin 0 -> 211 bytes .../textures/item/items/farming/super_egg.png | Bin 0 -> 172 bytes .../items/farming/tightly_tied_hay_bale.png | Bin 0 -> 221 bytes .../item/items/farming/vinyl_beetle.png | Bin 0 -> 198 bytes .../item/items/farming/vinyl_buzzin_beats.png | Bin 0 -> 187 bytes .../items/farming/vinyl_cicada_symphony.png | Bin 0 -> 216 bytes .../items/farming/vinyl_cricket_choir.png | Bin 0 -> 213 bytes .../item/items/farming/vinyl_dynamites.png | Bin 0 -> 200 bytes .../farming/vinyl_earthworm_ensemble.png | Bin 0 -> 195 bytes .../item/items/farming/vinyl_pretty_fly.png | Bin 0 -> 219 bytes .../items/farming/vinyl_rodent_revolution.png | Bin 0 -> 206 bytes .../items/farming/vinyl_slow_and_groovy.png | Bin 0 -> 204 bytes .../items/farming/vinyl_wings_of_harmony.png | Bin 0 -> 224 bytes .../textures/item/items/farming/warty.png | Bin 0 -> 205 bytes .../item/items/farming/wriggling_larva.png | Bin 0 -> 204 bytes .../item/items/fishing/agaricus_chum_cap.png | Bin 0 -> 177 bytes .../item/items/fishing/agarimoo_tongue.png | Bin 0 -> 160 bytes .../backwater_bayou/alligator_skin.png | Bin 0 -> 170 bytes .../fishing/backwater_bayou/bronze_bowl.png | Bin 0 -> 172 bytes .../backwater_bayou/bronze_ship_engine.png | Bin 0 -> 224 bytes .../backwater_bayou/bronze_ship_helm.png | Bin 0 -> 204 bytes .../backwater_bayou/bronze_ship_hull.png | Bin 0 -> 197 bytes .../backwater_bayou/busted_belt_buckle.png | Bin 0 -> 219 bytes .../fishing/backwater_bayou/can_of_worms.png | Bin 0 -> 245 bytes .../backwater_bayou/cracked_ship_helm.png | Bin 0 -> 235 bytes .../fishing/backwater_bayou/moby_duck.png | Bin 0 -> 245 bytes .../moby_duck_collector_edition.png | Bin 0 -> 238 bytes .../backwater_bayou/old_leather_boot.png | Bin 0 -> 211 bytes .../fishing/backwater_bayou/rusty_coin.png | Bin 0 -> 251 bytes .../backwater_bayou/rusty_ship_engine.png | Bin 0 -> 251 bytes .../backwater_bayou/rusty_ship_hull.png | Bin 0 -> 221 bytes .../backwater_bayou/titanoboa_shed.png | Bin 0 -> 189 bytes .../fishing/backwater_bayou/torn_cloth.png | Bin 0 -> 233 bytes .../item/items/fishing/bait/blessed_bait.png | Bin 0 -> 213 bytes .../item/items/fishing/bait/carrot_bait.png | Bin 0 -> 217 bytes .../items/fishing/bait/corrupted_bait.png | Bin 0 -> 327 bytes .../fishing/bait/corrupted_bait.png.mcmeta | 1 + .../item/items/fishing/bait/dark_bait.png | Bin 0 -> 203 bytes .../item/items/fishing/bait/fish_bait.png | Bin 0 -> 241 bytes .../item/items/fishing/bait/frozen_bait.png | Bin 0 -> 224 bytes .../items/fishing/bait/glowy_chum_bait.png | Bin 0 -> 207 bytes .../item/items/fishing/bait/golden_bait.png | Bin 0 -> 203 bytes .../item/items/fishing/bait/hot_bait.png | Bin 0 -> 244 bytes .../item/items/fishing/bait/hotspot_bait.png | Bin 0 -> 207 bytes .../item/items/fishing/bait/ice_bait.png | Bin 0 -> 214 bytes .../item/items/fishing/bait/light_bait.png | Bin 0 -> 203 bytes .../item/items/fishing/bait/minnow_bait.png | Bin 0 -> 203 bytes .../item/items/fishing/bait/shark_bait.png | Bin 0 -> 222 bytes .../item/items/fishing/bait/spiked_bait.png | Bin 0 -> 231 bytes .../item/items/fishing/bait/spooky_bait.png | Bin 0 -> 210 bytes .../item/items/fishing/bait/treasure_bait.png | Bin 0 -> 211 bytes .../item/items/fishing/bait/whale_bait.png | Bin 0 -> 235 bytes .../item/items/fishing/bait/wooden_bait.png | Bin 0 -> 236 bytes .../item/items/fishing/bait/worm_bait.png | Bin 0 -> 190 bytes .../item/items/fishing/bobbin_scriptures.png | Bin 0 -> 228 bytes .../textures/item/items/fishing/chum.png | Bin 0 -> 177 bytes .../fishing/crimson_isle/cup_of_blood.png | Bin 0 -> 197 bytes .../fishing/crimson_isle/flaming_heart.png | Bin 0 -> 206 bytes .../fishing/crimson_isle/horn_of_taurus.png | Bin 0 -> 196 bytes .../crimson_isle/hotspot/brimstone_handle.png | Bin 0 -> 183 bytes .../crimson_isle/hotspot/fried_feather.png | Bin 0 -> 176 bytes .../hotspot/scorched_crab_stick.png | Bin 0 -> 194 bytes .../crimson_isle/hotspot/singed_powder.png | Bin 0 -> 228 bytes .../items/fishing/crimson_isle/lava_shell.png | Bin 0 -> 216 bytes .../fishing/crimson_isle/lump_of_magma.png | Bin 0 -> 280 bytes .../crimson_isle/lump_of_magma.png.mcmeta | 1 + .../items/fishing/crimson_isle/magma_fish.png | Bin 0 -> 233 bytes .../crimson_isle/magma_fish_diamond.png | Bin 0 -> 216 bytes .../fishing/crimson_isle/magma_fish_gold.png | Bin 0 -> 217 bytes .../crimson_isle/magma_fish_silver.png | Bin 0 -> 220 bytes .../crimson_isle/magma_lord_fragment.png | Bin 0 -> 225 bytes .../fishing/crimson_isle/moogma_pelt.png | Bin 0 -> 308 bytes .../crimson_isle/mysterious_package.png | Bin 0 -> 239 bytes .../fishing/crimson_isle/orb_of_energy.png | Bin 0 -> 199 bytes .../crimson_isle/pyroclastic_scale.png | Bin 0 -> 208 bytes .../fishing/crimson_isle/thunder_shards.png | Bin 0 -> 196 bytes .../trophy_fish/blobfish_bronze.png | Bin 0 -> 197 bytes .../trophy_fish/blobfish_diamond.png | Bin 0 -> 226 bytes .../trophy_fish/blobfish_gold.png | Bin 0 -> 226 bytes .../trophy_fish/blobfish_silver.png | Bin 0 -> 226 bytes .../trophy_fish/flyfish_bronze.png | Bin 0 -> 216 bytes .../trophy_fish/flyfish_diamond.png | Bin 0 -> 212 bytes .../crimson_isle/trophy_fish/flyfish_gold.png | Bin 0 -> 212 bytes .../trophy_fish/flyfish_silver.png | Bin 0 -> 215 bytes .../trophy_fish/framed_volcanic_stonefish.png | Bin 0 -> 278 bytes .../trophy_fish/golden_fish_bronze.png | Bin 0 -> 207 bytes .../trophy_fish/golden_fish_diamond.png | Bin 0 -> 207 bytes .../trophy_fish/golden_fish_gold.png | Bin 0 -> 188 bytes .../trophy_fish/golden_fish_silver.png | Bin 0 -> 207 bytes .../trophy_fish/gusher_bronze.png | Bin 0 -> 202 bytes .../trophy_fish/gusher_diamond.png | Bin 0 -> 202 bytes .../crimson_isle/trophy_fish/gusher_gold.png | Bin 0 -> 202 bytes .../trophy_fish/gusher_silver.png | Bin 0 -> 202 bytes .../trophy_fish/karate_fish_bronze.png | Bin 0 -> 219 bytes .../trophy_fish/karate_fish_diamond.png | Bin 0 -> 216 bytes .../trophy_fish/karate_fish_gold.png | Bin 0 -> 219 bytes .../trophy_fish/karate_fish_silver.png | Bin 0 -> 219 bytes .../trophy_fish/lava_horse_bronze.png | Bin 0 -> 189 bytes .../trophy_fish/lava_horse_diamond.png | Bin 0 -> 211 bytes .../trophy_fish/lava_horse_gold.png | Bin 0 -> 211 bytes .../trophy_fish/lava_horse_silver.png | Bin 0 -> 211 bytes .../trophy_fish/mana_ray_bronze.png | Bin 0 -> 209 bytes .../trophy_fish/mana_ray_diamond.png | Bin 0 -> 240 bytes .../trophy_fish/mana_ray_gold.png | Bin 0 -> 240 bytes .../trophy_fish/mana_ray_silver.png | Bin 0 -> 240 bytes .../trophy_fish/moldfin_bronze.png | Bin 0 -> 210 bytes .../trophy_fish/moldfin_diamond.png | Bin 0 -> 210 bytes .../crimson_isle/trophy_fish/moldfin_gold.png | Bin 0 -> 213 bytes .../trophy_fish/moldfin_silver.png | Bin 0 -> 213 bytes .../trophy_fish/obfuscated_fish_1_bronze.png | Bin 0 -> 355 bytes .../obfuscated_fish_1_bronze.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_1_diamond.png | Bin 0 -> 369 bytes .../obfuscated_fish_1_diamond.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_1_gold.png | Bin 0 -> 369 bytes .../obfuscated_fish_1_gold.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_1_silver.png | Bin 0 -> 369 bytes .../obfuscated_fish_1_silver.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_2_bronze.png | Bin 0 -> 340 bytes .../obfuscated_fish_2_bronze.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_2_diamond.png | Bin 0 -> 352 bytes .../obfuscated_fish_2_diamond.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_2_gold.png | Bin 0 -> 352 bytes .../obfuscated_fish_2_gold.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_2_silver.png | Bin 0 -> 352 bytes .../obfuscated_fish_2_silver.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_3_bronze.png | Bin 0 -> 254 bytes .../obfuscated_fish_3_bronze.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_3_diamond.png | Bin 0 -> 255 bytes .../obfuscated_fish_3_diamond.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_3_gold.png | Bin 0 -> 255 bytes .../obfuscated_fish_3_gold.png.mcmeta | 1 + .../trophy_fish/obfuscated_fish_3_silver.png | Bin 0 -> 255 bytes .../obfuscated_fish_3_silver.png.mcmeta | 1 + .../trophy_fish/skeleton_fish_bronze.png | Bin 0 -> 179 bytes .../trophy_fish/skeleton_fish_diamond.png | Bin 0 -> 179 bytes .../trophy_fish/skeleton_fish_gold.png | Bin 0 -> 179 bytes .../trophy_fish/skeleton_fish_silver.png | Bin 0 -> 154 bytes .../trophy_fish/slugfish_bronze.png | Bin 0 -> 202 bytes .../trophy_fish/slugfish_diamond.png | Bin 0 -> 202 bytes .../trophy_fish/slugfish_gold.png | Bin 0 -> 202 bytes .../trophy_fish/slugfish_silver.png | Bin 0 -> 202 bytes .../trophy_fish/soul_fish_bronze.png | Bin 0 -> 196 bytes .../trophy_fish/soul_fish_diamond.png | Bin 0 -> 196 bytes .../trophy_fish/soul_fish_gold.png | Bin 0 -> 196 bytes .../trophy_fish/soul_fish_silver.png | Bin 0 -> 196 bytes .../steaming_hot_flounder_bronze.png | Bin 0 -> 196 bytes .../steaming_hot_flounder_diamond.png | Bin 0 -> 211 bytes .../steaming_hot_flounder_gold.png | Bin 0 -> 211 bytes .../steaming_hot_flounder_silver.png | Bin 0 -> 214 bytes .../trophy_fish/sulphur_skitter_bronze.png | Bin 0 -> 233 bytes .../trophy_fish/sulphur_skitter_diamond.png | Bin 0 -> 233 bytes .../trophy_fish/sulphur_skitter_gold.png | Bin 0 -> 233 bytes .../trophy_fish/sulphur_skitter_silver.png | Bin 0 -> 233 bytes .../trophy_fish/vanille_bronze.png | Bin 0 -> 199 bytes .../trophy_fish/vanille_diamond.png | Bin 0 -> 203 bytes .../crimson_isle/trophy_fish/vanille_gold.png | Bin 0 -> 203 bytes .../trophy_fish/vanille_silver.png | Bin 0 -> 199 bytes .../trophy_fish/volcanic_stonefish_bronze.png | Bin 0 -> 198 bytes .../volcanic_stonefish_diamond.png | Bin 0 -> 214 bytes .../trophy_fish/volcanic_stonefish_gold.png | Bin 0 -> 214 bytes .../trophy_fish/volcanic_stonefish_silver.png | Bin 0 -> 214 bytes .../crystal_hollows/eternal_flame_ring.png | Bin 0 -> 201 bytes .../fishing/crystal_hollows/magma_core.png | Bin 0 -> 205 bytes .../fishing/crystal_hollows/worm_membrane.png | Bin 0 -> 207 bytes .../fishing_festival/blue_shark_tooth.png | Bin 0 -> 156 bytes .../great_white_shark_tooth.png | Bin 0 -> 175 bytes .../great_white_tooth_meal.png | Bin 0 -> 194 bytes .../fishing_festival/nurse_shark_tooth.png | Bin 0 -> 158 bytes .../fishing/fishing_festival/shark_fin.png | Bin 0 -> 174 bytes .../fishing_festival/tiger_shark_tooth.png | Bin 0 -> 164 bytes .../items/fishing/galatea/diver_fragment.png | Bin 0 -> 173 bytes .../item/items/fishing/galatea/flexbone.png | Bin 0 -> 185 bytes .../items/fishing/galatea/gill_membrane.png | Bin 0 -> 234 bytes .../items/fishing/galatea/sturdy_bone.png | Bin 0 -> 175 bytes .../item/items/fishing/galatea/wet_book.png | Bin 0 -> 222 bytes .../item/items/fishing/galatea/wet_water.png | Bin 0 -> 208 bytes .../item/items/fishing/glowing_mushroom.png | Bin 0 -> 157 bytes .../item/items/fishing/hotspot/blue_ring.png | Bin 0 -> 201 bytes .../items/fishing/hotspot/broken_radar.png | Bin 0 -> 252 bytes .../fishing/hotspot/half_eaten_mushroom.png | Bin 0 -> 156 bytes .../fishing/water_orb/bayou_water_orb.png | Bin 0 -> 198 bytes .../fishing/water_orb/hotspot_water_orb.png | Bin 0 -> 178 bytes .../fishing/water_orb/lava_water_orb.png | Bin 0 -> 182 bytes .../fishing/water_orb/shark_water_orb.png | Bin 0 -> 196 bytes .../fishing/water_orb/spooky_water_orb.png | Bin 0 -> 174 bytes .../items/fishing/water_orb/water_orb.png | Bin 0 -> 161 bytes .../fishing/water_orb/water_orb_water.png | Bin 0 -> 180 bytes .../fishing/water_orb/winter_water_orb.png | Bin 0 -> 172 bytes .../year_of_the_seal/bouncy_beach_ball.png | Bin 0 -> 210 bytes .../fishing/year_of_the_seal/fish_food.png | Bin 0 -> 247 bytes .../fishing/year_of_the_seal/fishy_treat.png | Bin 0 -> 195 bytes .../giant_bouncy_beach_ball.png | Bin 0 -> 232 bytes .../year_of_the_seal/loudmouth_bass.png | Bin 0 -> 200 bytes .../loudmouth_bass_divine.png | Bin 0 -> 209 bytes .../year_of_the_seal/seal_treat_bag.png | Bin 0 -> 216 bytes .../item/items/foraging/agatha_coupon.png | Bin 0 -> 178 bytes .../item/items/foraging/deep_root.png | Bin 0 -> 174 bytes .../textures/item/items/foraging/fig_log.png | Bin 0 -> 517 bytes .../textures/item/items/foraging/figstone.png | Bin 0 -> 229 bytes .../textures/item/items/foraging/mangcore.png | Bin 0 -> 219 bytes .../item/items/foraging/salts/candycomb.png | Bin 0 -> 201 bytes .../salts/exalted_lushlilac_bonbon.png | Bin 0 -> 201 bytes .../item/items/foraging/salts/lushlilac.png | Bin 0 -> 215 bytes .../items/foraging/salts/lushlilac_bonbon.png | Bin 0 -> 177 bytes .../item/items/foraging/salts/oceandy.png | Bin 0 -> 200 bytes .../foraging/salts/prime_lushlilac_bonbon.png | Bin 0 -> 203 bytes .../textures/item/items/foraging/shiniest.png | Bin 0 -> 195 bytes .../item/items/foraging/signal_enhancer.png | Bin 0 -> 177 bytes .../item/items/foraging/starlyn_prize.png | Bin 0 -> 193 bytes .../item/items/foraging/stretching_sticks.png | Bin 0 -> 223 bytes .../item/items/foraging/tender_wood.png | Bin 0 -> 209 bytes .../textures/item/items/foraging/vinesap.png | Bin 0 -> 194 bytes .../mining/crystal_hollows/ascension_rope.png | Bin 0 -> 182 bytes .../crystal_hollows/concentrated_stone.png | Bin 0 -> 179 bytes .../mining/crystal_hollows/control_switch.png | Bin 0 -> 190 bytes .../mining/crystal_hollows/corleonite.png | Bin 0 -> 226 bytes .../mining/crystal_hollows/divan_alloy.png | Bin 0 -> 231 bytes .../mining/crystal_hollows/divan_fragment.png | Bin 0 -> 173 bytes .../crystal_hollows/dwarven_diamond_axe.png | Bin 0 -> 199 bytes .../dwarven_emerald_hammer.png | Bin 0 -> 215 bytes .../crystal_hollows/dwarven_gold_hammer.png | Bin 0 -> 214 bytes .../crystal_hollows/dwarven_lapis_sword.png | Bin 0 -> 206 bytes .../crystal_hollows/electron_transmitter.png | Bin 0 -> 189 bytes .../items/mining/crystal_hollows/ftx_3070.png | Bin 0 -> 161 bytes .../crystal_hollows/gemstone_chamber.png | Bin 0 -> 220 bytes .../crystal_hollows/goblin_egg_blue.png | Bin 0 -> 188 bytes .../crystal_hollows/goblin_egg_green.png | Bin 0 -> 188 bytes .../mining/crystal_hollows/goblin_egg_red.png | Bin 0 -> 188 bytes .../crystal_hollows/goblin_egg_yellow.png | Bin 0 -> 188 bytes .../items/mining/crystal_hollows/helix.png | Bin 0 -> 198 bytes .../mining/crystal_hollows/jungle_heart.png | Bin 0 -> 282 bytes .../mining/crystal_hollows/jungle_key.png | Bin 0 -> 160 bytes .../mining/crystal_hollows/oil_barrel.png | Bin 0 -> 220 bytes .../crystal_hollows/perfectly_cut_diamond.png | Bin 0 -> 191 bytes .../mining/crystal_hollows/power_crystal.png | Bin 0 -> 202 bytes .../crystal_hollows/precursor_apparatus.png | Bin 0 -> 207 bytes .../crystal_hollows/prehistoric_egg.png | Bin 0 -> 213 bytes .../crystal_hollows/prehistoric_egg_epic.png | Bin 0 -> 213 bytes .../prehistoric_egg_legendary.png | Bin 0 -> 213 bytes .../crystal_hollows/prehistoric_egg_rare.png | Bin 0 -> 213 bytes .../prehistoric_egg_uncommon.png | Bin 0 -> 213 bytes .../mining/crystal_hollows/recall_potion.png | Bin 0 -> 218 bytes .../crystal_hollows/robotron_reflector.png | Bin 0 -> 204 bytes .../items/mining/crystal_hollows/silex.png | Bin 0 -> 200 bytes .../mining/crystal_hollows/sludge_juice.png | Bin 0 -> 152 bytes .../crystal_hollows/superlite_motor.png | Bin 0 -> 211 bytes .../crystal_hollows/synthetic_heart.png | Bin 0 -> 237 bytes .../crystal_hollows/wishing_compass.png | Bin 0 -> 232 bytes .../crystal_hollows/wishing_compass_1.png | Bin 0 -> 227 bytes .../crystal_hollows/wishing_compass_2.png | Bin 0 -> 225 bytes .../items/mining/crystal_hollows/yoggie.png | Bin 0 -> 210 bytes .../mining/dwarven_mines/bejeweled_handle.png | Bin 0 -> 116 bytes .../items/mining/dwarven_mines/biofuel.png | Bin 0 -> 200 bytes .../dwarven_mines/chilled_pristine_potato.png | Bin 0 -> 208 bytes .../dwarven_mines/divan_powder_coating.png | Bin 0 -> 227 bytes .../dwarven_mines/dwarven_os_block_bran.png | Bin 0 -> 226 bytes .../dwarven_os_gemstone_grahams.png | Bin 0 -> 226 bytes .../dwarven_os_metallic_minis.png | Bin 0 -> 210 bytes .../dwarven_mines/dwarven_os_ore_oats.png | Bin 0 -> 206 bytes .../mining/dwarven_mines/dwarven_tankard.png | Bin 0 -> 213 bytes .../mining/dwarven_mines/filet_o_fortune.png | Bin 0 -> 235 bytes .../mining/dwarven_mines/glacite_jewel.png | Bin 0 -> 192 bytes .../items/mining/dwarven_mines/goblin_egg.png | Bin 0 -> 177 bytes .../mining/dwarven_mines/golden_plate.png | Bin 0 -> 191 bytes .../mining/dwarven_mines/mining_pumpkin.png | Bin 0 -> 195 bytes .../dwarven_mines/mining_raffle_ticket.png | Bin 0 -> 170 bytes .../mining/dwarven_mines/mithril_gourmand.png | Bin 0 -> 185 bytes .../mining/dwarven_mines/mithril_ore.png | Bin 0 -> 210 bytes .../mining/dwarven_mines/mithril_plate.png | Bin 0 -> 191 bytes .../mining/dwarven_mines/mithril_powder.png | Bin 0 -> 176 bytes .../items/mining/dwarven_mines/plasma.png | Bin 0 -> 176 bytes .../mining/dwarven_mines/refined_diamond.png | Bin 0 -> 203 bytes .../mining/dwarven_mines/refined_mithril.png | Bin 0 -> 198 bytes .../mining/dwarven_mines/refined_titanium.png | Bin 0 -> 199 bytes .../mining/dwarven_mines/royal_pigeon.png | Bin 0 -> 227 bytes .../dwarven_mines/royal_pigeon_call.png | Bin 0 -> 228 bytes .../items/mining/dwarven_mines/sorrow.png | Bin 0 -> 131 bytes .../mining/dwarven_mines/speckled_teacup.png | Bin 0 -> 200 bytes .../items/mining/dwarven_mines/starfall.png | Bin 0 -> 204 bytes .../mining/dwarven_mines/titanium_alloy.png | Bin 0 -> 240 bytes .../mining/dwarven_mines/titanium_ore.png | Bin 0 -> 206 bytes .../items/mining/dwarven_mines/treasurite.png | Bin 0 -> 184 bytes .../item/items/mining/dwarven_mines/volta.png | Bin 0 -> 199 bytes .../items/mining/gemstones/amber_crystal.png | Bin 0 -> 218 bytes .../mining/gemstones/amethyst_crystal.png | Bin 0 -> 229 bytes .../mining/gemstones/aquamarine_crystal.png | Bin 0 -> 218 bytes .../mining/gemstones/citrine_crystal.png | Bin 0 -> 218 bytes .../items/mining/gemstones/fine_amber_gem.png | Bin 0 -> 189 bytes .../mining/gemstones/fine_amethyst_gem.png | Bin 0 -> 187 bytes .../mining/gemstones/fine_aquamarine_gem.png | Bin 0 -> 189 bytes .../mining/gemstones/fine_citrine_gem.png | Bin 0 -> 192 bytes .../items/mining/gemstones/fine_jade_gem.png | Bin 0 -> 203 bytes .../mining/gemstones/fine_jasper_gem.png | Bin 0 -> 207 bytes .../items/mining/gemstones/fine_onyx_gem.png | Bin 0 -> 192 bytes .../items/mining/gemstones/fine_opal_gem.png | Bin 0 -> 234 bytes .../mining/gemstones/fine_peridot_gem.png | Bin 0 -> 202 bytes .../items/mining/gemstones/fine_ruby_gem.png | Bin 0 -> 254 bytes .../mining/gemstones/fine_sapphire_gem.png | Bin 0 -> 205 bytes .../items/mining/gemstones/fine_topaz_gem.png | Bin 0 -> 195 bytes .../mining/gemstones/flawed_amber_gem.png | Bin 0 -> 189 bytes .../mining/gemstones/flawed_amethyst_gem.png | Bin 0 -> 184 bytes .../gemstones/flawed_aquamarine_gem.png | Bin 0 -> 184 bytes .../mining/gemstones/flawed_citrine_gem.png | Bin 0 -> 196 bytes .../mining/gemstones/flawed_jade_gem.png | Bin 0 -> 199 bytes .../mining/gemstones/flawed_jasper_gem.png | Bin 0 -> 205 bytes .../mining/gemstones/flawed_onyx_gem.png | Bin 0 -> 192 bytes .../mining/gemstones/flawed_opal_gem.png | Bin 0 -> 193 bytes .../mining/gemstones/flawed_peridot_gem.png | Bin 0 -> 194 bytes .../mining/gemstones/flawed_ruby_gem.png | Bin 0 -> 213 bytes .../mining/gemstones/flawed_sapphire_gem.png | Bin 0 -> 202 bytes .../mining/gemstones/flawed_topaz_gem.png | Bin 0 -> 194 bytes .../mining/gemstones/flawless_amber_gem.png | Bin 0 -> 188 bytes .../gemstones/flawless_amethyst_gem.png | Bin 0 -> 187 bytes .../gemstones/flawless_aquamarine_gem.png | Bin 0 -> 186 bytes .../mining/gemstones/flawless_citrine_gem.png | Bin 0 -> 181 bytes .../mining/gemstones/flawless_jade_gem.png | Bin 0 -> 203 bytes .../mining/gemstones/flawless_jasper_gem.png | Bin 0 -> 205 bytes .../mining/gemstones/flawless_onyx_gem.png | Bin 0 -> 180 bytes .../mining/gemstones/flawless_opal_gem.png | Bin 0 -> 203 bytes .../mining/gemstones/flawless_peridot_gem.png | Bin 0 -> 194 bytes .../mining/gemstones/flawless_ruby_gem.png | Bin 0 -> 191 bytes .../gemstones/flawless_sapphire_gem.png | Bin 0 -> 195 bytes .../mining/gemstones/flawless_topaz_gem.png | Bin 0 -> 191 bytes .../mining/gemstones/gemstone_mixture.png | Bin 0 -> 267 bytes .../mining/gemstones/gemstone_powder.png | Bin 0 -> 281 bytes .../items/mining/gemstones/jade_crystal.png | Bin 0 -> 218 bytes .../items/mining/gemstones/jasper_crystal.png | Bin 0 -> 246 bytes .../items/mining/gemstones/onyx_crystal.png | Bin 0 -> 229 bytes .../items/mining/gemstones/opal_crystal.png | Bin 0 -> 246 bytes .../mining/gemstones/perfect_amber_gem.png | Bin 0 -> 192 bytes .../mining/gemstones/perfect_amethyst_gem.png | Bin 0 -> 194 bytes .../gemstones/perfect_aquamarine_gem.png | Bin 0 -> 195 bytes .../mining/gemstones/perfect_citrine_gem.png | Bin 0 -> 190 bytes .../mining/gemstones/perfect_jade_gem.png | Bin 0 -> 205 bytes .../mining/gemstones/perfect_jasper_gem.png | Bin 0 -> 217 bytes .../mining/gemstones/perfect_onyx_gem.png | Bin 0 -> 184 bytes .../mining/gemstones/perfect_opal_gem.png | Bin 0 -> 215 bytes .../mining/gemstones/perfect_peridot_gem.png | Bin 0 -> 206 bytes .../mining/gemstones/perfect_ruby_gem.png | Bin 0 -> 205 bytes .../mining/gemstones/perfect_sapphire_gem.png | Bin 0 -> 201 bytes .../mining/gemstones/perfect_topaz_gem.png | Bin 0 -> 197 bytes .../mining/gemstones/peridot_crystal.png | Bin 0 -> 229 bytes .../mining/gemstones/rough_amber_gem.png | Bin 0 -> 178 bytes .../mining/gemstones/rough_amethyst_gem.png | Bin 0 -> 183 bytes .../mining/gemstones/rough_aquamarine_gem.png | Bin 0 -> 183 bytes .../mining/gemstones/rough_citrine_gem.png | Bin 0 -> 194 bytes .../items/mining/gemstones/rough_jade_gem.png | Bin 0 -> 177 bytes .../mining/gemstones/rough_jasper_gem.png | Bin 0 -> 198 bytes .../items/mining/gemstones/rough_onyx_gem.png | Bin 0 -> 186 bytes .../items/mining/gemstones/rough_opal_gem.png | Bin 0 -> 184 bytes .../mining/gemstones/rough_peridot_gem.png | Bin 0 -> 173 bytes .../items/mining/gemstones/rough_ruby_gem.png | Bin 0 -> 192 bytes .../mining/gemstones/rough_sapphire_gem.png | Bin 0 -> 192 bytes .../mining/gemstones/rough_topaz_gem.png | Bin 0 -> 189 bytes .../items/mining/gemstones/ruby_crystal.png | Bin 0 -> 229 bytes .../mining/gemstones/sapphire_crystal.png | Bin 0 -> 218 bytes .../items/mining/gemstones/topaz_crystal.png | Bin 0 -> 229 bytes .../mining/glacite_tunnels/claw_fossil.png | Bin 0 -> 183 bytes .../mining/glacite_tunnels/clubbed_fossil.png | Bin 0 -> 192 bytes .../glacite_tunnels/footprint_fossil.png | Bin 0 -> 192 bytes .../items/mining/glacite_tunnels/glacite.png | Bin 0 -> 198 bytes .../glacite_tunnels/glacite_amalgamation.png | Bin 0 -> 266 bytes .../mining/glacite_tunnels/glacite_powder.png | Bin 0 -> 176 bytes .../mining/glacite_tunnels/perfect_plate.png | Bin 0 -> 224 bytes .../glacite_tunnels/refined_tungsten.png | Bin 0 -> 198 bytes .../mining/glacite_tunnels/refined_umber.png | Bin 0 -> 200 bytes .../glacite_tunnels/secret_railroad_pass.png | Bin 0 -> 225 bytes .../glacite_tunnels/shattered_pendant.png | Bin 0 -> 248 bytes .../mining/glacite_tunnels/skeleton_key.png | Bin 0 -> 168 bytes .../mining/glacite_tunnels/spine_fossil.png | Bin 0 -> 200 bytes .../glacite_tunnels/suspicious_scrap.png | Bin 0 -> 274 bytes .../items/mining/glacite_tunnels/tungsten.png | Bin 0 -> 211 bytes .../mining/glacite_tunnels/tungsten_key.png | Bin 0 -> 155 bytes .../mining/glacite_tunnels/tungsten_plate.png | Bin 0 -> 197 bytes .../mining/glacite_tunnels/tusk_fossil.png | Bin 0 -> 179 bytes .../mining/glacite_tunnels/ugly_fossil.png | Bin 0 -> 198 bytes .../items/mining/glacite_tunnels/umber.png | Bin 0 -> 202 bytes .../mining/glacite_tunnels/umber_key.png | Bin 0 -> 158 bytes .../mining/glacite_tunnels/umber_plate.png | Bin 0 -> 205 bytes .../mining/glacite_tunnels/webbed_fossil.png | Bin 0 -> 189 bytes .../item/items/mining/glossy_gemstone.png | Bin 0 -> 186 bytes .../item/items/mining/refined_mineral.png | Bin 0 -> 202 bytes .../item/items/misc/aatrox_phone_number.png | Bin 0 -> 179 bytes .../item/items/misc/ananke_feather.png | Bin 0 -> 181 bytes .../textures/item/items/misc/bag_of_cash.png | Bin 0 -> 250 bytes .../textures/item/items/misc/bag_of_gold.png | Bin 0 -> 258 bytes .../item/items/misc/bingo_display.png | Bin 0 -> 157 bytes .../item/items/misc/booster_cookie.png | Bin 0 -> 198 bytes .../item/items/misc/booster_cookie_box.png | Bin 0 -> 203 bytes .../textures/item/items/misc/bridge_egg.png | Bin 0 -> 132 bytes .../item/items/misc/carnival_ticket.png | Bin 0 -> 174 bytes .../items/misc/century_party_invitation.png | Bin 0 -> 230 bytes .../item/items/misc/collection_display.png | Bin 0 -> 169 bytes .../item/items/misc/colossal_exp_bottle.png | Bin 0 -> 236 bytes .../misc/colossal_exp_bottle_upgrade.png | Bin 0 -> 166 bytes .../textures/item/items/misc/connect_four.png | Bin 0 -> 195 bytes .../textures/item/items/misc/copper.png | Bin 0 -> 247 bytes .../textures/item/items/misc/day_saver.png | Bin 0 -> 220 bytes .../item/items/misc/dianas_bookshelf.png | Bin 0 -> 566 bytes .../item/items/misc/discs/battle_disc.png | Bin 0 -> 179 bytes .../item/items/misc/discs/dungeon_disc_1.png | Bin 0 -> 208 bytes .../item/items/misc/discs/dungeon_disc_2.png | Bin 0 -> 215 bytes .../item/items/misc/discs/dungeon_disc_3.png | Bin 0 -> 198 bytes .../item/items/misc/discs/dungeon_disc_4.png | Bin 0 -> 219 bytes .../item/items/misc/discs/dungeon_disc_5.png | Bin 0 -> 197 bytes .../item/items/misc/discs/revenge.png | Bin 0 -> 186 bytes .../item/items/misc/discs/spooky_disc.png | Bin 0 -> 200 bytes .../item/items/misc/discs/winter_disc.png | Bin 0 -> 201 bytes .../textures/item/items/misc/ditto_blob.png | Bin 0 -> 169 bytes .../textures/item/items/misc/ditto_skin.png | Bin 0 -> 187 bytes .../textures/item/items/misc/ditto_skull.png | Bin 0 -> 177 bytes .../talisman_enrichment_attack_speed.png | Bin 0 -> 288 bytes .../talisman_enrichment_critical_chance.png | Bin 0 -> 318 bytes .../talisman_enrichment_critical_damage.png | Bin 0 -> 301 bytes .../talisman_enrichment_defense.png | Bin 0 -> 317 bytes .../talisman_enrichment_ferocity.png | Bin 0 -> 280 bytes .../talisman_enrichment_health.png | Bin 0 -> 285 bytes .../talisman_enrichment_intelligence.png | Bin 0 -> 294 bytes .../talisman_enrichment_magic_find.png | Bin 0 -> 348 bytes ...alisman_enrichment_sea_creature_chance.png | Bin 0 -> 346 bytes .../talisman_enrichment_strength.png | Bin 0 -> 325 bytes .../talisman_enrichment_swapper.png | Bin 0 -> 268 bytes .../talisman_enrichment_walk_speed.png | Bin 0 -> 378 bytes .../desert_island_crystal.png | Bin 0 -> 283 bytes .../misc/floating_crystals/farm_crystal.png | Bin 0 -> 247 bytes .../floating_crystals/fishing_crystal.png | Bin 0 -> 241 bytes .../forest_island_crystal.png | Bin 0 -> 231 bytes .../floating_crystals/mithril_crystal.png | Bin 0 -> 251 bytes .../nether_wart_island_crystal.png | Bin 0 -> 257 bytes .../resource_regenerator_crystal.png | Bin 0 -> 205 bytes .../wheat_island_crystal.png | Bin 0 -> 255 bytes .../winter_island_crystal.png | Bin 0 -> 245 bytes .../floating_crystals/woodcutting_crystal.png | Bin 0 -> 267 bytes .../textures/item/items/misc/fruit_bowl.png | Bin 0 -> 285 bytes .../item/items/misc/giant_flesh_hand.png | Bin 0 -> 362 bytes .../items/misc/giftbag_of_the_century.png | Bin 0 -> 224 bytes .../item/items/misc/grand_exp_bottle.png | Bin 0 -> 244 bytes .../textures/item/items/misc/heat_core.png | Bin 0 -> 170 bytes .../textures/item/items/misc/hologram.png | Bin 0 -> 128 bytes .../textures/item/items/misc/ice_cube.png | Bin 0 -> 176 bytes .../textures/item/items/misc/island_npc.png | Bin 0 -> 385 bytes .../textures/item/items/misc/kuudra_relic.png | Bin 0 -> 186 bytes .../item/items/misc/lamp/lamp_black.png | Bin 0 -> 243 bytes .../item/items/misc/lamp/lamp_blue.png | Bin 0 -> 243 bytes .../item/items/misc/lamp/lamp_brown.png | Bin 0 -> 243 bytes .../item/items/misc/lamp/lamp_cyan.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_gray.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_green.png | Bin 0 -> 243 bytes .../item/items/misc/lamp/lamp_light_blue.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_light_gray.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_lilac.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_lime.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_magenta.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_orange.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_pink.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_purple.png | Bin 0 -> 242 bytes .../item/items/misc/lamp/lamp_rainbow.png | Bin 0 -> 357 bytes .../item/items/misc/lamp/lamp_red.png | Bin 0 -> 243 bytes .../item/items/misc/lamp/lamp_white.png | Bin 0 -> 232 bytes .../item/items/misc/lamp/lamp_yellow.png | Bin 0 -> 242 bytes .../item/items/misc/magic_mushroom_soup.png | Bin 0 -> 106 bytes .../item/items/misc/magical_bucket.png | Bin 0 -> 106 bytes .../item/items/misc/matriarch_parfum.png | Bin 0 -> 210 bytes .../items/misc/matriarch_parfum_spraying.png | Bin 0 -> 221 bytes .../item/items/misc/metaphysical_serum.png | Bin 0 -> 234 bytes .../items/misc/minion_items/budget_hopper.png | Bin 0 -> 163 bytes .../misc/minion_items/budget_hopper_coins.png | Bin 0 -> 238 bytes .../items/misc/minion_items/cheese_fuel.png | Bin 0 -> 174 bytes .../items/misc/minion_items/compactor.png | Bin 0 -> 821 bytes .../items/misc/minion_items/corrupt_soil.png | Bin 0 -> 208 bytes .../misc/minion_items/diamond_spreading.png | Bin 0 -> 174 bytes .../misc/minion_items/dwarven_compactor.png | Bin 0 -> 824 bytes .../minion_items/enchanted_hopper_coins.png | Bin 0 -> 145 bytes .../misc/minion_items/everburning_flame.png | Bin 0 -> 233 bytes .../items/misc/minion_items/free_will.png | Bin 0 -> 257 bytes .../generator_upgrade_stone_clay_12.png | Bin 0 -> 251 bytes .../generator_upgrade_stone_fishing_12.png | Bin 0 -> 283 bytes .../generator_upgrade_stone_revenant_12.png | Bin 0 -> 269 bytes .../generator_upgrade_stone_tarantula_12.png | Bin 0 -> 272 bytes .../items/misc/minion_items/magma_bucket.png | Bin 0 -> 128 bytes .../misc/minion_items/mithril_infusion.png | Bin 0 -> 197 bytes .../misc/minion_items/perfect_hopper.png | Bin 0 -> 188 bytes .../minion_items/perfect_hopper_coins.png | Bin 0 -> 238 bytes .../items/misc/minion_items/plasma_bucket.png | Bin 0 -> 144 bytes .../item/items/misc/minion_items/postcard.png | Bin 0 -> 238 bytes .../misc/minion_items/potato_spreading.png | Bin 0 -> 159 bytes .../items/misc/minion_items/solar_panel.png | Bin 0 -> 210 bytes .../minion_items/super_compactor_3000.png | Bin 0 -> 822 bytes .../items/misc/minion_storage_expander.png | Bin 0 -> 232 bytes .../item/items/misc/mysterious_crop.png | Bin 0 -> 215 bytes .../item/items/misc/mysterious_meat.png | Bin 0 -> 217 bytes .../item/items/misc/necrons_ladder.png | Bin 0 -> 199 bytes .../textures/item/items/misc/night_saver.png | Bin 0 -> 219 bytes .../item/items/misc/paint_cartridge.png | Bin 0 -> 201 bytes .../item/items/misc/parkour_controller.png | Bin 0 -> 221 bytes .../item/items/misc/parkour_point.png | Bin 0 -> 216 bytes .../item/items/misc/parkour_times.png | Bin 0 -> 154 bytes .../item/items/misc/personal_bank_item.png | Bin 0 -> 241 bytes .../textures/item/items/misc/pet_cake.png | Bin 0 -> 244 bytes .../item/items/misc/plasma_nucleus.png | Bin 0 -> 196 bytes .../item/items/misc/plumber_sponge.png | Bin 0 -> 208 bytes .../item/items/misc/poison_sample.png | Bin 0 -> 188 bytes .../textures/item/items/misc/portalizer.png | Bin 0 -> 195 bytes .../textures/item/items/misc/potion_bag.png | Bin 0 -> 265 bytes .../repelling_candle_aqua.png | Bin 0 -> 232 bytes .../repelling_candle_black.png | Bin 0 -> 232 bytes .../repelling_candle_blue.png | Bin 0 -> 232 bytes .../repelling_candle_brown.png | Bin 0 -> 232 bytes .../repelling_candle_cyan.png | Bin 0 -> 232 bytes .../repelling_candle_gray.png | Bin 0 -> 232 bytes .../repelling_candle_green.png | Bin 0 -> 232 bytes .../repelling_candle_lilac.png | Bin 0 -> 232 bytes .../repelling_candle_orange.png | Bin 0 -> 232 bytes .../repelling_candle_pink.png | Bin 0 -> 232 bytes .../repelling_candle_purple.png | Bin 0 -> 232 bytes .../repelling_candle/repelling_candle_red.png | Bin 0 -> 232 bytes .../repelling_candle_white.png | Bin 0 -> 227 bytes .../repelling_candle_yellow.png | Bin 0 -> 232 bytes .../item/items/misc/rock_paper_shears.png | Bin 0 -> 207 bytes .../items/misc/romero/flower_maelstrom.png | Bin 0 -> 254 bytes .../misc/romero/poem_of_infinite_love.png | Bin 0 -> 190 bytes .../items/misc/romero/poorly_wrapped_rock.png | Bin 0 -> 168 bytes .../item/items/misc/romero/rose_bouquet.png | Bin 0 -> 223 bytes .../misc/romero/very_official_yellow_rock.png | Bin 0 -> 186 bytes .../item/items/misc/romero/warts_stew.png | Bin 0 -> 235 bytes .../misc/romero/wrapped_gift_for_juliette.png | Bin 0 -> 197 bytes .../item/items/misc/romero/yellow_rock.png | Bin 0 -> 122 bytes .../textures/item/items/misc/rotten_apple.png | Bin 0 -> 238 bytes .../textures/item/items/misc/saving_grace.png | Bin 0 -> 212 bytes .../textures/item/items/misc/shiny_orb.png | Bin 0 -> 170 bytes .../textures/item/items/misc/shiny_rod.png | Bin 0 -> 213 bytes .../textures/item/items/misc/shiny_shard.png | Bin 0 -> 173 bytes .../misc/sirius_personal_phone_number.png | Bin 0 -> 183 bytes .../item/items/misc/skyblock_menu.png | Bin 0 -> 117 bytes .../item/items/misc/skyblock_menu_rift.png | Bin 0 -> 121 bytes .../item/items/misc/social_display.png | Bin 0 -> 162 bytes .../textures/item/items/misc/solved_prism.png | Bin 0 -> 183 bytes .../textures/item/items/misc/spray_can.png | Bin 0 -> 216 bytes .../item/items/misc/spray_can_spraying.png | Bin 0 -> 225 bytes .../textures/item/items/misc/stone_bridge.png | Bin 0 -> 175 bytes .../misc/stonk_market/avaricious_chalice.png | Bin 0 -> 220 bytes .../misc/stonk_market/blood_soaked_coins.png | Bin 0 -> 260 bytes .../misc/stonk_market/blood_stained_coins.png | Bin 0 -> 235 bytes .../stonk_market/freshly_minted_coins.png | Bin 0 -> 225 bytes .../misc/stonk_market/golden_fragment.png | Bin 0 -> 183 bytes .../misc/stonk_market/stock_of_stonks.png | Bin 0 -> 205 bytes .../items/misc/super_magic_mushroom_soup.png | Bin 0 -> 153 bytes .../item/items/misc/swappable_preview.png | Bin 0 -> 131 bytes .../textures/item/items/misc/talisman_bag.png | Bin 0 -> 243 bytes .../textures/item/items/misc/tic_tac_toe.png | Bin 0 -> 210 bytes .../item/items/misc/titanic_exp_bottle.png | Bin 0 -> 214 bytes .../item/items/misc/token_of_the_century.png | Bin 0 -> 210 bytes .../textures/item/items/misc/toy.png | Bin 0 -> 205 bytes .../arachne_sanctuary_travel_scroll.png | Bin 0 -> 254 bytes .../base_camp_travel_scroll.png | Bin 0 -> 242 bytes .../travel_scrolls/bayou_travel_scroll.png | Bin 0 -> 250 bytes .../blaze_farm_travel_scroll.png | Bin 0 -> 230 bytes .../crystal_hollows_travel_scroll.png | Bin 0 -> 262 bytes .../crystal_nucleus_travel_scroll.png | Bin 0 -> 262 bytes .../travel_scrolls/danger_1_travel_scroll.png | Bin 0 -> 254 bytes .../travel_scrolls/danger_2_travel_scroll.png | Bin 0 -> 238 bytes .../danger_2_travel_scroll_old.png | Bin 0 -> 238 bytes .../travel_scrolls/danger_3_travel_scroll.png | Bin 0 -> 225 bytes .../dragon_nest_travel_scroll.png | Bin 0 -> 233 bytes .../dragontail_travel_scroll.png | Bin 0 -> 250 bytes .../farming_1_travel_scroll.png | Bin 0 -> 250 bytes .../farming_2_travel_scroll.png | Bin 0 -> 253 bytes .../foraging_1_travel_scroll.png | Bin 0 -> 238 bytes .../foraging_2_travel_scroll.png | Bin 0 -> 277 bytes .../travel_scrolls/forge_travel_scroll.png | Bin 0 -> 245 bytes .../hub_castle_travel_scroll.png | Bin 0 -> 254 bytes .../hub_crypts_travel_scroll.png | Bin 0 -> 238 bytes .../travel_scrolls/hub_da_travel_scroll.png | Bin 0 -> 235 bytes .../hub_wizard_tower_travel_scroll.png | Bin 0 -> 252 bytes .../travel_scrolls/mining_1_travel_scroll.png | Bin 0 -> 253 bytes .../travel_scrolls/mining_2_travel_scroll.png | Bin 0 -> 248 bytes .../travel_scrolls/mining_3_travel_scroll.png | Bin 0 -> 262 bytes .../murkwater_travel_scroll.png | Bin 0 -> 262 bytes .../travel_scrolls/museum_travel_scroll.png | Bin 0 -> 254 bytes .../nether_fortress_boss_travel_scroll.png | Bin 0 -> 246 bytes ...nether_fortress_boss_travel_scroll_old.png | Bin 0 -> 214 bytes .../park_cave_travel_scroll.png | Bin 0 -> 271 bytes .../park_jungle_travel_scroll.png | Bin 0 -> 245 bytes .../rift_wizard_tower_travel_scroll.png | Bin 0 -> 215 bytes .../scarleton_travel_scroll.png | Bin 0 -> 250 bytes .../smoldering_chambers_travel_scroll.png | Bin 0 -> 239 bytes .../spiders_den_top_travel_scroll.png | Bin 0 -> 257 bytes .../trapper_den_travel_scroll.png | Bin 0 -> 245 bytes .../travel_scrolls/unknown_travel_scroll.png | Bin 0 -> 190 bytes .../void_sepulture_travel_scroll.png | Bin 0 -> 215 bytes .../wasteland_travel_scroll.png | Bin 0 -> 240 bytes .../item/items/misc/trio_contacts_addon.png | Bin 0 -> 211 bytes .../textures/item/items/misc/unknown_item.png | Bin 0 -> 126 bytes .../textures/item/items/misc/wet_napkin.png | Bin 0 -> 215 bytes .../item/items/misc/wheel_of_fate.png | Bin 0 -> 252 bytes .../items/modifiers/amber_power_scroll.png | Bin 0 -> 203 bytes .../items/modifiers/amethyst_power_scroll.png | Bin 0 -> 199 bytes .../item/items/modifiers/attribute_shard.png | Bin 0 -> 201 bytes .../items/modifiers/attribute_shard_red.png | Bin 0 -> 201 bytes .../item/items/modifiers/book_of_stats.png | Bin 0 -> 207 bytes .../item/items/modifiers/bookworm_book.png | Bin 0 -> 215 bytes .../items/modifiers/enchanted_book_bundle.png | Bin 0 -> 231 bytes .../items/modifiers/enchanted_book_common.png | Bin 0 -> 236 bytes .../enchanted_book_common_ultimate.png | Bin 0 -> 236 bytes .../items/modifiers/enchanted_book_divine.png | Bin 0 -> 237 bytes .../enchanted_book_divine_ultimate.png | Bin 0 -> 236 bytes .../items/modifiers/enchanted_book_epic.png | Bin 0 -> 237 bytes .../enchanted_book_epic_ultimate.png | Bin 0 -> 237 bytes .../modifiers/enchanted_book_legendary.png | Bin 0 -> 237 bytes .../enchanted_book_legendary_ultimate.png | Bin 0 -> 236 bytes .../items/modifiers/enchanted_book_mythic.png | Bin 0 -> 237 bytes .../enchanted_book_mythic_ultimate.png | Bin 0 -> 237 bytes .../items/modifiers/enchanted_book_rare.png | Bin 0 -> 237 bytes .../enchanted_book_rare_ultimate.png | Bin 0 -> 236 bytes .../modifiers/enchanted_book_stacking.png | Bin 0 -> 257 bytes .../modifiers/enchanted_book_supreme.png | Bin 0 -> 237 bytes .../enchanted_book_supreme_ultimate.png | Bin 0 -> 237 bytes .../modifiers/enchanted_book_ultimate.png | Bin 0 -> 247 bytes .../modifiers/enchanted_book_uncommon.png | Bin 0 -> 237 bytes .../enchanted_book_uncommon_ultimate.png | Bin 0 -> 236 bytes .../enchantment_upgrades/chain_end_times.png | Bin 0 -> 210 bytes .../enchantment_upgrades/endstone_idol.png | Bin 0 -> 213 bytes .../enchantment_upgrades/ensnared_snail.png | Bin 0 -> 250 bytes .../enchantment_upgrades/gold_bottle_cap.png | Bin 0 -> 182 bytes .../enchantment_upgrades/golden_bounty.png | Bin 0 -> 197 bytes .../enchantment_upgrades/octopus_tendril.png | Bin 0 -> 193 bytes .../pesthunting_guide.png | Bin 0 -> 225 bytes .../enchantment_upgrades/severed_hand.png | Bin 0 -> 220 bytes .../enchantment_upgrades/severed_pincer.png | Bin 0 -> 224 bytes .../modifiers/enchantment_upgrades/sil_ex.png | Bin 0 -> 179 bytes .../enchantment_upgrades/troubled_bubble.png | Bin 0 -> 188 bytes .../enchantment_upgrades/troubled_bubble2.png | Bin 0 -> 138 bytes .../items/modifiers/farming_for_dummies.png | Bin 0 -> 203 bytes .../items/modifiers/fifth_master_star.png | Bin 0 -> 197 bytes .../item/items/modifiers/fighting_booster.png | Bin 0 -> 247 bytes .../items/modifiers/first_master_star.png | Bin 0 -> 175 bytes .../modifiers/foraging_fortune_booster.png | Bin 0 -> 263 bytes .../modifiers/foraging_wisdom_booster.png | Bin 0 -> 253 bytes .../items/modifiers/fourth_master_star.png | Bin 0 -> 202 bytes .../items/modifiers/fuming_potato_book.png | Bin 0 -> 220 bytes .../item/items/modifiers/hot_potato_book.png | Bin 0 -> 215 bytes .../item/items/modifiers/implosion_scroll.png | Bin 0 -> 201 bytes .../items/modifiers/jade_power_scroll.png | Bin 0 -> 203 bytes .../item/items/modifiers/jalapeno_book.png | Bin 0 -> 235 bytes .../items/modifiers/jasper_power_scroll.png | Bin 0 -> 222 bytes .../modifiers/kuudra_washing_machine.png | Bin 0 -> 208 bytes .../item/items/modifiers/luck_booster.png | Bin 0 -> 251 bytes .../items/modifiers/opal_power_scroll.png | Bin 0 -> 203 bytes .../item/items/modifiers/polarvoid_book.png | Bin 0 -> 211 bytes .../items/modifiers/recombobulator_3000.png | Bin 0 -> 262 bytes .../items/modifiers/ruby_power_scroll.png | Bin 0 -> 203 bytes .../items/modifiers/sapphire_power_scroll.png | Bin 0 -> 199 bytes .../items/modifiers/second_master_star.png | Bin 0 -> 185 bytes .../items/modifiers/shadow_warp_scroll.png | Bin 0 -> 201 bytes .../item/items/modifiers/sweep_booster.png | Bin 0 -> 250 bytes .../item/items/modifiers/the_art_of_peace.png | Bin 0 -> 223 bytes .../item/items/modifiers/the_art_of_war.png | Bin 0 -> 226 bytes .../items/modifiers/third_master_star.png | Bin 0 -> 203 bytes .../items/modifiers/topaz_power_scroll.png | Bin 0 -> 199 bytes .../items/modifiers/transmission_tuner.png | Bin 0 -> 208 bytes .../modifiers/ultimate_wither_scroll.png | Bin 0 -> 201 bytes .../items/modifiers/wither_shield_scroll.png | Bin 0 -> 201 bytes .../item/items/modifiers/wood_singularity.png | Bin 0 -> 352 bytes .../pet_items/all_skills_super_boost.png | Bin 0 -> 194 bytes .../item/items/pet_items/antique_remedies.png | Bin 0 -> 178 bytes .../pet_items/base_griffin_upgrade_stone.png | Bin 0 -> 230 bytes .../item/items/pet_items/bejeweled_collar.png | Bin 0 -> 179 bytes .../item/items/pet_items/bigger_teeth.png | Bin 0 -> 174 bytes .../item/items/pet_items/bingo_booster.png | Bin 0 -> 184 bytes .../items/pet_items/black_woolen_yarn.png | Bin 0 -> 186 bytes .../item/items/pet_items/brown_bandana.png | Bin 0 -> 178 bytes .../item/items/pet_items/burnt_texts.png | Bin 0 -> 240 bytes .../items/pet_items/crochet_tiger_plushie.png | Bin 0 -> 198 bytes .../items/pet_items/dwarf_turtle_shelmet.png | Bin 0 -> 185 bytes .../item/items/pet_items/edible_seaweed.png | Bin 0 -> 203 bytes .../item/items/pet_items/eerie_treat.png | Bin 0 -> 286 bytes .../items/pet_items/eerie_treat.png.mcmeta | 1 + .../item/items/pet_items/eerie_treat_1st.png | Bin 0 -> 306 bytes .../pet_items/eerie_treat_1st.png.mcmeta | 1 + .../items/pet_items/epic_kuudra_chunk.png | Bin 0 -> 237 bytes .../pet_items/fake_neuroscience_degree.png | Bin 0 -> 227 bytes .../item/items/pet_items/four_eyed_fish.png | Bin 0 -> 187 bytes .../item/items/pet_items/giant_frog_treat.png | Bin 0 -> 217 bytes .../item/items/pet_items/gold_claws.png | Bin 0 -> 180 bytes .../pet_items/grandmas_knitting_needle.png | Bin 0 -> 183 bytes .../items/pet_items/great_carrot_candy.png | Bin 0 -> 202 bytes .../item/items/pet_items/green_bandana.png | Bin 0 -> 178 bytes .../pet_items/griffin_upgrade_stone_epic.png | Bin 0 -> 227 bytes .../griffin_upgrade_stone_legendary.png | Bin 0 -> 227 bytes .../pet_items/griffin_upgrade_stone_rare.png | Bin 0 -> 227 bytes .../griffin_upgrade_stone_uncommon.png | Bin 0 -> 227 bytes .../items/pet_items/guardian_lucky_block.png | Bin 0 -> 247 bytes .../item/items/pet_items/kat_bouquet.png | Bin 0 -> 210 bytes .../item/items/pet_items/kat_flower.png | Bin 0 -> 166 bytes .../item/items/pet_items/large_frog_treat.png | Bin 0 -> 208 bytes .../pet_items/legendary_kuudra_chunk.png | Bin 0 -> 237 bytes .../item/items/pet_items/magic_top_hat.png | Bin 0 -> 185 bytes .../items/pet_items/medium_frog_treat.png | Bin 0 -> 213 bytes .../item/items/pet_items/minos_relic.png | Bin 0 -> 222 bytes .../item/items/pet_items/mixed_mite_gel.png | Bin 0 -> 158 bytes .../item/items/pet_items/mixed_mite_gel2.png | Bin 0 -> 112 bytes .../pet_items/pet_item_all_skills_boost.png | Bin 0 -> 194 bytes .../items/pet_items/pet_item_big_teeth.png | Bin 0 -> 158 bytes .../items/pet_items/pet_item_bubblegum.png | Bin 0 -> 160 bytes .../pet_items/pet_item_chocolate_syringe.png | Bin 0 -> 197 bytes .../items/pet_items/pet_item_exp_share.png | Bin 0 -> 291 bytes .../pet_items/pet_item_exp_share.png.mcmeta | 1 + .../pet_items/pet_item_exp_share_drop.png | Bin 0 -> 197 bytes .../pet_item_exp_share_drop.png.mcmeta | 1 + .../items/pet_items/pet_item_flying_pig.png | Bin 0 -> 219 bytes .../pet_items/pet_item_hardened_scales.png | Bin 0 -> 166 bytes .../items/pet_items/pet_item_iron_claws.png | Bin 0 -> 160 bytes .../items/pet_items/pet_item_lucky_clover.png | Bin 0 -> 183 bytes .../pet_items/pet_item_lucky_clover_drop.png | Bin 0 -> 158 bytes .../pet_items/pet_item_pure_mithril_gem.png | Bin 0 -> 194 bytes .../items/pet_items/pet_item_quick_claw.png | Bin 0 -> 150 bytes .../pet_items/pet_item_sharpened_claws.png | Bin 0 -> 171 bytes .../pet_items/pet_item_skill_boost_common.png | Bin 0 -> 138 bytes .../pet_items/pet_item_skill_boost_epic.png | Bin 0 -> 164 bytes .../pet_item_skill_boost_legendary.png | Bin 0 -> 164 bytes .../pet_items/pet_item_skill_boost_rare.png | Bin 0 -> 156 bytes .../pet_item_skill_boost_uncommon.png | Bin 0 -> 155 bytes .../pet_items/pet_item_spooky_cupcake.png | Bin 0 -> 200 bytes .../items/pet_items/pet_item_textbook.png | Bin 0 -> 233 bytes .../items/pet_items/pet_item_tier_boost.png | Bin 0 -> 182 bytes .../pet_items/pet_item_tier_boost_drop.png | Bin 0 -> 171 bytes .../pet_items/pet_item_titanium_minecart.png | Bin 0 -> 167 bytes .../items/pet_items/pet_item_toy_jerry.png | Bin 0 -> 185 bytes .../items/pet_items/pet_item_vampire_fang.png | Bin 0 -> 159 bytes .../items/pet_items/primal_dragon_egg.png | Bin 0 -> 210 bytes .../item/items/pet_items/radioactive_vial.png | Bin 0 -> 194 bytes .../item/items/pet_items/rainbow_feather.png | Bin 0 -> 212 bytes .../items/pet_items/rare_kuudra_chunk.png | Bin 0 -> 237 bytes .../item/items/pet_items/rat_jetpack.png | Bin 0 -> 219 bytes .../item/items/pet_items/reaper_gem.png | Bin 0 -> 177 bytes .../items/pet_items/reinforced_scales.png | Bin 0 -> 166 bytes .../item/items/pet_items/scuttler_shell.png | Bin 0 -> 212 bytes .../item/items/pet_items/serrated_claws.png | Bin 0 -> 201 bytes .../items/pet_items/simple_carrot_candy.png | Bin 0 -> 202 bytes .../item/items/pet_items/small_frog_treat.png | Bin 0 -> 217 bytes .../items/pet_items/superb_carrot_candy.png | Bin 0 -> 202 bytes .../items/pet_items/ultimate_carrot_candy.png | Bin 0 -> 170 bytes .../ultimate_carrot_candy_upgrade.png | Bin 0 -> 175 bytes .../items/pet_items/uncommon_kuudra_chunk.png | Bin 0 -> 237 bytes .../items/pet_items/uncommon_party_hat.png | Bin 0 -> 210 bytes .../items/pet_items/upgrade_stone_frost.png | Bin 0 -> 234 bytes .../items/pet_items/upgrade_stone_glacial.png | Bin 0 -> 234 bytes .../items/pet_items/upgrade_stone_subzero.png | Bin 0 -> 234 bytes .../items/pet_items/washed_up_souvenir.png | Bin 0 -> 236 bytes .../item/items/pet_items/yellow_bandana.png | Bin 0 -> 178 bytes .../item/items/pet_items/zog_anvil.png | Bin 0 -> 211 bytes .../item/items/potions/absorption_potion.png | Bin 0 -> 213 bytes .../potions/absorption_splash_potion.png | Bin 0 -> 209 bytes .../item/items/potions/adrenaline_potion.png | Bin 0 -> 204 bytes .../potions/adrenaline_splash_potion.png | Bin 0 -> 200 bytes .../item/items/potions/agility_potion.png | Bin 0 -> 210 bytes .../items/potions/agility_splash_potion.png | Bin 0 -> 205 bytes .../items/potions/alchemy_xp_boost_potion.png | Bin 0 -> 212 bytes .../alchemy_xp_boost_splash_potion.png | Bin 0 -> 206 bytes .../item/items/potions/archery_potion.png | Bin 0 -> 196 bytes .../items/potions/archery_splash_potion.png | Bin 0 -> 191 bytes .../item/items/potions/blindness_potion.png | Bin 0 -> 203 bytes .../items/potions/blindness_splash_potion.png | Bin 0 -> 200 bytes .../items/potions/brews/bitter_ice_tea.png | Bin 0 -> 184 bytes .../item/items/potions/brews/black_coffee.png | Bin 0 -> 161 bytes .../item/items/potions/brews/brew_mug.png | Bin 0 -> 166 bytes .../item/items/potions/brews/brew_overlay.png | Bin 0 -> 139 bytes .../item/items/potions/brews/cheap_coffee.png | Bin 0 -> 186 bytes .../items/potions/brews/decent_coffee.png | Bin 0 -> 171 bytes .../item/items/potions/brews/dr_paper.png | Bin 0 -> 198 bytes .../items/potions/brews/hot_chocolate.png | Bin 0 -> 189 bytes .../items/potions/brews/knockoff_cola.png | Bin 0 -> 204 bytes .../potions/brews/pulpous_orange_juice.png | Bin 0 -> 153 bytes .../items/potions/brews/red_thornleaf_tea.png | Bin 0 -> 184 bytes .../items/potions/brews/scarleton_premium.png | Bin 0 -> 185 bytes .../items/potions/brews/scornclaw_brew.png | Bin 0 -> 194 bytes .../potions/brews/slayer_energy_drink.png | Bin 0 -> 206 bytes .../items/potions/brews/tepid_green_tea.png | Bin 0 -> 184 bytes .../potions/brews/tutti_frutti_poison.png | Bin 0 -> 209 bytes .../item/items/potions/brews/viking_tear.png | Bin 0 -> 86 bytes .../item/items/potions/burning_potion.png | Bin 0 -> 214 bytes .../items/potions/burning_splash_potion.png | Bin 0 -> 213 bytes .../items/potions/cold_resistance_potion.png | Bin 0 -> 207 bytes .../potions/cold_resistance_splash_potion.png | Bin 0 -> 204 bytes .../items/potions/combat_xp_boost_potion.png | Bin 0 -> 216 bytes .../potions/combat_xp_boost_splash_potion.png | Bin 0 -> 210 bytes .../item/items/potions/critical_potion.png | Bin 0 -> 213 bytes .../items/potions/critical_splash_potion.png | Bin 0 -> 209 bytes .../item/items/potions/dodge_potion.png | Bin 0 -> 188 bytes .../items/potions/dodge_splash_potion.png | Bin 0 -> 179 bytes .../item/items/potions/dungeon_potion.png | Bin 0 -> 220 bytes .../item/items/potions/dungeon_potion_1.png | Bin 0 -> 217 bytes .../item/items/potions/dungeon_potion_2.png | Bin 0 -> 225 bytes .../item/items/potions/dungeon_potion_3.png | Bin 0 -> 219 bytes .../item/items/potions/dungeon_potion_4.png | Bin 0 -> 223 bytes .../item/items/potions/dungeon_potion_5.png | Bin 0 -> 219 bytes .../item/items/potions/dungeon_potion_6.png | Bin 0 -> 218 bytes .../item/items/potions/dungeon_potion_7.png | Bin 0 -> 218 bytes .../potions/enchanting_xp_boost_potion.png | Bin 0 -> 216 bytes .../enchanting_xp_boost_splash_potion.png | Bin 0 -> 210 bytes .../item/items/potions/experience_potion.png | Bin 0 -> 208 bytes .../potions/experience_splash_potion.png | Bin 0 -> 204 bytes .../items/potions/farming_xp_boost_potion.png | Bin 0 -> 217 bytes .../farming_xp_boost_splash_potion.png | Bin 0 -> 211 bytes .../items/potions/fishing_xp_boost_potion.png | Bin 0 -> 216 bytes .../fishing_xp_boost_splash_potion.png | Bin 0 -> 210 bytes .../potions/foraging_xp_boost_potion.png | Bin 0 -> 217 bytes .../foraging_xp_boost_splash_potion.png | Bin 0 -> 211 bytes .../potions/goblin_king_scent_potion.png | Bin 0 -> 194 bytes .../goblin_king_scent_splash_potion.png | Bin 0 -> 190 bytes .../item/items/potions/god_potion.png | Bin 0 -> 222 bytes .../item/items/potions/great_spook_potion.png | Bin 0 -> 325 bytes .../potions/great_spook_potion.png.mcmeta | 1 + .../potions/harvest_harbinger_potion.png | Bin 0 -> 219 bytes .../harvest_harbinger_splash_potion.png | Bin 0 -> 205 bytes .../item/items/potions/haste_potion.png | Bin 0 -> 210 bytes .../items/potions/haste_splash_potion.png | Bin 0 -> 205 bytes .../item/items/potions/knockback_potion.png | Bin 0 -> 207 bytes .../items/potions/knockback_splash_potion.png | Bin 0 -> 209 bytes .../item/items/potions/magic_find_potion.png | Bin 0 -> 207 bytes .../potions/magic_find_splash_potion.png | Bin 0 -> 206 bytes .../item/items/potions/mana_potion.png | Bin 0 -> 188 bytes .../item/items/potions/mana_splash_potion.png | Bin 0 -> 190 bytes .../items/potions/mining_xp_boost_potion.png | Bin 0 -> 216 bytes .../potions/mining_xp_boost_splash_potion.png | Bin 0 -> 210 bytes .../items/potions/mixins/deepterror_mixin.png | Bin 0 -> 145 bytes .../potions/mixins/end_portal_fumes_mixin.png | Bin 0 -> 151 bytes .../items/potions/mixins/gabagoey_mixin.png | Bin 0 -> 148 bytes .../potions/mixins/hot_chocolate_mixin.png | Bin 0 -> 152 bytes .../item/items/potions/mixins/mixin_glass.png | Bin 0 -> 159 bytes .../potions/mixins/mushed_mushroom_mixin.png | Bin 0 -> 147 bytes .../items/potions/mixins/spider_egg_mixin.png | Bin 0 -> 143 bytes .../items/potions/mixins/wolf_fur_mixin.png | Bin 0 -> 147 bytes .../potions/mixins/zombie_brain_mixin.png | Bin 0 -> 139 bytes .../potions/mushed_glowy_tonic_potion.png | Bin 0 -> 241 bytes .../mushed_glowy_tonic_splash_potion.png | Bin 0 -> 234 bytes .../item/items/potions/pet_luck_potion.png | Bin 0 -> 216 bytes .../items/potions/pet_luck_splash_potion.png | Bin 0 -> 212 bytes .../items/potions/poisoned_candy_potion.png | Bin 0 -> 216 bytes .../potions/poisoned_candy_splash_potion.png | Bin 0 -> 209 bytes .../item/items/potions/rabbit_potion.png | Bin 0 -> 220 bytes .../items/potions/rabbit_splash_potion.png | Bin 0 -> 215 bytes .../item/items/potions/resistance_potion.png | Bin 0 -> 235 bytes .../potions/resistance_splash_potion.png | Bin 0 -> 222 bytes .../items/potions/rift_gravity_potion.png | Bin 0 -> 216 bytes .../potions/rift_gravity_splash_potion.png | Bin 0 -> 214 bytes .../item/items/potions/secrets_potion.png | Bin 0 -> 198 bytes .../items/potions/secrets_splash_potion.png | Bin 0 -> 191 bytes .../item/items/potions/spelunker_potion.png | Bin 0 -> 211 bytes .../items/potions/spelunker_splash_potion.png | Bin 0 -> 205 bytes .../item/items/potions/spirit_potion.png | Bin 0 -> 215 bytes .../items/potions/spirit_splash_potion.png | Bin 0 -> 210 bytes .../item/items/potions/stamina_potion.png | Bin 0 -> 203 bytes .../items/potions/stamina_splash_potion.png | Bin 0 -> 203 bytes .../items/potions/stinky_cheese_potion.png | Bin 0 -> 235 bytes .../potions/stinky_cheese_splash_potion.png | Bin 0 -> 226 bytes .../item/items/potions/stun_potion.png | Bin 0 -> 199 bytes .../item/items/potions/stun_splash_potion.png | Bin 0 -> 196 bytes .../items/potions/true_defense_potion.png | Bin 0 -> 236 bytes .../potions/true_defense_splash_potion.png | Bin 0 -> 233 bytes .../item/items/potions/venomous_potion.png | Bin 0 -> 200 bytes .../items/potions/venomous_splash_potion.png | Bin 0 -> 196 bytes .../item/items/potions/wisp_ice_potion.png | Bin 0 -> 204 bytes .../items/potions/wisp_ice_splash_potion.png | Bin 0 -> 205 bytes .../item/items/potions/wounded_potion.png | Bin 0 -> 202 bytes .../items/potions/wounded_splash_potion.png | Bin 0 -> 198 bytes .../items/reforge_stones/amber_material.png | Bin 0 -> 179 bytes .../items/reforge_stones/anvil_hammer.png | Bin 0 -> 214 bytes .../item/items/reforge_stones/aote_stone.png | Bin 0 -> 186 bytes .../item/items/reforge_stones/beady_eyes.png | Bin 0 -> 201 bytes .../item/items/reforge_stones/blaze_wax.png | Bin 0 -> 217 bytes .../items/reforge_stones/blazen_sphere.png | Bin 0 -> 201 bytes .../items/reforge_stones/blessed_fruit.png | Bin 0 -> 239 bytes .../item/items/reforge_stones/boo_stone.png | Bin 0 -> 229 bytes .../item/items/reforge_stones/bulky_stone.png | Bin 0 -> 178 bytes .../items/reforge_stones/burrowing_spores.png | Bin 0 -> 205 bytes .../items/reforge_stones/calcified_heart.png | Bin 0 -> 197 bytes .../item/items/reforge_stones/candy_corn.png | Bin 0 -> 170 bytes .../items/reforge_stones/clipped_wings.png | Bin 0 -> 198 bytes .../items/reforge_stones/clipped_wings2.png | Bin 0 -> 115 bytes .../items/reforge_stones/deep_sea_orb.png | Bin 0 -> 171 bytes .../items/reforge_stones/diamond_atom.png | Bin 0 -> 197 bytes .../item/items/reforge_stones/diamonite.png | Bin 0 -> 184 bytes .../item/items/reforge_stones/dirt_bottle.png | Bin 0 -> 144 bytes .../item/items/reforge_stones/dragon_claw.png | Bin 0 -> 200 bytes .../item/items/reforge_stones/dragon_horn.png | Bin 0 -> 190 bytes .../items/reforge_stones/dragon_scale.png | Bin 0 -> 198 bytes .../items/reforge_stones/dwarven_treasure.png | Bin 0 -> 172 bytes .../items/reforge_stones/endstone_geode.png | Bin 0 -> 341 bytes .../reforge_stones/entropy_suppressor.png | Bin 0 -> 258 bytes .../reforge_stones/flowering_bouquet.png | Bin 0 -> 231 bytes .../item/items/reforge_stones/frigid_husk.png | Bin 0 -> 219 bytes .../items/reforge_stones/frozen_bauble.png | Bin 0 -> 196 bytes .../reforge_stones/full_jaw_fanging_kit.png | Bin 0 -> 186 bytes .../item/items/reforge_stones/giant_tooth.png | Bin 0 -> 181 bytes .../items/reforge_stones/gleaming_crystal.png | Bin 0 -> 248 bytes .../item/items/reforge_stones/golden_ball.png | Bin 0 -> 167 bytes .../items/reforge_stones/hardened_wood.png | Bin 0 -> 193 bytes .../item/items/reforge_stones/hot_stuff.png | Bin 0 -> 232 bytes .../item/items/reforge_stones/jaderald.png | Bin 0 -> 174 bytes .../item/items/reforge_stones/jerry_stone.png | Bin 0 -> 181 bytes .../items/reforge_stones/kuudra_mandible.png | Bin 0 -> 198 bytes .../items/reforge_stones/lapis_crystal.png | Bin 0 -> 177 bytes .../items/reforge_stones/large_walnut.png | Bin 0 -> 204 bytes .../item/items/reforge_stones/lucky_dice.png | Bin 0 -> 202 bytes .../items/reforge_stones/mangrove_gem.png | Bin 0 -> 194 bytes .../items/reforge_stones/meteor_shard.png | Bin 0 -> 179 bytes .../item/items/reforge_stones/midas_jewel.png | Bin 0 -> 190 bytes .../item/items/reforge_stones/moil_log.png | Bin 0 -> 227 bytes .../item/items/reforge_stones/molten_cube.png | Bin 0 -> 170 bytes .../items/reforge_stones/moonglade_jewel.png | Bin 0 -> 185 bytes .../reforge_stones/necromancer_brooch.png | Bin 0 -> 185 bytes .../item/items/reforge_stones/onyx.png | Bin 0 -> 142 bytes .../items/reforge_stones/optical_lens.png | Bin 0 -> 145 bytes .../reforge_stones/overflowing_trash_can.png | Bin 0 -> 276 bytes .../items/reforge_stones/overgrown_grass.png | Bin 0 -> 214 bytes .../reforge_stones/petrified_starfall.png | Bin 0 -> 189 bytes .../item/items/reforge_stones/pitchin_koi.png | Bin 0 -> 193 bytes .../items/reforge_stones/pocket_iceberg.png | Bin 0 -> 197 bytes .../power_stones/acacia_birdhouse.png | Bin 0 -> 227 bytes .../power_stones/beating_heart.png | Bin 0 -> 261 bytes .../power_stones/beating_heart.png.mcmeta | 1 + .../power_stones/bubba_blister.png | Bin 0 -> 192 bytes .../power_stones/chocolate_chip.png | Bin 0 -> 183 bytes .../reforge_stones/power_stones/dark_orb.png | Bin 0 -> 181 bytes .../power_stones/displaced_leech.png | Bin 0 -> 186 bytes .../power_stones/eccentric_painting.png | Bin 0 -> 249 bytes .../eccentric_painting_bundle.png | Bin 0 -> 251 bytes .../power_stones/end_stone_shulker.png | Bin 0 -> 190 bytes .../power_stones/ender_monocle.png | Bin 0 -> 212 bytes .../reforge_stones/power_stones/furball.png | Bin 0 -> 197 bytes .../power_stones/glacite_shard.png | Bin 0 -> 180 bytes .../power_stones/hazmat_enderman.png | Bin 0 -> 257 bytes .../power_stones/horns_of_torment.png | Bin 0 -> 178 bytes .../power_stones/luxurious_spool.png | Bin 0 -> 218 bytes .../power_stones/magma_urchin.png | Bin 0 -> 197 bytes .../reforge_stones/power_stones/mandraa.png | Bin 0 -> 220 bytes .../power_stones/obsidian_tablet.png | Bin 0 -> 200 bytes .../power_stones/precious_pearl.png | Bin 0 -> 177 bytes .../power_stones/rock_candy.png | Bin 0 -> 171 bytes .../power_stones/scorched_books.png | Bin 0 -> 220 bytes .../power_stones/vitamin_death.png | Bin 0 -> 182 bytes .../items/reforge_stones/precursor_gear.png | Bin 0 -> 218 bytes .../items/reforge_stones/premium_flesh.png | Bin 0 -> 222 bytes .../presumed_gallon_of_red_paint.png | Bin 0 -> 239 bytes .../items/reforge_stones/pure_mithril.png | Bin 0 -> 179 bytes .../items/reforge_stones/rare_diamond.png | Bin 0 -> 177 bytes .../item/items/reforge_stones/red_nose.png | Bin 0 -> 124 bytes .../item/items/reforge_stones/red_scarf.png | Bin 0 -> 190 bytes .../items/reforge_stones/refined_amber.png | Bin 0 -> 213 bytes .../items/reforge_stones/rock_gemstone.png | Bin 0 -> 195 bytes .../items/reforge_stones/rusty_anchor.png | Bin 0 -> 197 bytes .../items/reforge_stones/sadan_brooch.png | Bin 0 -> 188 bytes .../item/items/reforge_stones/salmon_opal.png | Bin 0 -> 191 bytes .../item/items/reforge_stones/salt_cube.png | Bin 0 -> 172 bytes .../items/reforge_stones/searing_stone.png | Bin 0 -> 193 bytes .../item/items/reforge_stones/shiny_prism.png | Bin 0 -> 196 bytes .../items/reforge_stones/shriveled_cornea.png | Bin 0 -> 220 bytes .../items/reforge_stones/skymart_brochure.png | Bin 0 -> 237 bytes .../items/reforge_stones/spirit_decoy.png | Bin 0 -> 181 bytes .../item/items/reforge_stones/squeaky_toy.png | Bin 0 -> 230 bytes .../items/reforge_stones/suspicious_vial.png | Bin 0 -> 208 bytes .../items/reforge_stones/terry_snowglobe.png | Bin 0 -> 235 bytes .../reforge_stones/titanium_tesseract.png | Bin 0 -> 192 bytes .../item/items/reforge_stones/toil_log.png | Bin 0 -> 222 bytes .../items/reforge_stones/wither_blood.png | Bin 0 -> 210 bytes .../textures/item/items/rift/agaricus_cap.png | Bin 0 -> 167 bytes .../item/items/rift/agaricus_cap_bunch.png | Bin 0 -> 221 bytes .../item/items/rift/agaricus_soup.png | Bin 0 -> 183 bytes .../item/items/rift/anti_morph_potion.png | Bin 0 -> 210 bytes .../item/items/rift/aspect_of_the_leech_1.png | Bin 0 -> 190 bytes .../aspect_of_the_leech_1_transmission.png | Bin 0 -> 189 bytes .../item/items/rift/aspect_of_the_leech_2.png | Bin 0 -> 200 bytes .../aspect_of_the_leech_2_transmission.png | Bin 0 -> 199 bytes .../item/items/rift/aspect_of_the_leech_3.png | Bin 0 -> 200 bytes .../aspect_of_the_leech_3_transmission.png | Bin 0 -> 199 bytes .../item/items/rift/bacte_fragment.png | Bin 0 -> 197 bytes .../textures/item/items/rift/barry_pen.png | Bin 0 -> 158 bytes .../textures/item/items/rift/bedwars_wool.png | Bin 0 -> 185 bytes .../item/items/rift/berberis_blowgun.png | Bin 0 -> 188 bytes .../items/rift/berberis_fuel_injector.png | Bin 0 -> 173 bytes .../item/items/rift/bottled_odonata.png | Bin 0 -> 214 bytes .../item/items/rift/bottled_odonata_blink.png | Bin 0 -> 236 bytes .../rift/bottled_odonata_blink.png.mcmeta | 1 + .../item/items/rift/caducous_extract.png | Bin 0 -> 201 bytes .../item/items/rift/caducous_feeder.png | Bin 0 -> 195 bytes .../item/items/rift/caducous_legume.png | Bin 0 -> 224 bytes .../item/items/rift/caducous_stem.png | Bin 0 -> 210 bytes .../item/items/rift/caducous_stem_bunch.png | Bin 0 -> 232 bytes .../textures/item/items/rift/cruxmotion.png | Bin 0 -> 274 bytes .../textures/item/items/rift/dark_pebble.png | Bin 0 -> 157 bytes .../item/items/rift/dead_cat_detector.png | Bin 0 -> 264 bytes .../item/items/rift/dead_cat_food.png | Bin 0 -> 178 bytes .../item/items/rift/deadgehog_spine.png | Bin 0 -> 125 bytes .../item/items/rift/detective_scanner.png | Bin 0 -> 261 bytes .../items/rift/detective_scanner_sniff.png | Bin 0 -> 260 bytes .../item/items/rift/detective_wallet.png | Bin 0 -> 220 bytes .../textures/item/items/rift/discrite.png | Bin 0 -> 214 bytes .../item/items/rift/emmett_pointer.png | Bin 0 -> 176 bytes .../item/items/rift/empty_odonata_bottle.png | Bin 0 -> 146 bytes .../items/rift/enchanted_lush_berberis.png | Bin 0 -> 215 bytes .../item/items/rift/exportable_carrots.png | Bin 0 -> 231 bytes .../item/items/rift/fake_shuriken.png | Bin 0 -> 179 bytes .../item/items/rift/family_doubloon.png | Bin 0 -> 201 bytes .../textures/item/items/rift/farming_wand.png | Bin 0 -> 193 bytes .../textures/item/items/rift/frosty_crux.png | Bin 0 -> 167 bytes .../textures/item/items/rift/frozen_water.png | Bin 0 -> 171 bytes .../item/items/rift/frozen_water_pungi.png | Bin 0 -> 174 bytes .../item/items/rift/glyph_conclamatus.png | Bin 0 -> 203 bytes .../item/items/rift/glyph_firmitas.png | Bin 0 -> 210 bytes .../textures/item/items/rift/glyph_fortis.png | Bin 0 -> 208 bytes .../item/items/rift/glyph_pernimius.png | Bin 0 -> 210 bytes .../item/items/rift/glyph_potentia.png | Bin 0 -> 205 bytes .../textures/item/items/rift/glyph_robur.png | Bin 0 -> 210 bytes .../item/items/rift/glyph_validus.png | Bin 0 -> 202 bytes .../textures/item/items/rift/glyph_vis.png | Bin 0 -> 208 bytes .../item/items/rift/gunthesizer_lichen.png | Bin 0 -> 168 bytes .../item/items/rift/half_eaten_carrot.png | Bin 0 -> 192 bytes .../textures/item/items/rift/hemobomb.png | Bin 0 -> 206 bytes .../textures/item/items/rift/hemoglass.png | Bin 0 -> 205 bytes .../textures/item/items/rift/hemovibe.png | Bin 0 -> 181 bytes .../textures/item/items/rift/highlite.png | Bin 0 -> 204 bytes .../textures/item/items/rift/horsezooka.png | Bin 0 -> 229 bytes .../textures/item/items/rift/hot_dog.png | Bin 0 -> 217 bytes .../item/items/rift/key_to_kat_soul.png | Bin 0 -> 159 bytes .../textures/item/items/rift/larva_hook.png | Bin 0 -> 180 bytes .../item/items/rift/larva_hook_damaged.png | Bin 0 -> 192 bytes .../textures/item/items/rift/larva_silk.png | Bin 0 -> 164 bytes .../items/rift/leech_supreme_fragment.png | Bin 0 -> 182 bytes .../textures/item/items/rift/lil_pad.png | Bin 0 -> 139 bytes .../textures/item/items/rift/living_metal.png | Bin 0 -> 188 bytes .../item/items/rift/living_metal_anvil.png | Bin 0 -> 184 bytes .../textures/item/items/rift/lm_egg_boots.png | Bin 0 -> 192 bytes .../textures/item/items/rift/lm_egg_cap.png | Bin 0 -> 194 bytes .../textures/item/items/rift/lm_egg_chest.png | Bin 0 -> 208 bytes .../textures/item/items/rift/lm_egg_legs.png | Bin 0 -> 202 bytes .../item/items/rift/lush_berberis.png | Bin 0 -> 192 bytes .../textures/item/items/rift/metal_heart.png | Bin 0 -> 203 bytes .../item/items/rift/metaphoric_egg.png | Bin 0 -> 229 bytes .../textures/item/items/rift/mirrored_bow.png | Bin 0 -> 169 bytes .../items/rift/mirrored_bow_pulling_0.png | Bin 0 -> 195 bytes .../items/rift/mirrored_bow_pulling_1.png | Bin 0 -> 198 bytes .../items/rift/mirrored_bow_pulling_2.png | Bin 0 -> 197 bytes .../item/items/rift/mirrored_fishing_rod.png | Bin 0 -> 199 bytes .../items/rift/mirrored_fishing_rod_cast.png | Bin 0 -> 93 bytes .../textures/item/items/rift/muted_bark.png | Bin 0 -> 189 bytes .../item/items/rift/nearly_coherent_rod.png | Bin 0 -> 225 bytes .../item/items/rift/nearly_whole_carrot.png | Bin 0 -> 200 bytes .../item/items/rift/nullified_metal.png | Bin 0 -> 180 bytes .../textures/item/items/rift/obsolite.png | Bin 0 -> 186 bytes .../items/rift/placeable_fairy_soul_rift.png | Bin 0 -> 225 bytes .../item/items/rift/pre_digestion_fish.png | Bin 0 -> 174 bytes .../textures/item/items/rift/protochicken.png | Bin 0 -> 216 bytes .../textures/item/items/rift/puff_crux.png | Bin 0 -> 167 bytes .../textures/item/items/rift/reed_boat.png | Bin 0 -> 215 bytes .../item/items/rift/rift_jump_elixir.png | Bin 0 -> 198 bytes .../item/items/rift/rift_speed_elixir.png | Bin 0 -> 198 bytes .../item/items/rift/rift_stability_elixir.png | Bin 0 -> 233 bytes .../item/items/rift/rift_strength_elixir.png | Bin 0 -> 198 bytes .../items/rift/rift_trophy_chicken_n_egg.png | Bin 0 -> 233 bytes .../item/items/rift/rift_trophy_citizen.png | Bin 0 -> 201 bytes .../items/rift/rift_trophy_lazy_living.png | Bin 0 -> 233 bytes .../item/items/rift/rift_trophy_mirrored.png | Bin 0 -> 221 bytes .../item/items/rift/rift_trophy_mountain.png | Bin 0 -> 267 bytes .../item/items/rift/rift_trophy_slime.png | Bin 0 -> 216 bytes .../item/items/rift/rift_trophy_vampiric.png | Bin 0 -> 247 bytes .../items/rift/rift_trophy_wyldly_supreme.png | Bin 0 -> 262 bytes .../item/items/rift/riftwart_roots.png | Bin 0 -> 197 bytes .../item/items/rift/s_logo_fragment.png | Bin 0 -> 224 bytes .../textures/item/items/rift/scribe_crux.png | Bin 0 -> 167 bytes .../textures/item/items/rift/shadow_crux.png | Bin 0 -> 134 bytes .../textures/item/items/rift/shame_crux.png | Bin 0 -> 167 bytes .../item/items/rift/silkwire_stick.png | Bin 0 -> 160 bytes .../item/items/rift/splatter_crux.png | Bin 0 -> 167 bytes .../textures/item/items/rift/spotlite.png | Bin 0 -> 222 bytes .../item/items/rift/super_leech_modifier.png | Bin 0 -> 250 bytes .../item/items/rift/tasty_cat_food.png | Bin 0 -> 176 bytes .../item/items/rift/tight_pants_fragment.png | Bin 0 -> 216 bytes .../textures/item/items/rift/time_gun.png | Bin 0 -> 189 bytes .../textures/item/items/rift/time_knife.png | Bin 0 -> 186 bytes .../textures/item/items/rift/timite.png | Bin 0 -> 181 bytes .../textures/item/items/rift/tiny_hammer.png | Bin 0 -> 142 bytes .../item/items/rift/turbomax_vacuum.png | Bin 0 -> 254 bytes .../textures/item/items/rift/ubiks_cube.png | Bin 0 -> 225 bytes .../item/items/rift/ubiks_cube_turn.png | Bin 0 -> 226 bytes .../item/items/rift/ugly_boots_fragment.png | Bin 0 -> 193 bytes .../item/items/rift/vampiric_melon.png | Bin 0 -> 603 bytes .../item/items/rift/very_scientific_paper.png | Bin 0 -> 208 bytes .../textures/item/items/rift/volt_crux.png | Bin 0 -> 167 bytes .../item/items/rift/wand_of_warding.png | Bin 0 -> 217 bytes .../item/items/rift/wilted_berberis.png | Bin 0 -> 165 bytes .../item/items/rift/wilted_berberis_bunch.png | Bin 0 -> 192 bytes .../item/items/rift/wizard_breadcrumbs.png | Bin 0 -> 182 bytes .../textures/item/items/rift/youngite.png | Bin 0 -> 178 bytes .../items/runes/axe_fading_green_rune.png | Bin 0 -> 206 bytes .../items/runes/axe_fading_green_rune_2.png | Bin 0 -> 208 bytes .../items/runes/axe_fading_green_rune_3.png | Bin 0 -> 210 bytes .../items/runes/axe_fading_white_rune.png | Bin 0 -> 206 bytes .../items/runes/axe_fading_white_rune_2.png | Bin 0 -> 208 bytes .../items/runes/axe_fading_white_rune_3.png | Bin 0 -> 210 bytes .../textures/item/items/runes/bite_rune.png | Bin 0 -> 209 bytes .../textures/item/items/runes/bite_rune_2.png | Bin 0 -> 212 bytes .../textures/item/items/runes/bite_rune_3.png | Bin 0 -> 210 bytes .../textures/item/items/runes/blood_rune.png | Bin 0 -> 216 bytes .../item/items/runes/blood_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/blood_rune_3.png | Bin 0 -> 208 bytes .../textures/item/items/runes/clouds_rune.png | Bin 0 -> 223 bytes .../item/items/runes/clouds_rune_2.png | Bin 0 -> 218 bytes .../item/items/runes/clouds_rune_3.png | Bin 0 -> 209 bytes .../item/items/runes/couture_rune.png | Bin 0 -> 213 bytes .../item/items/runes/couture_rune_2.png | Bin 0 -> 214 bytes .../item/items/runes/couture_rune_3.png | Bin 0 -> 217 bytes .../item/items/runes/darkness_within_rune.png | Bin 0 -> 210 bytes .../items/runes/darkness_within_rune_2.png | Bin 0 -> 212 bytes .../items/runes/darkness_within_rune_3.png | Bin 0 -> 215 bytes .../item/items/runes/enchant_rune.png | Bin 0 -> 220 bytes .../item/items/runes/enchant_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/enchant_rune_3.png | Bin 0 -> 216 bytes .../textures/item/items/runes/end_rune.png | Bin 0 -> 220 bytes .../textures/item/items/runes/end_rune_2.png | Bin 0 -> 221 bytes .../textures/item/items/runes/end_rune_3.png | Bin 0 -> 216 bytes .../item/items/runes/endersnake_rune.png | Bin 0 -> 213 bytes .../item/items/runes/endersnake_rune_2.png | Bin 0 -> 214 bytes .../item/items/runes/endersnake_rune_3.png | Bin 0 -> 217 bytes .../item/items/runes/fiery_burst_rune.png | Bin 0 -> 220 bytes .../item/items/runes/fiery_burst_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/fiery_burst_rune_3.png | Bin 0 -> 216 bytes .../item/items/runes/fire_spiral_rune.png | Bin 0 -> 220 bytes .../item/items/runes/fire_spiral_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/fire_spiral_rune_3.png | Bin 0 -> 212 bytes .../textures/item/items/runes/gem_rune.png | Bin 0 -> 214 bytes .../textures/item/items/runes/gem_rune_2.png | Bin 0 -> 213 bytes .../textures/item/items/runes/gem_rune_3.png | Bin 0 -> 225 bytes .../textures/item/items/runes/golden_rune.png | Bin 0 -> 214 bytes .../item/items/runes/golden_rune_2.png | Bin 0 -> 213 bytes .../item/items/runes/golden_rune_3.png | Bin 0 -> 225 bytes .../item/items/runes/grand_searing_rune.png | Bin 0 -> 220 bytes .../item/items/runes/grand_searing_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/grand_searing_rune_3.png | Bin 0 -> 208 bytes .../textures/item/items/runes/hearts_rune.png | Bin 0 -> 218 bytes .../item/items/runes/hearts_rune_2.png | Bin 0 -> 220 bytes .../item/items/runes/hearts_rune_3.png | Bin 0 -> 221 bytes .../textures/item/items/runes/hot_rune.png | Bin 0 -> 223 bytes .../textures/item/items/runes/hot_rune_2.png | Bin 0 -> 218 bytes .../textures/item/items/runes/hot_rune_3.png | Bin 0 -> 209 bytes .../textures/item/items/runes/ice_rune.png | Bin 0 -> 220 bytes .../textures/item/items/runes/ice_rune_2.png | Bin 0 -> 219 bytes .../textures/item/items/runes/ice_rune_3.png | Bin 0 -> 212 bytes .../textures/item/items/runes/jerry_rune.png | Bin 0 -> 217 bytes .../item/items/runes/jerry_rune_2.png | Bin 0 -> 212 bytes .../item/items/runes/jerry_rune_3.png | Bin 0 -> 217 bytes .../textures/item/items/runes/lava_rune.png | Bin 0 -> 220 bytes .../textures/item/items/runes/lava_rune_2.png | Bin 0 -> 219 bytes .../textures/item/items/runes/lava_rune_3.png | Bin 0 -> 212 bytes .../item/items/runes/lavatears_rune.png | Bin 0 -> 216 bytes .../item/items/runes/lavatears_rune_2.png | Bin 0 -> 218 bytes .../item/items/runes/lavatears_rune_3.png | Bin 0 -> 223 bytes .../item/items/runes/lightning_rune.png | Bin 0 -> 213 bytes .../item/items/runes/lightning_rune_2.png | Bin 0 -> 217 bytes .../item/items/runes/lightning_rune_3.png | Bin 0 -> 210 bytes .../item/items/runes/magical_rune.png | Bin 0 -> 204 bytes .../item/items/runes/magical_rune_2.png | Bin 0 -> 205 bytes .../item/items/runes/magical_rune_3.png | Bin 0 -> 206 bytes .../textures/item/items/runes/music_rune.png | Bin 0 -> 207 bytes .../item/items/runes/music_rune_2.png | Bin 0 -> 209 bytes .../item/items/runes/music_rune_3.png | Bin 0 -> 210 bytes .../item/items/runes/pestilence_rune.png | Bin 0 -> 204 bytes .../item/items/runes/pestilence_rune_2.png | Bin 0 -> 205 bytes .../item/items/runes/pestilence_rune_3.png | Bin 0 -> 206 bytes .../item/items/runes/rainbow_rune.png | Bin 0 -> 244 bytes .../item/items/runes/rainbow_rune_2.png | Bin 0 -> 254 bytes .../item/items/runes/rainbow_rune_3.png | Bin 0 -> 245 bytes .../item/items/runes/redstone_rune.png | Bin 0 -> 209 bytes .../item/items/runes/redstone_rune_2.png | Bin 0 -> 209 bytes .../item/items/runes/redstone_rune_3.png | Bin 0 -> 208 bytes .../textures/item/items/runes/rune.png | Bin 0 -> 196 bytes .../textures/item/items/runes/slimy_rune.png | Bin 0 -> 219 bytes .../item/items/runes/slimy_rune_2.png | Bin 0 -> 220 bytes .../item/items/runes/slimy_rune_3.png | Bin 0 -> 207 bytes .../textures/item/items/runes/smokey_rune.png | Bin 0 -> 210 bytes .../item/items/runes/smokey_rune_2.png | Bin 0 -> 212 bytes .../item/items/runes/smokey_rune_3.png | Bin 0 -> 216 bytes .../textures/item/items/runes/snake_rune.png | Bin 0 -> 213 bytes .../item/items/runes/snake_rune_2.png | Bin 0 -> 214 bytes .../item/items/runes/snake_rune_3.png | Bin 0 -> 217 bytes .../textures/item/items/runes/snow_rune.png | Bin 0 -> 220 bytes .../textures/item/items/runes/snow_rune_2.png | Bin 0 -> 219 bytes .../textures/item/items/runes/snow_rune_3.png | Bin 0 -> 212 bytes .../item/items/runes/soultwist_rune.png | Bin 0 -> 216 bytes .../item/items/runes/soultwist_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/soultwist_rune_3.png | Bin 0 -> 208 bytes .../item/items/runes/sparkling_rune.png | Bin 0 -> 210 bytes .../item/items/runes/sparkling_rune_2.png | Bin 0 -> 212 bytes .../item/items/runes/sparkling_rune_3.png | Bin 0 -> 216 bytes .../textures/item/items/runes/spirit_rune.png | Bin 0 -> 220 bytes .../item/items/runes/spirit_rune_2.png | Bin 0 -> 219 bytes .../item/items/runes/spirit_rune_3.png | Bin 0 -> 212 bytes .../textures/item/items/runes/tidal_rune.png | Bin 0 -> 223 bytes .../item/items/runes/tidal_rune_2.png | Bin 0 -> 218 bytes .../item/items/runes/tidal_rune_3.png | Bin 0 -> 209 bytes .../runes/unique_rune/bark_tunes_rune.png | Bin 0 -> 235 bytes .../runes/unique_rune/bark_tunes_rune_2.png | Bin 0 -> 236 bytes .../runes/unique_rune/bark_tunes_rune_3.png | Bin 0 -> 238 bytes .../runes/unique_rune/blazing_sun_rune.png | Bin 0 -> 210 bytes .../runes/unique_rune/blazing_sun_rune_2.png | Bin 0 -> 210 bytes .../runes/unique_rune/blazing_sun_rune_3.png | Bin 0 -> 217 bytes .../items/runes/unique_rune/blooming_rune.png | Bin 0 -> 240 bytes .../runes/unique_rune/blooming_rune_2.png | Bin 0 -> 233 bytes .../runes/unique_rune/blooming_rune_3.png | Bin 0 -> 237 bytes .../runes/unique_rune/flower_carpet_rune.png | Bin 0 -> 252 bytes .../unique_rune/flower_carpet_rune_2.png | Bin 0 -> 263 bytes .../unique_rune/flower_carpet_rune_3.png | Bin 0 -> 253 bytes .../runes/unique_rune/golden_carpet_rune.png | Bin 0 -> 223 bytes .../unique_rune/golden_carpet_rune_2.png | Bin 0 -> 223 bytes .../unique_rune/golden_carpet_rune_3.png | Bin 0 -> 224 bytes .../runes/unique_rune/grand_freezing_rune.png | Bin 0 -> 205 bytes .../unique_rune/grand_freezing_rune_2.png | Bin 0 -> 222 bytes .../unique_rune/grand_freezing_rune_3.png | Bin 0 -> 224 bytes .../runes/unique_rune/heartsplosion_rune.png | Bin 0 -> 216 bytes .../unique_rune/heartsplosion_rune_2.png | Bin 0 -> 216 bytes .../unique_rune/heartsplosion_rune_3.png | Bin 0 -> 218 bytes .../runes/unique_rune/ice_skates_rune.png | Bin 0 -> 205 bytes .../runes/unique_rune/ice_skates_rune_2.png | Bin 0 -> 216 bytes .../runes/unique_rune/ice_skates_rune_3.png | Bin 0 -> 216 bytes .../runes/unique_rune/meow_music_rune.png | Bin 0 -> 233 bytes .../runes/unique_rune/meow_music_rune_2.png | Bin 0 -> 233 bytes .../runes/unique_rune/meow_music_rune_3.png | Bin 0 -> 236 bytes .../runes/unique_rune/ornamental_rune.png | Bin 0 -> 219 bytes .../runes/unique_rune/ornamental_rune_2.png | Bin 0 -> 223 bytes .../runes/unique_rune/ornamental_rune_3.png | Bin 0 -> 225 bytes .../runes/unique_rune/primal_fear_rune.png | Bin 0 -> 209 bytes .../runes/unique_rune/primal_fear_rune_2.png | Bin 0 -> 211 bytes .../runes/unique_rune/primal_fear_rune_3.png | Bin 0 -> 212 bytes .../runes/unique_rune/rainy_day_rune.png | Bin 0 -> 213 bytes .../runes/unique_rune/rainy_day_rune_2.png | Bin 0 -> 214 bytes .../runes/unique_rune/rainy_day_rune_3.png | Bin 0 -> 218 bytes .../items/runes/unique_rune/smitten_rune.png | Bin 0 -> 218 bytes .../runes/unique_rune/smitten_rune_2.png | Bin 0 -> 221 bytes .../runes/unique_rune/smitten_rune_3.png | Bin 0 -> 223 bytes .../runes/unique_rune/spellbound_rune.png | Bin 0 -> 212 bytes .../runes/unique_rune/spellbound_rune_2.png | Bin 0 -> 209 bytes .../runes/unique_rune/spellbound_rune_3.png | Bin 0 -> 210 bytes .../runes/unique_rune/super_pumpkin_rune.png | Bin 0 -> 220 bytes .../unique_rune/super_pumpkin_rune_2.png | Bin 0 -> 221 bytes .../unique_rune/super_pumpkin_rune_3.png | Bin 0 -> 229 bytes .../items/runes/unique_rune/unique_rune.png | Bin 0 -> 196 bytes .../textures/item/items/runes/wake_rune.png | Bin 0 -> 204 bytes .../textures/item/items/runes/wake_rune_2.png | Bin 0 -> 223 bytes .../textures/item/items/runes/wake_rune_3.png | Bin 0 -> 212 bytes .../item/items/runes/white_spiral_rune.png | Bin 0 -> 220 bytes .../item/items/runes/white_spiral_rune_2.png | Bin 0 -> 221 bytes .../item/items/runes/white_spiral_rune_3.png | Bin 0 -> 212 bytes .../textures/item/items/runes/zap_rune.png | Bin 0 -> 213 bytes .../textures/item/items/runes/zap_rune_2.png | Bin 0 -> 214 bytes .../textures/item/items/runes/zap_rune_3.png | Bin 0 -> 217 bytes .../sacks/bronze_trophy_fishing_sack.png | Bin 0 -> 272 bytes .../item/items/sacks/crystal_hollows_sack.png | Bin 0 -> 311 bytes .../item/items/sacks/dwarven_mines_sack.png | Bin 0 -> 275 bytes .../items/sacks/extra_large_gemstone_sack.png | Bin 0 -> 305 bytes .../textures/item/items/sacks/flower_sack.png | Bin 0 -> 307 bytes .../textures/item/items/sacks/garden_sack.png | Bin 0 -> 341 bytes .../item/items/sacks/large_agronomy_sack.png | Bin 0 -> 295 bytes .../item/items/sacks/large_candy_sack.png | Bin 0 -> 274 bytes .../item/items/sacks/large_combat_sack.png | Bin 0 -> 228 bytes .../item/items/sacks/large_dragon_sack.png | Bin 0 -> 270 bytes .../item/items/sacks/large_dungeon_sack.png | Bin 0 -> 282 bytes .../sacks/large_enchanted_agronomy_sack.png | Bin 0 -> 310 bytes .../sacks/large_enchanted_combat_sack.png | Bin 0 -> 242 bytes .../sacks/large_enchanted_fishing_sack.png | Bin 0 -> 292 bytes .../sacks/large_enchanted_foraging_sack.png | Bin 0 -> 318 bytes .../sacks/large_enchanted_husbandry_sack.png | Bin 0 -> 267 bytes .../sacks/large_enchanted_mining_sack.png | Bin 0 -> 304 bytes .../item/items/sacks/large_events_sack.png | Bin 0 -> 318 bytes .../item/items/sacks/large_fishing_sack.png | Bin 0 -> 279 bytes .../item/items/sacks/large_foraging_sack.png | Bin 0 -> 310 bytes .../item/items/sacks/large_gemstone_sack.png | Bin 0 -> 299 bytes .../item/items/sacks/large_husbandry_sack.png | Bin 0 -> 252 bytes .../items/sacks/large_lava_fishing_sack.png | Bin 0 -> 280 bytes .../item/items/sacks/large_mining_sack.png | Bin 0 -> 296 bytes .../item/items/sacks/large_nether_sack.png | Bin 0 -> 287 bytes .../item/items/sacks/large_runes_sack.png | Bin 0 -> 264 bytes .../item/items/sacks/large_slayer_sack.png | Bin 0 -> 257 bytes .../item/items/sacks/large_winter_sack.png | Bin 0 -> 283 bytes .../item/items/sacks/medium_agronomy_sack.png | Bin 0 -> 290 bytes .../item/items/sacks/medium_combat_sack.png | Bin 0 -> 221 bytes .../item/items/sacks/medium_dragon_sack.png | Bin 0 -> 268 bytes .../item/items/sacks/medium_fishing_sack.png | Bin 0 -> 277 bytes .../item/items/sacks/medium_foraging_sack.png | Bin 0 -> 305 bytes .../item/items/sacks/medium_gemstone_sack.png | Bin 0 -> 285 bytes .../items/sacks/medium_husbandry_sack.png | Bin 0 -> 249 bytes .../items/sacks/medium_lava_fishing_sack.png | Bin 0 -> 278 bytes .../item/items/sacks/medium_mining_sack.png | Bin 0 -> 285 bytes .../item/items/sacks/medium_nether_sack.png | Bin 0 -> 289 bytes .../item/items/sacks/medium_runes_sack.png | Bin 0 -> 264 bytes .../item/items/sacks/medium_slayer_sack.png | Bin 0 -> 256 bytes .../items/sacks/pocket_sack_in_a_sack.png | Bin 0 -> 234 bytes .../textures/item/items/sacks/rune_sack.png | Bin 0 -> 264 bytes .../sacks/silver_trophy_fishing_sack.png | Bin 0 -> 277 bytes .../item/items/sacks/small_agronomy_sack.png | Bin 0 -> 294 bytes .../item/items/sacks/small_combat_sack.png | Bin 0 -> 218 bytes .../item/items/sacks/small_dragon_sack.png | Bin 0 -> 247 bytes .../item/items/sacks/small_fishing_sack.png | Bin 0 -> 275 bytes .../item/items/sacks/small_foraging_sack.png | Bin 0 -> 293 bytes .../item/items/sacks/small_gemstone_sack.png | Bin 0 -> 275 bytes .../item/items/sacks/small_husbandry_sack.png | Bin 0 -> 240 bytes .../items/sacks/small_lava_fishing_sack.png | Bin 0 -> 256 bytes .../item/items/sacks/small_mining_sack.png | Bin 0 -> 271 bytes .../item/items/sacks/small_nether_sack.png | Bin 0 -> 285 bytes .../item/items/sacks/small_runes_sack.png | Bin 0 -> 251 bytes .../item/items/sacks/small_slayer_sack.png | Bin 0 -> 251 bytes .../amalgamated_crimsonite_new.png | Bin 0 -> 194 bytes .../inferno_demonlord/archfiend_dice.png | Bin 0 -> 206 bytes .../blaze_rod_distillate.png | Bin 0 -> 214 bytes .../inferno_demonlord/capsaicin_eyedrops.png | Bin 0 -> 182 bytes .../slayer/inferno_demonlord/chili_pepper.png | Bin 0 -> 197 bytes .../inferno_demonlord/crude_gabagool.png | Bin 0 -> 193 bytes .../crude_gabagool_distillate.png | Bin 0 -> 208 bytes .../inferno_demonlord/derelict_ashe.png | Bin 0 -> 186 bytes .../derelict_ashe_locked.png | Bin 0 -> 186 bytes .../fuel_blocks/inferno_fuel_blaze_rod.png | Bin 0 -> 250 bytes .../fuel_blocks/inferno_fuel_block.png | Bin 0 -> 215 bytes .../inferno_fuel_crude_gabagool.png | Bin 0 -> 228 bytes .../inferno_fuel_glowstone_dust.png | Bin 0 -> 249 bytes .../fuel_blocks/inferno_fuel_magma_cream.png | Bin 0 -> 276 bytes .../fuel_blocks/inferno_fuel_nether_stalk.png | Bin 0 -> 240 bytes .../fuel_blocks/inferno_heavy_blaze_rod.png | Bin 0 -> 250 bytes .../inferno_heavy_crude_gabagool.png | Bin 0 -> 239 bytes .../inferno_heavy_glowstone_dust.png | Bin 0 -> 249 bytes .../fuel_blocks/inferno_heavy_magma_cream.png | Bin 0 -> 274 bytes .../inferno_heavy_nether_stalk.png | Bin 0 -> 239 bytes .../inferno_hypergolic_blaze_rod.png | Bin 0 -> 255 bytes .../inferno_hypergolic_crude_gabagool.png | Bin 0 -> 245 bytes .../inferno_hypergolic_glowstone_dust.png | Bin 0 -> 255 bytes .../inferno_hypergolic_magma_cream.png | Bin 0 -> 271 bytes .../inferno_hypergolic_nether_stalk.png | Bin 0 -> 246 bytes .../inferno_demonlord/fuel_gabagool.png | Bin 0 -> 193 bytes .../glowstone_dust_distillate.png | Bin 0 -> 211 bytes .../inferno_demonlord/heavy_gabagool.png | Bin 0 -> 195 bytes .../high_class_archfiend_dice.png | Bin 0 -> 206 bytes .../inferno_demonlord/hypergolic_gabagool.png | Bin 0 -> 213 bytes .../hypergolic_ionized_ceramics.png | Bin 0 -> 193 bytes .../slayer/inferno_demonlord/inferno_apex.png | Bin 0 -> 178 bytes .../inferno_demonlord/inferno_vertex.png | Bin 0 -> 199 bytes .../inferno_demonlord/kelvin_inverter.png | Bin 0 -> 238 bytes .../magma_cream_distillate.png | Bin 0 -> 233 bytes .../inferno_demonlord/molten_powder.png | Bin 0 -> 179 bytes .../nether_stalk_distillate.png | Bin 0 -> 210 bytes .../inferno_demonlord/reaper_pepper.png | Bin 0 -> 207 bytes .../reheated_gummy_polar_bear.png | Bin 0 -> 181 bytes .../stuffed_chili_pepper.png | Bin 0 -> 201 bytes .../inferno_demonlord/subzero_inverter.png | Bin 0 -> 238 bytes .../inferno_demonlord/sulphuric_coal.png | Bin 0 -> 197 bytes .../inferno_demonlord/teleporter_pill.png | Bin 0 -> 178 bytes .../inferno_demonlord/very_crude_gabagool.png | Bin 0 -> 195 bytes .../wilson_engineering_plans.png | Bin 0 -> 190 bytes .../revenant_horror/festering_maggot.png | Bin 0 -> 205 bytes .../slayer/revenant_horror/foul_flesh.png | Bin 0 -> 212 bytes .../slayer/revenant_horror/golden_powder.png | Bin 0 -> 180 bytes .../revenant_horror/revenant_catalyst.png | Bin 0 -> 193 bytes .../slayer/revenant_horror/revenant_flesh.png | Bin 0 -> 237 bytes .../revenant_horror/revenant_flesh_locked.png | Bin 0 -> 234 bytes .../revenant_horror/revenant_viscera.png | Bin 0 -> 224 bytes .../slayer/revenant_horror/scythe_blade.png | Bin 0 -> 161 bytes .../revenant_horror/shard_of_the_shredded.png | Bin 0 -> 181 bytes .../revenant_horror/undead_catalyst.png | Bin 0 -> 193 bytes .../slayer/revenant_horror/warden_heart.png | Bin 0 -> 317 bytes .../revenant_horror/warden_heart.png.mcmeta | 1 + .../riftstalker_bloodfiend/bloodbadge.png | Bin 0 -> 199 bytes .../bloodbadge_locked.png | Bin 0 -> 199 bytes .../riftstalker_bloodfiend/coven_seal.png | Bin 0 -> 174 bytes .../riftstalker_bloodfiend/healing_melon.png | Bin 0 -> 214 bytes .../healing_melon_bite.png | Bin 0 -> 207 bytes .../juicy_healing_melon.png | Bin 0 -> 224 bytes .../juicy_healing_melon_bite.png | Bin 0 -> 220 bytes .../luscious_healing_melon.png | Bin 0 -> 238 bytes .../luscious_healing_melon_bite.png | Bin 0 -> 229 bytes .../mcgrubber_burger.png | Bin 0 -> 247 bytes .../unfanged_vampire_part.png | Bin 0 -> 180 bytes .../slayer/sven_packmaster/golden_tooth.png | Bin 0 -> 165 bytes .../slayer/sven_packmaster/grizzly_bait.png | Bin 0 -> 229 bytes .../slayer/sven_packmaster/hamster_wheel.png | Bin 0 -> 222 bytes .../sven_packmaster/hamster_wheel_spin.png | Bin 0 -> 382 bytes .../hamster_wheel_spin.png.mcmeta | 1 + .../sven_packmaster/overflux_capacitor.png | Bin 0 -> 231 bytes .../sven_packmaster/polished_pebble.png | Bin 0 -> 165 bytes .../slayer/sven_packmaster/red_claw_egg.png | Bin 0 -> 201 bytes .../slayer/sven_packmaster/silky_lichen.png | Bin 0 -> 168 bytes .../slayer/sven_packmaster/true_essence.png | Bin 0 -> 211 bytes .../sven_packmaster/weak_wolf_catalyst.png | Bin 0 -> 183 bytes .../slayer/sven_packmaster/wolf_tooth.png | Bin 0 -> 165 bytes .../sven_packmaster/wolf_tooth_locked.png | Bin 0 -> 165 bytes .../tarantula_broodfather/arachne_crystal.png | Bin 0 -> 221 bytes .../tarantula_broodfather/arachne_fang.png | Bin 0 -> 174 bytes .../dark_queens_soul_drop.png | Bin 0 -> 160 bytes .../digested_mosquito.png | Bin 0 -> 209 bytes .../tarantula_broodfather/fly_swatter.png | Bin 0 -> 132 bytes .../flycatcher_upgrade.png | Bin 0 -> 156 bytes .../tarantula_broodfather/primordial_eye.png | Bin 0 -> 201 bytes .../tarantula_broodfather/shriveled_wasp.png | Bin 0 -> 187 bytes .../tarantula_broodfather/soul_string.png | Bin 0 -> 190 bytes .../tarantula_broodfather/spider_catalyst.png | Bin 0 -> 188 bytes .../tarantula_catalyst.png | Bin 0 -> 193 bytes .../tarantula_broodfather/tarantula_silk.png | Bin 0 -> 170 bytes .../tarantula_broodfather/tarantula_web.png | Bin 0 -> 210 bytes .../tarantula_web_locked.png | Bin 0 -> 182 bytes .../toxic_arrow_poison.png | Bin 0 -> 184 bytes .../tarantula_broodfather/vial_of_venom.png | Bin 0 -> 206 bytes .../voidgloom_seraph/absolute_ender_pearl.png | Bin 0 -> 197 bytes .../braided_griffin_feather.png | Bin 0 -> 175 bytes .../voidgloom_seraph/etherwarp_cage.png | Bin 0 -> 193 bytes .../voidgloom_seraph/etherwarp_conduit.png | Bin 0 -> 153 bytes .../slayer/voidgloom_seraph/etherwarp_eye.png | Bin 0 -> 200 bytes .../voidgloom_seraph/etherwarp_eye.png.mcmeta | 1 + .../voidgloom_seraph/etherwarp_merger.png | Bin 0 -> 216 bytes .../voidgloom_seraph/gloomlock_grimoire.png | Bin 0 -> 207 bytes .../voidgloom_seraph/judgement_core.png | Bin 0 -> 228 bytes .../voidgloom_seraph/judgement_core_blink.png | Bin 0 -> 302 bytes .../judgement_core_blink.png.mcmeta | 1 + .../slayer/voidgloom_seraph/null_atom.png | Bin 0 -> 192 bytes .../slayer/voidgloom_seraph/null_blade.png | Bin 0 -> 170 bytes .../slayer/voidgloom_seraph/null_edge.png | Bin 0 -> 171 bytes .../slayer/voidgloom_seraph/null_ovoid.png | Bin 0 -> 183 bytes .../slayer/voidgloom_seraph/null_sphere.png | Bin 0 -> 200 bytes .../voidgloom_seraph/null_sphere_locked.png | Bin 0 -> 200 bytes .../slayer/voidgloom_seraph/raw_soulflow.png | Bin 0 -> 170 bytes .../slayer/voidgloom_seraph/sinful_dice.png | Bin 0 -> 202 bytes .../slayer/voidgloom_seraph/soul_esoward.png | Bin 0 -> 267 bytes .../voidgloom_seraph/soul_esoward_blink.png | Bin 0 -> 249 bytes .../slayer/voidgloom_seraph/soulflow.png | Bin 0 -> 192 bytes .../tessellated_ender_pearl.png | Bin 0 -> 199 bytes .../twilight_arrow_poison.png | Bin 0 -> 205 bytes .../item/items/special/alpha_pick.png | Bin 0 -> 160 bytes .../item/items/special/archery_cube.png | Bin 0 -> 217 bytes .../item/items/special/bingo_card.png | Bin 0 -> 183 bytes .../special/cake_soul/cake_soul_aqua.png | Bin 0 -> 163 bytes .../special/cake_soul/cake_soul_black.png | Bin 0 -> 164 bytes .../special/cake_soul/cake_soul_blue.png | Bin 0 -> 165 bytes .../special/cake_soul/cake_soul_brown.png | Bin 0 -> 163 bytes .../special/cake_soul/cake_soul_cyan.png | Bin 0 -> 163 bytes .../special/cake_soul/cake_soul_gray.png | Bin 0 -> 164 bytes .../special/cake_soul/cake_soul_green.png | Bin 0 -> 161 bytes .../special/cake_soul/cake_soul_lime.png | Bin 0 -> 165 bytes .../special/cake_soul/cake_soul_magenta.png | Bin 0 -> 165 bytes .../special/cake_soul/cake_soul_orange.png | Bin 0 -> 164 bytes .../special/cake_soul/cake_soul_pink.png | Bin 0 -> 164 bytes .../special/cake_soul/cake_soul_purple.png | Bin 0 -> 165 bytes .../items/special/cake_soul/cake_soul_red.png | Bin 0 -> 164 bytes .../special/cake_soul/cake_soul_silver.png | Bin 0 -> 165 bytes .../special/cake_soul/cake_soul_white.png | Bin 0 -> 165 bytes .../special/cake_soul/cake_soul_yellow.png | Bin 0 -> 165 bytes .../item/items/special/creative_mind.png | Bin 0 -> 236 bytes .../item/items/special/dead_bush_of_love.png | Bin 0 -> 182 bytes .../item/items/special/editor_pencil.png | Bin 0 -> 176 bytes .../special/epoch_cake/epoch_cake_aqua.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_black.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_blue.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_brown.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_cyan.png | Bin 0 -> 218 bytes .../epoch_cake/epoch_cake_dark_green.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_gray.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_green.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_magenta.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_orange.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_pink.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_purple.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_red.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_silver.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_white.png | Bin 0 -> 218 bytes .../special/epoch_cake/epoch_cake_yellow.png | Bin 0 -> 218 bytes .../epoch_cake/full_century_cake_pack.png | Bin 0 -> 337 bytes .../epoch_cake/random_century_cake_pack.png | Bin 0 -> 255 bytes .../item/items/special/extreme_bingo_card.png | Bin 0 -> 183 bytes .../item/items/special/game_annihilator.png | Bin 0 -> 221 bytes .../item/items/special/jar_of_sand.png | Bin 0 -> 217 bytes .../textures/item/items/special/kloonboat.png | Bin 0 -> 212 bytes .../special/kuudra_cavity/kuudra_cavity.png | Bin 0 -> 188 bytes .../kuudra_cavity/kuudra_cavity_common.png | Bin 0 -> 195 bytes .../kuudra_cavity/kuudra_cavity_epic.png | Bin 0 -> 189 bytes .../kuudra_cavity/kuudra_cavity_rare.png | Bin 0 -> 190 bytes .../kuudra_cavity/kuudra_cavity_special.png | Bin 0 -> 195 bytes .../kuudra_cavity/kuudra_cavity_uncommon.png | Bin 0 -> 191 bytes .../items/special/lantern_of_the_dead.png | Bin 0 -> 243 bytes .../items/special/memento/burning_coins.png | Bin 0 -> 233 bytes .../items/special/memento/campaign_poster.png | Bin 0 -> 252 bytes .../special/memento/century_memento_blue.png | Bin 0 -> 234 bytes .../special/memento/century_memento_green.png | Bin 0 -> 224 bytes .../special/memento/century_memento_pink.png | Bin 0 -> 234 bytes .../special/memento/century_memento_red.png | Bin 0 -> 233 bytes .../memento/century_memento_yellow.png | Bin 0 -> 226 bytes .../items/special/memento/expensive_toy.png | Bin 0 -> 193 bytes .../special/memento/expensive_toy_1st.png | Bin 0 -> 197 bytes .../items/special/memento/golden_collar.png | Bin 0 -> 179 bytes .../special/memento/golden_collar_1st.png | Bin 0 -> 178 bytes .../special/memento/mediocre_fish_drawing.png | Bin 0 -> 224 bytes .../items/special/memento/moldy_muffin.png | Bin 0 -> 209 bytes .../special/memento/painters_palette.png | Bin 0 -> 274 bytes .../special/memento/painters_palette_1st.png | Bin 0 -> 229 bytes .../memento/rift_completion_memento.png | Bin 0 -> 215 bytes .../special/memento/secret_bingo_memento.png | Bin 0 -> 239 bytes .../special/memento/splendid_fish_drawing.png | Bin 0 -> 203 bytes .../special/memento/wizard_portal_memento.png | Bin 0 -> 268 bytes .../memento/wizard_portal_memento_1st.png | Bin 0 -> 259 bytes .../item/items/special/mini_fish_bowl.png | Bin 0 -> 282 bytes .../item/items/special/new_year_cake.png | Bin 0 -> 243 bytes .../item/items/special/plastic_shovel.png | Bin 0 -> 138 bytes .../items/special/potato_silver_medal.png | Bin 0 -> 231 bytes .../item/items/special/quality_map.png | Bin 0 -> 196 bytes .../item/items/special/secret_bingo_card.png | Bin 0 -> 179 bytes .../item/items/special/shiny_relic.png | Bin 0 -> 185 bytes .../item/items/special/singing_fish.png | Bin 0 -> 288 bytes .../items/special/singing_fish_singing.png | Bin 0 -> 420 bytes .../special/singing_fish_singing.png.mcmeta | 1 + .../items/special/slice_of_blueberry_cake.png | Bin 0 -> 227 bytes .../items/special/slice_of_cheesecake.png | Bin 0 -> 219 bytes .../special/slice_of_green_velvet_cake.png | Bin 0 -> 207 bytes .../special/slice_of_red_velvet_cake.png | Bin 0 -> 229 bytes .../special/slice_of_strawberry_shortcake.png | Bin 0 -> 218 bytes .../item/items/special/spooky_pie.png | Bin 0 -> 196 bytes .../textures/item/items/special/the_cake.png | Bin 0 -> 280 bytes .../items/special/the_fish/bat_the_fish.png | Bin 0 -> 205 bytes .../items/special/the_fish/berry_the_fish.png | Bin 0 -> 224 bytes .../items/special/the_fish/candy_the_fish.png | Bin 0 -> 209 bytes .../special/the_fish/century_the_fish.png | Bin 0 -> 204 bytes .../items/special/the_fish/chill_the_fish.png | Bin 0 -> 304 bytes .../items/special/the_fish/clown_the_fish.png | Bin 0 -> 206 bytes .../items/special/the_fish/cluck_the_fish.png | Bin 0 -> 207 bytes .../special/the_fish/diamond_the_fish.png | Bin 0 -> 197 bytes .../items/special/the_fish/dust_the_fish.png | Bin 0 -> 204 bytes .../items/special/the_fish/egg_the_fish.png | Bin 0 -> 209 bytes .../items/special/the_fish/eon_the_fish.png | Bin 0 -> 220 bytes .../special/the_fish/experiment_the_fish.png | Bin 0 -> 278 bytes .../items/special/the_fish/fish_the_fish.png | Bin 0 -> 219 bytes .../special/the_fish/fossil_the_fish.png | Bin 0 -> 189 bytes .../special/the_fish/gabagool_the_fish.png | Bin 0 -> 191 bytes .../items/special/the_fish/giant_the_fish.png | Bin 0 -> 276 bytes .../special/the_fish/giant_the_fish_hand.png | Bin 0 -> 264 bytes .../items/special/the_fish/gift_the_fish.png | Bin 0 -> 240 bytes .../special/the_fish/goldor_the_fish.png | Bin 0 -> 203 bytes .../special/the_fish/herring_the_fish.png | Bin 0 -> 192 bytes .../items/special/the_fish/maxor_the_fish.png | Bin 0 -> 203 bytes .../items/special/the_fish/mob_the_fish.png | Bin 0 -> 204 bytes .../items/special/the_fish/nope_the_fish.png | Bin 0 -> 331 bytes .../items/special/the_fish/oops_the_fish.png | Bin 0 -> 437 bytes .../items/special/the_fish/party_the_fish.png | Bin 0 -> 231 bytes .../special/the_fish/priceless_the_fish.png | Bin 0 -> 281 bytes .../the_fish/priceless_the_fish.png.mcmeta | 1 + .../special/the_fish/rabbit_the_fish.png | Bin 0 -> 194 bytes .../items/special/the_fish/rock_the_fish.png | Bin 0 -> 179 bytes .../special/the_fish/shrimp_the_fish.png | Bin 0 -> 236 bytes .../special/the_fish/skeleton_the_fish.png | Bin 0 -> 150 bytes .../special/the_fish/snowflake_the_fish.png | Bin 0 -> 222 bytes .../items/special/the_fish/spook_the_fish.png | Bin 0 -> 317 bytes .../items/special/the_fish/stew_the_fish.png | Bin 0 -> 205 bytes .../items/special/the_fish/storm_the_fish.png | Bin 0 -> 203 bytes .../items/special/the_fish/swamp_the_fish.png | Bin 0 -> 222 bytes .../items/special/the_fish/tree_the_fish.png | Bin 0 -> 258 bytes .../items/special/the_fish/worm_the_fish.png | Bin 0 -> 181 bytes .../items/special/the_fish/zoop_the_fish.png | Bin 0 -> 294 bytes .../item/items/special/wiki_journal.png | Bin 0 -> 260 bytes .../item/items/special/wizard_wand.png | Bin 0 -> 153 bytes .../textures/item/pets/unknown_pet.png | Bin 0 -> 162 bytes .../item/tools/abiphones/aatrox_badphone.png | Bin 0 -> 204 bytes .../tools/abiphones/aatrox_badphone_on.png | Bin 0 -> 231 bytes .../item/tools/abiphones/aatrox_batphone.png | Bin 0 -> 213 bytes .../tools/abiphones/aatrox_batphone_on.png | Bin 0 -> 232 bytes .../item/tools/abiphones/abingophone.png | Bin 0 -> 201 bytes .../item/tools/abiphones/abingophone_back.png | Bin 0 -> 212 bytes .../tools/abiphones/abingophone_emissive.png | Bin 0 -> 136 bytes .../item/tools/abiphones/abingophone_on.png | Bin 0 -> 192 bytes .../item/tools/abiphones/abiphone_basic.png | Bin 0 -> 149 bytes .../tools/abiphones/abiphone_basic_back.png | Bin 0 -> 141 bytes .../abiphones/abiphone_basic_emissive.png | Bin 0 -> 142 bytes .../tools/abiphones/abiphone_basic_on.png | Bin 0 -> 124 bytes .../tools/abiphones/abiphone_flip_dragon.png | Bin 0 -> 283 bytes .../abiphone_flip_dragon_emissive.png | Bin 0 -> 281 bytes .../abiphones/abiphone_flip_dragon_on.png | Bin 0 -> 249 bytes .../tools/abiphones/abiphone_flip_nucleus.png | Bin 0 -> 283 bytes .../abiphone_flip_nucleus_emissive.png | Bin 0 -> 295 bytes .../abiphones/abiphone_flip_nucleus_on.png | Bin 0 -> 237 bytes .../abiphone_flip_plus_clockwork.png | Bin 0 -> 289 bytes .../abiphone_flip_plus_clockwork_emissive.png | Bin 0 -> 244 bytes .../abiphone_flip_plus_clockwork_on.png | Bin 0 -> 249 bytes .../abiphones/abiphone_flip_plus_flower.png | Bin 0 -> 283 bytes .../abiphone_flip_plus_flower_emissive.png | Bin 0 -> 275 bytes .../abiphone_flip_plus_flower_on.png | Bin 0 -> 249 bytes .../abiphones/abiphone_flip_plus_lunar.png | Bin 0 -> 283 bytes .../abiphone_flip_plus_lunar_emissive.png | Bin 0 -> 254 bytes .../abiphones/abiphone_flip_plus_lunar_on.png | Bin 0 -> 249 bytes .../tools/abiphones/abiphone_flip_volcano.png | Bin 0 -> 283 bytes .../abiphone_flip_volcano_emissive.png | Bin 0 -> 278 bytes .../abiphones/abiphone_flip_volcano_on.png | Bin 0 -> 237 bytes .../item/tools/abiphones/abiphone_x_plus.png | Bin 0 -> 185 bytes .../tools/abiphones/abiphone_x_plus_back.png | Bin 0 -> 167 bytes .../abiphones/abiphone_x_plus_emissive.png | Bin 0 -> 168 bytes .../tools/abiphones/abiphone_x_plus_on.png | Bin 0 -> 144 bytes .../abiphone_x_plus_special_edition.png | Bin 0 -> 175 bytes .../abiphone_x_plus_special_edition_back.png | Bin 0 -> 161 bytes ...iphone_x_plus_special_edition_emissive.png | Bin 0 -> 168 bytes .../abiphone_x_plus_special_edition_on.png | Bin 0 -> 138 bytes .../tools/abiphones/abiphone_xi_ultra.png | Bin 0 -> 205 bytes .../abiphones/abiphone_xi_ultra_back.png | Bin 0 -> 191 bytes .../abiphones/abiphone_xi_ultra_emissive.png | Bin 0 -> 178 bytes .../tools/abiphones/abiphone_xi_ultra_on.png | Bin 0 -> 176 bytes .../abiphones/abiphone_xi_ultra_style.png | Bin 0 -> 205 bytes .../abiphone_xi_ultra_style_back.png | Bin 0 -> 191 bytes .../abiphone_xi_ultra_style_emissive.png | Bin 0 -> 172 bytes .../abiphones/abiphone_xi_ultra_style_on.png | Bin 0 -> 176 bytes .../tools/abiphones/abiphone_xii_mega.png | Bin 0 -> 194 bytes .../abiphones/abiphone_xii_mega_back.png | Bin 0 -> 191 bytes .../abiphones/abiphone_xii_mega_color.png | Bin 0 -> 194 bytes .../abiphone_xii_mega_color_back.png | Bin 0 -> 191 bytes .../abiphone_xii_mega_color_emissive.png | Bin 0 -> 199 bytes .../abiphones/abiphone_xii_mega_color_on.png | Bin 0 -> 143 bytes .../abiphones/abiphone_xii_mega_emissive.png | Bin 0 -> 206 bytes .../tools/abiphones/abiphone_xii_mega_on.png | Bin 0 -> 140 bytes .../tools/abiphones/abiphone_xiii_pro.png | Bin 0 -> 194 bytes .../abiphones/abiphone_xiii_pro_back.png | Bin 0 -> 190 bytes .../abiphones/abiphone_xiii_pro_emissive.png | Bin 0 -> 208 bytes .../abiphones/abiphone_xiii_pro_giga.png | Bin 0 -> 194 bytes .../abiphones/abiphone_xiii_pro_giga_back.png | Bin 0 -> 190 bytes .../abiphone_xiii_pro_giga_emissive.png | Bin 0 -> 208 bytes .../abiphones/abiphone_xiii_pro_giga_on.png | Bin 0 -> 142 bytes .../tools/abiphones/abiphone_xiii_pro_on.png | Bin 0 -> 142 bytes .../tools/abiphones/abiphone_xiv_enormous.png | Bin 0 -> 193 bytes .../abiphones/abiphone_xiv_enormous_back.png | Bin 0 -> 190 bytes .../abiphones/abiphone_xiv_enormous_black.png | Bin 0 -> 190 bytes .../abiphone_xiv_enormous_black_back.png | Bin 0 -> 196 bytes .../abiphone_xiv_enormous_black_emissive.png | Bin 0 -> 185 bytes .../abiphone_xiv_enormous_black_on.png | Bin 0 -> 136 bytes .../abiphone_xiv_enormous_emissive.png | Bin 0 -> 189 bytes .../abiphones/abiphone_xiv_enormous_on.png | Bin 0 -> 142 bytes .../abiphone_xiv_enormous_purple.png | Bin 0 -> 193 bytes .../abiphone_xiv_enormous_purple_back.png | Bin 0 -> 190 bytes .../abiphone_xiv_enormous_purple_emissive.png | Bin 0 -> 185 bytes .../abiphone_xiv_enormous_purple_on.png | Bin 0 -> 142 bytes .../item/tools/arrows/armorshred_arrow.png | Bin 0 -> 163 bytes .../item/tools/arrows/arrow_bundle_magma.png | Bin 0 -> 195 bytes .../item/tools/arrows/arrow_swapper.png | Bin 0 -> 208 bytes .../tools/arrows/arrow_swapper_armorshred.png | Bin 0 -> 249 bytes .../tools/arrows/arrow_swapper_bouncy.png | Bin 0 -> 256 bytes .../arrows/arrow_swapper_emerald_tipped.png | Bin 0 -> 262 bytes .../tools/arrows/arrow_swapper_explosive.png | Bin 0 -> 250 bytes .../item/tools/arrows/arrow_swapper_flint.png | Bin 0 -> 253 bytes .../item/tools/arrows/arrow_swapper_glue.png | Bin 0 -> 244 bytes .../arrows/arrow_swapper_gold_tipped.png | Bin 0 -> 246 bytes .../item/tools/arrows/arrow_swapper_icy.png | Bin 0 -> 262 bytes .../item/tools/arrows/arrow_swapper_magma.png | Bin 0 -> 273 bytes .../tools/arrows/arrow_swapper_nansorb.png | Bin 0 -> 251 bytes .../item/tools/arrows/arrow_swapper_none.png | Bin 0 -> 226 bytes .../arrows/arrow_swapper_redstone_tipped.png | Bin 0 -> 250 bytes .../arrows/arrow_swapper_reinforced_iron.png | Bin 0 -> 249 bytes .../item/tools/arrows/bouncy_arrow.png | Bin 0 -> 179 bytes .../tools/arrows/emerald_tipped_arrow.png | Bin 0 -> 169 bytes .../item/tools/arrows/explosive_arrow.png | Bin 0 -> 178 bytes .../item/tools/arrows/flint_arrow.png | Bin 0 -> 153 bytes .../textures/item/tools/arrows/glue_arrow.png | Bin 0 -> 152 bytes .../item/tools/arrows/gold_tipped_arrow.png | Bin 0 -> 169 bytes .../textures/item/tools/arrows/icy_arrow.png | Bin 0 -> 166 bytes .../item/tools/arrows/magma_arrow.png | Bin 0 -> 158 bytes .../item/tools/arrows/nansorb_arrow.png | Bin 0 -> 173 bytes .../tools/arrows/redstone_tipped_arrow.png | Bin 0 -> 151 bytes .../biome_stick/birch_forest_biome_stick.png | Bin 0 -> 197 bytes .../biome_stick/deep_ocean_biome_stick.png | Bin 0 -> 180 bytes .../tools/biome_stick/desert_biome_stick.png | Bin 0 -> 170 bytes .../tools/biome_stick/end_biome_stick.png | Bin 0 -> 172 bytes .../tools/biome_stick/forest_biome_stick.png | Bin 0 -> 192 bytes .../tools/biome_stick/jungle_biome_stick.png | Bin 0 -> 196 bytes .../tools/biome_stick/mesa_biome_stick.png | Bin 0 -> 208 bytes .../biome_stick/mushroom_biome_stick.png | Bin 0 -> 201 bytes .../tools/biome_stick/nether_biome_stick.png | Bin 0 -> 179 bytes .../biome_stick/roofed_forest_biome_stick.png | Bin 0 -> 192 bytes .../tools/biome_stick/savana_biome_stick.png | Bin 0 -> 192 bytes .../tools/biome_stick/taiga_biome_stick.png | Bin 0 -> 196 bytes .../item/tools/combat/alert_flare.png | Bin 0 -> 194 bytes .../item/tools/combat/ancestral_spade.png | Bin 0 -> 203 bytes .../textures/item/tools/combat/atominizer.png | Bin 0 -> 203 bytes .../item/tools/combat/blazetekk_ham_radio.png | Bin 0 -> 199 bytes .../tools/combat/blazetekk_ham_radio_am.png | Bin 0 -> 207 bytes .../tools/combat/blazetekk_ham_radio_bt.png | Bin 0 -> 207 bytes .../tools/combat/blazetekk_ham_radio_fm.png | Bin 0 -> 207 bytes .../tools/combat/blazetekk_ham_radio_gps.png | Bin 0 -> 207 bytes .../tools/combat/blazetekk_ham_radio_inf.png | Bin 0 -> 206 bytes .../tools/combat/blazetekk_ham_radio_seti.png | Bin 0 -> 207 bytes .../tools/combat/blazetekk_ham_radio_xm.png | Bin 0 -> 207 bytes .../item/tools/combat/carnival_dart_tube.png | Bin 0 -> 231 bytes .../item/tools/combat/charminizer.png | Bin 0 -> 211 bytes .../textures/item/tools/combat/holy_ice.png | Bin 0 -> 203 bytes .../item/tools/combat/holy_ice_splash.png | Bin 0 -> 203 bytes .../item/tools/combat/jingle_bells.png | Bin 0 -> 215 bytes .../item/tools/combat/moody_grappleshot.png | Bin 0 -> 177 bytes .../item/tools/combat/sharp_steak_stake.png | Bin 0 -> 179 bytes .../item/tools/combat/snow_blaster.png | Bin 0 -> 259 bytes .../item/tools/combat/snow_cannon.png | Bin 0 -> 233 bytes .../item/tools/combat/snow_howitzer.png | Bin 0 -> 248 bytes .../textures/item/tools/combat/sos_flare.png | Bin 0 -> 194 bytes .../item/tools/combat/steak_stake.png | Bin 0 -> 171 bytes .../item/tools/combat/tactical_insertion.png | Bin 0 -> 241 bytes .../item/tools/combat/totem_of_corruption.png | Bin 0 -> 265 bytes .../combat/totem_of_corruption_model0.png | Bin 0 -> 642 bytes .../totem_of_corruption_model0.png.mcmeta | 1 + .../combat/totem_of_corruption_model1.png | Bin 0 -> 642 bytes .../totem_of_corruption_model1.png.mcmeta | 1 + .../combat/totem_of_corruption_model2.png | Bin 0 -> 642 bytes .../totem_of_corruption_model2.png.mcmeta | 1 + .../combat/totem_of_corruption_model3.png | Bin 0 -> 642 bytes .../totem_of_corruption_model3.png.mcmeta | 1 + .../combat/totem_of_corruption_model4.png | Bin 0 -> 642 bytes .../totem_of_corruption_model4.png.mcmeta | 1 + .../combat/totem_of_corruption_model5.png | Bin 0 -> 642 bytes .../totem_of_corruption_model5.png.mcmeta | 1 + .../combat/totem_of_corruption_model6.png | Bin 0 -> 642 bytes .../totem_of_corruption_model6.png.mcmeta | 1 + .../combat/totem_of_corruption_model7.png | Bin 0 -> 642 bytes .../totem_of_corruption_model7.png.mcmeta | 1 + .../item/tools/combat/voodoo_doll.png | Bin 0 -> 179 bytes .../tools/combat/voodoo_doll_acupuncture.png | Bin 0 -> 202 bytes .../item/tools/combat/voodoo_doll_wilted.png | Bin 0 -> 195 bytes .../combat/voodoo_doll_wilted_acupuncture.png | Bin 0 -> 219 bytes .../item/tools/combat/wand_of_atonement.png | Bin 0 -> 215 bytes .../tools/combat/wand_of_atonement_heal.png | Bin 0 -> 218 bytes .../item/tools/combat/wand_of_healing.png | Bin 0 -> 188 bytes .../tools/combat/wand_of_healing_heal.png | Bin 0 -> 193 bytes .../item/tools/combat/wand_of_mending.png | Bin 0 -> 202 bytes .../tools/combat/wand_of_mending_heal.png | Bin 0 -> 207 bytes .../item/tools/combat/wand_of_restoration.png | Bin 0 -> 215 bytes .../tools/combat/wand_of_restoration_heal.png | Bin 0 -> 218 bytes .../item/tools/combat/wand_of_strength.png | Bin 0 -> 209 bytes .../combat/wand_of_strength_life_blood.png | Bin 0 -> 209 bytes .../item/tools/combat/warning_flare.png | Bin 0 -> 194 bytes .../textures/item/tools/combat/weird_tuba.png | Bin 0 -> 191 bytes .../item/tools/combat/weirder_tuba.png | Bin 0 -> 240 bytes .../item/tools/drills/divan_drill.png | Bin 0 -> 161 bytes .../tools/drills/divan_drill_drilling.png | Bin 0 -> 248 bytes .../drills/divan_drill_drilling.png.mcmeta | 1 + .../textures/item/tools/drills/drill_1.png | Bin 0 -> 134 bytes .../textures/item/tools/drills/drill_2.png | Bin 0 -> 163 bytes .../textures/item/tools/drills/drill_3.png | Bin 0 -> 163 bytes .../textures/item/tools/drills/drill_4.png | Bin 0 -> 163 bytes .../item/tools/drills/drill_fuel_full.png | Bin 0 -> 85 bytes .../item/tools/drills/drill_fuel_high.png | Bin 0 -> 85 bytes .../item/tools/drills/drill_fuel_low.png | Bin 0 -> 80 bytes .../item/tools/drills/drill_fuel_med.png | Bin 0 -> 86 bytes .../amber_polished_drill_engine.png | Bin 0 -> 213 bytes .../tools/drills/drill_parts/drill_engine.png | Bin 0 -> 192 bytes .../tools/drills/drill_parts/fuel_tank.png | Bin 0 -> 194 bytes .../drills/drill_parts/gemstone_fuel_tank.png | Bin 0 -> 234 bytes .../drills/drill_parts/goblin_omelette.png | Bin 0 -> 204 bytes .../goblin_omelette_blue_cheese.png | Bin 0 -> 207 bytes .../drill_parts/goblin_omelette_pesto.png | Bin 0 -> 207 bytes .../drill_parts/goblin_omelette_spicy.png | Bin 0 -> 210 bytes .../goblin_omelette_sunny_side.png | Bin 0 -> 220 bytes .../drill_parts/mithril_drill_engine.png | Bin 0 -> 191 bytes .../drills/drill_parts/mithril_fuel_tank.png | Bin 0 -> 196 bytes .../drill_parts/perfectly_cut_fuel_tank.png | Bin 0 -> 253 bytes .../ruby_polished_drill_engine.png | Bin 0 -> 213 bytes .../sapphire_polished_drill_engine.png | Bin 0 -> 206 bytes .../drills/drill_parts/starfall_seasoning.png | Bin 0 -> 209 bytes .../drill_parts/titanium_drill_engine.png | Bin 0 -> 187 bytes .../drills/drill_parts/titanium_fuel_tank.png | Bin 0 -> 187 bytes .../drills/drill_parts/tungsten_keychain.png | Bin 0 -> 272 bytes .../textures/item/tools/drills/jade_drill.png | Bin 0 -> 161 bytes .../item/tools/drills/jade_drill_drilling.png | Bin 0 -> 248 bytes .../drills/jade_drill_drilling.png.mcmeta | 1 + .../item/tools/drills/jasper_drill.png | Bin 0 -> 169 bytes .../tools/drills/jasper_drill_drilling.png | Bin 0 -> 357 bytes .../drills/jasper_drill_drilling.png.mcmeta | 1 + .../item/tools/drills/mithril_drill.png | Bin 0 -> 161 bytes .../tools/drills/mithril_drill_drilling.png | Bin 0 -> 248 bytes .../drills/mithril_drill_drilling.png.mcmeta | 1 + .../textures/item/tools/drills/ruby_drill.png | Bin 0 -> 161 bytes .../item/tools/drills/ruby_drill_drilling.png | Bin 0 -> 248 bytes .../drills/ruby_drill_drilling.png.mcmeta | 1 + .../item/tools/drills/titanium_drill.png | Bin 0 -> 161 bytes .../tools/drills/titanium_drill_drilling.png | Bin 0 -> 248 bytes .../drills/titanium_drill_drilling.png.mcmeta | 1 + .../item/tools/drills/topaz_drill.png | Bin 0 -> 161 bytes .../tools/drills/topaz_drill_drilling.png | Bin 0 -> 248 bytes .../drills/topaz_drill_drilling.png.mcmeta | 1 + .../tools/farming/advanced_gardening_axe.png | Bin 0 -> 203 bytes .../tools/farming/advanced_gardening_hoe.png | Bin 0 -> 190 bytes .../tools/farming/basic_gardening_axe.png | Bin 0 -> 203 bytes .../tools/farming/basic_gardening_hoe.png | Bin 0 -> 187 bytes .../textures/item/tools/farming/binghoe.png | Bin 0 -> 189 bytes .../item/tools/farming/block_zapper.png | Bin 0 -> 212 bytes .../item/tools/farming/builders_ruler.png | Bin 0 -> 155 bytes .../item/tools/farming/builders_wand.png | Bin 0 -> 210 bytes .../item/tools/farming/cactus_knife.png | Bin 0 -> 203 bytes .../item/tools/farming/cactus_knife_2.png | Bin 0 -> 203 bytes .../item/tools/farming/cactus_knife_3.png | Bin 0 -> 203 bytes .../item/tools/farming/coco_chopper.png | Bin 0 -> 187 bytes .../item/tools/farming/coco_chopper_2.png | Bin 0 -> 218 bytes .../item/tools/farming/coco_chopper_3.png | Bin 0 -> 217 bytes .../item/tools/farming/fungi_cutter_brown.png | Bin 0 -> 154 bytes .../tools/farming/fungi_cutter_brown_2.png | Bin 0 -> 177 bytes .../tools/farming/fungi_cutter_brown_3.png | Bin 0 -> 177 bytes .../item/tools/farming/fungi_cutter_red.png | Bin 0 -> 177 bytes .../item/tools/farming/fungi_cutter_red_2.png | Bin 0 -> 198 bytes .../item/tools/farming/fungi_cutter_red_3.png | Bin 0 -> 198 bytes .../item/tools/farming/garden_scythe.png | Bin 0 -> 205 bytes .../item/tools/farming/garden_scythe_hand.png | Bin 0 -> 253 bytes .../tools/farming/hoe_of_great_tilling.png | Bin 0 -> 188 bytes .../tools/farming/hoe_of_greater_tilling.png | Bin 0 -> 192 bytes .../tools/farming/hoe_of_greatest_tilling.png | Bin 0 -> 196 bytes .../item/tools/farming/hoe_of_no_tilling.png | Bin 0 -> 159 bytes .../item/tools/farming/infini_vacuum.png | Bin 0 -> 254 bytes .../tools/farming/infini_vacuum_hooverius.png | Bin 0 -> 249 bytes .../item/tools/farming/infinidirt_wand.png | Bin 0 -> 203 bytes .../item/tools/farming/melon_dicer.png | Bin 0 -> 196 bytes .../item/tools/farming/melon_dicer_2.png | Bin 0 -> 220 bytes .../item/tools/farming/melon_dicer_3.png | Bin 0 -> 219 bytes .../item/tools/farming/portable_washer.png | Bin 0 -> 145 bytes .../item/tools/farming/promising_hoe.png | Bin 0 -> 162 bytes .../item/tools/farming/pumpkin_dicer.png | Bin 0 -> 179 bytes .../item/tools/farming/pumpkin_dicer_2.png | Bin 0 -> 207 bytes .../item/tools/farming/pumpkin_dicer_3.png | Bin 0 -> 204 bytes .../item/tools/farming/rookie_hoe.png | Bin 0 -> 162 bytes .../item/tools/farming/sam_scythe.png | Bin 0 -> 207 bytes .../item/tools/farming/sam_scythe_hand.png | Bin 0 -> 253 bytes .../tools/farming/skymart_hyper_vacuum.png | Bin 0 -> 253 bytes .../tools/farming/skymart_turbo_vacuum.png | Bin 0 -> 250 bytes .../item/tools/farming/skymart_vacuum.png | Bin 0 -> 250 bytes .../item/tools/farming/spore_harvester.png | Bin 0 -> 202 bytes .../item/tools/farming/sprayonator.png | Bin 0 -> 210 bytes .../tools/farming/sprayonator_cheese_fuel.png | Bin 0 -> 112 bytes .../tools/farming/sprayonator_compost.png | Bin 0 -> 157 bytes .../item/tools/farming/sprayonator_dung.png | Bin 0 -> 146 bytes .../tools/farming/sprayonator_fine_flour.png | Bin 0 -> 139 bytes .../tools/farming/sprayonator_honey_jar.png | Bin 0 -> 159 bytes .../farming/sprayonator_plant_matter.png | Bin 0 -> 138 bytes .../tools/farming/sprayonator_spraying.png | Bin 0 -> 89 bytes .../item/tools/farming/squeaky_mousemat.png | Bin 0 -> 218 bytes .../item/tools/farming/talbots_theodolite.png | Bin 0 -> 227 bytes .../theoretical_hoe/theoretical_hoe.png | Bin 0 -> 191 bytes .../theoretical_hoe_cane_1.png | Bin 0 -> 168 bytes .../theoretical_hoe_cane_2.png | Bin 0 -> 197 bytes .../theoretical_hoe_cane_3.png | Bin 0 -> 197 bytes .../theoretical_hoe_carrot_1.png | Bin 0 -> 196 bytes .../theoretical_hoe_carrot_2.png | Bin 0 -> 223 bytes .../theoretical_hoe_carrot_3.png | Bin 0 -> 219 bytes .../theoretical_hoe_potato_1.png | Bin 0 -> 167 bytes .../theoretical_hoe_potato_2.png | Bin 0 -> 208 bytes .../theoretical_hoe_potato_3.png | Bin 0 -> 198 bytes .../theoretical_hoe_warts_1.png | Bin 0 -> 146 bytes .../theoretical_hoe_warts_2.png | Bin 0 -> 187 bytes .../theoretical_hoe_warts_3.png | Bin 0 -> 187 bytes .../theoretical_hoe_wheat_1.png | Bin 0 -> 173 bytes .../theoretical_hoe_wheat_2.png | Bin 0 -> 201 bytes .../theoretical_hoe_wheat_3.png | Bin 0 -> 199 bytes .../item/tools/farming/thornleaf_scythe.png | Bin 0 -> 217 bytes .../tools/farming/thornleaf_scythe_hand.png | Bin 0 -> 278 bytes .../item/tools/farming/vacuum_particle.png | Bin 0 -> 117 bytes .../tools/farming/vacuum_particle.png.mcmeta | 1 + .../item/tools/fishing/empty_chum_bucket.png | Bin 0 -> 208 bytes .../tools/fishing/empty_chumcap_bucket.png | Bin 0 -> 231 bytes .../tools/fishing/fishing_rods/auger_rod.png | Bin 0 -> 238 bytes .../fishing/fishing_rods/auger_rod_cast.png | Bin 0 -> 259 bytes .../fishing/fishing_rods/bingo_lava_rod.png | Bin 0 -> 227 bytes .../fishing_rods/bingo_lava_rod_cast.png | Bin 0 -> 202 bytes .../tools/fishing/fishing_rods/bingo_rod.png | Bin 0 -> 182 bytes .../fishing/fishing_rods/bingo_rod_cast.png | Bin 0 -> 163 bytes .../fishing_rods/carnival_fishing_rod.png | Bin 0 -> 216 bytes .../carnival_fishing_rod_cast.png | Bin 0 -> 188 bytes .../fishing/fishing_rods/challenge_rod.png | Bin 0 -> 217 bytes .../fishing_rods/challenge_rod_cast.png | Bin 0 -> 193 bytes .../tools/fishing/fishing_rods/champ_rod.png | Bin 0 -> 225 bytes .../fishing/fishing_rods/champ_rod_cast.png | Bin 0 -> 204 bytes .../tools/fishing/fishing_rods/chum_rod.png | Bin 0 -> 196 bytes .../fishing/fishing_rods/chum_rod_cast.png | Bin 0 -> 172 bytes .../tools/fishing/fishing_rods/dirt_rod.png | Bin 0 -> 205 bytes .../fishing/fishing_rods/dirt_rod_cast.png | Bin 0 -> 181 bytes .../tools/fishing/fishing_rods/farmer_rod.png | Bin 0 -> 219 bytes .../fishing/fishing_rods/farmer_rod_cast.png | Bin 0 -> 234 bytes .../fishing_rods/giant_fishing_rod.png | Bin 0 -> 184 bytes .../fishing_rods/giant_fishing_rod_cast.png | Bin 0 -> 149 bytes .../giant_fishing_rod_cast_hand.png | Bin 0 -> 199 bytes .../fishing_rods/giant_fishing_rod_hand.png | Bin 0 -> 263 bytes .../fishing/fishing_rods/grappling_hook.png | Bin 0 -> 174 bytes .../fishing_rods/grappling_hook_cast.png | Bin 0 -> 162 bytes .../fishing/fishing_rods/hellfire_rod.png | Bin 0 -> 238 bytes .../fishing_rods/hellfire_rod_cast.png | Bin 0 -> 210 bytes .../tools/fishing/fishing_rods/ice_rod.png | Bin 0 -> 200 bytes .../fishing/fishing_rods/ice_rod_cast.png | Bin 0 -> 171 bytes .../fishing/fishing_rods/inferno_rod.png | Bin 0 -> 236 bytes .../fishing/fishing_rods/inferno_rod_cast.png | Bin 0 -> 209 bytes .../tools/fishing/fishing_rods/legend_rod.png | Bin 0 -> 213 bytes .../fishing/fishing_rods/legend_rod_cast.png | Bin 0 -> 190 bytes .../tools/fishing/fishing_rods/magma_rod.png | Bin 0 -> 242 bytes .../fishing/fishing_rods/magma_rod_cast.png | Bin 0 -> 213 bytes .../tools/fishing/fishing_rods/null_rod.png | Bin 0 -> 134 bytes .../fishing/fishing_rods/phantom_rod.png | Bin 0 -> 216 bytes .../fishing/fishing_rods/phantom_rod_cast.png | Bin 0 -> 199 bytes .../fishing_rods/polished_topaz_rod.png | Bin 0 -> 187 bytes .../fishing_rods/polished_topaz_rod_cast.png | Bin 0 -> 151 bytes .../fishing/fishing_rods/prismarine_rod.png | Bin 0 -> 196 bytes .../fishing_rods/prismarine_rod_cast.png | Bin 0 -> 172 bytes .../fishing/fishing_rods/rod_of_the_sea.png | Bin 0 -> 239 bytes .../fishing_rods/rod_of_the_sea_cast.png | Bin 0 -> 214 bytes .../fishing/fishing_rods/speedster_rod.png | Bin 0 -> 212 bytes .../fishing_rods/speedster_rod_cast.png | Bin 0 -> 168 bytes .../tools/fishing/fishing_rods/sponge_rod.png | Bin 0 -> 206 bytes .../fishing/fishing_rods/sponge_rod_cast.png | Bin 0 -> 204 bytes .../fishing/fishing_rods/starter_lava_rod.png | Bin 0 -> 243 bytes .../fishing_rods/starter_lava_rod_cast.png | Bin 0 -> 207 bytes .../fishing/fishing_rods/the_shredder.png | Bin 0 -> 210 bytes .../fishing_rods/the_shredder_cast.png | Bin 0 -> 161 bytes .../tools/fishing/fishing_rods/winter_rod.png | Bin 0 -> 214 bytes .../fishing/fishing_rods/winter_rod_cast.png | Bin 0 -> 213 bytes .../tools/fishing/fishing_rods/yeti_rod.png | Bin 0 -> 191 bytes .../fishing/fishing_rods/yeti_rod_cast.png | Bin 0 -> 181 bytes .../item/tools/fishing/full_chum_bucket.png | Bin 0 -> 218 bytes .../tools/fishing/full_chumcap_bucket.png | Bin 0 -> 249 bytes .../item/tools/fishing/hotspot_radar.png | Bin 0 -> 241 bytes .../tools/fishing/hurricane_in_a_bottle.png | Bin 0 -> 229 bytes .../fishing/hurricane_in_a_bottle_empty.png | Bin 0 -> 168 bytes .../tools/fishing/rod_parts/chum_sinker.png | Bin 0 -> 273 bytes .../tools/fishing/rod_parts/common_hook.png | Bin 0 -> 201 bytes .../fishing/rod_parts/festive_sinker.png | Bin 0 -> 237 bytes .../tools/fishing/rod_parts/hotspot_hook.png | Bin 0 -> 218 bytes .../fishing/rod_parts/hotspot_sinker.png | Bin 0 -> 224 bytes .../tools/fishing/rod_parts/icy_sinker.png | Bin 0 -> 247 bytes .../tools/fishing/rod_parts/junk_sinker.png | Bin 0 -> 259 bytes .../tools/fishing/rod_parts/oasis_hook.png | Bin 0 -> 207 bytes .../tools/fishing/rod_parts/phantom_hook.png | Bin 0 -> 204 bytes .../fishing/rod_parts/prismarine_sinker.png | Bin 0 -> 218 bytes .../tools/fishing/rod_parts/shredded_line.png | Bin 0 -> 231 bytes .../tools/fishing/rod_parts/speedy_line.png | Bin 0 -> 222 bytes .../tools/fishing/rod_parts/sponge_sinker.png | Bin 0 -> 227 bytes .../tools/fishing/rod_parts/stingy_sinker.png | Bin 0 -> 223 bytes .../tools/fishing/rod_parts/titan_line.png | Bin 0 -> 236 bytes .../tools/fishing/rod_parts/treasure_hook.png | Bin 0 -> 191 bytes .../item/tools/fishing/storm_in_a_bottle.png | Bin 0 -> 228 bytes .../tools/fishing/storm_in_a_bottle_empty.png | Bin 0 -> 201 bytes .../tools/fishing/thunder_in_a_bottle.png | Bin 0 -> 202 bytes .../fishing/thunder_in_a_bottle_empty.png | Bin 0 -> 177 bytes .../textures/item/tools/fishing/umberella.png | Bin 0 -> 210 bytes .../item/tools/foraging/abysmal_lasso.png | Bin 0 -> 210 bytes .../item/tools/foraging/apex_praedator.png | Bin 0 -> 216 bytes .../item/tools/foraging/basic_fishing_net.png | Bin 0 -> 191 bytes .../textures/item/tools/foraging/bingaxe.png | Bin 0 -> 191 bytes .../item/tools/foraging/bubbles_of_air.png | Bin 0 -> 202 bytes .../item/tools/foraging/cursus_ferae.png | Bin 0 -> 201 bytes .../item/tools/foraging/decent_axe.png | Bin 0 -> 191 bytes .../item/tools/foraging/efficient_axe.png | Bin 0 -> 178 bytes .../item/tools/foraging/entangler_lasso.png | Bin 0 -> 208 bytes .../item/tools/foraging/everstretch_lasso.png | Bin 0 -> 223 bytes .../textures/item/tools/foraging/fig_axe.png | Bin 0 -> 198 bytes .../item/tools/foraging/figstone_axe.png | Bin 0 -> 203 bytes .../item/tools/foraging/hunting_toolkit.png | Bin 0 -> 234 bytes .../item/tools/foraging/jungle_axe.png | Bin 0 -> 192 bytes .../item/tools/foraging/large_scaffolding.png | Bin 0 -> 494 bytes .../tools/foraging/medium_fishing_net.png | Bin 0 -> 195 bytes .../foraging/medium_pocket_black_hole.png | Bin 0 -> 207 bytes .../tools/foraging/medium_scaffolding.png | Bin 0 -> 528 bytes .../item/tools/foraging/mobys_shears.png | Bin 0 -> 191 bytes .../item/tools/foraging/nex_titanum.png | Bin 0 -> 223 bytes .../item/tools/foraging/promising_axe.png | Bin 0 -> 178 bytes .../item/tools/foraging/retia_basica.png | Bin 0 -> 259 bytes .../item/tools/foraging/retia_basica_set.png | Bin 0 -> 250 bytes .../item/tools/foraging/retia_forta.png | Bin 0 -> 296 bytes .../item/tools/foraging/retia_forta_set.png | Bin 0 -> 294 bytes .../item/tools/foraging/retia_meliora.png | Bin 0 -> 287 bytes .../item/tools/foraging/retia_meliora_set.png | Bin 0 -> 278 bytes .../item/tools/foraging/retia_robusta.png | Bin 0 -> 298 bytes .../item/tools/foraging/retia_robusta_set.png | Bin 0 -> 284 bytes .../item/tools/foraging/retia_suprema.png | Bin 0 -> 282 bytes .../item/tools/foraging/retia_suprema_set.png | Bin 0 -> 279 bytes .../item/tools/foraging/rookie_axe.png | Bin 0 -> 178 bytes .../item/tools/foraging/sculptors_axe.png | Bin 0 -> 192 bytes .../tools/foraging/seriously_damaged_axe.png | Bin 0 -> 193 bytes .../item/tools/foraging/silva_dominus.png | Bin 0 -> 206 bytes .../foraging/small_pocket_black_hole.png | Bin 0 -> 186 bytes .../item/tools/foraging/sweet_axe.png | Bin 0 -> 213 bytes .../item/tools/foraging/tiny_scaffolding.png | Bin 0 -> 441 bytes .../item/tools/foraging/treecapitator_axe.png | Bin 0 -> 196 bytes .../item/tools/foraging/tuning_fork.png | Bin 0 -> 112 bytes .../item/tools/foraging/turbo_fishing_net.png | Bin 0 -> 206 bytes .../item/tools/foraging/venator_genesis.png | Bin 0 -> 204 bytes .../item/tools/foraging/vinerip_lasso.png | Bin 0 -> 196 bytes .../item/tools/foraging/weather_stick.png | Bin 0 -> 175 bytes .../tools/mining/anti_sentient_pickaxe.png | Bin 0 -> 200 bytes .../tools/mining/bandaged_mithril_pickaxe.png | Bin 0 -> 183 bytes .../item/tools/mining/bingonimbus_2000.png | Bin 0 -> 208 bytes .../textures/item/tools/mining/bob_omb.png | Bin 0 -> 224 bytes .../item/tools/mining/carnival_shovel.png | Bin 0 -> 198 bytes .../tools/mining/carnival_shovel_anchor.png | Bin 0 -> 208 bytes .../tools/mining/carnival_shovel_treasure.png | Bin 0 -> 208 bytes .../textures/item/tools/mining/chisel.png | Bin 0 -> 178 bytes .../item/tools/mining/chrono_pickaxe.png | Bin 0 -> 200 bytes .../item/tools/mining/dungeonbreaker.png | Bin 0 -> 221 bytes .../tools/mining/dwarven_metal_detector.png | Bin 0 -> 143 bytes .../mining/dwarven_metal_detector_model.png | Bin 0 -> 285 bytes .../item/tools/mining/eon_pickaxe.png | Bin 0 -> 200 bytes .../item/tools/mining/fallen_star_tracker.png | Bin 0 -> 186 bytes .../item/tools/mining/flint_shovel.png | Bin 0 -> 178 bytes .../mining/fractured_mithril_pickaxe.png | Bin 0 -> 185 bytes .../gemstone_gauntlet/gemstone_gauntlet.png | Bin 0 -> 167 bytes .../gemstone_gauntlet_amber.png | Bin 0 -> 79 bytes .../gemstone_gauntlet_amethyst.png | Bin 0 -> 80 bytes .../gemstone_gauntlet_full.png | Bin 0 -> 219 bytes .../gemstone_gauntlet_jade.png | Bin 0 -> 79 bytes .../gemstone_gauntlet_model.png | Bin 0 -> 207 bytes .../gemstone_gauntlet_model_amber.png | Bin 0 -> 88 bytes .../gemstone_gauntlet_model_amethyst.png | Bin 0 -> 94 bytes .../gemstone_gauntlet_model_full.png | Bin 0 -> 230 bytes .../gemstone_gauntlet_model_jade.png | Bin 0 -> 91 bytes .../gemstone_gauntlet_model_sapphire.png | Bin 0 -> 91 bytes .../gemstone_gauntlet_model_topaz.png | Bin 0 -> 92 bytes .../gemstone_gauntlet_sapphire.png | Bin 0 -> 80 bytes .../gemstone_gauntlet_topaz.png | Bin 0 -> 80 bytes .../item/tools/mining/glacite_chisel.png | Bin 0 -> 198 bytes .../item/tools/mining/jungle_pickaxe.png | Bin 0 -> 201 bytes .../item/tools/mining/lapis_pickaxe.png | Bin 0 -> 180 bytes .../item/tools/mining/mithril_pickaxe.png | Bin 0 -> 194 bytes .../item/tools/mining/perfect_chisel.png | Bin 0 -> 198 bytes .../item/tools/mining/pickonimbus.png | Bin 0 -> 275 bytes .../item/tools/mining/promising_pickaxe.png | Bin 0 -> 179 bytes .../item/tools/mining/promising_spade.png | Bin 0 -> 157 bytes .../tools/mining/refined_mithril_pickaxe.png | Bin 0 -> 186 bytes .../tools/mining/refined_titanium_pickaxe.png | Bin 0 -> 186 bytes .../item/tools/mining/reinforced_chisel.png | Bin 0 -> 200 bytes .../item/tools/mining/rookie_pickaxe.png | Bin 0 -> 179 bytes .../item/tools/mining/rookie_spade.png | Bin 0 -> 159 bytes .../item/tools/mining/royal_compass.png | Bin 0 -> 249 bytes .../tools/mining/rusty_titanium_pickaxe.png | Bin 0 -> 192 bytes .../item/tools/mining/snow_shovel.png | Bin 0 -> 171 bytes .../item/tools/mining/stonk_pickaxe.png | Bin 0 -> 204 bytes .../item/tools/mining/titanium_pickaxe.png | Bin 0 -> 194 bytes .../item/tools/mining/zombie_pickaxe.png | Bin 0 -> 188 bytes .../item/tools/mining/zoom_pickaxe.png | Bin 0 -> 198 bytes .../item/weapons/bows/artisanal_shortbow.png | Bin 0 -> 163 bytes .../bows/artisanal_shortbow_pulling_0.png | Bin 0 -> 194 bytes .../bows/artisanal_shortbow_pulling_1.png | Bin 0 -> 195 bytes .../bows/artisanal_shortbow_pulling_2.png | Bin 0 -> 199 bytes .../textures/item/weapons/bows/bingbow.png | Bin 0 -> 193 bytes .../item/weapons/bows/bingbow_pulling_0.png | Bin 0 -> 222 bytes .../item/weapons/bows/bingbow_pulling_1.png | Bin 0 -> 227 bytes .../item/weapons/bows/bingbow_pulling_2.png | Bin 0 -> 218 bytes .../item/weapons/bows/bone_boomerang.png | Bin 0 -> 208 bytes .../weapons/bows/bone_boomerang_thrown.png | Bin 0 -> 163 bytes .../textures/item/weapons/bows/crypt_bow.png | Bin 0 -> 193 bytes .../item/weapons/bows/crypt_bow_pulling_0.png | Bin 0 -> 244 bytes .../item/weapons/bows/crypt_bow_pulling_1.png | Bin 0 -> 240 bytes .../item/weapons/bows/crypt_bow_pulling_2.png | Bin 0 -> 234 bytes .../textures/item/weapons/bows/death_bow.png | Bin 0 -> 219 bytes .../item/weapons/bows/death_bow_pulling_0.png | Bin 0 -> 246 bytes .../item/weapons/bows/death_bow_pulling_1.png | Bin 0 -> 247 bytes .../item/weapons/bows/death_bow_pulling_2.png | Bin 0 -> 245 bytes .../textures/item/weapons/bows/decent_bow.png | Bin 0 -> 181 bytes .../weapons/bows/decent_bow_pulling_0.png | Bin 0 -> 211 bytes .../weapons/bows/decent_bow_pulling_1.png | Bin 0 -> 213 bytes .../weapons/bows/decent_bow_pulling_2.png | Bin 0 -> 208 bytes .../item/weapons/bows/dragon_shortbow.png | Bin 0 -> 195 bytes .../bows/dragon_shortbow_pulling_0.png | Bin 0 -> 233 bytes .../bows/dragon_shortbow_pulling_1.png | Bin 0 -> 236 bytes .../bows/dragon_shortbow_pulling_2.png | Bin 0 -> 235 bytes .../item/weapons/bows/end_stone_bow.png | Bin 0 -> 181 bytes .../weapons/bows/end_stone_bow_pulling_0.png | Bin 0 -> 223 bytes .../weapons/bows/end_stone_bow_pulling_1.png | Bin 0 -> 225 bytes .../weapons/bows/end_stone_bow_pulling_2.png | Bin 0 -> 217 bytes .../textures/item/weapons/bows/ender_bow.png | Bin 0 -> 169 bytes .../item/weapons/bows/ender_bow_pulling_0.png | Bin 0 -> 206 bytes .../item/weapons/bows/ender_bow_pulling_1.png | Bin 0 -> 211 bytes .../item/weapons/bows/ender_bow_pulling_2.png | Bin 0 -> 206 bytes .../item/weapons/bows/explosive_bow.png | Bin 0 -> 203 bytes .../weapons/bows/explosive_bow_pulling_0.png | Bin 0 -> 218 bytes .../weapons/bows/explosive_bow_pulling_1.png | Bin 0 -> 227 bytes .../weapons/bows/explosive_bow_pulling_2.png | Bin 0 -> 247 bytes .../bows/explosive_bow_pulling_2.png.mcmeta | 1 + .../item/weapons/bows/healing_bow.png | Bin 0 -> 168 bytes .../weapons/bows/healing_bow_pulling_0.png | Bin 0 -> 197 bytes .../weapons/bows/healing_bow_pulling_1.png | Bin 0 -> 199 bytes .../weapons/bows/healing_bow_pulling_2.png | Bin 0 -> 195 bytes .../item/weapons/bows/hurricane_bow.png | Bin 0 -> 190 bytes .../weapons/bows/hurricane_bow_pulling_0.png | Bin 0 -> 228 bytes .../weapons/bows/hurricane_bow_pulling_1.png | Bin 0 -> 224 bytes .../weapons/bows/hurricane_bow_pulling_2.png | Bin 0 -> 242 bytes .../item/weapons/bows/item_spirit_bow.png | Bin 0 -> 204 bytes .../bows/item_spirit_bow_pulling_0.png | Bin 0 -> 232 bytes .../bows/item_spirit_bow_pulling_1.png | Bin 0 -> 238 bytes .../bows/item_spirit_bow_pulling_2.png | Bin 0 -> 238 bytes .../item/weapons/bows/juju_shortbow.png | Bin 0 -> 209 bytes .../weapons/bows/juju_shortbow_pulling_0.png | Bin 0 -> 237 bytes .../weapons/bows/juju_shortbow_pulling_1.png | Bin 0 -> 239 bytes .../weapons/bows/juju_shortbow_pulling_2.png | Bin 0 -> 239 bytes .../item/weapons/bows/last_breath.png | Bin 0 -> 175 bytes .../weapons/bows/last_breath_pulling_0.png | Bin 0 -> 213 bytes .../weapons/bows/last_breath_pulling_1.png | Bin 0 -> 214 bytes .../weapons/bows/last_breath_pulling_2.png | Bin 0 -> 207 bytes .../item/weapons/bows/machine_gun_bow.png | Bin 0 -> 204 bytes .../bows/machine_gun_bow_pulling_0.png | Bin 0 -> 222 bytes .../bows/machine_gun_bow_pulling_1.png | Bin 0 -> 219 bytes .../bows/machine_gun_bow_pulling_2.png | Bin 0 -> 223 bytes .../textures/item/weapons/bows/magma_bow.png | Bin 0 -> 188 bytes .../item/weapons/bows/magma_bow_pulling_0.png | Bin 0 -> 214 bytes .../item/weapons/bows/magma_bow_pulling_1.png | Bin 0 -> 229 bytes .../item/weapons/bows/magma_bow_pulling_2.png | Bin 0 -> 228 bytes .../item/weapons/bows/mosquito_bow.png | Bin 0 -> 210 bytes .../weapons/bows/mosquito_bow_pulling_0.png | Bin 0 -> 219 bytes .../weapons/bows/mosquito_bow_pulling_1.png | Bin 0 -> 216 bytes .../weapons/bows/mosquito_bow_pulling_2.png | Bin 0 -> 218 bytes .../textures/item/weapons/bows/null_bow.png | Bin 0 -> 142 bytes .../item/weapons/bows/prismarine_bow.png | Bin 0 -> 189 bytes .../weapons/bows/prismarine_bow_pulling_0.png | Bin 0 -> 221 bytes .../weapons/bows/prismarine_bow_pulling_1.png | Bin 0 -> 222 bytes .../weapons/bows/prismarine_bow_pulling_2.png | Bin 0 -> 220 bytes .../item/weapons/bows/runaans_bow.png | Bin 0 -> 204 bytes .../weapons/bows/runaans_bow_pulling_0.png | Bin 0 -> 243 bytes .../weapons/bows/runaans_bow_pulling_1.png | Bin 0 -> 237 bytes .../weapons/bows/runaans_bow_pulling_2.png | Bin 0 -> 253 bytes .../textures/item/weapons/bows/savana_bow.png | Bin 0 -> 188 bytes .../weapons/bows/savana_bow_pulling_0.png | Bin 0 -> 226 bytes .../weapons/bows/savana_bow_pulling_1.png | Bin 0 -> 227 bytes .../weapons/bows/savana_bow_pulling_2.png | Bin 0 -> 226 bytes .../item/weapons/bows/scorpion_bow.png | Bin 0 -> 175 bytes .../weapons/bows/scorpion_bow_pulling_0.png | Bin 0 -> 211 bytes .../weapons/bows/scorpion_bow_pulling_1.png | Bin 0 -> 218 bytes .../weapons/bows/scorpion_bow_pulling_2.png | Bin 0 -> 226 bytes .../item/weapons/bows/skeleton_lord_bow.png | Bin 0 -> 188 bytes .../bows/skeleton_lord_bow_pulling_0.png | Bin 0 -> 227 bytes .../bows/skeleton_lord_bow_pulling_1.png | Bin 0 -> 224 bytes .../bows/skeleton_lord_bow_pulling_2.png | Bin 0 -> 221 bytes .../textures/item/weapons/bows/slime_bow.png | Bin 0 -> 176 bytes .../item/weapons/bows/slime_bow_pulling_0.png | Bin 0 -> 214 bytes .../item/weapons/bows/slime_bow_pulling_1.png | Bin 0 -> 229 bytes .../item/weapons/bows/slime_bow_pulling_2.png | Bin 0 -> 227 bytes .../textures/item/weapons/bows/sniper_bow.png | Bin 0 -> 228 bytes .../weapons/bows/sniper_bow_pulling_0.png | Bin 0 -> 259 bytes .../weapons/bows/sniper_bow_pulling_1.png | Bin 0 -> 254 bytes .../weapons/bows/sniper_bow_pulling_2.png | Bin 0 -> 248 bytes .../item/weapons/bows/souls_rebound.png | Bin 0 -> 174 bytes .../weapons/bows/souls_rebound_pulling_0.png | Bin 0 -> 204 bytes .../weapons/bows/souls_rebound_pulling_1.png | Bin 0 -> 206 bytes .../weapons/bows/souls_rebound_pulling_2.png | Bin 0 -> 202 bytes .../weapons/bows/spider_queens_stinger.png | Bin 0 -> 211 bytes .../bows/spider_queens_stinger_pulling_0.png | Bin 0 -> 248 bytes .../bows/spider_queens_stinger_pulling_1.png | Bin 0 -> 240 bytes .../bows/spider_queens_stinger_pulling_2.png | Bin 0 -> 240 bytes .../weapons/bows/starred_bone_boomerang.png | Bin 0 -> 196 bytes .../bows/starred_bone_boomerang_thrown.png | Bin 0 -> 196 bytes .../weapons/bows/starred_item_spirit_bow.png | Bin 0 -> 208 bytes .../starred_item_spirit_bow_pulling_0.png | Bin 0 -> 238 bytes .../starred_item_spirit_bow_pulling_1.png | Bin 0 -> 239 bytes .../starred_item_spirit_bow_pulling_2.png | Bin 0 -> 241 bytes .../item/weapons/bows/starred_last_breath.png | Bin 0 -> 182 bytes .../bows/starred_last_breath_pulling_0.png | Bin 0 -> 219 bytes .../bows/starred_last_breath_pulling_1.png | Bin 0 -> 223 bytes .../bows/starred_last_breath_pulling_2.png | Bin 0 -> 215 bytes .../bows/starred_spider_queens_stinger.png | Bin 0 -> 212 bytes ...tarred_spider_queens_stinger_pulling_0.png | Bin 0 -> 242 bytes ...tarred_spider_queens_stinger_pulling_1.png | Bin 0 -> 243 bytes ...tarred_spider_queens_stinger_pulling_2.png | Bin 0 -> 242 bytes .../weapons/bows/starred_venoms_touch.png | Bin 0 -> 227 bytes .../bows/starred_venoms_touch_pulling_0.png | Bin 0 -> 264 bytes .../bows/starred_venoms_touch_pulling_1.png | Bin 0 -> 261 bytes .../bows/starred_venoms_touch_pulling_2.png | Bin 0 -> 263 bytes .../item/weapons/bows/stinger_bow.png | Bin 0 -> 163 bytes .../weapons/bows/stinger_bow_pulling_0.png | Bin 0 -> 198 bytes .../weapons/bows/stinger_bow_pulling_1.png | Bin 0 -> 198 bytes .../weapons/bows/stinger_bow_pulling_2.png | Bin 0 -> 193 bytes .../textures/item/weapons/bows/stun_bow.png | Bin 0 -> 182 bytes .../item/weapons/bows/stun_bow_pulling_0.png | Bin 0 -> 207 bytes .../item/weapons/bows/stun_bow_pulling_1.png | Bin 0 -> 209 bytes .../item/weapons/bows/stun_bow_pulling_2.png | Bin 0 -> 206 bytes .../item/weapons/bows/sulphur_bow.png | Bin 0 -> 220 bytes .../weapons/bows/sulphur_bow_pulling_0.png | Bin 0 -> 248 bytes .../weapons/bows/sulphur_bow_pulling_1.png | Bin 0 -> 252 bytes .../weapons/bows/sulphur_bow_pulling_2.png | Bin 0 -> 246 bytes .../item/weapons/bows/super_undead_bow.png | Bin 0 -> 206 bytes .../bows/super_undead_bow_pulling_0.png | Bin 0 -> 228 bytes .../bows/super_undead_bow_pulling_1.png | Bin 0 -> 232 bytes .../bows/super_undead_bow_pulling_2.png | Bin 0 -> 228 bytes .../textures/item/weapons/bows/terminator.png | Bin 0 -> 231 bytes .../weapons/bows/terminator_pulling_0.png | Bin 0 -> 250 bytes .../weapons/bows/terminator_pulling_1.png | Bin 0 -> 252 bytes .../weapons/bows/terminator_pulling_2.png | Bin 0 -> 258 bytes .../textures/item/weapons/bows/undead_bow.png | Bin 0 -> 210 bytes .../weapons/bows/undead_bow_pulling_0.png | Bin 0 -> 243 bytes .../weapons/bows/undead_bow_pulling_1.png | Bin 0 -> 246 bytes .../weapons/bows/undead_bow_pulling_2.png | Bin 0 -> 241 bytes .../item/weapons/bows/venoms_touch.png | Bin 0 -> 212 bytes .../weapons/bows/venoms_touch_pulling_0.png | Bin 0 -> 252 bytes .../weapons/bows/venoms_touch_pulling_1.png | Bin 0 -> 250 bytes .../weapons/bows/venoms_touch_pulling_2.png | Bin 0 -> 249 bytes .../textures/item/weapons/bows/wither_bow.png | Bin 0 -> 196 bytes .../weapons/bows/wither_bow_pulling_0.png | Bin 0 -> 223 bytes .../weapons/bows/wither_bow_pulling_1.png | Bin 0 -> 222 bytes .../weapons/bows/wither_bow_pulling_2.png | Bin 0 -> 220 bytes .../weapons/longswords/atomsplit_katana.png | Bin 0 -> 189 bytes .../longswords/atomsplit_katana_hand.png | Bin 0 -> 215 bytes .../longswords/atomsplit_katana_soulcry.png | Bin 0 -> 197 bytes .../atomsplit_katana_soulcry_hand.png | Bin 0 -> 219 bytes .../item/weapons/longswords/bone_reaver.png | Bin 0 -> 233 bytes .../weapons/longswords/bone_reaver_hand.png | Bin 0 -> 276 bytes .../item/weapons/longswords/dark_claymore.png | Bin 0 -> 184 bytes .../weapons/longswords/dark_claymore_hand.png | Bin 0 -> 218 bytes .../weapons/longswords/felthorn_reaper.png | Bin 0 -> 238 bytes .../longswords/felthorn_reaper_hand.png | Bin 0 -> 300 bytes .../weapons/longswords/giants_eye_sword.png | Bin 0 -> 211 bytes .../longswords/giants_eye_sword_hand.png | Bin 0 -> 302 bytes .../item/weapons/longswords/giants_sword.png | Bin 0 -> 215 bytes .../weapons/longswords/giants_sword_hand.png | Bin 0 -> 305 bytes .../longswords/starred_felthorn_reaper.png | Bin 0 -> 256 bytes .../starred_felthorn_reaper_hand.png | Bin 0 -> 316 bytes .../weapons/longswords/voidedge_katana.png | Bin 0 -> 192 bytes .../longswords/voidedge_katana_hand.png | Bin 0 -> 222 bytes .../longswords/voidedge_katana_soulcry.png | Bin 0 -> 191 bytes .../voidedge_katana_soulcry_hand.png | Bin 0 -> 221 bytes .../weapons/longswords/voidwalker_katana.png | Bin 0 -> 178 bytes .../longswords/voidwalker_katana_hand.png | Bin 0 -> 207 bytes .../item/weapons/longswords/vorpal_katana.png | Bin 0 -> 172 bytes .../weapons/longswords/vorpal_katana_hand.png | Bin 0 -> 198 bytes .../longswords/vorpal_katana_soulcry.png | Bin 0 -> 178 bytes .../longswords/vorpal_katana_soulcry_hand.png | Bin 0 -> 213 bytes .../item/weapons/other/pumpkin_launcher.png | Bin 0 -> 508 bytes .../item/weapons/scythes/frozen_scythe.png | Bin 0 -> 184 bytes .../weapons/scythes/frozen_scythe_hand.png | Bin 0 -> 226 bytes .../item/weapons/scythes/ghoul_buster.png | Bin 0 -> 215 bytes .../weapons/scythes/ghoul_buster_hand.png | Bin 0 -> 269 bytes .../item/weapons/scythes/glacial_scythe.png | Bin 0 -> 209 bytes .../weapons/scythes/glacial_scythe_hand.png | Bin 0 -> 266 bytes .../item/weapons/scythes/reaper_scythe.png | Bin 0 -> 229 bytes .../weapons/scythes/reaper_scythe_hand.png | Bin 0 -> 280 bytes .../item/weapons/scythes/sinseeker_scythe.png | Bin 0 -> 195 bytes .../weapons/scythes/sinseeker_scythe_hand.png | Bin 0 -> 251 bytes .../scythes/sinseeker_scythe_sinrecall.png | Bin 0 -> 195 bytes .../sinseeker_scythe_sinrecall_hand.png | Bin 0 -> 251 bytes .../scythes/starred_glacial_scythe.png | Bin 0 -> 206 bytes .../scythes/starred_glacial_scythe_hand.png | Bin 0 -> 271 bytes .../item/weapons/staves/alchemists_staff.png | Bin 0 -> 192 bytes .../weapons/staves/alchemists_staff_hand.png | Bin 0 -> 293 bytes .../textures/item/weapons/staves/bat_wand.png | Bin 0 -> 215 bytes .../item/weapons/staves/bat_wand_hand.png | Bin 0 -> 271 bytes .../item/weapons/staves/bonzo_staff.png | Bin 0 -> 220 bytes .../item/weapons/staves/bonzo_staff_hand.png | Bin 0 -> 283 bytes .../item/weapons/staves/fire_freeze_staff.png | Bin 0 -> 235 bytes .../weapons/staves/fire_freeze_staff_hand.png | Bin 0 -> 378 bytes .../item/weapons/staves/fire_fury_staff.png | Bin 0 -> 202 bytes .../weapons/staves/fire_fury_staff_hand.png | Bin 0 -> 277 bytes .../item/weapons/staves/great_spook_staff.png | Bin 0 -> 275 bytes .../staves/great_spook_staff.png.mcmeta | 1 + .../weapons/staves/great_spook_staff_1st.png | Bin 0 -> 283 bytes .../staves/great_spook_staff_1st.png.mcmeta | 1 + .../staves/great_spook_staff_1st_hand.png | Bin 0 -> 391 bytes .../great_spook_staff_1st_hand.png.mcmeta | 1 + .../weapons/staves/great_spook_staff_hand.png | Bin 0 -> 390 bytes .../staves/great_spook_staff_hand.png.mcmeta | 1 + .../item/weapons/staves/hellstorm_staff.png | Bin 0 -> 218 bytes .../weapons/staves/hellstorm_staff_hand.png | Bin 0 -> 251 bytes .../weapons/staves/hope_of_the_resistance.png | Bin 0 -> 234 bytes .../staves/hope_of_the_resistance_hand.png | Bin 0 -> 361 bytes .../item/weapons/staves/jerry_staff.png | Bin 0 -> 233 bytes .../item/weapons/staves/jerry_staff_hand.png | Bin 0 -> 353 bytes .../item/weapons/staves/midas_staff.png | Bin 0 -> 237 bytes .../item/weapons/staves/midas_staff_hand.png | Bin 0 -> 276 bytes .../item/weapons/staves/runic_staff.png | Bin 0 -> 230 bytes .../item/weapons/staves/runic_staff_hand.png | Bin 0 -> 331 bytes .../staves/staff_of_the_rising_moon.png | Bin 0 -> 225 bytes .../staves/staff_of_the_rising_moon_hand.png | Bin 0 -> 340 bytes .../weapons/staves/staff_of_the_volcano.png | Bin 0 -> 238 bytes .../staves/staff_of_the_volcano_hand.png | Bin 0 -> 333 bytes .../item/weapons/staves/starred_bat_wand.png | Bin 0 -> 222 bytes .../weapons/staves/starred_bat_wand_hand.png | Bin 0 -> 299 bytes .../weapons/staves/starred_bonzo_staff.png | Bin 0 -> 218 bytes .../staves/starred_bonzo_staff_hand.png | Bin 0 -> 281 bytes .../weapons/staves/starred_midas_staff.png | Bin 0 -> 242 bytes .../staves/starred_midas_staff_hand.png | Bin 0 -> 308 bytes .../item/weapons/staves/tribal_spear.png | Bin 0 -> 203 bytes .../item/weapons/staves/tribal_spear_hand.png | Bin 0 -> 249 bytes .../weapons/staves/tribal_spear_thrown.png | Bin 0 -> 203 bytes .../textures/item/weapons/swords/arack.png | Bin 0 -> 200 bytes .../weapons/swords/aspect_of_the_draconic.png | Bin 0 -> 239 bytes .../weapons/swords/aspect_of_the_dragon.png | Bin 0 -> 238 bytes .../item/weapons/swords/aspect_of_the_end.png | Bin 0 -> 224 bytes .../swords/aspect_of_the_end_etherwarp.png | Bin 0 -> 242 bytes .../aspect_of_the_end_etherwarp_open.png | Bin 0 -> 274 bytes .../aspect_of_the_end_etherwarp_teleport.png | Bin 0 -> 281 bytes ...pect_of_the_end_etherwarp_transmission.png | Bin 0 -> 255 bytes .../swords/aspect_of_the_end_transmission.png | Bin 0 -> 224 bytes .../weapons/swords/aspect_of_the_jerry.png | Bin 0 -> 221 bytes .../swords/aspect_of_the_jerry_signature.png | Bin 0 -> 226 bytes .../aspect_of_the_jerry_signature_parley.png | Bin 0 -> 265 bytes ...t_of_the_jerry_signature_parley.png.mcmeta | 1 + .../weapons/swords/aspect_of_the_void.png | Bin 0 -> 224 bytes .../swords/aspect_of_the_void_etherwarp.png | Bin 0 -> 241 bytes .../aspect_of_the_void_etherwarp_open.png | Bin 0 -> 266 bytes .../aspect_of_the_void_etherwarp_teleport.png | Bin 0 -> 272 bytes ...ect_of_the_void_etherwarp_transmission.png | Bin 0 -> 260 bytes .../aspect_of_the_void_transmission.png | Bin 0 -> 234 bytes .../textures/item/weapons/swords/astraea.png | Bin 0 -> 239 bytes .../weapons/swords/axe_of_the_shredded.png | Bin 0 -> 211 bytes .../swords/axe_of_the_shredded_hand.png | Bin 0 -> 262 bytes .../item/weapons/swords/bingolibur.png | Bin 0 -> 211 bytes .../weapons/swords/blade_of_dragonfire.png | Bin 0 -> 249 bytes .../weapons/swords/blade_of_the_volcano.png | Bin 0 -> 224 bytes .../item/weapons/swords/bouquet_of_lies.png | Bin 0 -> 237 bytes .../weapons/swords/burstfire_dagger_ashen.png | Bin 0 -> 234 bytes .../weapons/swords/burstfire_dagger_auric.png | Bin 0 -> 231 bytes .../swords/burstmaw_dagger_crystal.png | Bin 0 -> 218 bytes .../weapons/swords/burstmaw_dagger_spirit.png | Bin 0 -> 216 bytes .../item/weapons/swords/chicken_axe.png | Bin 0 -> 192 bytes .../textures/item/weapons/swords/cleaver.png | Bin 0 -> 182 bytes .../item/weapons/swords/conjuring_sword.png | Bin 0 -> 219 bytes .../textures/item/weapons/swords/cow_axe.png | Bin 0 -> 203 bytes .../weapons/swords/crypt_dreadlord_sword.png | Bin 0 -> 222 bytes .../weapons/swords/crypt_witherlord_sword.png | Bin 0 -> 222 bytes .../item/weapons/swords/daedalus_axe.png | Bin 0 -> 194 bytes .../item/weapons/swords/dungeon_hammer.png | Bin 0 -> 221 bytes .../item/weapons/swords/earth_shard.png | Bin 0 -> 225 bytes .../item/weapons/swords/edible_mace.png | Bin 0 -> 250 bytes .../item/weapons/swords/ember_rod.png | Bin 0 -> 207 bytes .../item/weapons/swords/emerald_blade.png | Bin 0 -> 194 bytes .../item/weapons/swords/end_stone_sword.png | Bin 0 -> 210 bytes .../item/weapons/swords/end_sword.png | Bin 0 -> 180 bytes .../textures/item/weapons/swords/enrager.png | Bin 0 -> 210 bytes .../item/weapons/swords/fancy_sword.png | Bin 0 -> 201 bytes .../item/weapons/swords/fel_sword.png | Bin 0 -> 198 bytes .../weapons/swords/firedust_dagger_ashen.png | Bin 0 -> 239 bytes .../weapons/swords/firedust_dagger_auric.png | Bin 0 -> 237 bytes .../item/weapons/swords/flaming_sword.png | Bin 0 -> 226 bytes .../weapons/swords/flaming_sword_flames.png | Bin 0 -> 159 bytes .../weapons/swords/florid_zombie_sword.png | Bin 0 -> 221 bytes .../swords/florid_zombie_sword_heal.png | Bin 0 -> 232 bytes .../item/weapons/swords/flower_of_truth.png | Bin 0 -> 200 bytes .../item/weapons/swords/giant_cleaver.png | Bin 0 -> 196 bytes .../weapons/swords/giant_cleaver_hand.png | Bin 0 -> 296 bytes .../item/weapons/swords/golem_sword.png | Bin 0 -> 242 bytes .../item/weapons/swords/great_spook_sword.png | Bin 0 -> 288 bytes .../swords/great_spook_sword.png.mcmeta | 1 + .../weapons/swords/great_spook_sword_1st.png | Bin 0 -> 290 bytes .../swords/great_spook_sword_1st.png.mcmeta | 1 + .../weapons/swords/heartfire_dagger_ashen.png | Bin 0 -> 234 bytes .../weapons/swords/heartfire_dagger_auric.png | Bin 0 -> 241 bytes .../swords/heartmaw_dagger_crystal.png | Bin 0 -> 240 bytes .../weapons/swords/heartmaw_dagger_spirit.png | Bin 0 -> 236 bytes .../item/weapons/swords/hunter_knife.png | Bin 0 -> 186 bytes .../item/weapons/swords/hyper_cleaver.png | Bin 0 -> 201 bytes .../textures/item/weapons/swords/hyperion.png | Bin 0 -> 212 bytes .../item/weapons/swords/leaping_sword.png | Bin 0 -> 200 bytes .../item/weapons/swords/leech_sword.png | Bin 0 -> 223 bytes .../item/weapons/swords/livid_dagger.png | Bin 0 -> 209 bytes .../weapons/swords/mawdust_dagger_crystal.png | Bin 0 -> 240 bytes .../weapons/swords/mawdust_dagger_spirit.png | Bin 0 -> 225 bytes .../item/weapons/swords/mercenary_axe.png | Bin 0 -> 151 bytes .../item/weapons/swords/midas_sword.png | Bin 0 -> 222 bytes .../item/weapons/swords/mushroom_cow_axe.png | Bin 0 -> 203 bytes .../item/weapons/swords/necromancer_sword.png | Bin 0 -> 217 bytes .../swords/necromancer_sword_flames.png | Bin 0 -> 119 bytes .../item/weapons/swords/necron_blade.png | Bin 0 -> 196 bytes .../item/weapons/swords/nova_sword.png | Bin 0 -> 228 bytes .../item/weapons/swords/nova_sword_flames.png | Bin 0 -> 115 bytes .../weapons/swords/ornate_zombie_sword.png | Bin 0 -> 222 bytes .../swords/ornate_zombie_sword_heal.png | Bin 0 -> 230 bytes .../textures/item/weapons/swords/pig_axe.png | Bin 0 -> 193 bytes .../item/weapons/swords/pigman_sword.png | Bin 0 -> 214 bytes .../item/weapons/swords/pooch_sword.png | Bin 0 -> 228 bytes .../item/weapons/swords/prismarine_blade.png | Bin 0 -> 205 bytes .../item/weapons/swords/rabbit_axe.png | Bin 0 -> 195 bytes .../item/weapons/swords/ragnarock_axe.png | Bin 0 -> 193 bytes .../item/weapons/swords/raider_axe.png | Bin 0 -> 204 bytes .../item/weapons/swords/reaper_sword.png | Bin 0 -> 240 bytes .../item/weapons/swords/recluse_fang.png | Bin 0 -> 209 bytes .../item/weapons/swords/revenant_sword.png | Bin 0 -> 227 bytes .../item/weapons/swords/rogue_sword.png | Bin 0 -> 188 bytes .../item/weapons/swords/scorpion_foil.png | Bin 0 -> 194 bytes .../textures/item/weapons/swords/scylla.png | Bin 0 -> 218 bytes .../weapons/swords/self_recursive_pickaxe.png | Bin 0 -> 209 bytes .../item/weapons/swords/shadow_fury.png | Bin 0 -> 193 bytes .../weapons/swords/shadow_fury_flames.png | Bin 0 -> 105 bytes .../item/weapons/swords/shaman_sword.png | Bin 0 -> 215 bytes .../item/weapons/swords/sheep_axe.png | Bin 0 -> 194 bytes .../item/weapons/swords/shiny_astraea.png | Bin 0 -> 223 bytes .../item/weapons/swords/shiny_hyperion.png | Bin 0 -> 210 bytes .../weapons/swords/shiny_necron_blade.png | Bin 0 -> 196 bytes .../item/weapons/swords/shiny_scylla.png | Bin 0 -> 218 bytes .../item/weapons/swords/shiny_valkyrie.png | Bin 0 -> 241 bytes .../item/weapons/swords/silent_death.png | Bin 0 -> 201 bytes .../item/weapons/swords/silk_edge_sword.png | Bin 0 -> 205 bytes .../item/weapons/swords/silver_fang.png | Bin 0 -> 174 bytes .../weapons/swords/silver_laced_karambit.png | Bin 0 -> 188 bytes .../weapons/swords/silvertwist_karambit.png | Bin 0 -> 203 bytes .../item/weapons/swords/spider_sword.png | Bin 0 -> 216 bytes .../item/weapons/swords/spirit_sword.png | Bin 0 -> 215 bytes .../item/weapons/swords/squire_sword.png | Bin 0 -> 196 bytes .../item/weapons/swords/star_sword.png | Bin 0 -> 195 bytes .../weapons/swords/starred_daedalus_axe.png | Bin 0 -> 200 bytes .../weapons/swords/starred_midas_sword.png | Bin 0 -> 228 bytes .../weapons/swords/starred_shadow_fury.png | Bin 0 -> 193 bytes .../weapons/swords/starred_stone_blade.png | Bin 0 -> 216 bytes .../weapons/swords/starred_yeti_sword.png | Bin 0 -> 223 bytes .../textures/item/weapons/swords/sting.png | Bin 0 -> 236 bytes .../item/weapons/swords/stone_blade.png | Bin 0 -> 207 bytes .../item/weapons/swords/super_cleaver.png | Bin 0 -> 198 bytes .../weapons/swords/sword_of_bad_health.png | Bin 0 -> 205 bytes .../weapons/swords/sword_of_revelations.png | Bin 0 -> 229 bytes .../swords/sword_of_the_multiverse.png | Bin 0 -> 195 bytes .../swords/tactician_murder_weapon.png | Bin 0 -> 243 bytes .../item/weapons/swords/tactician_sword.png | Bin 0 -> 237 bytes .../item/weapons/swords/tarantula_fang.png | Bin 0 -> 198 bytes .../item/weapons/swords/tormentor.png | Bin 0 -> 208 bytes .../item/weapons/swords/undead_sword.png | Bin 0 -> 221 bytes .../textures/item/weapons/swords/valkyrie.png | Bin 0 -> 233 bytes .../item/weapons/swords/void_sword.png | Bin 0 -> 182 bytes .../item/weapons/swords/wither_cloak.png | Bin 0 -> 232 bytes .../item/weapons/swords/wyld_sword.png | Bin 0 -> 233 bytes .../item/weapons/swords/yeti_sword.png | Bin 0 -> 222 bytes .../weapons/swords/zombie_knight_sword.png | Bin 0 -> 201 bytes .../weapons/swords/zombie_soldier_cutlass.png | Bin 0 -> 199 bytes .../item/weapons/swords/zombie_sword.png | Bin 0 -> 222 bytes .../item/weapons/swords/zombie_sword_heal.png | Bin 0 -> 230 bytes .../item/weapons/wands/bingo_blaster.png | Bin 0 -> 196 bytes .../item/weapons/wands/celeste_wand.png | Bin 0 -> 206 bytes .../wands/celeste_wand_lightning_strike.png | Bin 0 -> 231 bytes .../item/weapons/wands/electric_wand_item.png | Bin 0 -> 159 bytes .../item/weapons/wands/fire_veil_wand.png | Bin 0 -> 193 bytes .../item/weapons/wands/gyrokinetic_wand.png | Bin 0 -> 251 bytes .../item/weapons/wands/hollow_wand.png | Bin 0 -> 217 bytes .../item/weapons/wands/hollow_wand_left.png | Bin 0 -> 111 bytes .../item/weapons/wands/hollow_wand_right.png | Bin 0 -> 109 bytes .../item/weapons/wands/ice_spray_wand.png | Bin 0 -> 194 bytes .../textures/item/weapons/wands/ink_wand.png | Bin 0 -> 184 bytes .../item/weapons/wands/ink_wand_ink_bomb.png | Bin 0 -> 185 bytes .../item/weapons/wands/starlight_wand.png | Bin 0 -> 200 bytes .../weapons/wands/starlight_wand_starfall.png | Bin 0 -> 223 bytes .../weapons/wands/starred_ice_spray_wand.png | Bin 0 -> 215 bytes .../item/weapons/whips/flaming_flay.png | Bin 0 -> 216 bytes .../item/weapons/whips/flaming_flay_cast.png | Bin 0 -> 173 bytes .../textures/item/weapons/whips/soul_whip.png | Bin 0 -> 202 bytes .../item/weapons/whips/soul_whip_cast.png | Bin 0 -> 173 bytes .../weapons/whips/zombie_commander_whip.png | Bin 0 -> 213 bytes .../whips/zombie_commander_whip_cast.png | Bin 0 -> 164 bytes .../models/item/aatrox_badphone.json | 1 + .../models/item/aatrox_badphone_on.json | 1 + .../models/item/aatrox_batphone.json | 1 + .../models/item/aatrox_batphone_on.json | 1 + .../models/item/aatrox_phone_number.json | 1 + .../firmskyblock/models/item/abingophone.json | 1 + .../models/item/abingophone_on.json | 1 + .../models/item/abiphone_basic.json | 1 + .../models/item/abiphone_basic_on.json | 1 + .../models/item/abiphone_flip_dragon.json | 1 + .../models/item/abiphone_flip_dragon_on.json | 1 + .../models/item/abiphone_flip_nucleus.json | 1 + .../models/item/abiphone_flip_nucleus_on.json | 1 + .../item/abiphone_flip_plus_clockwork.json | 1 + .../item/abiphone_flip_plus_clockwork_on.json | 1 + .../item/abiphone_flip_plus_flower.json | 1 + .../item/abiphone_flip_plus_flower_on.json | 1 + .../models/item/abiphone_flip_plus_lunar.json | 1 + .../item/abiphone_flip_plus_lunar_on.json | 1 + .../models/item/abiphone_flip_volcano.json | 1 + .../models/item/abiphone_flip_volcano_on.json | 1 + .../models/item/abiphone_x_plus.json | 1 + .../models/item/abiphone_x_plus_on.json | 1 + .../item/abiphone_x_plus_special_edition.json | 1 + .../abiphone_x_plus_special_edition_on.json | 1 + .../models/item/abiphone_xi_ultra.json | 1 + .../models/item/abiphone_xi_ultra_on.json | 1 + .../models/item/abiphone_xi_ultra_style.json | 1 + .../item/abiphone_xi_ultra_style_on.json | 1 + .../models/item/abiphone_xii_mega.json | 1 + .../models/item/abiphone_xii_mega_color.json | 1 + .../item/abiphone_xii_mega_color_on.json | 1 + .../models/item/abiphone_xii_mega_on.json | 1 + .../models/item/abiphone_xiii_pro.json | 1 + .../models/item/abiphone_xiii_pro_giga.json | 1 + .../item/abiphone_xiii_pro_giga_on.json | 1 + .../models/item/abiphone_xiii_pro_on.json | 1 + .../models/item/abiphone_xiv_enormous.json | 1 + .../item/abiphone_xiv_enormous_black.json | 1 + .../item/abiphone_xiv_enormous_black_on.json | 1 + .../models/item/abiphone_xiv_enormous_on.json | 1 + .../item/abiphone_xiv_enormous_purple.json | 1 + .../item/abiphone_xiv_enormous_purple_on.json | 1 + .../models/item/absolute_ender_pearl.json | 1 + .../models/item/absorption_potion.json | 1 + .../models/item/absorption_splash_potion.json | 1 + .../models/item/abysmal_lasso.json | 1 + .../models/item/abyssal_boots.json | 1 + .../models/item/abyssal_boots_dyed.json | 1 + .../models/item/abyssal_chestplate.json | 1 + .../models/item/abyssal_chestplate_dyed.json | 1 + .../models/item/abyssal_leggings.json | 1 + .../models/item/abyssal_leggings_dyed.json | 1 + .../models/item/acacia_birdhouse.json | 1 + .../models/item/adaptive_belt.json | 1 + .../models/item/adaptive_boots.json | 1 + .../models/item/adaptive_boots_archer.json | 1 + .../models/item/adaptive_boots_berserker.json | 1 + .../models/item/adaptive_boots_dyed.json | 1 + .../models/item/adaptive_boots_healer.json | 1 + .../models/item/adaptive_boots_mage.json | 1 + .../models/item/adaptive_boots_tank.json | 1 + .../models/item/adaptive_chestplate.json | 1 + .../item/adaptive_chestplate_archer.json | 1 + .../item/adaptive_chestplate_berserker.json | 1 + .../models/item/adaptive_chestplate_dyed.json | 1 + .../item/adaptive_chestplate_healer.json | 1 + .../models/item/adaptive_chestplate_mage.json | 1 + .../models/item/adaptive_chestplate_tank.json | 1 + .../models/item/adaptive_leggings.json | 1 + .../models/item/adaptive_leggings_archer.json | 1 + .../item/adaptive_leggings_berserker.json | 1 + .../models/item/adaptive_leggings_dyed.json | 1 + .../models/item/adaptive_leggings_healer.json | 1 + .../models/item/adaptive_leggings_mage.json | 1 + .../models/item/adaptive_leggings_tank.json | 1 + .../models/item/adrenaline_potion.json | 1 + .../models/item/adrenaline_splash_potion.json | 1 + .../models/item/advanced_gardening_axe.json | 1 + .../models/item/advanced_gardening_hoe.json | 1 + .../models/item/agaricus_cap.json | 1 + .../models/item/agaricus_cap_bunch.json | 1 + .../models/item/agaricus_chum_cap.json | 1 + .../models/item/agaricus_soup.json | 1 + .../models/item/agarimoo_artifact.json | 1 + .../models/item/agarimoo_ring.json | 1 + .../models/item/agarimoo_talisman.json | 1 + .../models/item/agarimoo_tongue.json | 1 + .../models/item/agatha_coupon.json | 1 + .../models/item/agility_potion.json | 1 + .../models/item/agility_splash_potion.json | 1 + .../models/item/alchemist_recipe.json | 1 + .../models/item/alchemists_staff.json | 1 + .../models/item/alchemists_staff_hand.json | 1 + .../models/item/alchemy_xp_boost_potion.json | 1 + .../item/alchemy_xp_boost_splash_potion.json | 1 + .../firmskyblock/models/item/alert_flare.json | 1 + .../models/item/all_skills_super_boost.json | 1 + .../models/item/alligator_skin.json | 1 + .../firmskyblock/models/item/alpha_pick.json | 1 + .../item/amalgamated_crimsonite_new.json | 1 + .../models/item/amber_crystal.json | 1 + .../models/item/amber_material.json | 1 + .../models/item/amber_necklace.json | 1 + .../item/amber_polished_drill_engine.json | 1 + .../models/item/amber_power_scroll.json | 1 + .../models/item/amethyst_crystal.json | 1 + .../models/item/amethyst_gauntlet.json | 1 + .../models/item/amethyst_power_scroll.json | 1 + .../models/item/ananke_feather.json | 1 + .../models/item/ancestral_spade.json | 1 + .../models/item/ancient_claw.json | 1 + .../models/item/ancient_cloak.json | 1 + .../firmskyblock/models/item/angler_belt.json | 1 + .../models/item/angler_boots.json | 1 + .../models/item/angler_boots_dyed.json | 1 + .../models/item/angler_bracelet.json | 1 + .../models/item/angler_chestplate.json | 1 + .../models/item/angler_chestplate_dyed.json | 1 + .../models/item/angler_cloak.json | 1 + .../models/item/angler_helmet.json | 1 + .../models/item/angler_helmet_dyed.json | 1 + .../models/item/angler_leggings.json | 1 + .../models/item/angler_leggings_dyed.json | 1 + .../models/item/angler_necklace.json | 1 + .../models/item/anita_artifact.json | 1 + .../firmskyblock/models/item/anita_ring.json | 1 + .../models/item/anita_talisman.json | 1 + .../models/item/annihilation_cloak.json | 1 + .../models/item/anti_bite_scarf.json | 1 + .../models/item/anti_bite_scarf_2_aqua.json | 1 + .../item/anti_bite_scarf_2_aqua_armor.json | 1 + .../models/item/anti_bite_scarf_2_black.json | 1 + .../item/anti_bite_scarf_2_black_armor.json | 1 + .../models/item/anti_bite_scarf_2_blue.json | 1 + .../item/anti_bite_scarf_2_blue_armor.json | 1 + .../models/item/anti_bite_scarf_2_brown.json | 1 + .../item/anti_bite_scarf_2_brown_armor.json | 1 + .../models/item/anti_bite_scarf_2_cyan.json | 1 + .../item/anti_bite_scarf_2_cyan_armor.json | 1 + .../models/item/anti_bite_scarf_2_gray.json | 1 + .../item/anti_bite_scarf_2_gray_armor.json | 1 + .../models/item/anti_bite_scarf_2_green.json | 1 + .../item/anti_bite_scarf_2_green_armor.json | 1 + .../models/item/anti_bite_scarf_2_lime.json | 1 + .../item/anti_bite_scarf_2_lime_armor.json | 1 + .../item/anti_bite_scarf_2_magenta.json | 1 + .../item/anti_bite_scarf_2_magenta_armor.json | 1 + .../models/item/anti_bite_scarf_2_orange.json | 1 + .../item/anti_bite_scarf_2_orange_armor.json | 1 + .../models/item/anti_bite_scarf_2_pink.json | 1 + .../item/anti_bite_scarf_2_pink_armor.json | 1 + .../models/item/anti_bite_scarf_2_purple.json | 1 + .../item/anti_bite_scarf_2_purple_armor.json | 1 + .../models/item/anti_bite_scarf_2_silver.json | 1 + .../item/anti_bite_scarf_2_silver_armor.json | 1 + .../models/item/anti_bite_scarf_2_white.json | 1 + .../item/anti_bite_scarf_2_white_armor.json | 1 + .../models/item/anti_bite_scarf_2_yellow.json | 1 + .../item/anti_bite_scarf_2_yellow_armor.json | 1 + .../models/item/anti_bite_scarf_armor.json | 1 + .../models/item/anti_morph_potion.json | 1 + .../models/item/anti_sentient_pickaxe.json | 1 + .../models/item/antique_remedies.json | 1 + .../models/item/anvil_hammer.json | 1 + .../firmskyblock/models/item/aote_stone.json | 1 + .../models/item/apex_praedator.json | 1 + .../models/item/aquamarine_crystal.json | 1 + .../models/item/arachne_belt.json | 1 + .../models/item/arachne_boots.json | 1 + .../models/item/arachne_boots_dyed.json | 1 + .../models/item/arachne_chestplate.json | 1 + .../models/item/arachne_chestplate_dyed.json | 1 + .../models/item/arachne_cloak.json | 1 + .../models/item/arachne_crystal.json | 1 + .../models/item/arachne_fang.json | 1 + .../models/item/arachne_gloves.json | 1 + .../models/item/arachne_leggings.json | 1 + .../models/item/arachne_leggings_dyed.json | 1 + .../models/item/arachne_necklace.json | 1 + .../item/arachne_sanctuary_travel_scroll.json | 1 + .../firmskyblock/models/item/arack.json | 1 + .../models/item/archaeologist_compass.json | 1 + .../models/item/archery_cube.json | 1 + .../models/item/archery_potion.json | 1 + .../models/item/archery_splash_potion.json | 1 + .../models/item/archfiend_dice.json | 1 + .../models/item/architect_first_draft.json | 1 + .../models/item/armadillo_mask.json | 1 + .../models/item/armor_of_magma_boots.json | 1 + .../item/armor_of_magma_boots_dyed.json | 1 + .../item/armor_of_magma_chestplate.json | 1 + .../item/armor_of_magma_chestplate_dyed.json | 1 + .../models/item/armor_of_magma_helmet.json | 1 + .../item/armor_of_magma_helmet_dyed.json | 1 + .../models/item/armor_of_magma_leggings.json | 1 + .../item/armor_of_magma_leggings_dyed.json | 1 + .../item/armor_of_the_resistance_boots.json | 1 + .../armor_of_the_resistance_boots_dyed.json | 1 + .../armor_of_the_resistance_chestplate.json | 1 + ...mor_of_the_resistance_chestplate_dyed.json | 1 + .../armor_of_the_resistance_leggings.json | 1 + ...armor_of_the_resistance_leggings_dyed.json | 1 + .../models/item/armor_of_yog_boots.json | 1 + .../models/item/armor_of_yog_boots_dyed.json | 1 + .../models/item/armor_of_yog_chestplate.json | 1 + .../item/armor_of_yog_chestplate_dyed.json | 1 + .../models/item/armor_of_yog_helmet.json | 1 + .../models/item/armor_of_yog_helmet_dyed.json | 1 + .../models/item/armor_of_yog_leggings.json | 1 + .../item/armor_of_yog_leggings_dyed.json | 1 + .../models/item/armorshred_arrow.json | 1 + .../models/item/arrow_bundle_magma.json | 1 + .../models/item/arrow_swapper.json | 1 + .../models/item/arrow_swapper_armorshred.json | 1 + .../models/item/arrow_swapper_bouncy.json | 1 + .../item/arrow_swapper_emerald_tipped.json | 1 + .../models/item/arrow_swapper_explosive.json | 1 + .../models/item/arrow_swapper_flint.json | 1 + .../models/item/arrow_swapper_glue.json | 1 + .../item/arrow_swapper_gold_tipped.json | 1 + .../models/item/arrow_swapper_icy.json | 1 + .../models/item/arrow_swapper_magma.json | 1 + .../models/item/arrow_swapper_nansorb.json | 1 + .../models/item/arrow_swapper_none.json | 1 + .../item/arrow_swapper_redstone_tipped.json | 1 + .../item/arrow_swapper_reinforced_iron.json | 1 + .../models/item/artifact_of_coins.json | 1 + .../models/item/artifact_of_control.json | 1 + .../models/item/artifact_of_space.json | 1 + .../models/item/artifact_potion_affinity.json | 1 + .../models/item/artisanal_shortbow.json | 1 + .../item/artisanal_shortbow_pulling_0.json | 1 + .../item/artisanal_shortbow_pulling_1.json | 1 + .../item/artisanal_shortbow_pulling_2.json | 1 + .../models/item/ascension_rope.json | 1 + .../models/item/aspect_of_the_draconic.json | 1 + .../models/item/aspect_of_the_dragon.json | 1 + .../models/item/aspect_of_the_end.json | 1 + .../item/aspect_of_the_end_etherwarp.json | 1 + .../aspect_of_the_end_etherwarp_open.json | 1 + .../aspect_of_the_end_etherwarp_teleport.json | 1 + ...ect_of_the_end_etherwarp_transmission.json | 1 + .../item/aspect_of_the_end_transmission.json | 1 + .../models/item/aspect_of_the_jerry.json | 1 + .../item/aspect_of_the_jerry_signature.json | 1 + .../aspect_of_the_jerry_signature_parley.json | 1 + .../models/item/aspect_of_the_leech_1.json | 1 + .../aspect_of_the_leech_1_transmission.json | 1 + .../models/item/aspect_of_the_leech_2.json | 1 + .../aspect_of_the_leech_2_transmission.json | 1 + .../models/item/aspect_of_the_leech_3.json | 1 + .../aspect_of_the_leech_3_transmission.json | 1 + .../models/item/aspect_of_the_void.json | 1 + .../item/aspect_of_the_void_etherwarp.json | 1 + .../aspect_of_the_void_etherwarp_open.json | 1 + ...aspect_of_the_void_etherwarp_teleport.json | 1 + ...ct_of_the_void_etherwarp_transmission.json | 1 + .../item/aspect_of_the_void_transmission.json | 1 + .../models/item/aspiring_leap.json | 1 + .../firmskyblock/models/item/astraea.json | 1 + .../models/item/atmospheric_filter.json | 1 + .../item/atmospheric_filter_spring.json | 1 + .../item/atmospheric_filter_summer.json | 1 + .../item/atmospheric_filter_winter.json | 1 + .../firmskyblock/models/item/atominizer.json | 1 + .../models/item/atomsplit_katana.json | 1 + .../models/item/atomsplit_katana_hand.json | 1 + .../models/item/atomsplit_katana_soulcry.json | 1 + .../item/atomsplit_katana_soulcry_hand.json | 1 + .../models/item/attribute_shard.json | 1 + .../models/item/attribute_shard_red.json | 1 + .../firmskyblock/models/item/auger_rod.json | 1 + .../models/item/auger_rod_cast.json | 1 + .../models/item/aurora_boots.json | 1 + .../models/item/aurora_boots_dyed.json | 1 + .../models/item/aurora_chestplate.json | 1 + .../models/item/aurora_chestplate_dyed.json | 1 + .../models/item/aurora_leggings.json | 1 + .../models/item/aurora_leggings_dyed.json | 1 + .../models/item/auto_recombobulator.json | 1 + .../models/item/avaricious_chalice.json | 1 + .../models/item/awakened_eye_backpack.json | 1 + .../item/awakened_eye_backpack_applied.json | 1 + .../models/item/awakened_summoning_eye.json | 1 + .../models/item/axe_fading_green_rune.json | 1 + .../models/item/axe_fading_green_rune_2.json | 1 + .../models/item/axe_fading_green_rune_3.json | 1 + .../models/item/axe_fading_white_rune.json | 1 + .../models/item/axe_fading_white_rune_2.json | 1 + .../models/item/axe_fading_white_rune_3.json | 1 + .../models/item/axe_of_the_shredded.json | 1 + .../models/item/axe_of_the_shredded_hand.json | 1 + .../models/item/babyseal_backpack.json | 1 + .../item/babyseal_backpack_applied.json | 1 + .../models/item/backpack_cat_o_lantern.json | 1 + .../item/backpack_cat_o_lantern_applied.json | 1 + .../models/item/backpack_cooler.json | 1 + .../models/item/backpack_cooler_applied.json | 1 + .../models/item/backwater_belt.json | 1 + .../models/item/backwater_boots.json | 1 + .../models/item/backwater_boots_dyed.json | 1 + .../models/item/backwater_chestplate.json | 1 + .../item/backwater_chestplate_dyed.json | 1 + .../models/item/backwater_cloak.json | 1 + .../models/item/backwater_gloves.json | 1 + .../models/item/backwater_leggings.json | 1 + .../models/item/backwater_leggings_dyed.json | 1 + .../models/item/backwater_necklace.json | 1 + .../models/item/bacte_fragment.json | 1 + .../firmskyblock/models/item/bag_of_cash.json | 1 + .../models/item/bag_of_coal_backpack.json | 1 + .../item/bag_of_coal_backpack_applied.json | 1 + .../firmskyblock/models/item/bag_of_gold.json | 1 + .../firmskyblock/models/item/bait_ring.json | 1 + .../models/item/balloon_snake.json | 1 + .../models/item/bandaged_mithril_pickaxe.json | 1 + .../models/item/bark_tunes_rune.json | 1 + .../models/item/bark_tunes_rune_2.json | 1 + .../models/item/bark_tunes_rune_3.json | 1 + .../firmskyblock/models/item/barry_pen.json | 1 + .../models/item/base_camp_travel_scroll.json | 1 + .../item/base_griffin_upgrade_stone.json | 1 + .../models/item/basic_fishing_net.json | 1 + .../models/item/basic_gardening_axe.json | 1 + .../models/item/basic_gardening_hoe.json | 1 + .../models/item/bat_firework.json | 1 + .../models/item/bat_person_boots.json | 1 + .../models/item/bat_person_boots_dyed.json | 1 + .../models/item/bat_person_chestplate.json | 1 + .../item/bat_person_chestplate_dyed.json | 1 + .../models/item/bat_person_leggings.json | 1 + .../models/item/bat_person_leggings_dyed.json | 1 + .../models/item/bat_person_ring.json | 1 + .../models/item/bat_person_talisman.json | 1 + .../firmskyblock/models/item/bat_ring.json | 1 + .../models/item/bat_talisman.json | 1 + .../models/item/bat_the_fish.json | 1 + .../firmskyblock/models/item/bat_wand.json | 1 + .../models/item/bat_wand_hand.json | 1 + .../firmskyblock/models/item/battle_disc.json | 1 + .../models/item/bayou_travel_scroll.json | 1 + .../models/item/bayou_water_orb.json | 1 + .../firmskyblock/models/item/beady_eyes.json | 1 + .../models/item/beastmaster_crest_common.json | 1 + .../models/item/beastmaster_crest_epic.json | 1 + .../item/beastmaster_crest_legendary.json | 1 + .../models/item/beastmaster_crest_rare.json | 1 + .../item/beastmaster_crest_uncommon.json | 1 + .../models/item/beating_heart.json | 1 + .../models/item/bedwars_wool.json | 1 + .../firmskyblock/models/item/bee_mask.json | 1 + .../models/item/bejeweled_collar.json | 1 + .../models/item/bejeweled_handle.json | 1 + .../models/item/berberis_blowgun.json | 1 + .../models/item/berberis_fuel_injector.json | 1 + .../models/item/berry_the_fish.json | 1 + .../models/item/berserker_boots.json | 1 + .../models/item/berserker_boots_dyed.json | 1 + .../models/item/berserker_chestplate.json | 1 + .../item/berserker_chestplate_dyed.json | 1 + .../models/item/berserker_leggings.json | 1 + .../models/item/berserker_leggings_dyed.json | 1 + .../firmskyblock/models/item/bezos.json | 1 + .../models/item/big_brain_talisman.json | 1 + .../models/item/big_spring_boots.json | 1 + .../models/item/big_spring_boots_dyed.json | 1 + .../models/item/bigger_spring_boots.json | 1 + .../models/item/bigger_spring_boots_dyed.json | 1 + .../models/item/bigger_teeth.json | 1 + .../firmskyblock/models/item/bingaxe.json | 1 + .../firmskyblock/models/item/bingbow.json | 1 + .../models/item/bingbow_pulling_0.json | 1 + .../models/item/bingbow_pulling_1.json | 1 + .../models/item/bingbow_pulling_2.json | 1 + .../firmskyblock/models/item/binghoe.json | 1 + .../models/item/bingo_artifact.json | 1 + .../models/item/bingo_blaster.json | 1 + .../models/item/bingo_booster.json | 1 + .../firmskyblock/models/item/bingo_card.json | 1 + .../models/item/bingo_combat_talisman.json | 1 + .../models/item/bingo_display.json | 1 + .../models/item/bingo_heirloom.json | 1 + .../models/item/bingo_lava_rod.json | 1 + .../models/item/bingo_lava_rod_cast.json | 1 + .../firmskyblock/models/item/bingo_relic.json | 1 + .../firmskyblock/models/item/bingo_ring.json | 1 + .../firmskyblock/models/item/bingo_rod.json | 1 + .../models/item/bingo_rod_cast.json | 1 + .../models/item/bingo_talisman.json | 1 + .../firmskyblock/models/item/bingolibur.json | 1 + .../models/item/bingonimbus_2000.json | 1 + .../firmskyblock/models/item/biofuel.json | 1 + .../models/item/biohazard_boots.json | 1 + .../models/item/biohazard_boots_dyed.json | 1 + .../models/item/biohazard_leggings.json | 1 + .../models/item/biohazard_leggings_dyed.json | 1 + .../models/item/biohazard_suit.json | 1 + .../models/item/biohazard_suit_dyed.json | 1 + .../models/item/birch_forest_biome_stick.json | 1 + .../firmskyblock/models/item/bite_rune.json | 1 + .../firmskyblock/models/item/bite_rune_2.json | 1 + .../firmskyblock/models/item/bite_rune_3.json | 1 + .../models/item/bits_talisman.json | 1 + .../models/item/bitter_ice_tea.json | 1 + .../models/item/black_coffee.json | 1 + .../models/item/black_greater_backpack.json | 1 + .../models/item/black_jumbo_backpack.json | 1 + .../models/item/black_large_backpack.json | 1 + .../models/item/black_medium_backpack.json | 1 + .../models/item/black_small_backpack.json | 1 + .../models/item/black_woolen_yarn.json | 1 + .../models/item/blade_of_dragonfire.json | 1 + .../models/item/blade_of_the_volcano.json | 1 + .../firmskyblock/models/item/blaze_ashes.json | 1 + .../firmskyblock/models/item/blaze_belt.json | 1 + .../firmskyblock/models/item/blaze_boots.json | 1 + .../models/item/blaze_boots_dyed.json | 1 + .../models/item/blaze_chestplate.json | 1 + .../models/item/blaze_chestplate_dyed.json | 1 + .../models/item/blaze_farm_travel_scroll.json | 1 + .../models/item/blaze_leggings.json | 1 + .../models/item/blaze_leggings_dyed.json | 1 + .../models/item/blaze_rod_distillate.json | 1 + .../models/item/blaze_talisman.json | 1 + .../firmskyblock/models/item/blaze_wax.json | 1 + .../models/item/blazen_sphere.json | 1 + .../models/item/blazetekk_ham.json | 1 + .../models/item/blazetekk_ham_radio.json | 1 + .../models/item/blazetekk_ham_radio_am.json | 1 + .../models/item/blazetekk_ham_radio_bt.json | 1 + .../models/item/blazetekk_ham_radio_fm.json | 1 + .../models/item/blazetekk_ham_radio_gps.json | 1 + .../models/item/blazetekk_ham_radio_inf.json | 1 + .../models/item/blazetekk_ham_radio_seti.json | 1 + .../models/item/blazetekk_ham_radio_xm.json | 1 + .../models/item/blazing_sun_rune.json | 1 + .../models/item/blazing_sun_rune_2.json | 1 + .../models/item/blazing_sun_rune_3.json | 1 + .../models/item/blessed_bait.json | 1 + .../models/item/blessed_fruit.json | 1 + .../models/item/blindness_potion.json | 1 + .../models/item/blindness_splash_potion.json | 1 + .../models/item/blobfish_bronze.json | 1 + .../models/item/blobfish_diamond.json | 1 + .../models/item/blobfish_gold.json | 1 + .../models/item/blobfish_silver.json | 1 + .../models/item/block_zapper.json | 1 + .../models/item/blood_donor_artifact.json | 1 + .../models/item/blood_donor_ring.json | 1 + .../models/item/blood_donor_talisman.json | 1 + .../models/item/blood_god_crest.json | 1 + .../firmskyblock/models/item/blood_rune.json | 1 + .../models/item/blood_rune_2.json | 1 + .../models/item/blood_rune_3.json | 1 + .../models/item/blood_soaked_coins.json | 1 + .../models/item/blood_stained_coins.json | 1 + .../firmskyblock/models/item/bloodbadge.json | 1 + .../models/item/bloodbadge_locked.json | 1 + .../models/item/blooming_rune.json | 1 + .../models/item/blooming_rune_2.json | 1 + .../models/item/blooming_rune_3.json | 1 + .../firmskyblock/models/item/blue_candy.json | 1 + .../firmskyblock/models/item/blue_egg.json | 1 + .../models/item/blue_egg_applied.json | 1 + .../models/item/blue_gift_talisman.json | 1 + .../models/item/blue_greater_backpack.json | 1 + .../models/item/blue_ice_hunk.json | 1 + .../models/item/blue_jumbo_backpack.json | 1 + .../models/item/blue_large_backpack.json | 1 + .../models/item/blue_medium_backpack.json | 1 + .../firmskyblock/models/item/blue_ring.json | 1 + .../models/item/blue_shark_tooth.json | 1 + .../models/item/blue_small_backpack.json | 1 + .../models/item/bluertooth_ring.json | 1 + .../models/item/bluetooth_ring.json | 1 + .../firmskyblock/models/item/bob_omb.json | 1 + .../models/item/bobbin_scriptures.json | 1 + .../models/item/bone_boomerang.json | 1 + .../models/item/bone_boomerang_thrown.json | 1 + .../models/item/bone_necklace.json | 1 + .../firmskyblock/models/item/bone_reaver.json | 1 + .../models/item/bone_reaver_hand.json | 1 + .../models/item/bonzo_fragment.json | 1 + .../firmskyblock/models/item/bonzo_mask.json | 1 + .../firmskyblock/models/item/bonzo_staff.json | 1 + .../models/item/bonzo_staff_hand.json | 1 + .../firmskyblock/models/item/boo_stone.json | 1 + .../models/item/book_of_progression.json | 1 + .../models/item/book_of_progression_epic.json | 1 + .../item/book_of_progression_legendary.json | 1 + .../item/book_of_progression_mythic.json | 1 + .../models/item/book_of_progression_rare.json | 1 + .../item/book_of_progression_uncommon.json | 1 + .../models/item/book_of_stats.json | 1 + .../models/item/bookworm_book.json | 1 + .../models/item/booster_cookie.json | 1 + .../models/item/booster_cookie_box.json | 1 + .../models/item/boots_of_the_pack.json | 1 + .../models/item/boots_of_the_pack_dyed.json | 1 + .../models/item/bottle_of_jyrre.json | 1 + .../models/item/bottled_odonata.json | 1 + .../models/item/bottled_odonata_blink.json | 1 + .../models/item/bouncy_arrow.json | 1 + .../models/item/bouncy_beach_ball.json | 1 + .../models/item/bouncy_boots.json | 1 + .../models/item/bouncy_boots_dyed.json | 1 + .../models/item/bouncy_chestplate.json | 1 + .../models/item/bouncy_chestplate_dyed.json | 1 + .../models/item/bouncy_helmet.json | 1 + .../models/item/bouncy_helmet_dyed.json | 1 + .../models/item/bouncy_leggings.json | 1 + .../models/item/bouncy_leggings_dyed.json | 1 + .../models/item/bouquet_of_lies.json | 1 + .../models/item/box_of_seeds.json | 1 + .../models/item/braided_griffin_feather.json | 1 + .../firmskyblock/models/item/bridge_egg.json | 1 + .../models/item/brimstone_handle.json | 1 + .../models/item/broken_piggy_bank.json | 1 + .../models/item/broken_radar.json | 1 + .../firmskyblock/models/item/bronze_bowl.json | 1 + .../models/item/bronze_hunter_boots.json | 1 + .../models/item/bronze_hunter_boots_dyed.json | 1 + .../models/item/bronze_hunter_chestplate.json | 1 + .../item/bronze_hunter_chestplate_dyed.json | 1 + .../models/item/bronze_hunter_helmet.json | 1 + .../item/bronze_hunter_helmet_dyed.json | 1 + .../models/item/bronze_hunter_leggings.json | 1 + .../item/bronze_hunter_leggings_dyed.json | 1 + .../models/item/bronze_ship_engine.json | 1 + .../models/item/bronze_ship_helm.json | 1 + .../models/item/bronze_ship_hull.json | 1 + .../item/bronze_trophy_fishing_sack.json | 1 + .../models/item/brown_bandana.json | 1 + .../models/item/brown_greater_backpack.json | 1 + .../models/item/brown_jumbo_backpack.json | 1 + .../models/item/brown_large_backpack.json | 1 + .../models/item/brown_medium_backpack.json | 1 + .../models/item/brown_small_backpack.json | 1 + .../models/item/bubba_blister.json | 1 + .../models/item/bubbles_of_air.json | 1 + .../models/item/bucket_of_dye_aquamarine.json | 1 + .../models/item/bucket_of_dye_archfiend.json | 1 + .../models/item/bucket_of_dye_bingo_blue.json | 1 + .../models/item/bucket_of_dye_bone.json | 1 + .../models/item/bucket_of_dye_brick_red.json | 1 + .../models/item/bucket_of_dye_byzantium.json | 1 + .../models/item/bucket_of_dye_carmine.json | 1 + .../models/item/bucket_of_dye_celadon.json | 1 + .../models/item/bucket_of_dye_celeste.json | 1 + .../models/item/bucket_of_dye_chocolate.json | 1 + .../models/item/bucket_of_dye_copper.json | 1 + .../models/item/bucket_of_dye_cyclamen.json | 1 + .../item/bucket_of_dye_dark_purple.json | 1 + .../models/item/bucket_of_dye_dung.json | 1 + .../models/item/bucket_of_dye_emerald.json | 1 + .../models/item/bucket_of_dye_flame.json | 1 + .../models/item/bucket_of_dye_fossil.json | 1 + .../item/bucket_of_dye_frostbitten.json | 1 + .../models/item/bucket_of_dye_holly.json | 1 + .../models/item/bucket_of_dye_iceberg.json | 1 + .../models/item/bucket_of_dye_jade.json | 1 + .../models/item/bucket_of_dye_lava.json | 1 + .../models/item/bucket_of_dye_livid.json | 1 + .../models/item/bucket_of_dye_lucky.json | 1 + .../models/item/bucket_of_dye_mango.json | 1 + .../models/item/bucket_of_dye_matcha.json | 1 + .../models/item/bucket_of_dye_midnight.json | 1 + .../models/item/bucket_of_dye_mocha.json | 1 + .../models/item/bucket_of_dye_nadeshiko.json | 1 + .../models/item/bucket_of_dye_necron.json | 1 + .../models/item/bucket_of_dye_nyanza.json | 1 + .../models/item/bucket_of_dye_pastel_sky.json | 1 + .../item/bucket_of_dye_pearlescent.json | 1 + .../models/item/bucket_of_dye_pelt.json | 1 + .../models/item/bucket_of_dye_periwinkle.json | 1 + .../models/item/bucket_of_dye_portal.json | 1 + .../models/item/bucket_of_dye_pure_black.json | 1 + .../models/item/bucket_of_dye_pure_blue.json | 1 + .../models/item/bucket_of_dye_pure_white.json | 1 + .../item/bucket_of_dye_pure_yellow.json | 1 + .../models/item/bucket_of_dye_rose.json | 1 + .../models/item/bucket_of_dye_sangria.json | 1 + .../models/item/bucket_of_dye_secret.json | 1 + .../models/item/bucket_of_dye_tentacle.json | 1 + .../models/item/bucket_of_dye_treasure.json | 1 + .../models/item/bucket_of_dye_warden.json | 1 + .../item/bucket_of_dye_wild_strawberry.json | 1 + .../models/item/budget_hopper.json | 1 + .../models/item/budget_hopper_coins.json | 1 + .../models/item/builders_ruler.json | 1 + .../models/item/builders_wand.json | 1 + .../firmskyblock/models/item/bulky_stone.json | 1 + .../models/item/burned_pants.json | 1 + .../models/item/burning_aurora_boots.json | 1 + .../item/burning_aurora_boots_dyed.json | 1 + .../item/burning_aurora_chestplate.json | 1 + .../item/burning_aurora_chestplate_dyed.json | 1 + .../models/item/burning_aurora_leggings.json | 1 + .../item/burning_aurora_leggings_dyed.json | 1 + .../models/item/burning_coins.json | 1 + .../models/item/burning_crimson_boots.json | 1 + .../item/burning_crimson_boots_dyed.json | 1 + .../item/burning_crimson_chestplate.json | 1 + .../item/burning_crimson_chestplate_dyed.json | 1 + .../models/item/burning_crimson_leggings.json | 1 + .../item/burning_crimson_leggings_dyed.json | 1 + .../firmskyblock/models/item/burning_eye.json | 1 + .../models/item/burning_fervor_boots.json | 1 + .../item/burning_fervor_boots_dyed.json | 1 + .../item/burning_fervor_chestplate.json | 1 + .../item/burning_fervor_chestplate_dyed.json | 1 + .../models/item/burning_fervor_leggings.json | 1 + .../item/burning_fervor_leggings_dyed.json | 1 + .../models/item/burning_hollow_boots.json | 1 + .../item/burning_hollow_boots_dyed.json | 1 + .../item/burning_hollow_chestplate.json | 1 + .../item/burning_hollow_chestplate_dyed.json | 1 + .../models/item/burning_hollow_leggings.json | 1 + .../item/burning_hollow_leggings_dyed.json | 1 + .../models/item/burning_kuudra_core.json | 1 + .../models/item/burning_potion.json | 1 + .../models/item/burning_splash_potion.json | 1 + .../models/item/burning_terror_boots.json | 1 + .../item/burning_terror_boots_dyed.json | 1 + .../item/burning_terror_chestplate.json | 1 + .../item/burning_terror_chestplate_dyed.json | 1 + .../models/item/burning_terror_leggings.json | 1 + .../item/burning_terror_leggings_dyed.json | 1 + .../firmskyblock/models/item/burnt_texts.json | 1 + .../models/item/burrowing_spores.json | 1 + .../models/item/burstfire_dagger_ashen.json | 1 + .../models/item/burstfire_dagger_auric.json | 1 + .../models/item/burstmaw_dagger_crystal.json | 1 + .../models/item/burstmaw_dagger_spirit.json | 1 + .../models/item/burststopper_artifact.json | 1 + .../models/item/burststopper_talisman.json | 1 + .../models/item/busted_belt_buckle.json | 1 + .../models/item/cactus_boots.json | 1 + .../models/item/cactus_boots_dyed.json | 1 + .../models/item/cactus_chestplate.json | 1 + .../models/item/cactus_chestplate_dyed.json | 1 + .../models/item/cactus_helmet.json | 1 + .../models/item/cactus_helmet_dyed.json | 1 + .../models/item/cactus_knife.json | 1 + .../models/item/cactus_knife_2.json | 1 + .../models/item/cactus_knife_3.json | 1 + .../models/item/cactus_leggings.json | 1 + .../models/item/cactus_leggings_dyed.json | 1 + .../models/item/caducous_extract.json | 1 + .../models/item/caducous_feeder.json | 1 + .../models/item/caducous_legume.json | 1 + .../models/item/caducous_stem.json | 1 + .../models/item/caducous_stem_bunch.json | 1 + .../models/item/cake_soul_aqua.json | 1 + .../models/item/cake_soul_black.json | 1 + .../models/item/cake_soul_blue.json | 1 + .../models/item/cake_soul_brown.json | 1 + .../models/item/cake_soul_cyan.json | 1 + .../models/item/cake_soul_gray.json | 1 + .../models/item/cake_soul_green.json | 1 + .../models/item/cake_soul_lime.json | 1 + .../models/item/cake_soul_magenta.json | 1 + .../models/item/cake_soul_orange.json | 1 + .../models/item/cake_soul_pink.json | 1 + .../models/item/cake_soul_purple.json | 1 + .../models/item/cake_soul_red.json | 1 + .../models/item/cake_soul_silver.json | 1 + .../models/item/cake_soul_white.json | 1 + .../models/item/cake_soul_yellow.json | 1 + .../models/item/calcified_heart.json | 1 + .../models/item/campaign_poster.json | 1 + .../models/item/campfire_talisman_1.json | 1 + .../models/item/campfire_talisman_2.json | 1 + .../models/item/campfire_talisman_3.json | 1 + .../models/item/campfire_talisman_4.json | 1 + .../models/item/campfire_talisman_5.json | 1 + .../models/item/can_of_worms.json | 1 + .../models/item/candy_artifact.json | 1 + .../firmskyblock/models/item/candy_corn.json | 1 + .../firmskyblock/models/item/candy_relic.json | 1 + .../firmskyblock/models/item/candy_ring.json | 1 + .../models/item/candy_talisman.json | 1 + .../models/item/candy_the_fish.json | 1 + .../firmskyblock/models/item/candycomb.json | 1 + .../models/item/canopy_boots.json | 1 + .../models/item/canopy_boots_dyed.json | 1 + .../models/item/canopy_chestplate.json | 1 + .../models/item/canopy_chestplate_dyed.json | 1 + .../models/item/canopy_leggings.json | 1 + .../models/item/canopy_leggings_dyed.json | 1 + .../models/item/capsaicin_eyedrops.json | 1 + .../models/item/carnival_dart_tube.json | 1 + .../models/item/carnival_fishing_rod.json | 1 + .../item/carnival_fishing_rod_cast.json | 1 + .../models/item/carnival_mask_bag.json | 1 + .../models/item/carnival_mask_bag_empty.json | 1 + .../models/item/carnival_shovel.json | 1 + .../models/item/carnival_shovel_anchor.json | 1 + .../models/item/carnival_shovel_treasure.json | 1 + .../models/item/carnival_ticket.json | 1 + .../firmskyblock/models/item/carrot_bait.json | 1 + .../models/item/cashmere_jacket.json | 1 + .../models/item/cat_talisman.json | 1 + .../models/item/catacombs_expert_ring.json | 1 + .../models/item/catacombs_pass_10.json | 1 + .../models/item/catacombs_pass_3.json | 1 + .../models/item/catacombs_pass_4.json | 1 + .../models/item/catacombs_pass_5.json | 1 + .../models/item/catacombs_pass_6.json | 1 + .../models/item/catacombs_pass_7.json | 1 + .../models/item/catacombs_pass_8.json | 1 + .../models/item/catacombs_pass_9.json | 1 + .../firmskyblock/models/item/catalyst.json | 1 + .../models/item/celeste_boots.json | 1 + .../models/item/celeste_boots_dyed.json | 1 + .../models/item/celeste_chestplate.json | 1 + .../models/item/celeste_chestplate_dyed.json | 1 + .../models/item/celeste_helmet.json | 1 + .../models/item/celeste_helmet_dyed.json | 1 + .../models/item/celeste_leggings.json | 1 + .../models/item/celeste_leggings_dyed.json | 1 + .../models/item/celeste_wand.json | 1 + .../item/celeste_wand_lightning_strike.json | 1 + .../models/item/century_memento_blue.json | 1 + .../models/item/century_memento_green.json | 1 + .../models/item/century_memento_pink.json | 1 + .../models/item/century_memento_red.json | 1 + .../models/item/century_memento_yellow.json | 1 + .../models/item/century_party_invitation.json | 1 + .../models/item/century_ring.json | 1 + .../models/item/century_talisman.json | 1 + .../models/item/century_the_fish.json | 1 + .../models/item/chain_end_times.json | 1 + .../models/item/challenge_rod.json | 1 + .../models/item/challenge_rod_cast.json | 1 + .../firmskyblock/models/item/champ_rod.json | 1 + .../models/item/champ_rod_cast.json | 1 + .../models/item/charlie_trousers.json | 1 + .../models/item/charlie_trousers_dyed.json | 1 + .../firmskyblock/models/item/charminizer.json | 1 + .../models/item/cheap_coffee.json | 1 + .../models/item/cheap_tuxedo_boots.json | 1 + .../models/item/cheap_tuxedo_boots_dyed.json | 1 + .../models/item/cheap_tuxedo_chestplate.json | 1 + .../item/cheap_tuxedo_chestplate_dyed.json | 1 + .../models/item/cheap_tuxedo_leggings.json | 1 + .../item/cheap_tuxedo_leggings_dyed.json | 1 + .../firmskyblock/models/item/cheese_fuel.json | 1 + .../models/item/cheetah_talisman.json | 1 + .../models/item/chestplate_of_the_pack.json | 1 + .../item/chestplate_of_the_pack_dyed.json | 1 + .../firmskyblock/models/item/chicken_axe.json | 1 + .../models/item/chicken_leggs.json | 1 + .../models/item/chili_pepper.json | 1 + .../models/item/chill_the_fish.json | 1 + .../models/item/chilled_pristine_potato.json | 1 + .../models/item/chirping_stereo.json | 1 + .../firmskyblock/models/item/chisel.json | 1 + .../models/item/chocolate_chip.json | 1 + .../item/christmas_stocking_backpack.json | 1 + .../christmas_stocking_backpack_applied.json | 1 + .../models/item/chrono_pickaxe.json | 1 + .../assets/firmskyblock/models/item/chum.json | 1 + .../firmskyblock/models/item/chum_rod.json | 1 + .../models/item/chum_rod_cast.json | 1 + .../firmskyblock/models/item/chum_sinker.json | 1 + .../models/item/chumming_talisman.json | 1 + .../models/item/citrine_crystal.json | 1 + .../firmskyblock/models/item/claw_fossil.json | 1 + .../models/item/clay_bracelet.json | 1 + .../firmskyblock/models/item/cleaver.json | 1 + .../models/item/clipped_wings.json | 1 + .../firmskyblock/models/item/clouds_rune.json | 1 + .../models/item/clouds_rune_2.json | 1 + .../models/item/clouds_rune_3.json | 1 + .../models/item/clown_the_fish.json | 1 + .../models/item/clownfish_cloak.json | 1 + .../models/item/clubbed_fossil.json | 1 + .../models/item/cluck_the_fish.json | 1 + .../models/item/coco_chopper.json | 1 + .../models/item/coco_chopper_2.json | 1 + .../models/item/coco_chopper_3.json | 1 + .../models/item/coin_talisman.json | 1 + .../models/item/cold_resistance_potion.json | 1 + .../item/cold_resistance_splash_potion.json | 1 + .../models/item/collection_display.json | 1 + .../models/item/colossal_exp_bottle.json | 1 + .../item/colossal_exp_bottle_upgrade.json | 1 + .../models/item/combat_xp_boost_potion.json | 1 + .../item/combat_xp_boost_splash_potion.json | 1 + .../models/item/combo_mania_talisman.json | 1 + .../firmskyblock/models/item/common_hook.json | 1 + .../models/item/compact_ooze.json | 1 + .../firmskyblock/models/item/compactor.json | 1 + .../firmskyblock/models/item/compost.json | 1 + .../models/item/concentrated_stone.json | 1 + .../models/item/condensed_fermento.json | 1 + .../models/item/conjuring_sword.json | 1 + .../models/item/connect_four.json | 1 + .../models/item/control_switch.json | 1 + .../firmskyblock/models/item/copper.json | 1 + .../firmskyblock/models/item/corleonite.json | 1 + .../models/item/corrupt_soil.json | 1 + .../models/item/corrupted_bait.json | 1 + .../models/item/corrupted_fragment.json | 1 + .../models/item/couture_rune.json | 1 + .../models/item/couture_rune_2.json | 1 + .../models/item/couture_rune_3.json | 1 + .../firmskyblock/models/item/coven_seal.json | 1 + .../firmskyblock/models/item/cow_axe.json | 1 + .../models/item/cracked_piggy_bank.json | 1 + .../models/item/cracked_ship_helm.json | 1 + .../models/item/creative_mind.json | 1 + .../models/item/creeper_leggings.json | 1 + .../models/item/creeper_leggings_dyed.json | 1 + .../models/item/crimson_boots.json | 1 + .../models/item/crimson_boots_dyed.json | 1 + .../models/item/crimson_chestplate.json | 1 + .../models/item/crimson_chestplate_dyed.json | 1 + .../models/item/crimson_leggings.json | 1 + .../models/item/crimson_leggings_dyed.json | 1 + .../models/item/critical_potion.json | 1 + .../models/item/critical_splash_potion.json | 1 + .../models/item/crochet_tiger_plushie.json | 1 + .../models/item/crooked_artifact.json | 1 + .../firmskyblock/models/item/cropie.json | 1 + .../models/item/cropie_boots.json | 1 + .../models/item/cropie_boots_dyed.json | 1 + .../models/item/cropie_chestplate.json | 1 + .../models/item/cropie_chestplate_dyed.json | 1 + .../models/item/cropie_leggings.json | 1 + .../models/item/cropie_leggings_dyed.json | 1 + .../models/item/cropie_talisman.json | 1 + .../models/item/crown_of_greed.json | 1 + .../models/item/crown_of_greed_dyed.json | 1 + .../models/item/crude_gabagool.json | 1 + .../item/crude_gabagool_distillate.json | 1 + .../models/item/crux_talisman_1.json | 1 + .../models/item/crux_talisman_2.json | 1 + .../models/item/crux_talisman_3.json | 1 + .../models/item/crux_talisman_4.json | 1 + .../models/item/crux_talisman_5.json | 1 + .../models/item/crux_talisman_6.json | 1 + .../models/item/crux_talisman_7.json | 1 + .../models/item/crux_talisman_7_maxed.json | 1 + .../firmskyblock/models/item/cruxmotion.json | 1 + .../models/item/cryopowder_shard.json | 1 + .../firmskyblock/models/item/crypt_bow.json | 1 + .../models/item/crypt_bow_pulling_0.json | 1 + .../models/item/crypt_bow_pulling_1.json | 1 + .../models/item/crypt_bow_pulling_2.json | 1 + .../models/item/crypt_dreadlord_sword.json | 1 + .../models/item/crypt_skull_key.json | 1 + .../models/item/crypt_witherlord_boots.json | 1 + .../item/crypt_witherlord_boots_dyed.json | 1 + .../item/crypt_witherlord_chestplate.json | 1 + .../crypt_witherlord_chestplate_dyed.json | 1 + .../models/item/crypt_witherlord_helmet.json | 1 + .../item/crypt_witherlord_helmet_dyed.json | 1 + .../item/crypt_witherlord_leggings.json | 1 + .../item/crypt_witherlord_leggings_dyed.json | 1 + .../models/item/crypt_witherlord_sword.json | 1 + .../models/item/crystal_boots.json | 1 + .../models/item/crystal_chestplate.json | 1 + .../models/item/crystal_fragment.json | 1 + .../models/item/crystal_helmet.json | 1 + .../models/item/crystal_hollows_sack.json | 1 + .../item/crystal_hollows_travel_scroll.json | 1 + .../models/item/crystal_leggings.json | 1 + .../item/crystal_nucleus_travel_scroll.json | 1 + .../models/item/cup_of_blood.json | 1 + .../models/item/cursus_ferae.json | 1 + .../models/item/cyan_greater_backpack.json | 1 + .../models/item/cyan_jumbo_backpack.json | 1 + .../models/item/cyan_large_backpack.json | 1 + .../models/item/cyan_medium_backpack.json | 1 + .../models/item/cyan_small_backpack.json | 1 + .../models/item/daedalus_axe.json | 1 + .../models/item/daedalus_stick.json | 1 + .../models/item/danger_1_travel_scroll.json | 1 + .../models/item/danger_2_travel_scroll.json | 1 + .../item/danger_2_travel_scroll_old.json | 1 + .../models/item/danger_3_travel_scroll.json | 1 + .../firmskyblock/models/item/dante_ring.json | 1 + .../models/item/dante_talisman.json | 1 + .../firmskyblock/models/item/dark_bait.json | 1 + .../models/item/dark_cacao_truffle.json | 1 + .../firmskyblock/models/item/dark_candy.json | 1 + .../models/item/dark_claymore.json | 1 + .../models/item/dark_claymore_hand.json | 1 + .../firmskyblock/models/item/dark_orb.json | 1 + .../firmskyblock/models/item/dark_pebble.json | 1 + .../models/item/dark_queens_soul_drop.json | 1 + .../models/item/darkness_within_rune.json | 1 + .../models/item/darkness_within_rune_2.json | 1 + .../models/item/darkness_within_rune_3.json | 1 + .../models/item/davids_cloak.json | 1 + .../models/item/davids_cloak_epic.json | 1 + .../models/item/davids_cloak_legendary.json | 1 + .../models/item/davids_cloak_mythic.json | 1 + .../models/item/davids_cloak_rare.json | 1 + .../models/item/davids_cloak_uncommon.json | 1 + .../firmskyblock/models/item/day_crystal.json | 1 + .../firmskyblock/models/item/day_saver.json | 1 + .../models/item/dctr_space_helm.json | 1 + .../models/item/dead_bush_of_love.json | 1 + .../models/item/dead_cat_detector.json | 1 + .../models/item/dead_cat_food.json | 1 + .../firmskyblock/models/item/dead_seed.json | 1 + .../models/item/deadgehog_spine.json | 1 + .../item/dean_letter_of_recommendation.json | 1 + .../firmskyblock/models/item/death_bow.json | 1 + .../models/item/death_bow_pulling_0.json | 1 + .../models/item/death_bow_pulling_1.json | 1 + .../models/item/death_bow_pulling_2.json | 1 + .../firmskyblock/models/item/decayed_bat.json | 1 + .../firmskyblock/models/item/decent_axe.json | 1 + .../firmskyblock/models/item/decent_bow.json | 1 + .../models/item/decent_bow_pulling_0.json | 1 + .../models/item/decent_bow_pulling_1.json | 1 + .../models/item/decent_bow_pulling_2.json | 1 + .../models/item/decent_coffee.json | 1 + .../models/item/deep_ocean_biome_stick.json | 1 + .../firmskyblock/models/item/deep_root.json | 1 + .../models/item/deep_sea_orb.json | 1 + .../models/item/deepterror_mixin.json | 1 + .../models/item/defective_monitor.json | 1 + .../firmskyblock/models/item/defuse_kit.json | 1 + .../models/item/delirium_necklace.json | 1 + .../models/item/demonlord_gauntlet.json | 1 + .../models/item/derelict_ashe.json | 1 + .../models/item/derelict_ashe_locked.json | 1 + .../models/item/desert_biome_stick.json | 1 + .../models/item/desert_island_crystal.json | 1 + .../models/item/destruction_cloak.json | 1 + .../models/item/detective_scanner.json | 1 + .../models/item/detective_scanner_sniff.json | 1 + .../models/item/detective_wallet.json | 1 + .../models/item/detransfigured_mask.json | 1 + .../firmskyblock/models/item/devour_ring.json | 1 + .../models/item/diamond_atom.json | 1 + .../models/item/diamond_hunter_boots.json | 1 + .../item/diamond_hunter_boots_dyed.json | 1 + .../item/diamond_hunter_chestplate.json | 1 + .../item/diamond_hunter_chestplate_dyed.json | 1 + .../models/item/diamond_hunter_helmet.json | 1 + .../item/diamond_hunter_helmet_dyed.json | 1 + .../models/item/diamond_hunter_leggings.json | 1 + .../item/diamond_hunter_leggings_dyed.json | 1 + .../models/item/diamond_spreading.json | 1 + .../models/item/diamond_the_fish.json | 1 + .../firmskyblock/models/item/diamonite.json | 1 + .../models/item/dianas_bookshelf.json | 1 + .../models/item/digested_mosquito.json | 1 + .../models/item/digested_mushrooms.json | 1 + .../firmskyblock/models/item/dirt_bottle.json | 1 + .../firmskyblock/models/item/dirt_rod.json | 1 + .../models/item/dirt_rod_cast.json | 1 + .../firmskyblock/models/item/discrite.json | 1 + .../models/item/disinfestor_gloves.json | 1 + .../models/item/displaced_leech.json | 1 + .../firmskyblock/models/item/ditto_blob.json | 1 + .../firmskyblock/models/item/ditto_skin.json | 1 + .../firmskyblock/models/item/ditto_skull.json | 1 + .../firmskyblock/models/item/divan_alloy.json | 1 + .../firmskyblock/models/item/divan_boots.json | 1 + .../models/item/divan_boots_dyed.json | 1 + .../models/item/divan_chestplate.json | 1 + .../models/item/divan_chestplate_dyed.json | 1 + .../firmskyblock/models/item/divan_drill.json | 1 + .../models/item/divan_drill_drilling.json | 1 + .../models/item/divan_fragment.json | 1 + .../models/item/divan_leggings.json | 1 + .../models/item/divan_leggings_dyed.json | 1 + .../models/item/divan_pendant.json | 1 + .../models/item/divan_powder_coating.json | 1 + .../firmskyblock/models/item/diver_boots.json | 1 + .../models/item/diver_boots_dyed.json | 1 + .../models/item/diver_chestplate.json | 1 + .../models/item/diver_chestplate_dyed.json | 1 + .../models/item/diver_fragment.json | 1 + .../models/item/diver_leggings.json | 1 + .../models/item/diver_leggings_dyed.json | 1 + .../models/item/dodge_potion.json | 1 + .../models/item/dodge_splash_potion.json | 1 + .../models/item/dojo_black_belt.json | 1 + .../models/item/dojo_blue_belt.json | 1 + .../models/item/dojo_brown_belt.json | 1 + .../models/item/dojo_green_belt.json | 1 + .../models/item/dojo_white_belt.json | 1 + .../models/item/dojo_yellow_belt.json | 1 + .../firmskyblock/models/item/dr_paper.json | 1 + .../models/item/draconic_artifact.json | 1 + .../models/item/draconic_blade.json | 1 + .../models/item/draconic_ring.json | 1 + .../models/item/draconic_talisman.json | 1 + .../firmskyblock/models/item/dragon_claw.json | 1 + .../models/item/dragon_egg_backpack.json | 1 + .../item/dragon_egg_backpack_applied.json | 1 + .../firmskyblock/models/item/dragon_horn.json | 1 + .../item/dragon_nest_travel_scroll.json | 1 + .../models/item/dragon_scale.json | 1 + .../models/item/dragon_shortbow.json | 1 + .../item/dragon_shortbow_pulling_0.json | 1 + .../item/dragon_shortbow_pulling_1.json | 1 + .../item/dragon_shortbow_pulling_2.json | 1 + .../models/item/dragonfade_cloak.json | 1 + .../models/item/dragonfuse_glove.json | 1 + .../models/item/dragontail_travel_scroll.json | 1 + .../firmskyblock/models/item/drill_1.json | 1 + .../firmskyblock/models/item/drill_2.json | 1 + .../firmskyblock/models/item/drill_3.json | 1 + .../firmskyblock/models/item/drill_4.json | 1 + .../models/item/drill_engine.json | 1 + .../models/item/drill_fuel_full.json | 1 + .../models/item/drill_fuel_high.json | 1 + .../models/item/drill_fuel_low.json | 1 + .../models/item/drill_fuel_med.json | 1 + .../item/dull_shark_tooth_necklace.json | 1 + .../assets/firmskyblock/models/item/dung.json | 1 + .../models/item/dungeon_boss_key.json | 1 + .../models/item/dungeon_chest_key.json | 1 + .../models/item/dungeon_decoy.json | 1 + .../models/item/dungeon_disc_1.json | 1 + .../models/item/dungeon_disc_2.json | 1 + .../models/item/dungeon_disc_3.json | 1 + .../models/item/dungeon_disc_4.json | 1 + .../models/item/dungeon_disc_5.json | 1 + .../models/item/dungeon_golden_key.json | 1 + .../models/item/dungeon_hammer.json | 1 + .../models/item/dungeon_lore_diary.json | 1 + .../models/item/dungeon_lore_journal.json | 1 + .../models/item/dungeon_lore_paper.json | 1 + .../models/item/dungeon_normal_key.json | 1 + .../models/item/dungeon_potion.json | 1 + .../models/item/dungeon_potion_1.json | 1 + .../models/item/dungeon_potion_2.json | 1 + .../models/item/dungeon_potion_3.json | 1 + .../models/item/dungeon_potion_4.json | 1 + .../models/item/dungeon_potion_5.json | 1 + .../models/item/dungeon_potion_6.json | 1 + .../models/item/dungeon_potion_7.json | 1 + .../models/item/dungeon_trap.json | 1 + .../models/item/dungeon_wizard_crystal.json | 1 + .../models/item/dungeonbreaker.json | 1 + .../models/item/dust_the_fish.json | 1 + .../models/item/dwarf_turtle_shelmet.json | 1 + .../models/item/dwarven_compactor.json | 1 + .../models/item/dwarven_diamond_axe.json | 1 + .../models/item/dwarven_emerald_hammer.json | 1 + .../models/item/dwarven_gold_hammer.json | 1 + .../models/item/dwarven_handwarmers.json | 1 + .../models/item/dwarven_iron_hammer.json | 1 + .../models/item/dwarven_lapis_sword.json | 1 + .../models/item/dwarven_metal.json | 1 + .../models/item/dwarven_metal_detector.json | 1 + .../item/dwarven_metal_detector_model.json | 1 + .../models/item/dwarven_mines_sack.json | 1 + .../models/item/dwarven_os_block_bran.json | 1 + .../item/dwarven_os_gemstone_grahams.json | 1 + .../item/dwarven_os_metallic_minis.json | 1 + .../models/item/dwarven_os_ore_oats.json | 1 + .../models/item/dwarven_tankard.json | 1 + .../models/item/dwarven_treasure.json | 1 + .../models/item/dye_aquamarine.json | 1 + .../models/item/dye_archfiend.json | 1 + .../firmskyblock/models/item/dye_aurora.json | 1 + .../models/item/dye_bingo_blue.json | 1 + .../models/item/dye_black_ice.json | 1 + .../firmskyblock/models/item/dye_bone.json | 1 + .../models/item/dye_brick_red.json | 1 + .../models/item/dye_byzantium.json | 1 + .../firmskyblock/models/item/dye_carmine.json | 1 + .../firmskyblock/models/item/dye_celadon.json | 1 + .../firmskyblock/models/item/dye_celeste.json | 1 + .../models/item/dye_chocolate.json | 1 + .../firmskyblock/models/item/dye_copper.json | 1 + .../models/item/dye_cyclamen.json | 1 + .../models/item/dye_dark_purple.json | 1 + .../firmskyblock/models/item/dye_dung.json | 1 + .../firmskyblock/models/item/dye_emerald.json | 1 + .../firmskyblock/models/item/dye_flame.json | 1 + .../firmskyblock/models/item/dye_fossil.json | 1 + .../firmskyblock/models/item/dye_frog.json | 1 + .../models/item/dye_frostbitten.json | 1 + .../firmskyblock/models/item/dye_holly.json | 1 + .../firmskyblock/models/item/dye_iceberg.json | 1 + .../firmskyblock/models/item/dye_jade.json | 1 + .../firmskyblock/models/item/dye_lava.json | 1 + .../firmskyblock/models/item/dye_livid.json | 1 + .../firmskyblock/models/item/dye_lucky.json | 1 + .../firmskyblock/models/item/dye_mango.json | 1 + .../firmskyblock/models/item/dye_matcha.json | 1 + .../models/item/dye_midnight.json | 1 + .../firmskyblock/models/item/dye_mocha.json | 1 + .../models/item/dye_nadeshiko.json | 1 + .../firmskyblock/models/item/dye_necron.json | 1 + .../firmskyblock/models/item/dye_nyanza.json | 1 + .../firmskyblock/models/item/dye_oasis.json | 1 + .../firmskyblock/models/item/dye_ocean.json | 1 + .../models/item/dye_pastel_sky.json | 1 + .../models/item/dye_pearlescent.json | 1 + .../firmskyblock/models/item/dye_pelt.json | 1 + .../models/item/dye_periwinkle.json | 1 + .../firmskyblock/models/item/dye_portal.json | 1 + .../models/item/dye_pure_black.json | 1 + .../models/item/dye_pure_blue.json | 1 + .../models/item/dye_pure_white.json | 1 + .../models/item/dye_pure_yellow.json | 1 + .../models/item/dye_red_tulip.json | 1 + .../firmskyblock/models/item/dye_rose.json | 1 + .../firmskyblock/models/item/dye_sangria.json | 1 + .../firmskyblock/models/item/dye_secret.json | 1 + .../models/item/dye_snowflake.json | 1 + .../models/item/dye_sunflower.json | 1 + .../firmskyblock/models/item/dye_sunset.json | 1 + .../models/item/dye_treasure.json | 1 + .../firmskyblock/models/item/dye_warden.json | 1 + .../models/item/dye_wild_strawberry.json | 1 + .../firmskyblock/models/item/earth_shard.json | 1 + .../models/item/eccentric_painting.json | 1 + .../item/eccentric_painting_bundle.json | 1 + .../firmskyblock/models/item/echolocator.json | 1 + .../firmskyblock/models/item/ectoplasm.json | 1 + .../firmskyblock/models/item/edible_mace.json | 1 + .../models/item/edible_seaweed.json | 1 + .../models/item/editor_pencil.json | 1 + .../firmskyblock/models/item/eerie_toy.json | 1 + .../firmskyblock/models/item/eerie_treat.json | 1 + .../models/item/eerie_treat_1st.json | 1 + .../models/item/efficient_axe.json | 1 + .../models/item/egg_the_fish.json | 1 + .../firmskyblock/models/item/egglocator.json | 1 + .../models/item/egglocator_blink.json | 1 + .../models/item/einary_red_hoodie.json | 1 + .../firmskyblock/models/item/eleanor_cap.json | 1 + .../models/item/eleanor_cap_dyed.json | 1 + .../models/item/eleanor_slippers.json | 1 + .../models/item/eleanor_slippers_dyed.json | 1 + .../models/item/eleanor_trousers.json | 1 + .../models/item/eleanor_trousers_dyed.json | 1 + .../models/item/eleanor_tunic.json | 1 + .../models/item/eleanor_tunic_dyed.json | 1 + .../models/item/electric_wand_item.json | 1 + .../models/item/electron_transmitter.json | 1 + .../models/item/elegant_tuxedo_boots.json | 1 + .../item/elegant_tuxedo_boots_dyed.json | 1 + .../item/elegant_tuxedo_chestplate.json | 1 + .../item/elegant_tuxedo_chestplate_dyed.json | 1 + .../models/item/elegant_tuxedo_leggings.json | 1 + .../item/elegant_tuxedo_leggings_dyed.json | 1 + .../firmskyblock/models/item/ember_boots.json | 1 + .../models/item/ember_boots_dyed.json | 1 + .../models/item/ember_chestplate.json | 1 + .../models/item/ember_chestplate_dyed.json | 1 + .../models/item/ember_fragment.json | 1 + .../models/item/ember_leggings.json | 1 + .../models/item/ember_leggings_dyed.json | 1 + .../firmskyblock/models/item/ember_rod.json | 1 + .../models/item/emerald_armor_boots.json | 1 + .../models/item/emerald_armor_boots_dyed.json | 1 + .../models/item/emerald_armor_chestplate.json | 1 + .../item/emerald_armor_chestplate_dyed.json | 1 + .../models/item/emerald_armor_helmet.json | 1 + .../item/emerald_armor_helmet_dyed.json | 1 + .../models/item/emerald_armor_leggings.json | 1 + .../item/emerald_armor_leggings_dyed.json | 1 + .../models/item/emerald_artifact.json | 1 + .../models/item/emerald_blade.json | 1 + .../models/item/emerald_ring.json | 1 + .../models/item/emerald_tipped_arrow.json | 1 + .../models/item/emmett_pointer.json | 1 + .../models/item/emperor_artifact.json | 1 + .../models/item/emperor_leggings.json | 1 + .../models/item/emperor_ring.json | 1 + .../models/item/emperor_robes.json | 1 + .../models/item/emperor_shoes.json | 1 + .../models/item/emperor_talisman.json | 1 + .../models/item/empty_chum_bucket.json | 1 + .../models/item/empty_chumcap_bucket.json | 1 + .../models/item/empty_odonata_bottle.json | 1 + .../models/item/enchant_rune.json | 1 + .../models/item/enchant_rune_2.json | 1 + .../models/item/enchant_rune_3.json | 1 + .../models/item/enchanted_book_bundle.json | 1 + .../models/item/enchanted_book_stacking.json | 1 + .../models/item/enchanted_compost.json | 1 + .../models/item/enchanted_hopper_coins.json | 1 + .../models/item/enchanted_lush_berberis.json | 1 + .../models/item/enchanted_mycelium_cube.json | 1 + .../models/item/enchanted_red_sand_cube.json | 1 + .../models/item/enchanted_sulphur_cube.json | 1 + .../item/enchanting_xp_boost_potion.json | 1 + .../enchanting_xp_boost_splash_potion.json | 1 + .../models/item/end_biome_stick.json | 1 + .../firmskyblock/models/item/end_boots.json | 1 + .../models/item/end_boots_dyed.json | 1 + .../models/item/end_chestplate.json | 1 + .../models/item/end_chestplate_dyed.json | 1 + .../models/item/end_leggings.json | 1 + .../models/item/end_leggings_dyed.json | 1 + .../models/item/end_portal_fumes_mixin.json | 1 + .../firmskyblock/models/item/end_rune.json | 1 + .../firmskyblock/models/item/end_rune_2.json | 1 + .../firmskyblock/models/item/end_rune_3.json | 1 + .../models/item/end_stone_bow.json | 1 + .../models/item/end_stone_bow_pulling_0.json | 1 + .../models/item/end_stone_bow_pulling_1.json | 1 + .../models/item/end_stone_bow_pulling_2.json | 1 + .../models/item/end_stone_shulker.json | 1 + .../models/item/end_stone_sword.json | 1 + .../firmskyblock/models/item/end_sword.json | 1 + .../firmskyblock/models/item/ender_belt.json | 1 + .../firmskyblock/models/item/ender_bow.json | 1 + .../models/item/ender_bow_pulling_0.json | 1 + .../models/item/ender_bow_pulling_1.json | 1 + .../models/item/ender_bow_pulling_2.json | 1 + .../firmskyblock/models/item/ender_cloak.json | 1 + .../models/item/ender_gauntlet.json | 1 + .../models/item/ender_monocle.json | 1 + .../models/item/ender_necklace.json | 1 + .../models/item/enderman_mask.json | 1 + .../firmskyblock/models/item/enderpack.json | 1 + .../models/item/enderpack_applied.json | 1 + .../models/item/endersnake_rune.json | 1 + .../models/item/endersnake_rune_2.json | 1 + .../models/item/endersnake_rune_3.json | 1 + .../models/item/endstone_geode.json | 1 + .../models/item/endstone_idol.json | 1 + .../models/item/endstone_rose.json | 1 + .../models/item/enigma_cloak.json | 1 + .../firmskyblock/models/item/enrager.json | 1 + .../models/item/ensnared_snail.json | 1 + .../models/item/entangler_lasso.json | 1 + .../models/item/entropy_suppressor.json | 1 + .../firmskyblock/models/item/eon_pickaxe.json | 1 + .../models/item/eon_the_fish.json | 1 + .../models/item/ephemeral_gratitude.json | 1 + .../models/item/epic_kuudra_chunk.json | 1 + .../models/item/epoch_cake_aqua.json | 1 + .../models/item/epoch_cake_black.json | 1 + .../models/item/epoch_cake_blue.json | 1 + .../models/item/epoch_cake_brown.json | 1 + .../models/item/epoch_cake_cyan.json | 1 + .../models/item/epoch_cake_dark_green.json | 1 + .../models/item/epoch_cake_gray.json | 1 + .../models/item/epoch_cake_green.json | 1 + .../models/item/epoch_cake_magenta.json | 1 + .../models/item/epoch_cake_orange.json | 1 + .../models/item/epoch_cake_pink.json | 1 + .../models/item/epoch_cake_purple.json | 1 + .../models/item/epoch_cake_red.json | 1 + .../models/item/epoch_cake_silver.json | 1 + .../models/item/epoch_cake_white.json | 1 + .../models/item/epoch_cake_yellow.json | 1 + .../models/item/eternal_crystal.json | 1 + .../models/item/eternal_flame_ring.json | 1 + .../models/item/eternal_hoof.json | 1 + .../models/item/etherwarp_conduit.json | 1 + .../models/item/etherwarp_merger.json | 1 + .../models/item/everburning_flame.json | 1 + .../models/item/everstretch_lasso.json | 1 + .../models/item/exalted_lushlilac_bonbon.json | 1 + .../item/exceedingly_comfy_sneakers.json | 1 + .../models/item/expensive_toy.json | 1 + .../models/item/expensive_toy_1st.json | 1 + .../models/item/experience_artifact.json | 1 + .../models/item/experience_potion.json | 1 + .../models/item/experience_splash_potion.json | 1 + .../models/item/experiment_the_fish.json | 1 + .../models/item/expired_pumpkin.json | 1 + .../models/item/explosive_arrow.json | 1 + .../models/item/explosive_bow.json | 1 + .../models/item/explosive_bow_pulling_0.json | 1 + .../models/item/explosive_bow_pulling_1.json | 1 + .../models/item/explosive_bow_pulling_2.json | 1 + .../models/item/exportable_carrots.json | 1 + .../item/extra_large_gemstone_sack.json | 1 + .../models/item/extreme_bingo_card.json | 1 + .../models/item/fairy_backpack.json | 1 + .../models/item/fairy_backpack_applied.json | 1 + .../firmskyblock/models/item/fairy_boots.json | 1 + .../models/item/fairy_chestplate.json | 1 + .../models/item/fairy_helmet.json | 1 + .../models/item/fairy_leggings.json | 1 + .../firmskyblock/models/item/fairy_wings.json | 1 + .../models/item/fake_neuroscience_degree.json | 1 + .../models/item/fake_shuriken.json | 1 + .../models/item/fallen_star_tracker.json | 1 + .../models/item/family_doubloon.json | 1 + .../firmskyblock/models/item/fancy_sword.json | 1 + .../models/item/fancy_tuxedo_boots.json | 1 + .../models/item/fancy_tuxedo_boots_dyed.json | 1 + .../models/item/fancy_tuxedo_chestplate.json | 1 + .../item/fancy_tuxedo_chestplate_dyed.json | 1 + .../models/item/fancy_tuxedo_leggings.json | 1 + .../item/fancy_tuxedo_leggings_dyed.json | 1 + .../models/item/farm_armor_boots.json | 1 + .../models/item/farm_armor_boots_dyed.json | 1 + .../models/item/farm_armor_chestplate.json | 1 + .../item/farm_armor_chestplate_dyed.json | 1 + .../models/item/farm_armor_helmet.json | 1 + .../models/item/farm_armor_helmet_dyed.json | 1 + .../models/item/farm_armor_leggings.json | 1 + .../models/item/farm_armor_leggings_dyed.json | 1 + .../models/item/farm_crystal.json | 1 + .../models/item/farm_suit_boots.json | 1 + .../models/item/farm_suit_boots_dyed.json | 1 + .../models/item/farm_suit_chestplate.json | 1 + .../item/farm_suit_chestplate_dyed.json | 1 + .../models/item/farm_suit_helmet.json | 1 + .../models/item/farm_suit_helmet_dyed.json | 1 + .../models/item/farm_suit_leggings.json | 1 + .../models/item/farm_suit_leggings_dyed.json | 1 + .../models/item/farmer_boots.json | 1 + .../firmskyblock/models/item/farmer_rod.json | 1 + .../models/item/farmer_rod_cast.json | 1 + .../models/item/farming_1_travel_scroll.json | 1 + .../models/item/farming_2_travel_scroll.json | 1 + .../models/item/farming_for_dummies.json | 1 + .../models/item/farming_talisman.json | 1 + .../models/item/farming_wand.json | 1 + .../models/item/farming_xp_boost_potion.json | 1 + .../item/farming_xp_boost_splash_potion.json | 1 + .../models/item/feather_ring.json | 1 + .../models/item/feather_talisman.json | 1 + .../firmskyblock/models/item/fel_pearl.json | 1 + .../firmskyblock/models/item/fel_rose.json | 1 + .../firmskyblock/models/item/fel_skull.json | 1 + .../firmskyblock/models/item/fel_sword.json | 1 + .../models/item/felthorn_reaper.json | 1 + .../models/item/felthorn_reaper_hand.json | 1 + .../models/item/femurgrowth_leggings.json | 1 + .../firmskyblock/models/item/fermento.json | 1 + .../models/item/fermento_artifact.json | 1 + .../models/item/fermento_boots.json | 1 + .../models/item/fermento_boots_dyed.json | 1 + .../models/item/fermento_chestplate.json | 1 + .../models/item/fermento_chestplate_dyed.json | 1 + .../models/item/fermento_leggings.json | 1 + .../models/item/fermento_leggings_dyed.json | 1 + .../models/item/fervor_boots.json | 1 + .../models/item/fervor_boots_dyed.json | 1 + .../models/item/fervor_chestplate.json | 1 + .../models/item/fervor_chestplate_dyed.json | 1 + .../models/item/fervor_leggings.json | 1 + .../models/item/fervor_leggings_dyed.json | 1 + .../models/item/festering_maggot.json | 1 + .../models/item/festive_sinker.json | 1 + .../models/item/fiery_aurora_boots.json | 1 + .../models/item/fiery_aurora_boots_dyed.json | 1 + .../models/item/fiery_aurora_chestplate.json | 1 + .../item/fiery_aurora_chestplate_dyed.json | 1 + .../models/item/fiery_aurora_leggings.json | 1 + .../item/fiery_aurora_leggings_dyed.json | 1 + .../models/item/fiery_burst_rune.json | 1 + .../models/item/fiery_burst_rune_2.json | 1 + .../models/item/fiery_burst_rune_3.json | 1 + .../models/item/fiery_crimson_boots.json | 1 + .../models/item/fiery_crimson_boots_dyed.json | 1 + .../models/item/fiery_crimson_chestplate.json | 1 + .../item/fiery_crimson_chestplate_dyed.json | 1 + .../models/item/fiery_crimson_leggings.json | 1 + .../item/fiery_crimson_leggings_dyed.json | 1 + .../models/item/fiery_fervor_boots.json | 1 + .../models/item/fiery_fervor_boots_dyed.json | 1 + .../models/item/fiery_fervor_chestplate.json | 1 + .../item/fiery_fervor_chestplate_dyed.json | 1 + .../models/item/fiery_fervor_leggings.json | 1 + .../item/fiery_fervor_leggings_dyed.json | 1 + .../models/item/fiery_hollow_boots.json | 1 + .../models/item/fiery_hollow_boots_dyed.json | 1 + .../models/item/fiery_hollow_chestplate.json | 1 + .../item/fiery_hollow_chestplate_dyed.json | 1 + .../models/item/fiery_hollow_leggings.json | 1 + .../item/fiery_hollow_leggings_dyed.json | 1 + .../models/item/fiery_kuudra_core.json | 1 + .../models/item/fiery_terror_boots.json | 1 + .../models/item/fiery_terror_boots_dyed.json | 1 + .../models/item/fiery_terror_chestplate.json | 1 + .../item/fiery_terror_chestplate_dyed.json | 1 + .../models/item/fiery_terror_leggings.json | 1 + .../item/fiery_terror_leggings_dyed.json | 1 + .../models/item/fifth_master_star.json | 1 + .../firmskyblock/models/item/fig_axe.json | 1 + .../firmskyblock/models/item/fig_boots.json | 1 + .../models/item/fig_boots_dyed.json | 1 + .../models/item/fig_chestplate.json | 1 + .../models/item/fig_chestplate_dyed.json | 1 + .../models/item/fig_leggings.json | 1 + .../models/item/fig_leggings_dyed.json | 1 + .../firmskyblock/models/item/fig_log.json | 1 + .../models/item/fighting_booster.json | 1 + .../firmskyblock/models/item/figstone.json | 1 + .../models/item/figstone_axe.json | 1 + .../models/item/filet_o_fortune.json | 1 + .../models/item/final_destination_boots.json | 1 + .../item/final_destination_boots_dyed.json | 1 + .../item/final_destination_chestplate.json | 1 + .../final_destination_chestplate_dyed.json | 1 + .../item/final_destination_leggings.json | 1 + .../item/final_destination_leggings_dyed.json | 1 + .../models/item/fine_amber_gem.json | 1 + .../models/item/fine_amethyst_gem.json | 1 + .../models/item/fine_aquamarine_gem.json | 1 + .../models/item/fine_citrine_gem.json | 1 + .../firmskyblock/models/item/fine_flour.json | 1 + .../models/item/fine_jade_gem.json | 1 + .../models/item/fine_jasper_gem.json | 1 + .../models/item/fine_onyx_gem.json | 1 + .../models/item/fine_opal_gem.json | 1 + .../models/item/fine_peridot_gem.json | 1 + .../models/item/fine_ruby_gem.json | 1 + .../models/item/fine_sapphire_gem.json | 1 + .../models/item/fine_topaz_gem.json | 1 + .../models/item/finwave_belt.json | 1 + .../models/item/finwave_cloak.json | 1 + .../models/item/finwave_gloves.json | 1 + .../models/item/fire_freeze_staff.json | 1 + .../models/item/fire_freeze_staff_hand.json | 1 + .../models/item/fire_fury_staff.json | 1 + .../models/item/fire_fury_staff_hand.json | 1 + .../firmskyblock/models/item/fire_soul.json | 1 + .../models/item/fire_spiral_rune.json | 1 + .../models/item/fire_spiral_rune_2.json | 1 + .../models/item/fire_spiral_rune_3.json | 1 + .../models/item/fire_talisman.json | 1 + .../models/item/fire_veil_wand.json | 1 + .../models/item/firedust_dagger_ashen.json | 1 + .../models/item/firedust_dagger_auric.json | 1 + .../models/item/first_master_star.json | 1 + .../models/item/fish_affinity_talisman.json | 1 + .../firmskyblock/models/item/fish_bait.json | 1 + .../firmskyblock/models/item/fish_food.json | 1 + .../models/item/fish_the_fish.json | 1 + .../models/item/fishing_crystal.json | 1 + .../models/item/fishing_xp_boost_potion.json | 1 + .../item/fishing_xp_boost_splash_potion.json | 1 + .../firmskyblock/models/item/fishy_treat.json | 1 + .../models/item/flame_breaker_boots.json | 1 + .../models/item/flame_breaker_boots_dyed.json | 1 + .../models/item/flame_breaker_chestplate.json | 1 + .../item/flame_breaker_chestplate_dyed.json | 1 + .../models/item/flame_breaker_helmet.json | 1 + .../item/flame_breaker_helmet_dyed.json | 1 + .../models/item/flame_breaker_leggings.json | 1 + .../item/flame_breaker_leggings_dyed.json | 1 + .../models/item/flamebreaker_boots.json | 1 + .../models/item/flamebreaker_boots_dyed.json | 1 + .../models/item/flamebreaker_chestplate.json | 1 + .../item/flamebreaker_chestplate_dyed.json | 1 + .../models/item/flamebreaker_helmet.json | 1 + .../models/item/flamebreaker_helmet_dyed.json | 1 + .../models/item/flamebreaker_leggings.json | 1 + .../item/flamebreaker_leggings_dyed.json | 1 + .../firmskyblock/models/item/flames.json | 1 + .../models/item/flaming_chestplate.json | 1 + .../models/item/flaming_chestplate_dyed.json | 1 + .../models/item/flaming_fist.json | 1 + .../models/item/flaming_flay.json | 1 + .../models/item/flaming_flay_cast.json | 1 + .../models/item/flaming_heart.json | 1 + .../models/item/flaming_sword.json | 1 + .../models/item/flawed_amber_gem.json | 1 + .../models/item/flawed_amethyst_gem.json | 1 + .../models/item/flawed_aquamarine_gem.json | 1 + .../models/item/flawed_citrine_gem.json | 1 + .../models/item/flawed_jade_gem.json | 1 + .../models/item/flawed_jasper_gem.json | 1 + .../models/item/flawed_onyx_gem.json | 1 + .../models/item/flawed_opal_gem.json | 1 + .../models/item/flawed_peridot_gem.json | 1 + .../models/item/flawed_ruby_gem.json | 1 + .../models/item/flawed_sapphire_gem.json | 1 + .../models/item/flawed_topaz_gem.json | 1 + .../models/item/flawless_amber_gem.json | 1 + .../models/item/flawless_amethyst_gem.json | 1 + .../models/item/flawless_aquamarine_gem.json | 1 + .../models/item/flawless_citrine_gem.json | 1 + .../models/item/flawless_jade_gem.json | 1 + .../models/item/flawless_jasper_gem.json | 1 + .../models/item/flawless_onyx_gem.json | 1 + .../models/item/flawless_opal_gem.json | 1 + .../models/item/flawless_peridot_gem.json | 1 + .../models/item/flawless_ruby_gem.json | 1 + .../models/item/flawless_sapphire_gem.json | 1 + .../models/item/flawless_topaz_gem.json | 1 + .../firmskyblock/models/item/flexbone.json | 1 + .../firmskyblock/models/item/flint_arrow.json | 1 + .../models/item/flint_shovel.json | 1 + .../models/item/florid_zombie_sword.json | 1 + .../models/item/florid_zombie_sword_heal.json | 1 + .../models/item/flower_carpet_rune.json | 1 + .../models/item/flower_carpet_rune_2.json | 1 + .../models/item/flower_carpet_rune_3.json | 1 + .../models/item/flower_maelstrom.json | 1 + .../models/item/flower_of_truth.json | 1 + .../firmskyblock/models/item/flower_sack.json | 1 + .../models/item/flowering_bouquet.json | 1 + .../firmskyblock/models/item/fly_swatter.json | 1 + .../models/item/flycatcher_upgrade.json | 1 + .../models/item/flyfish_bronze.json | 1 + .../models/item/flyfish_diamond.json | 1 + .../models/item/flyfish_gold.json | 1 + .../models/item/flyfish_silver.json | 1 + .../models/item/footprint_fossil.json | 1 + .../models/item/foraging_1_travel_scroll.json | 1 + .../models/item/foraging_2_travel_scroll.json | 1 + .../models/item/foraging_fortune_booster.json | 1 + .../models/item/foraging_wisdom_booster.json | 1 + .../models/item/foraging_xp_boost_potion.json | 1 + .../item/foraging_xp_boost_splash_potion.json | 1 + .../models/item/forest_biome_stick.json | 1 + .../models/item/forest_island_crystal.json | 1 + .../models/item/forge_travel_scroll.json | 1 + .../models/item/fossil_the_fish.json | 1 + .../firmskyblock/models/item/foul_flesh.json | 1 + .../models/item/four_eyed_fish.json | 1 + .../models/item/fourth_master_star.json | 1 + .../item/fractured_mithril_pickaxe.json | 1 + .../item/framed_volcanic_stonefish.json | 1 + .../firmskyblock/models/item/free_spider.json | 1 + .../firmskyblock/models/item/free_will.json | 1 + .../models/item/french_fries.json | 1 + .../models/item/freshly_minted_coins.json | 1 + .../models/item/fried_feather.json | 1 + .../models/item/fried_frozen_chicken.json | 1 + .../firmskyblock/models/item/frigid_husk.json | 1 + .../firmskyblock/models/item/frog_mask.json | 1 + .../firmskyblock/models/item/frosty_crux.json | 1 + .../models/item/frosty_snow_ball.json | 1 + .../models/item/frozen_amulet.json | 1 + .../firmskyblock/models/item/frozen_bait.json | 1 + .../models/item/frozen_bauble.json | 1 + .../models/item/frozen_blaze_boots.json | 1 + .../models/item/frozen_blaze_boots_dyed.json | 1 + .../models/item/frozen_blaze_chestplate.json | 1 + .../item/frozen_blaze_chestplate_dyed.json | 1 + .../models/item/frozen_blaze_leggings.json | 1 + .../item/frozen_blaze_leggings_dyed.json | 1 + .../models/item/frozen_chicken.json | 1 + .../models/item/frozen_scythe.json | 1 + .../models/item/frozen_scythe_hand.json | 1 + .../models/item/frozen_spider.json | 1 + .../models/item/frozen_water.json | 1 + .../models/item/frozen_water_pungi.json | 1 + .../firmskyblock/models/item/fruit_bowl.json | 1 + .../firmskyblock/models/item/ftx_3070.json | 1 + .../models/item/fudge_mint_core.json | 1 + .../models/item/fudge_mint_core_blink.json | 1 + .../models/item/fuel_gabagool.json | 1 + .../firmskyblock/models/item/fuel_tank.json | 1 + .../models/item/full_century_cake_pack.json | 1 + .../models/item/full_chum_bucket.json | 1 + .../models/item/full_chumcap_bucket.json | 1 + .../models/item/full_jaw_fanging_kit.json | 1 + .../models/item/fuming_potato_book.json | 1 + .../models/item/fungi_cutter_brown.json | 1 + .../models/item/fungi_cutter_brown_2.json | 1 + .../models/item/fungi_cutter_brown_3.json | 1 + .../firmskyblock/models/item/furball.json | 1 + .../models/item/future_calories.json | 1 + .../models/item/gabagoey_mixin.json | 1 + .../models/item/gabagool_the_fish.json | 1 + .../models/item/game_annihilator.json | 1 + .../models/item/ganache_chocolate_slab.json | 1 + .../firmskyblock/models/item/garden_sack.json | 1 + .../models/item/garden_scythe.json | 1 + .../models/item/garden_scythe_hand.json | 1 + .../item/garlic_flavored_gummy_bear.json | 1 + .../models/item/gauntlet_of_contagion.json | 1 + .../models/item/gazing_pearl.json | 1 + .../firmskyblock/models/item/gem_rune.json | 1 + .../firmskyblock/models/item/gem_rune_2.json | 1 + .../firmskyblock/models/item/gem_rune_3.json | 1 + .../models/item/gemstone_chamber.json | 1 + .../models/item/gemstone_fuel_tank.json | 1 + .../models/item/gemstone_gauntlet.json | 1 + .../models/item/gemstone_gauntlet_amber.json | 1 + .../item/gemstone_gauntlet_amethyst.json | 1 + .../models/item/gemstone_gauntlet_full.json | 1 + .../models/item/gemstone_gauntlet_jade.json | 1 + .../models/item/gemstone_gauntlet_model.json | 1 + .../item/gemstone_gauntlet_model_amber.json | 1 + .../gemstone_gauntlet_model_amethyst.json | 1 + .../item/gemstone_gauntlet_model_full.json | 1 + .../item/gemstone_gauntlet_model_jade.json | 1 + .../gemstone_gauntlet_model_sapphire.json | 1 + .../item/gemstone_gauntlet_model_topaz.json | 1 + .../item/gemstone_gauntlet_sapphire.json | 1 + .../models/item/gemstone_gauntlet_topaz.json | 1 + .../models/item/gemstone_mixture.json | 1 + .../models/item/gemstone_powder.json | 1 + .../models/item/general_medallion.json | 1 + .../item/generator_upgrade_stone_clay_12.json | 1 + .../generator_upgrade_stone_fishing_12.json | 1 + .../generator_upgrade_stone_revenant_12.json | 1 + .../generator_upgrade_stone_tarantula_12.json | 1 + .../firmskyblock/models/item/ghast_cloak.json | 1 + .../firmskyblock/models/item/ghost_boots.json | 1 + .../models/item/ghoul_buster.json | 1 + .../models/item/ghoul_buster_hand.json | 1 + .../models/item/giant_bouncy_beach_ball.json | 1 + .../models/item/giant_cleaver.json | 1 + .../models/item/giant_cleaver_hand.json | 1 + .../models/item/giant_fishing_rod.json | 1 + .../models/item/giant_fishing_rod_cast.json | 1 + .../item/giant_fishing_rod_cast_hand.json | 1 + .../models/item/giant_fishing_rod_hand.json | 1 + .../models/item/giant_flesh_hand.json | 1 + .../models/item/giant_fragment_bigfoot.json | 1 + .../models/item/giant_fragment_boulder.json | 1 + .../models/item/giant_fragment_diamond.json | 1 + .../models/item/giant_fragment_laser.json | 1 + .../models/item/giant_frog_treat.json | 1 + .../models/item/giant_the_fish.json | 1 + .../models/item/giant_the_fish_hand.json | 1 + .../firmskyblock/models/item/giant_tooth.json | 1 + .../models/item/giants_eye_sword.json | 1 + .../models/item/giants_eye_sword_hand.json | 1 + .../models/item/giants_sword.json | 1 + .../models/item/giants_sword_hand.json | 1 + .../models/item/gift_black_backpack.json | 1 + .../item/gift_black_backpack_applied.json | 1 + .../models/item/gift_blue_backpack.json | 1 + .../item/gift_blue_backpack_applied.json | 1 + .../models/item/gift_compass.json | 1 + .../models/item/gift_gold_backpack.json | 1 + .../item/gift_gold_backpack_applied.json | 1 + .../models/item/gift_green_backpack.json | 1 + .../item/gift_green_backpack_applied.json | 1 + .../models/item/gift_of_learning.json | 1 + .../models/item/gift_purple_backpack.json | 1 + .../item/gift_purple_backpack_applied.json | 1 + .../models/item/gift_the_fish.json | 1 + .../models/item/gift_white_backpack.json | 1 + .../item/gift_white_backpack_applied.json | 1 + .../models/item/giftbag_of_the_century.json | 1 + .../models/item/gill_membrane.json | 1 + .../models/item/gillsplash_belt.json | 1 + .../models/item/gillsplash_cloak.json | 1 + .../models/item/gillsplash_gloves.json | 1 + .../models/item/glacial_fragment.json | 1 + .../models/item/glacial_ring.json | 1 + .../models/item/glacial_scythe.json | 1 + .../models/item/glacial_scythe_hand.json | 1 + .../models/item/glacial_talisman.json | 1 + .../firmskyblock/models/item/glacite.json | 1 + .../models/item/glacite_amalgamation.json | 1 + .../models/item/glacite_boots.json | 1 + .../models/item/glacite_boots_dyed.json | 1 + .../models/item/glacite_chestplate.json | 1 + .../models/item/glacite_chestplate_dyed.json | 1 + .../models/item/glacite_chisel.json | 1 + .../models/item/glacite_helmet.json | 1 + .../models/item/glacite_helmet_armor.json | 1 + .../models/item/glacite_jewel.json | 1 + .../models/item/glacite_leggings.json | 1 + .../models/item/glacite_leggings_dyed.json | 1 + .../models/item/glacite_powder.json | 1 + .../models/item/glacite_shard.json | 1 + .../models/item/gleaming_crystal.json | 1 + .../models/item/gloomlock_grimoire.json | 1 + .../models/item/glossy_gemstone.json | 1 + .../models/item/glossy_mineral_boots.json | 1 + .../item/glossy_mineral_boots_dyed.json | 1 + .../item/glossy_mineral_chestplate.json | 1 + .../item/glossy_mineral_chestplate_dyed.json | 1 + .../models/item/glossy_mineral_leggings.json | 1 + .../item/glossy_mineral_leggings_dyed.json | 1 + .../models/item/glossy_mineral_talisman.json | 1 + .../models/item/glowing_mushroom.json | 1 + .../item/glowstone_dust_distillate.json | 1 + .../models/item/glowstone_gauntlet.json | 1 + .../models/item/glowy_chum_bait.json | 1 + .../firmskyblock/models/item/glue_arrow.json | 1 + .../models/item/glyph_conclamatus.json | 1 + .../models/item/glyph_firmitas.json | 1 + .../models/item/glyph_fortis.json | 1 + .../models/item/glyph_pernimius.json | 1 + .../models/item/glyph_potentia.json | 1 + .../firmskyblock/models/item/glyph_robur.json | 1 + .../models/item/glyph_validus.json | 1 + .../firmskyblock/models/item/glyph_vis.json | 1 + .../models/item/goblin_boots.json | 1 + .../models/item/goblin_boots_dyed.json | 1 + .../models/item/goblin_chestplate.json | 1 + .../models/item/goblin_chestplate_dyed.json | 1 + .../firmskyblock/models/item/goblin_egg.json | 1 + .../models/item/goblin_egg_blue.json | 1 + .../models/item/goblin_egg_green.json | 1 + .../models/item/goblin_egg_red.json | 1 + .../models/item/goblin_egg_yellow.json | 1 + .../models/item/goblin_king_scent_potion.json | 1 + .../item/goblin_king_scent_splash_potion.json | 1 + .../models/item/goblin_leggings.json | 1 + .../models/item/goblin_leggings_dyed.json | 1 + .../models/item/goblin_omelette.json | 1 + .../item/goblin_omelette_blue_cheese.json | 1 + .../models/item/goblin_omelette_pesto.json | 1 + .../models/item/goblin_omelette_spicy.json | 1 + .../item/goblin_omelette_sunny_side.json | 1 + .../models/item/gold_bottle_cap.json | 1 + .../firmskyblock/models/item/gold_candy.json | 1 + .../firmskyblock/models/item/gold_claws.json | 1 + .../firmskyblock/models/item/gold_gift.json | 1 + .../models/item/gold_gift_talisman.json | 1 + .../models/item/gold_hunter_boots.json | 1 + .../models/item/gold_hunter_boots_dyed.json | 1 + .../models/item/gold_hunter_chestplate.json | 1 + .../item/gold_hunter_chestplate_dyed.json | 1 + .../models/item/gold_hunter_helmet.json | 1 + .../models/item/gold_hunter_helmet_dyed.json | 1 + .../models/item/gold_hunter_leggings.json | 1 + .../item/gold_hunter_leggings_dyed.json | 1 + .../models/item/gold_tipped_arrow.json | 1 + .../firmskyblock/models/item/golden_bait.json | 1 + .../firmskyblock/models/item/golden_ball.json | 1 + .../firmskyblock/models/item/golden_belt.json | 1 + .../models/item/golden_bounty.json | 1 + .../models/item/golden_carpet_rune.json | 1 + .../models/item/golden_carpet_rune_2.json | 1 + .../models/item/golden_carpet_rune_3.json | 1 + .../models/item/golden_collar.json | 1 + .../models/item/golden_collar_1st.json | 1 + .../models/item/golden_fish_bronze.json | 1 + .../models/item/golden_fish_diamond.json | 1 + .../models/item/golden_fish_gold.json | 1 + .../models/item/golden_fish_silver.json | 1 + .../models/item/golden_fragment.json | 1 + .../models/item/golden_plate.json | 1 + .../models/item/golden_powder.json | 1 + .../firmskyblock/models/item/golden_rune.json | 1 + .../models/item/golden_rune_2.json | 1 + .../models/item/golden_rune_3.json | 1 + .../models/item/golden_tooth.json | 1 + .../models/item/goldor_the_fish.json | 1 + .../models/item/golem_armor_boots.json | 1 + .../models/item/golem_armor_boots_dyed.json | 1 + .../models/item/golem_armor_chestplate.json | 1 + .../item/golem_armor_chestplate_dyed.json | 1 + .../models/item/golem_armor_helmet.json | 1 + .../models/item/golem_armor_helmet_dyed.json | 1 + .../models/item/golem_armor_leggings.json | 1 + .../item/golem_armor_leggings_dyed.json | 1 + .../firmskyblock/models/item/golem_poppy.json | 1 + .../firmskyblock/models/item/golem_sword.json | 1 + .../models/item/grand_exp_bottle.json | 1 + .../models/item/grand_freezing_rune.json | 1 + .../models/item/grand_freezing_rune_2.json | 1 + .../models/item/grand_freezing_rune_3.json | 1 + .../models/item/grand_searing_rune.json | 1 + .../models/item/grand_searing_rune_2.json | 1 + .../models/item/grand_searing_rune_3.json | 1 + .../models/item/grandmas_knitting_needle.json | 1 + .../models/item/grappling_hook.json | 1 + .../models/item/grappling_hook_cast.json | 1 + .../models/item/gravity_talisman.json | 1 + .../models/item/great_carrot_candy.json | 1 + .../models/item/great_spook_artifact.json | 1 + .../models/item/great_spook_artifact_1st.json | 1 + .../models/item/great_spook_belt.json | 1 + .../models/item/great_spook_belt_1st.json | 1 + .../models/item/great_spook_boots.json | 1 + .../models/item/great_spook_boots_1st.json | 1 + .../models/item/great_spook_chestplate.json | 1 + .../item/great_spook_chestplate_1st.json | 1 + .../models/item/great_spook_cloak.json | 1 + .../models/item/great_spook_cloak_1st.json | 1 + .../models/item/great_spook_gloves.json | 1 + .../models/item/great_spook_gloves_1st.json | 1 + .../models/item/great_spook_helmet.json | 1 + .../models/item/great_spook_helmet_1st.json | 1 + .../models/item/great_spook_leggings.json | 1 + .../models/item/great_spook_leggings_1st.json | 1 + .../models/item/great_spook_necklace.json | 1 + .../models/item/great_spook_necklace_1st.json | 1 + .../models/item/great_spook_potion.json | 1 + .../item/great_spook_reforging_manual.json | 1 + .../models/item/great_spook_ring.json | 1 + .../models/item/great_spook_ring_1st.json | 1 + .../models/item/great_spook_staff.json | 1 + .../models/item/great_spook_staff_1st.json | 1 + .../item/great_spook_staff_1st_hand.json | 1 + .../models/item/great_spook_staff_hand.json | 1 + .../models/item/great_spook_sword.json | 1 + .../models/item/great_spook_sword_1st.json | 1 + .../models/item/great_spook_talisman.json | 1 + .../models/item/great_spook_talisman_1st.json | 1 + .../models/item/great_white_shark_tooth.json | 1 + .../models/item/great_white_tooth_meal.json | 1 + .../models/item/greater_backpack.json | 1 + .../models/item/green_bandana.json | 1 + .../firmskyblock/models/item/green_candy.json | 1 + .../firmskyblock/models/item/green_egg.json | 1 + .../models/item/green_egg_applied.json | 1 + .../firmskyblock/models/item/green_gift.json | 1 + .../models/item/green_gift_talisman.json | 1 + .../models/item/green_greater_backpack.json | 1 + .../models/item/green_jumbo_backpack.json | 1 + .../models/item/green_large_backpack.json | 1 + .../models/item/green_medium_backpack.json | 1 + .../models/item/green_small_backpack.json | 1 + .../models/item/grey_greater_backpack.json | 1 + .../models/item/grey_jumbo_backpack.json | 1 + .../models/item/grey_large_backpack.json | 1 + .../models/item/grey_medium_backpack.json | 1 + .../models/item/grey_small_backpack.json | 1 + .../models/item/griffin_feather.json | 1 + .../item/griffin_upgrade_stone_epic.json | 1 + .../item/griffin_upgrade_stone_legendary.json | 1 + .../item/griffin_upgrade_stone_rare.json | 1 + .../item/griffin_upgrade_stone_uncommon.json | 1 + .../models/item/grizzly_bait.json | 1 + .../firmskyblock/models/item/grizzly_paw.json | 1 + .../models/item/growth_boots.json | 1 + .../models/item/growth_boots_dyed.json | 1 + .../models/item/growth_chestplate.json | 1 + .../models/item/growth_chestplate_dyed.json | 1 + .../models/item/growth_helmet.json | 1 + .../models/item/growth_helmet_dyed.json | 1 + .../models/item/growth_leggings.json | 1 + .../models/item/growth_leggings_dyed.json | 1 + .../models/item/guardian_chestplate.json | 1 + .../models/item/guardian_chestplate_dyed.json | 1 + .../models/item/guardian_lucky_block.json | 1 + .../models/item/gunther_sneakers.json | 1 + .../models/item/gunthesizer_lichen.json | 1 + .../models/item/gusher_bronze.json | 1 + .../models/item/gusher_diamond.json | 1 + .../firmskyblock/models/item/gusher_gold.json | 1 + .../models/item/gusher_silver.json | 1 + .../models/item/gyrokinetic_wand.json | 1 + .../models/item/half_eaten_carrot.json | 1 + .../models/item/half_eaten_mushroom.json | 1 + .../models/item/hallowed_skull.json | 1 + .../models/item/hambagger_backpack.json | 1 + .../item/hambagger_backpack_applied.json | 1 + .../models/item/hamster_wheel.json | 1 + .../models/item/hamster_wheel_spin.json | 1 + .../models/item/handy_blood_chalice.json | 1 + .../firmskyblock/models/item/happy_mask.json | 1 + .../models/item/hardened_diamond_boots.json | 1 + .../item/hardened_diamond_boots_dyed.json | 1 + .../item/hardened_diamond_chestplate.json | 1 + .../hardened_diamond_chestplate_dyed.json | 1 + .../models/item/hardened_diamond_helmet.json | 1 + .../item/hardened_diamond_helmet_dyed.json | 1 + .../item/hardened_diamond_leggings.json | 1 + .../item/hardened_diamond_leggings_dyed.json | 1 + .../models/item/hardened_wood.json | 1 + .../item/harmonious_surgery_toolkit.json | 1 + .../models/item/harvest_harbinger_potion.json | 1 + .../item/harvest_harbinger_splash_potion.json | 1 + .../models/item/haste_artifact.json | 1 + .../models/item/haste_potion.json | 1 + .../firmskyblock/models/item/haste_ring.json | 1 + .../models/item/haste_splash_potion.json | 1 + .../models/item/haunt_ability.json | 1 + .../models/item/haunt_ability_click.json | 1 + .../models/item/hazmat_enderman.json | 1 + .../firmskyblock/models/item/healing_bow.json | 1 + .../models/item/healing_bow_pulling_0.json | 1 + .../models/item/healing_bow_pulling_1.json | 1 + .../models/item/healing_bow_pulling_2.json | 1 + .../models/item/healing_melon.json | 1 + .../models/item/healing_melon_bite.json | 1 + .../models/item/healing_ring.json | 1 + .../models/item/healing_talisman.json | 1 + .../models/item/healing_tissue.json | 1 + .../models/item/heartfire_dagger_ashen.json | 1 + .../models/item/heartfire_dagger_auric.json | 1 + .../models/item/heartmaw_dagger_crystal.json | 1 + .../models/item/heartmaw_dagger_spirit.json | 1 + .../firmskyblock/models/item/hearts_rune.json | 1 + .../models/item/hearts_rune_2.json | 1 + .../models/item/hearts_rune_3.json | 1 + .../models/item/heartsplosion_rune.json | 1 + .../models/item/heartsplosion_rune_2.json | 1 + .../models/item/heartsplosion_rune_3.json | 1 + .../firmskyblock/models/item/heat_boots.json | 1 + .../models/item/heat_boots_dyed.json | 1 + .../models/item/heat_chestplate.json | 1 + .../models/item/heat_chestplate_dyed.json | 1 + .../firmskyblock/models/item/heat_core.json | 1 + .../firmskyblock/models/item/heat_helmet.json | 1 + .../models/item/heat_helmet_dyed.json | 1 + .../models/item/heat_leggings.json | 1 + .../models/item/heat_leggings_dyed.json | 1 + .../firmskyblock/models/item/heavy_boots.json | 1 + .../models/item/heavy_boots_dyed.json | 1 + .../models/item/heavy_chestplate.json | 1 + .../models/item/heavy_chestplate_dyed.json | 1 + .../models/item/heavy_gabagool.json | 1 + .../models/item/heavy_helmet.json | 1 + .../models/item/heavy_helmet_dyed.json | 1 + .../models/item/heavy_leggings.json | 1 + .../models/item/heavy_leggings_dyed.json | 1 + .../firmskyblock/models/item/heavy_pearl.json | 1 + .../models/item/hegemony_artifact.json | 1 + .../firmskyblock/models/item/helix.json | 1 + .../models/item/hellfire_rod.json | 1 + .../models/item/hellfire_rod_cast.json | 1 + .../models/item/hellstorm_staff.json | 1 + .../models/item/hellstorm_staff_hand.json | 1 + .../models/item/helmet_of_the_pack.json | 1 + .../models/item/helmet_of_the_pack_dyed.json | 1 + .../firmskyblock/models/item/hemobomb.json | 1 + .../firmskyblock/models/item/hemoglass.json | 1 + .../firmskyblock/models/item/hemovibe.json | 1 + .../models/item/herring_the_fish.json | 1 + .../item/high_class_archfiend_dice.json | 1 + .../firmskyblock/models/item/highlite.json | 1 + .../models/item/hilt_of_true_ice.json | 1 + .../models/item/hocus_pocus_cipher.json | 1 + .../models/item/hoe_of_great_tilling.json | 1 + .../models/item/hoe_of_greater_tilling.json | 1 + .../models/item/hoe_of_greatest_tilling.json | 1 + .../models/item/hoe_of_no_tilling.json | 1 + .../item/holiday_chest_ender_backpack.json | 1 + .../holiday_chest_ender_backpack_applied.json | 1 + .../item/holiday_chest_green_backpack.json | 1 + .../holiday_chest_green_backpack_applied.json | 1 + .../item/holiday_chest_red_backpack.json | 1 + .../holiday_chest_red_backpack_applied.json | 1 + .../item/holiday_chest_teal_backpack.json | 1 + .../holiday_chest_teal_backpack_applied.json | 1 + .../item/holiday_chest_yellow_backpack.json | 1 + ...holiday_chest_yellow_backpack_applied.json | 1 + .../models/item/hollow_boots.json | 1 + .../models/item/hollow_boots_dyed.json | 1 + .../models/item/hollow_chestplate.json | 1 + .../models/item/hollow_chestplate_dyed.json | 1 + .../models/item/hollow_leggings.json | 1 + .../models/item/hollow_leggings_dyed.json | 1 + .../firmskyblock/models/item/hollow_wand.json | 1 + .../models/item/hollow_wand_left.json | 1 + .../models/item/hollow_wand_right.json | 1 + .../firmskyblock/models/item/hologram.json | 1 + .../models/item/holy_dragon_boots.json | 1 + .../models/item/holy_dragon_boots_dyed.json | 1 + .../models/item/holy_dragon_chestplate.json | 1 + .../item/holy_dragon_chestplate_dyed.json | 1 + .../models/item/holy_dragon_leggings.json | 1 + .../item/holy_dragon_leggings_dyed.json | 1 + .../models/item/holy_fragment.json | 1 + .../firmskyblock/models/item/holy_ice.json | 1 + .../models/item/holy_ice_splash.json | 1 + .../item/honed_shark_tooth_necklace.json | 1 + .../firmskyblock/models/item/honey_jar.json | 1 + .../models/item/hope_of_the_resistance.json | 1 + .../item/hope_of_the_resistance_hand.json | 1 + .../models/item/horn_of_taurus.json | 1 + .../models/item/horns_of_torment.json | 1 + .../models/item/horseman_candle.json | 1 + .../firmskyblock/models/item/horsezooka.json | 1 + .../models/item/hot_aurora_boots.json | 1 + .../models/item/hot_aurora_boots_dyed.json | 1 + .../models/item/hot_aurora_chestplate.json | 1 + .../item/hot_aurora_chestplate_dyed.json | 1 + .../models/item/hot_aurora_leggings.json | 1 + .../models/item/hot_aurora_leggings_dyed.json | 1 + .../firmskyblock/models/item/hot_bait.json | 1 + .../models/item/hot_chocolate.json | 1 + .../models/item/hot_chocolate_mixin.json | 1 + .../models/item/hot_cocoa_backpack.json | 1 + .../item/hot_cocoa_backpack_applied.json | 1 + .../models/item/hot_crimson_boots.json | 1 + .../models/item/hot_crimson_boots_dyed.json | 1 + .../models/item/hot_crimson_chestplate.json | 1 + .../item/hot_crimson_chestplate_dyed.json | 1 + .../models/item/hot_crimson_leggings.json | 1 + .../item/hot_crimson_leggings_dyed.json | 1 + .../firmskyblock/models/item/hot_dog.json | 1 + .../models/item/hot_fervor_boots.json | 1 + .../models/item/hot_fervor_boots_dyed.json | 1 + .../models/item/hot_fervor_chestplate.json | 1 + .../item/hot_fervor_chestplate_dyed.json | 1 + .../models/item/hot_fervor_leggings.json | 1 + .../models/item/hot_fervor_leggings_dyed.json | 1 + .../models/item/hot_hollow_boots.json | 1 + .../models/item/hot_hollow_boots_dyed.json | 1 + .../models/item/hot_hollow_chestplate.json | 1 + .../item/hot_hollow_chestplate_dyed.json | 1 + .../models/item/hot_hollow_leggings.json | 1 + .../models/item/hot_hollow_leggings_dyed.json | 1 + .../models/item/hot_potato_book.json | 1 + .../firmskyblock/models/item/hot_rune.json | 1 + .../firmskyblock/models/item/hot_rune_2.json | 1 + .../firmskyblock/models/item/hot_rune_3.json | 1 + .../firmskyblock/models/item/hot_stuff.json | 1 + .../models/item/hot_terror_boots.json | 1 + .../models/item/hot_terror_boots_dyed.json | 1 + .../models/item/hot_terror_chestplate.json | 1 + .../item/hot_terror_chestplate_dyed.json | 1 + .../models/item/hot_terror_leggings.json | 1 + .../models/item/hot_terror_leggings_dyed.json | 1 + .../models/item/hotspot_bait.json | 1 + .../models/item/hotspot_hook.json | 1 + .../models/item/hotspot_radar.json | 1 + .../models/item/hotspot_sinker.json | 1 + .../models/item/hotspot_water_orb.json | 1 + .../models/item/hub_castle_travel_scroll.json | 1 + .../models/item/hub_crypts_travel_scroll.json | 1 + .../models/item/hub_da_travel_scroll.json | 1 + .../item/hub_wizard_tower_travel_scroll.json | 1 + .../models/item/hunter_knife.json | 1 + .../firmskyblock/models/item/hunter_ring.json | 1 + .../models/item/hunter_talisman.json | 1 + .../models/item/hunting_toolkit.json | 1 + .../models/item/hurricane_bow.json | 1 + .../models/item/hurricane_bow_pulling_0.json | 1 + .../models/item/hurricane_bow_pulling_1.json | 1 + .../models/item/hurricane_bow_pulling_2.json | 1 + .../models/item/hurricane_in_a_bottle.json | 1 + .../item/hurricane_in_a_bottle_empty.json | 1 + .../models/item/hydra1_boots.json | 1 + .../models/item/hydra1_chestplate.json | 1 + .../models/item/hydra1_leggings.json | 1 + .../models/item/hyper_catalyst.json | 1 + .../models/item/hyper_catalyst_upgrade.json | 1 + .../models/item/hyper_cleaver.json | 1 + .../models/item/hypergolic_gabagool.json | 1 + .../item/hypergolic_ionized_ceramics.json | 1 + .../firmskyblock/models/item/hyperion.json | 1 + .../firmskyblock/models/item/ice_bait.json | 1 + .../firmskyblock/models/item/ice_cube.json | 1 + .../firmskyblock/models/item/ice_hunk.json | 1 + .../firmskyblock/models/item/ice_rod.json | 1 + .../models/item/ice_rod_cast.json | 1 + .../firmskyblock/models/item/ice_rune.json | 1 + .../firmskyblock/models/item/ice_rune_2.json | 1 + .../firmskyblock/models/item/ice_rune_3.json | 1 + .../models/item/ice_skates_rune.json | 1 + .../models/item/ice_skates_rune_2.json | 1 + .../models/item/ice_skates_rune_3.json | 1 + .../models/item/ice_spray_wand.json | 1 + .../models/item/ichthyic_belt.json | 1 + .../models/item/ichthyic_cloak.json | 1 + .../models/item/ichthyic_gloves.json | 1 + .../firmskyblock/models/item/icy_arrow.json | 1 + .../firmskyblock/models/item/icy_sinker.json | 1 + .../models/item/implosion_belt.json | 1 + .../models/item/implosion_scroll.json | 1 + .../models/item/infernal_aurora_boots.json | 1 + .../item/infernal_aurora_boots_dyed.json | 1 + .../item/infernal_aurora_chestplate.json | 1 + .../item/infernal_aurora_chestplate_dyed.json | 1 + .../models/item/infernal_aurora_leggings.json | 1 + .../item/infernal_aurora_leggings_dyed.json | 1 + .../models/item/infernal_crimson_boots.json | 1 + .../item/infernal_crimson_boots_dyed.json | 1 + .../item/infernal_crimson_chestplate.json | 1 + .../infernal_crimson_chestplate_dyed.json | 1 + .../item/infernal_crimson_leggings.json | 1 + .../item/infernal_crimson_leggings_dyed.json | 1 + .../models/item/infernal_fervor_boots.json | 1 + .../item/infernal_fervor_boots_dyed.json | 1 + .../item/infernal_fervor_chestplate.json | 1 + .../item/infernal_fervor_chestplate_dyed.json | 1 + .../models/item/infernal_fervor_leggings.json | 1 + .../item/infernal_fervor_leggings_dyed.json | 1 + .../models/item/infernal_hollow_boots.json | 1 + .../item/infernal_hollow_boots_dyed.json | 1 + .../item/infernal_hollow_chestplate.json | 1 + .../item/infernal_hollow_chestplate_dyed.json | 1 + .../models/item/infernal_hollow_leggings.json | 1 + .../item/infernal_hollow_leggings_dyed.json | 1 + .../models/item/infernal_kuudra_core.json | 1 + .../models/item/infernal_terror_boots.json | 1 + .../item/infernal_terror_boots_dyed.json | 1 + .../item/infernal_terror_chestplate.json | 1 + .../item/infernal_terror_chestplate_dyed.json | 1 + .../models/item/infernal_terror_leggings.json | 1 + .../item/infernal_terror_leggings_dyed.json | 1 + .../models/item/inferno_apex.json | 1 + .../models/item/inferno_fuel_blaze_rod.json | 1 + .../models/item/inferno_fuel_block.json | 1 + .../item/inferno_fuel_crude_gabagool.json | 1 + .../item/inferno_fuel_glowstone_dust.json | 1 + .../models/item/inferno_fuel_magma_cream.json | 1 + .../item/inferno_fuel_nether_stalk.json | 1 + .../models/item/inferno_heavy_blaze_rod.json | 1 + .../item/inferno_heavy_crude_gabagool.json | 1 + .../item/inferno_heavy_glowstone_dust.json | 1 + .../item/inferno_heavy_magma_cream.json | 1 + .../item/inferno_heavy_nether_stalk.json | 1 + .../item/inferno_hypergolic_blaze_rod.json | 1 + .../inferno_hypergolic_crude_gabagool.json | 1 + .../inferno_hypergolic_glowstone_dust.json | 1 + .../item/inferno_hypergolic_magma_cream.json | 1 + .../item/inferno_hypergolic_nether_stalk.json | 1 + .../firmskyblock/models/item/inferno_rod.json | 1 + .../models/item/inferno_rod_cast.json | 1 + .../models/item/inferno_vertex.json | 1 + .../models/item/infini_vacuum.json | 1 + .../models/item/infini_vacuum_hooverius.json | 1 + .../models/item/infinidirt_wand.json | 1 + .../models/item/infinite_spirit_leap.json | 1 + .../models/item/infinite_superboom_tnt.json | 1 + .../models/item/inflatable_jerry.json | 1 + .../firmskyblock/models/item/ink_wand.json | 1 + .../models/item/ink_wand_ink_bomb.json | 1 + .../models/item/intimidation_artifact.json | 1 + .../models/item/intimidation_relic.json | 1 + .../models/item/intimidation_ring.json | 1 + .../models/item/intimidation_talisman.json | 1 + .../firmskyblock/models/item/iq_point.json | 1 + .../firmskyblock/models/item/island_npc.json | 1 + .../models/item/item_spirit_bow.json | 1 + .../item/item_spirit_bow_pulling_0.json | 1 + .../item/item_spirit_bow_pulling_1.json | 1 + .../item/item_spirit_bow_pulling_2.json | 1 + .../models/item/jacobs_ticket.json | 1 + .../models/item/jacobus_register.json | 1 + .../firmskyblock/models/item/jade_belt.json | 1 + .../models/item/jade_crystal.json | 1 + .../firmskyblock/models/item/jade_drill.json | 1 + .../models/item/jade_drill_drilling.json | 1 + .../models/item/jade_power_scroll.json | 1 + .../firmskyblock/models/item/jaderald.json | 1 + .../models/item/jake_plushie.json | 1 + .../models/item/jalapeno_book.json | 1 + .../firmskyblock/models/item/jar_of_sand.json | 1 + .../models/item/jasper_crystal.json | 1 + .../models/item/jasper_drill.json | 1 + .../models/item/jasper_drill_drilling.json | 1 + .../models/item/jasper_power_scroll.json | 1 + .../models/item/jerry_box_blue.json | 1 + .../models/item/jerry_box_golden.json | 1 + .../models/item/jerry_box_green.json | 1 + .../models/item/jerry_box_mega.json | 1 + .../models/item/jerry_box_purple.json | 1 + .../firmskyblock/models/item/jerry_candy.json | 1 + .../firmskyblock/models/item/jerry_rune.json | 1 + .../models/item/jerry_rune_2.json | 1 + .../models/item/jerry_rune_3.json | 1 + .../firmskyblock/models/item/jerry_staff.json | 1 + .../models/item/jerry_staff_hand.json | 1 + .../firmskyblock/models/item/jerry_stone.json | 1 + .../models/item/jerry_talisman_blue.json | 1 + .../models/item/jerry_talisman_golden.json | 1 + .../models/item/jerry_talisman_green.json | 1 + .../models/item/jerry_talisman_purple.json | 1 + .../models/item/jingle_bells.json | 1 + .../models/item/judgement_core.json | 1 + .../models/item/judgement_core_blink.json | 1 + .../models/item/juicy_healing_melon.json | 1 + .../models/item/juicy_healing_melon_bite.json | 1 + .../models/item/juju_shortbow.json | 1 + .../models/item/juju_shortbow_pulling_0.json | 1 + .../models/item/juju_shortbow_pulling_1.json | 1 + .../models/item/juju_shortbow_pulling_2.json | 1 + .../models/item/jumbo_backpack.json | 1 + .../models/item/jumbo_backpack_upgrade.json | 1 + .../models/item/jungle_amulet.json | 1 + .../firmskyblock/models/item/jungle_axe.json | 1 + .../models/item/jungle_biome_stick.json | 1 + .../models/item/jungle_heart.json | 1 + .../firmskyblock/models/item/jungle_key.json | 1 + .../models/item/jungle_pickaxe.json | 1 + .../models/item/junk_artifact.json | 1 + .../firmskyblock/models/item/junk_ring.json | 1 + .../firmskyblock/models/item/junk_sinker.json | 1 + .../models/item/junk_talisman.json | 1 + .../firmskyblock/models/item/kada_lead.json | 1 + .../models/item/kalhuiki_mask.json | 1 + .../models/item/karate_fish_bronze.json | 1 + .../models/item/karate_fish_diamond.json | 1 + .../models/item/karate_fish_gold.json | 1 + .../models/item/karate_fish_silver.json | 1 + .../firmskyblock/models/item/kat_bouquet.json | 1 + .../firmskyblock/models/item/kat_flower.json | 1 + .../models/item/kelly_tshirt.json | 1 + .../models/item/kelly_tshirt_dyed.json | 1 + .../models/item/kelvin_inverter.json | 1 + .../firmskyblock/models/item/key_a.json | 1 + .../firmskyblock/models/item/key_b.json | 1 + .../firmskyblock/models/item/key_c.json | 1 + .../firmskyblock/models/item/key_d.json | 1 + .../firmskyblock/models/item/key_f.json | 1 + .../firmskyblock/models/item/key_s.json | 1 + .../models/item/key_to_kat_soul.json | 1 + .../firmskyblock/models/item/key_x.json | 1 + .../models/item/king_talisman.json | 1 + .../models/item/kismet_feather.json | 1 + .../firmskyblock/models/item/kloonboat.json | 1 + .../models/item/knockback_potion.json | 1 + .../models/item/knockback_splash_potion.json | 1 + .../models/item/knockoff_cola.json | 1 + .../models/item/knuckle_sandwich.json | 1 + .../models/item/kuudra_burning_tier_key.json | 1 + .../models/item/kuudra_cavity.json | 1 + .../models/item/kuudra_cavity_common.json | 1 + .../models/item/kuudra_cavity_epic.json | 1 + .../models/item/kuudra_cavity_rare.json | 1 + .../models/item/kuudra_cavity_special.json | 1 + .../models/item/kuudra_cavity_uncommon.json | 1 + .../models/item/kuudra_fiery_tier_key.json | 1 + .../models/item/kuudra_follower_artifact.json | 1 + .../models/item/kuudra_follower_boots.json | 1 + .../item/kuudra_follower_boots_dyed.json | 1 + .../item/kuudra_follower_chestplate.json | 1 + .../item/kuudra_follower_chestplate_dyed.json | 1 + .../models/item/kuudra_follower_leggings.json | 1 + .../item/kuudra_follower_leggings_dyed.json | 1 + .../models/item/kuudra_follower_relic.json | 1 + .../models/item/kuudra_hot_tier_key.json | 1 + .../models/item/kuudra_infernal_tier_key.json | 1 + .../models/item/kuudra_mandible.json | 1 + .../models/item/kuudra_relic.json | 1 + .../models/item/kuudra_teeth.json | 1 + .../models/item/kuudra_tier_key.json | 1 + .../models/item/kuudra_washing_machine.json | 1 + .../firmskyblock/models/item/lamp_black.json | 1 + .../firmskyblock/models/item/lamp_blue.json | 1 + .../firmskyblock/models/item/lamp_brown.json | 1 + .../firmskyblock/models/item/lamp_cyan.json | 1 + .../firmskyblock/models/item/lamp_gray.json | 1 + .../firmskyblock/models/item/lamp_green.json | 1 + .../models/item/lamp_light_blue.json | 1 + .../models/item/lamp_light_gray.json | 1 + .../firmskyblock/models/item/lamp_lilac.json | 1 + .../firmskyblock/models/item/lamp_lime.json | 1 + .../models/item/lamp_magenta.json | 1 + .../firmskyblock/models/item/lamp_orange.json | 1 + .../firmskyblock/models/item/lamp_pink.json | 1 + .../firmskyblock/models/item/lamp_purple.json | 1 + .../models/item/lamp_rainbow.json | 1 + .../firmskyblock/models/item/lamp_red.json | 1 + .../firmskyblock/models/item/lamp_white.json | 1 + .../firmskyblock/models/item/lamp_yellow.json | 1 + .../models/item/lantern_of_the_dead.json | 1 + .../models/item/lapis_armor_boots.json | 1 + .../models/item/lapis_armor_boots_dyed.json | 1 + .../models/item/lapis_armor_chestplate.json | 1 + .../item/lapis_armor_chestplate_dyed.json | 1 + .../models/item/lapis_armor_helmet.json | 1 + .../models/item/lapis_armor_helmet_armor.json | 1 + .../models/item/lapis_armor_leggings.json | 1 + .../item/lapis_armor_leggings_dyed.json | 1 + .../models/item/lapis_crystal.json | 1 + .../models/item/lapis_pickaxe.json | 1 + .../models/item/large_agronomy_sack.json | 1 + .../models/item/large_backpack.json | 1 + .../models/item/large_candy_sack.json | 1 + .../models/item/large_combat_sack.json | 1 + .../models/item/large_dragon_sack.json | 1 + .../models/item/large_dungeon_sack.json | 1 + .../item/large_enchanted_agronomy_sack.json | 1 + .../item/large_enchanted_combat_sack.json | 1 + .../item/large_enchanted_fishing_sack.json | 1 + .../item/large_enchanted_foraging_sack.json | 1 + .../item/large_enchanted_husbandry_sack.json | 1 + .../item/large_enchanted_mining_sack.json | 1 + .../models/item/large_events_sack.json | 1 + .../models/item/large_fish_bowl.json | 1 + .../models/item/large_fishing_sack.json | 1 + .../models/item/large_foraging_sack.json | 1 + .../models/item/large_frog_treat.json | 1 + .../models/item/large_gemstone_sack.json | 1 + .../models/item/large_husbandry_sack.json | 1 + .../models/item/large_lava_fishing_sack.json | 1 + .../models/item/large_mining_sack.json | 1 + .../models/item/large_nether_sack.json | 1 + .../models/item/large_runes_sack.json | 1 + .../models/item/large_scaffolding.json | 1 + .../models/item/large_slayer_sack.json | 1 + .../models/item/large_walnut.json | 1 + .../models/item/large_winter_sack.json | 1 + .../firmskyblock/models/item/larva_hook.json | 1 + .../models/item/larva_hook_damaged.json | 1 + .../firmskyblock/models/item/larva_silk.json | 1 + .../firmskyblock/models/item/last_breath.json | 1 + .../models/item/last_breath_pulling_0.json | 1 + .../models/item/last_breath_pulling_1.json | 1 + .../models/item/last_breath_pulling_2.json | 1 + .../models/item/lava_horse_bronze.json | 1 + .../models/item/lava_horse_diamond.json | 1 + .../models/item/lava_horse_gold.json | 1 + .../models/item/lava_horse_silver.json | 1 + .../firmskyblock/models/item/lava_rune.json | 1 + .../firmskyblock/models/item/lava_rune_2.json | 1 + .../firmskyblock/models/item/lava_rune_3.json | 1 + .../firmskyblock/models/item/lava_shell.json | 1 + .../models/item/lava_shell_necklace.json | 1 + .../models/item/lava_talisman.json | 1 + .../models/item/lava_water_orb.json | 1 + .../models/item/lavatears_rune.json | 1 + .../models/item/lavatears_rune_2.json | 1 + .../models/item/lavatears_rune_3.json | 1 + .../models/item/leaflet_boots.json | 1 + .../models/item/leaflet_boots_dyed.json | 1 + .../models/item/leaflet_chestplate.json | 1 + .../models/item/leaflet_chestplate_dyed.json | 1 + .../models/item/leaflet_helmet.json | 1 + .../models/item/leaflet_helmet_armor.json | 1 + .../models/item/leaflet_leggings.json | 1 + .../models/item/leaflet_leggings_dyed.json | 1 + .../models/item/leaping_sword.json | 1 + .../models/item/leather_cloth.json | 1 + .../firmskyblock/models/item/leech_belt.json | 1 + .../models/item/leech_supreme_fragment.json | 1 + .../firmskyblock/models/item/leech_sword.json | 1 + .../firmskyblock/models/item/legend_rod.json | 1 + .../models/item/legend_rod_cast.json | 1 + .../models/item/legendary_kuudra_chunk.json | 1 + .../models/item/leggings_of_the_coven.json | 1 + .../models/item/leggings_of_the_pack.json | 1 + .../item/leggings_of_the_pack_dyed.json | 1 + .../firmskyblock/models/item/light_bait.json | 1 + .../item/light_blue_greater_backpack.json | 1 + .../item/light_blue_jumbo_backpack.json | 1 + .../item/light_blue_large_backpack.json | 1 + .../item/light_blue_medium_backpack.json | 1 + .../item/light_blue_small_backpack.json | 1 + .../item/light_grey_greater_backpack.json | 1 + .../item/light_grey_jumbo_backpack.json | 1 + .../item/light_grey_large_backpack.json | 1 + .../item/light_grey_medium_backpack.json | 1 + .../item/light_grey_small_backpack.json | 1 + .../models/item/lightning_rune.json | 1 + .../models/item/lightning_rune_2.json | 1 + .../models/item/lightning_rune_3.json | 1 + .../firmskyblock/models/item/lil_pad.json | 1 + .../models/item/lime_greater_backpack.json | 1 + .../models/item/lime_jumbo_backpack.json | 1 + .../models/item/lime_large_backpack.json | 1 + .../models/item/lime_medium_backpack.json | 1 + .../models/item/lime_small_backpack.json | 1 + .../item/lively_sepulture_chestplate.json | 1 + .../models/item/livid_dagger.json | 1 + .../models/item/livid_fragment.json | 1 + .../models/item/living_metal.json | 1 + .../models/item/living_metal_anvil.json | 1 + .../models/item/lm_egg_boots.json | 1 + .../firmskyblock/models/item/lm_egg_cap.json | 1 + .../models/item/lm_egg_chest.json | 1 + .../firmskyblock/models/item/lm_egg_legs.json | 1 + .../firmskyblock/models/item/lotus_belt.json | 1 + .../models/item/lotus_bracelet.json | 1 + .../firmskyblock/models/item/lotus_cloak.json | 1 + .../models/item/lotus_necklace.json | 1 + .../models/item/loudmouth_bass.json | 1 + .../models/item/loudmouth_bass_divine.json | 1 + .../models/item/luck_booster.json | 1 + .../models/item/luck_talisman.json | 1 + .../firmskyblock/models/item/lucky_dice.json | 1 + .../firmskyblock/models/item/lucky_hoof.json | 1 + .../models/item/lumino_fiber.json | 1 + .../models/item/luminous_bracelet.json | 1 + .../models/item/lump_of_magma.json | 1 + .../models/item/luscious_healing_melon.json | 1 + .../item/luscious_healing_melon_bite.json | 1 + .../models/item/lush_artifact.json | 1 + .../models/item/lush_berberis.json | 1 + .../firmskyblock/models/item/lush_ring.json | 1 + .../models/item/lush_talisman.json | 1 + .../firmskyblock/models/item/lushlilac.json | 1 + .../models/item/lushlilac_bonbon.json | 1 + .../models/item/luxurious_spool.json | 1 + .../models/item/lynx_talisman.json | 1 + .../models/item/machine_gun_bow.json | 1 + .../item/machine_gun_bow_pulling_0.json | 1 + .../item/machine_gun_bow_pulling_1.json | 1 + .../item/machine_gun_bow_pulling_2.json | 1 + .../models/item/magenta_greater_backpack.json | 1 + .../models/item/magenta_jumbo_backpack.json | 1 + .../models/item/magenta_large_backpack.json | 1 + .../models/item/magenta_medium_backpack.json | 1 + .../models/item/magenta_small_backpack.json | 1 + .../models/item/magic_8_ball.json | 1 + .../models/item/magic_find_potion.json | 1 + .../models/item/magic_find_splash_potion.json | 1 + .../models/item/magic_mushroom_soup.json | 1 + .../models/item/magic_top_hat.json | 1 + .../models/item/magical_rune.json | 1 + .../models/item/magical_rune_2.json | 1 + .../models/item/magical_rune_3.json | 1 + .../firmskyblock/models/item/magma_arrow.json | 1 + .../firmskyblock/models/item/magma_bow.json | 1 + .../models/item/magma_bow_pulling_0.json | 1 + .../models/item/magma_bow_pulling_1.json | 1 + .../models/item/magma_bow_pulling_2.json | 1 + .../models/item/magma_bucket.json | 1 + .../firmskyblock/models/item/magma_chunk.json | 1 + .../firmskyblock/models/item/magma_core.json | 1 + .../models/item/magma_cream_distillate.json | 1 + .../firmskyblock/models/item/magma_fish.json | 1 + .../models/item/magma_fish_diamond.json | 1 + .../models/item/magma_fish_gold.json | 1 + .../models/item/magma_fish_silver.json | 1 + .../models/item/magma_lord_boots.json | 1 + .../models/item/magma_lord_boots_dyed.json | 1 + .../models/item/magma_lord_chestplate.json | 1 + .../item/magma_lord_chestplate_dyed.json | 1 + .../models/item/magma_lord_fragment.json | 1 + .../models/item/magma_lord_gauntlet.json | 1 + .../models/item/magma_lord_leggings.json | 1 + .../models/item/magma_lord_leggings_dyed.json | 1 + .../models/item/magma_necklace.json | 1 + .../firmskyblock/models/item/magma_rod.json | 1 + .../models/item/magma_rod_cast.json | 1 + .../models/item/magma_urchin.json | 1 + .../firmskyblock/models/item/magmag.json | 1 + .../models/item/magnetic_talisman.json | 1 + .../firmskyblock/models/item/mana_potion.json | 1 + .../models/item/mana_ray_bronze.json | 1 + .../models/item/mana_ray_diamond.json | 1 + .../models/item/mana_ray_gold.json | 1 + .../models/item/mana_ray_silver.json | 1 + .../models/item/mana_splash_potion.json | 1 + .../firmskyblock/models/item/mandraa.json | 1 + .../firmskyblock/models/item/mangcore.json | 1 + .../models/item/mangrove_gem.json | 1 + .../models/item/mangrove_grippers.json | 1 + .../models/item/mangrove_locket.json | 1 + .../models/item/mangrove_vine.json | 1 + .../models/item/marsh_spore_soup.json | 1 + .../models/item/master_catacombs_pass_10.json | 1 + .../models/item/master_catacombs_pass_3.json | 1 + .../models/item/master_catacombs_pass_4.json | 1 + .../models/item/master_catacombs_pass_5.json | 1 + .../models/item/master_catacombs_pass_6.json | 1 + .../models/item/master_catacombs_pass_7.json | 1 + .../models/item/master_catacombs_pass_8.json | 1 + .../models/item/master_catacombs_pass_9.json | 1 + .../models/item/master_skull_tier_1.json | 1 + .../models/item/master_skull_tier_10.json | 1 + .../models/item/master_skull_tier_2.json | 1 + .../models/item/master_skull_tier_3.json | 1 + .../models/item/master_skull_tier_4.json | 1 + .../models/item/master_skull_tier_5.json | 1 + .../models/item/master_skull_tier_6.json | 1 + .../models/item/master_skull_tier_7.json | 1 + .../models/item/master_skull_tier_8.json | 1 + .../models/item/master_skull_tier_9.json | 1 + .../models/item/mastiff_boots.json | 1 + .../models/item/mastiff_boots_dyed.json | 1 + .../models/item/mastiff_chestplate.json | 1 + .../models/item/mastiff_chestplate_dyed.json | 1 + .../models/item/mastiff_leggings.json | 1 + .../models/item/mastiff_leggings_dyed.json | 1 + .../models/item/match_sticks.json | 1 + .../models/item/matriarch_parfum.json | 1 + .../item/matriarch_parfum_spraying.json | 1 + .../models/item/mawdust_dagger_crystal.json | 1 + .../models/item/mawdust_dagger_spirit.json | 1 + .../models/item/maxor_the_fish.json | 1 + .../models/item/mcgrubber_burger.json | 1 + .../models/item/mediocre_fish_drawing.json | 1 + .../models/item/medium_agronomy_sack.json | 1 + .../models/item/medium_backpack.json | 1 + .../models/item/medium_combat_sack.json | 1 + .../models/item/medium_dragon_sack.json | 1 + .../models/item/medium_fish_bowl.json | 1 + .../models/item/medium_fishing_net.json | 1 + .../models/item/medium_fishing_sack.json | 1 + .../models/item/medium_foraging_sack.json | 1 + .../models/item/medium_frog_treat.json | 1 + .../models/item/medium_gemstone_sack.json | 1 + .../models/item/medium_husbandry_sack.json | 1 + .../models/item/medium_lava_fishing_sack.json | 1 + .../models/item/medium_mining_sack.json | 1 + .../models/item/medium_nether_sack.json | 1 + .../models/item/medium_pocket_black_hole.json | 1 + .../models/item/medium_runes_sack.json | 1 + .../models/item/medium_scaffolding.json | 1 + .../models/item/medium_slayer_sack.json | 1 + .../firmskyblock/models/item/melody_hair.json | 1 + .../models/item/melody_shoes.json | 1 + .../models/item/melody_shoes_dyed.json | 1 + .../firmskyblock/models/item/melon_boots.json | 1 + .../models/item/melon_boots_dyed.json | 1 + .../models/item/melon_chestplate.json | 1 + .../models/item/melon_chestplate_dyed.json | 1 + .../firmskyblock/models/item/melon_dicer.json | 1 + .../models/item/melon_dicer_2.json | 1 + .../models/item/melon_dicer_3.json | 1 + .../models/item/melon_helmet.json | 1 + .../models/item/melon_helmet_armor.json | 1 + .../models/item/melon_leggings.json | 1 + .../models/item/melon_leggings_dyed.json | 1 + .../models/item/meow_music_rune.json | 1 + .../models/item/meow_music_rune_2.json | 1 + .../models/item/meow_music_rune_3.json | 1 + .../models/item/mercenary_axe.json | 1 + .../models/item/mercenary_boots.json | 1 + .../models/item/mercenary_boots_dyed.json | 1 + .../models/item/mercenary_chestplate.json | 1 + .../item/mercenary_chestplate_dyed.json | 1 + .../models/item/mercenary_helmet.json | 1 + .../models/item/mercenary_helmet_dyed.json | 1 + .../models/item/mercenary_leggings.json | 1 + .../models/item/mercenary_leggings_dyed.json | 1 + .../models/item/mesa_biome_stick.json | 1 + .../models/item/metal_chestplate.json | 1 + .../models/item/metal_chestplate_dyed.json | 1 + .../firmskyblock/models/item/metal_heart.json | 1 + .../models/item/metaphoric_egg.json | 1 + .../models/item/metaphysical_serum.json | 1 + .../models/item/meteor_shard.json | 1 + .../firmskyblock/models/item/midas_jewel.json | 1 + .../firmskyblock/models/item/midas_staff.json | 1 + .../models/item/midas_staff_hand.json | 1 + .../firmskyblock/models/item/midas_sword.json | 1 + .../models/item/millenia_old_blaze_ashes.json | 1 + .../models/item/mimic_fragment.json | 1 + .../models/item/mine_talisman.json | 1 + .../models/item/miner_outfit_boots.json | 1 + .../models/item/miner_outfit_boots_dyed.json | 1 + .../models/item/miner_outfit_chestplate.json | 1 + .../item/miner_outfit_chestplate_dyed.json | 1 + .../models/item/miner_outfit_helmet.json | 1 + .../models/item/miner_outfit_helmet_dyed.json | 1 + .../models/item/miner_outfit_leggings.json | 1 + .../item/miner_outfit_leggings_dyed.json | 1 + .../models/item/mineral_boots.json | 1 + .../models/item/mineral_boots_dyed.json | 1 + .../models/item/mineral_chestplate.json | 1 + .../models/item/mineral_chestplate_dyed.json | 1 + .../models/item/mineral_leggings.json | 1 + .../models/item/mineral_leggings_dyed.json | 1 + .../models/item/mineral_talisman.json | 1 + .../models/item/mini_fish_bowl.json | 1 + .../models/item/miniaturized_tubulator.json | 1 + .../models/item/mining_1_travel_scroll.json | 1 + .../models/item/mining_2_travel_scroll.json | 1 + .../models/item/mining_3_travel_scroll.json | 1 + .../models/item/mining_pumpkin.json | 1 + .../models/item/mining_raffle_ticket.json | 1 + .../models/item/mining_xp_boost_potion.json | 1 + .../item/mining_xp_boost_splash_potion.json | 1 + .../models/item/minion_storage_expander.json | 1 + .../firmskyblock/models/item/minnow_bait.json | 1 + .../firmskyblock/models/item/minos_relic.json | 1 + .../models/item/mirrored_bow.json | 1 + .../models/item/mirrored_bow_pulling_0.json | 1 + .../models/item/mirrored_bow_pulling_1.json | 1 + .../models/item/mirrored_bow_pulling_2.json | 1 + .../models/item/mirrored_fishing_rod.json | 1 + .../item/mirrored_fishing_rod_cast.json | 1 + .../firmskyblock/models/item/mite_gel.json | 1 + .../models/item/mithril_belt.json | 1 + .../models/item/mithril_cloak.json | 1 + .../models/item/mithril_coat.json | 1 + .../models/item/mithril_coat_dyed.json | 1 + .../models/item/mithril_crystal.json | 1 + .../models/item/mithril_drill.json | 1 + .../models/item/mithril_drill_drilling.json | 1 + .../models/item/mithril_drill_engine.json | 1 + .../models/item/mithril_fuel_tank.json | 1 + .../models/item/mithril_gauntlet.json | 1 + .../models/item/mithril_gourmand.json | 1 + .../models/item/mithril_infusion.json | 1 + .../models/item/mithril_necklace.json | 1 + .../firmskyblock/models/item/mithril_ore.json | 1 + .../models/item/mithril_pickaxe.json | 1 + .../models/item/mithril_plate.json | 1 + .../models/item/mithril_powder.json | 1 + .../models/item/mixed_mite_gel.json | 1 + .../models/item/mob_the_fish.json | 1 + .../firmskyblock/models/item/moby_duck.json | 1 + .../item/moby_duck_collector_edition.json | 1 + .../models/item/mobys_shears.json | 1 + .../firmskyblock/models/item/moil_log.json | 1 + .../models/item/moldfin_bronze.json | 1 + .../models/item/moldfin_diamond.json | 1 + .../models/item/moldfin_gold.json | 1 + .../models/item/moldfin_silver.json | 1 + .../models/item/moldy_muffin.json | 1 + .../firmskyblock/models/item/molten_belt.json | 1 + .../models/item/molten_bracelet.json | 1 + .../models/item/molten_cloak.json | 1 + .../firmskyblock/models/item/molten_cube.json | 1 + .../models/item/molten_necklace.json | 1 + .../models/item/molten_powder.json | 1 + .../models/item/moody_grappleshot.json | 1 + .../models/item/moogma_leggings.json | 1 + .../models/item/moogma_leggings_dyed.json | 1 + .../firmskyblock/models/item/moogma_pelt.json | 1 + .../models/item/moonglade_artifact.json | 1 + .../models/item/moonglade_jewel.json | 1 + .../models/item/moonglade_ring.json | 1 + .../models/item/moonglade_talisman.json | 1 + .../models/item/mosquito_bow.json | 1 + .../models/item/mosquito_bow_pulling_0.json | 1 + .../models/item/mosquito_bow_pulling_1.json | 1 + .../models/item/mosquito_bow_pulling_2.json | 1 + .../models/item/mouse_pest_trap.json | 1 + .../models/item/murkwater_travel_scroll.json | 1 + .../models/item/museum_travel_scroll.json | 1 + .../item/mushed_glowy_tonic_potion.json | 1 + .../mushed_glowy_tonic_splash_potion.json | 1 + .../models/item/mushed_mushroom_mixin.json | 1 + .../models/item/mushroom_biome_stick.json | 1 + .../models/item/mushroom_boots.json | 1 + .../models/item/mushroom_boots_dyed.json | 1 + .../models/item/mushroom_chestplate.json | 1 + .../models/item/mushroom_chestplate_dyed.json | 1 + .../models/item/mushroom_cow_axe.json | 1 + .../models/item/mushroom_helmet.json | 1 + .../models/item/mushroom_helmet_dyed.json | 1 + .../models/item/mushroom_leggings.json | 1 + .../models/item/mushroom_leggings_dyed.json | 1 + .../models/item/mushroom_spore.json | 1 + .../firmskyblock/models/item/music_pants.json | 1 + .../firmskyblock/models/item/music_rune.json | 1 + .../models/item/music_rune_2.json | 1 + .../models/item/music_rune_3.json | 1 + .../models/item/mutant_nether_stalk.json | 1 + .../models/item/mutated_blaze_ashes.json | 1 + .../firmskyblock/models/item/muted_bark.json | 1 + .../models/item/mycelium_dust.json | 1 + .../models/item/mysterious_crop.json | 1 + .../models/item/mysterious_meat.json | 1 + .../models/item/mysterious_package.json | 1 + .../models/item/nansorb_arrow.json | 1 + .../models/item/nearly_coherent_rod.json | 1 + .../models/item/nearly_whole_carrot.json | 1 + .../models/item/necromancer_brooch.json | 1 + .../models/item/necromancer_lord_boots.json | 1 + .../item/necromancer_lord_boots_dyed.json | 1 + .../item/necromancer_lord_chestplate.json | 1 + .../necromancer_lord_chestplate_dyed.json | 1 + .../item/necromancer_lord_leggings.json | 1 + .../item/necromancer_lord_leggings_dyed.json | 1 + .../models/item/necromancer_sword.json | 1 + .../models/item/necron_blade.json | 1 + .../models/item/necron_handle.json | 1 + .../models/item/necrons_ladder.json | 1 + .../models/item/nether_biome_stick.json | 1 + .../nether_fortress_boss_travel_scroll.json | 1 + ...ether_fortress_boss_travel_scroll_old.json | 1 + .../models/item/nether_stalk_distillate.json | 1 + .../item/nether_wart_island_crystal.json | 1 + .../item/netherrack_looking_sunshade.json | 1 + .../models/item/new_year_cake.json | 1 + .../models/item/new_year_cake_bag.json | 1 + .../models/item/new_year_cake_bag_empty.json | 1 + .../models/item/new_year_cake_bag_full.json | 1 + .../firmskyblock/models/item/nex_titanum.json | 1 + .../models/item/nibble_chocolate_stick.json | 1 + .../models/item/night_crystal.json | 1 + .../firmskyblock/models/item/night_saver.json | 1 + .../models/item/night_vision_charm.json | 1 + .../models/item/nightmare_nullifier.json | 1 + .../firmskyblock/models/item/noisy_pearl.json | 1 + .../models/item/nope_the_fish.json | 1 + .../models/item/north_star_backpack.json | 1 + .../item/north_star_backpack_applied.json | 1 + .../models/item/not_deadgehog_mask.json | 1 + .../firmskyblock/models/item/nova_sword.json | 1 + .../models/item/novice_skull.json | 1 + .../firmskyblock/models/item/null_atom.json | 1 + .../firmskyblock/models/item/null_blade.json | 1 + .../firmskyblock/models/item/null_edge.json | 1 + .../firmskyblock/models/item/null_ovoid.json | 1 + .../firmskyblock/models/item/null_sphere.json | 1 + .../models/item/null_sphere_locked.json | 1 + .../models/item/nullified_metal.json | 1 + .../models/item/nurse_shark_tooth.json | 1 + .../models/item/nutcracker_boots.json | 1 + .../models/item/nutcracker_boots_dyed.json | 1 + .../models/item/nutcracker_chestplate.json | 1 + .../item/nutcracker_chestplate_dyed.json | 1 + .../models/item/nutcracker_leggings.json | 1 + .../models/item/nutcracker_leggings_dyed.json | 1 + .../firmskyblock/models/item/oasis_hook.json | 1 + .../models/item/obfuscated_fish_1_bronze.json | 1 + .../item/obfuscated_fish_1_diamond.json | 1 + .../models/item/obfuscated_fish_1_gold.json | 1 + .../models/item/obfuscated_fish_1_silver.json | 1 + .../models/item/obfuscated_fish_2_bronze.json | 1 + .../item/obfuscated_fish_2_diamond.json | 1 + .../models/item/obfuscated_fish_2_gold.json | 1 + .../models/item/obfuscated_fish_2_silver.json | 1 + .../models/item/obfuscated_fish_3_bronze.json | 1 + .../item/obfuscated_fish_3_diamond.json | 1 + .../models/item/obfuscated_fish_3_gold.json | 1 + .../models/item/obfuscated_fish_3_silver.json | 1 + .../models/item/obscure_ending.json | 1 + .../models/item/obsidian_chestplate.json | 1 + .../models/item/obsidian_chestplate_dyed.json | 1 + .../models/item/obsidian_tablet.json | 1 + .../firmskyblock/models/item/obsolite.json | 1 + .../firmskyblock/models/item/oceandy.json | 1 + .../models/item/octopus_tendril.json | 1 + .../models/item/odgers_bronze_tooth.json | 1 + .../models/item/odgers_diamond_tooth.json | 1 + .../models/item/odgers_gold_tooth.json | 1 + .../models/item/odgers_silver_tooth.json | 1 + .../firmskyblock/models/item/oil_barrel.json | 1 + .../models/item/old_dragon_boots.json | 1 + .../models/item/old_dragon_boots_dyed.json | 1 + .../models/item/old_dragon_chestplate.json | 1 + .../item/old_dragon_chestplate_dyed.json | 1 + .../models/item/old_dragon_leggings.json | 1 + .../models/item/old_dragon_leggings_dyed.json | 1 + .../models/item/old_fragment.json | 1 + .../models/item/old_leather_boot.json | 1 + .../firmskyblock/models/item/omega_egg.json | 1 + .../assets/firmskyblock/models/item/onyx.json | 1 + .../models/item/onyx_crystal.json | 1 + .../models/item/oops_the_fish.json | 1 + .../models/item/opal_crystal.json | 1 + .../models/item/opal_power_scroll.json | 1 + .../models/item/optical_lens.json | 1 + .../models/item/orange_chestplate.json | 1 + .../models/item/orange_greater_backpack.json | 1 + .../models/item/orange_jumbo_backpack.json | 1 + .../models/item/orange_large_backpack.json | 1 + .../models/item/orange_medium_backpack.json | 1 + .../models/item/orange_small_backpack.json | 1 + .../models/item/orb_of_energy.json | 1 + .../models/item/ornamental_rune.json | 1 + .../models/item/ornamental_rune_2.json | 1 + .../models/item/ornamental_rune_3.json | 1 + .../models/item/ornate_zombie_sword.json | 1 + .../models/item/ornate_zombie_sword_heal.json | 1 + .../models/item/overflowing_trash_can.json | 1 + .../models/item/overflux_capacitor.json | 1 + .../models/item/overgrown_grass.json | 1 + .../models/item/oxford_shoes.json | 1 + .../models/item/paint_cartridge.json | 1 + .../models/item/painters_palette.json | 1 + .../models/item/painters_palette_1st.json | 1 + .../models/item/pandoras_box.json | 1 + .../models/item/pandoras_box_epic.json | 1 + .../models/item/pandoras_box_legendary.json | 1 + .../models/item/pandoras_box_mythic.json | 1 + .../models/item/pandoras_box_rare.json | 1 + .../models/item/pandoras_box_uncommon.json | 1 + .../models/item/park_cave_travel_scroll.json | 1 + .../item/park_jungle_travel_scroll.json | 1 + .../models/item/parkour_controller.json | 1 + .../models/item/parkour_point.json | 1 + .../models/item/parkour_times.json | 1 + .../firmskyblock/models/item/parrot_mask.json | 1 + .../firmskyblock/models/item/party_belt.json | 1 + .../firmskyblock/models/item/party_cloak.json | 1 + .../firmskyblock/models/item/party_gift.json | 1 + .../models/item/party_gloves.json | 1 + .../firmskyblock/models/item/party_hat.json | 1 + .../models/item/party_hat_dyed.json | 1 + .../models/item/party_necklace.json | 1 + .../models/item/party_the_fish.json | 1 + .../firmskyblock/models/item/pelt_belt.json | 1 + .../models/item/penguin_backpack.json | 1 + .../models/item/penguin_backpack_applied.json | 1 + .../models/item/perfect_amber_gem.json | 1 + .../models/item/perfect_amethyst_gem.json | 1 + .../models/item/perfect_aquamarine_gem.json | 1 + .../models/item/perfect_boots_1.json | 1 + .../models/item/perfect_boots_10.json | 1 + .../models/item/perfect_boots_10_dyed.json | 1 + .../models/item/perfect_boots_11.json | 1 + .../models/item/perfect_boots_11_dyed.json | 1 + .../models/item/perfect_boots_12.json | 1 + .../models/item/perfect_boots_12_dyed.json | 1 + .../models/item/perfect_boots_13.json | 1 + .../models/item/perfect_boots_13_dyed.json | 1 + .../models/item/perfect_boots_1_dyed.json | 1 + .../models/item/perfect_boots_2.json | 1 + .../models/item/perfect_boots_2_dyed.json | 1 + .../models/item/perfect_boots_3.json | 1 + .../models/item/perfect_boots_3_dyed.json | 1 + .../models/item/perfect_boots_4.json | 1 + .../models/item/perfect_boots_4_dyed.json | 1 + .../models/item/perfect_boots_5.json | 1 + .../models/item/perfect_boots_5_dyed.json | 1 + .../models/item/perfect_boots_6.json | 1 + .../models/item/perfect_boots_6_dyed.json | 1 + .../models/item/perfect_boots_7.json | 1 + .../models/item/perfect_boots_7_dyed.json | 1 + .../models/item/perfect_boots_8.json | 1 + .../models/item/perfect_boots_8_dyed.json | 1 + .../models/item/perfect_boots_9.json | 1 + .../models/item/perfect_boots_9_dyed.json | 1 + .../models/item/perfect_chestplate_1.json | 1 + .../models/item/perfect_chestplate_10.json | 1 + .../item/perfect_chestplate_10_dyed.json | 1 + .../models/item/perfect_chestplate_11.json | 1 + .../item/perfect_chestplate_11_dyed.json | 1 + .../models/item/perfect_chestplate_12.json | 1 + .../item/perfect_chestplate_12_dyed.json | 1 + .../models/item/perfect_chestplate_13.json | 1 + .../item/perfect_chestplate_13_dyed.json | 1 + .../item/perfect_chestplate_1_dyed.json | 1 + .../models/item/perfect_chestplate_2.json | 1 + .../item/perfect_chestplate_2_dyed.json | 1 + .../models/item/perfect_chestplate_3.json | 1 + .../item/perfect_chestplate_3_dyed.json | 1 + .../models/item/perfect_chestplate_4.json | 1 + .../item/perfect_chestplate_4_dyed.json | 1 + .../models/item/perfect_chestplate_5.json | 1 + .../item/perfect_chestplate_5_dyed.json | 1 + .../models/item/perfect_chestplate_6.json | 1 + .../item/perfect_chestplate_6_dyed.json | 1 + .../models/item/perfect_chestplate_7.json | 1 + .../item/perfect_chestplate_7_dyed.json | 1 + .../models/item/perfect_chestplate_8.json | 1 + .../item/perfect_chestplate_8_dyed.json | 1 + .../models/item/perfect_chestplate_9.json | 1 + .../item/perfect_chestplate_9_dyed.json | 1 + .../models/item/perfect_chisel.json | 1 + .../models/item/perfect_citrine_gem.json | 1 + .../models/item/perfect_helmet_1.json | 1 + .../models/item/perfect_helmet_10.json | 1 + .../models/item/perfect_helmet_10_dyed.json | 1 + .../models/item/perfect_helmet_11.json | 1 + .../models/item/perfect_helmet_11_dyed.json | 1 + .../models/item/perfect_helmet_12.json | 1 + .../models/item/perfect_helmet_12_dyed.json | 1 + .../models/item/perfect_helmet_13.json | 1 + .../models/item/perfect_helmet_13_dyed.json | 1 + .../models/item/perfect_helmet_1_dyed.json | 1 + .../models/item/perfect_helmet_2.json | 1 + .../models/item/perfect_helmet_2_dyed.json | 1 + .../models/item/perfect_helmet_3.json | 1 + .../models/item/perfect_helmet_3_dyed.json | 1 + .../models/item/perfect_helmet_4.json | 1 + .../models/item/perfect_helmet_4_dyed.json | 1 + .../models/item/perfect_helmet_5.json | 1 + .../models/item/perfect_helmet_5_dyed.json | 1 + .../models/item/perfect_helmet_6.json | 1 + .../models/item/perfect_helmet_6_dyed.json | 1 + .../models/item/perfect_helmet_7.json | 1 + .../models/item/perfect_helmet_7_dyed.json | 1 + .../models/item/perfect_helmet_8.json | 1 + .../models/item/perfect_helmet_8_dyed.json | 1 + .../models/item/perfect_helmet_9.json | 1 + .../models/item/perfect_helmet_9_dyed.json | 1 + .../models/item/perfect_hopper.json | 1 + .../models/item/perfect_hopper_coins.json | 1 + .../models/item/perfect_jade_gem.json | 1 + .../models/item/perfect_jasper_gem.json | 1 + .../models/item/perfect_leggings_1.json | 1 + .../models/item/perfect_leggings_10.json | 1 + .../models/item/perfect_leggings_10_dyed.json | 1 + .../models/item/perfect_leggings_11.json | 1 + .../models/item/perfect_leggings_11_dyed.json | 1 + .../models/item/perfect_leggings_12.json | 1 + .../models/item/perfect_leggings_12_dyed.json | 1 + .../models/item/perfect_leggings_13.json | 1 + .../models/item/perfect_leggings_13_dyed.json | 1 + .../models/item/perfect_leggings_1_dyed.json | 1 + .../models/item/perfect_leggings_2.json | 1 + .../models/item/perfect_leggings_2_dyed.json | 1 + .../models/item/perfect_leggings_3.json | 1 + .../models/item/perfect_leggings_3_dyed.json | 1 + .../models/item/perfect_leggings_4.json | 1 + .../models/item/perfect_leggings_4_dyed.json | 1 + .../models/item/perfect_leggings_5.json | 1 + .../models/item/perfect_leggings_5_dyed.json | 1 + .../models/item/perfect_leggings_6.json | 1 + .../models/item/perfect_leggings_6_dyed.json | 1 + .../models/item/perfect_leggings_7.json | 1 + .../models/item/perfect_leggings_7_dyed.json | 1 + .../models/item/perfect_leggings_8.json | 1 + .../models/item/perfect_leggings_8_dyed.json | 1 + .../models/item/perfect_leggings_9.json | 1 + .../models/item/perfect_leggings_9_dyed.json | 1 + .../models/item/perfect_onyx_gem.json | 1 + .../models/item/perfect_opal_gem.json | 1 + .../models/item/perfect_peridot_gem.json | 1 + .../models/item/perfect_plate.json | 1 + .../models/item/perfect_ruby_gem.json | 1 + .../models/item/perfect_sapphire_gem.json | 1 + .../models/item/perfect_topaz_gem.json | 1 + .../models/item/perfectly_cut_diamond.json | 1 + .../models/item/perfectly_cut_fuel_tank.json | 1 + .../models/item/peridot_crystal.json | 1 + .../models/item/personal_bank_item.json | 1 + .../models/item/personal_compactor_4000.json | 1 + .../models/item/personal_compactor_5000.json | 1 + .../models/item/personal_compactor_6000.json | 1 + .../models/item/personal_compactor_7000.json | 1 + .../models/item/personal_deletor_4000.json | 1 + .../models/item/personal_deletor_5000.json | 1 + .../models/item/personal_deletor_6000.json | 1 + .../models/item/personal_deletor_7000.json | 1 + .../models/item/pest_repellent.json | 1 + .../models/item/pest_repellent_max.json | 1 + .../models/item/pest_repellent_spraying.json | 1 + .../firmskyblock/models/item/pest_trap.json | 1 + .../firmskyblock/models/item/pest_vest.json | 1 + .../models/item/pesthunter_artifact.json | 1 + .../models/item/pesthunter_badge.json | 1 + .../models/item/pesthunter_ring.json | 1 + .../models/item/pesthunters_belt.json | 1 + .../models/item/pesthunters_cloak.json | 1 + .../models/item/pesthunters_gloves.json | 1 + .../models/item/pesthunters_necklace.json | 1 + .../models/item/pesthunting_guide.json | 1 + .../models/item/pestilence_rune.json | 1 + .../models/item/pestilence_rune_2.json | 1 + .../models/item/pestilence_rune_3.json | 1 + .../firmskyblock/models/item/pet_cake.json | 1 + .../item/pet_item_all_skills_boost.json | 1 + .../models/item/pet_item_big_teeth.json | 1 + .../models/item/pet_item_bubblegum.json | 1 + .../item/pet_item_chocolate_syringe.json | 1 + .../models/item/pet_item_exp_share.json | 1 + .../models/item/pet_item_exp_share_drop.json | 1 + .../models/item/pet_item_flying_pig.json | 1 + .../models/item/pet_item_hardened_scales.json | 1 + .../models/item/pet_item_iron_claws.json | 1 + .../models/item/pet_item_lucky_clover.json | 1 + .../item/pet_item_lucky_clover_drop.json | 1 + .../item/pet_item_pure_mithril_gem.json | 1 + .../models/item/pet_item_quick_claw.json | 1 + .../models/item/pet_item_sharpened_claws.json | 1 + .../item/pet_item_skill_boost_common.json | 1 + .../item/pet_item_skill_boost_epic.json | 1 + .../item/pet_item_skill_boost_legendary.json | 1 + .../item/pet_item_skill_boost_rare.json | 1 + .../item/pet_item_skill_boost_uncommon.json | 1 + .../models/item/pet_item_spooky_cupcake.json | 1 + .../models/item/pet_item_textbook.json | 1 + .../models/item/pet_item_tier_boost.json | 1 + .../models/item/pet_item_tier_boost_drop.json | 1 + .../item/pet_item_titanium_minecart.json | 1 + .../models/item/pet_item_toy_jerry.json | 1 + .../models/item/pet_item_vampire_fang.json | 1 + .../models/item/pet_luck_potion.json | 1 + .../models/item/pet_luck_splash_potion.json | 1 + .../models/item/petrified_starfall.json | 1 + .../models/item/phantom_hook.json | 1 + .../firmskyblock/models/item/phantom_rod.json | 1 + .../models/item/phantom_rod_cast.json | 1 + .../firmskyblock/models/item/pickonimbus.json | 1 + .../firmskyblock/models/item/pig_axe.json | 1 + .../firmskyblock/models/item/pig_mask.json | 1 + .../firmskyblock/models/item/piggy_bank.json | 1 + .../models/item/pigman_sword.json | 1 + .../firmskyblock/models/item/pigs_foot.json | 1 + .../models/item/pink_greater_backpack.json | 1 + .../models/item/pink_jumbo_backpack.json | 1 + .../models/item/pink_large_backpack.json | 1 + .../models/item/pink_medium_backpack.json | 1 + .../models/item/pink_small_backpack.json | 1 + .../firmskyblock/models/item/pitchin_koi.json | 1 + .../item/placeable_fairy_soul_rift.json | 1 + .../models/item/plant_matter.json | 1 + .../firmskyblock/models/item/plasma.json | 1 + .../models/item/plasma_bucket.json | 1 + .../models/item/plasma_nucleus.json | 1 + .../models/item/plastic_shovel.json | 1 + .../models/item/plumber_sponge.json | 1 + .../models/item/pocket_espresso_machine.json | 1 + .../models/item/pocket_iceberg.json | 1 + .../models/item/pocket_sack_in_a_sack.json | 1 + .../models/item/poem_of_infinite_love.json | 1 + .../models/item/poison_sample.json | 1 + .../models/item/poisoned_candy.json | 1 + .../models/item/poisoned_candy_potion.json | 1 + .../item/poisoned_candy_splash_potion.json | 1 + .../models/item/polarvoid_book.json | 1 + .../models/item/polished_pebble.json | 1 + .../models/item/polished_pumpkin.json | 1 + .../models/item/polished_topaz_rod.json | 1 + .../models/item/polished_topaz_rod_cast.json | 1 + .../firmskyblock/models/item/pooch_sword.json | 1 + .../models/item/poorly_wrapped_rock.json | 1 + .../models/item/portable_washer.json | 1 + .../firmskyblock/models/item/portalizer.json | 1 + .../firmskyblock/models/item/postcard.json | 1 + .../models/item/potato_crown.json | 1 + .../models/item/potato_crown_dyed.json | 1 + .../models/item/potato_silver_medal.json | 1 + .../models/item/potato_spreading.json | 1 + .../models/item/potato_talisman.json | 1 + .../models/item/potion_affinity_talisman.json | 1 + .../models/item/power_artifact.json | 1 + .../models/item/power_artifact_amber.json | 1 + .../models/item/power_artifact_amethyst.json | 1 + .../models/item/power_artifact_jade.json | 1 + .../models/item/power_artifact_jasper.json | 1 + .../models/item/power_artifact_ruby.json | 1 + .../models/item/power_artifact_sapphire.json | 1 + .../models/item/power_artifact_topaz.json | 1 + .../models/item/power_crystal.json | 1 + .../firmskyblock/models/item/power_relic.json | 1 + .../models/item/power_relic_amber.json | 1 + .../models/item/power_relic_amethyst.json | 1 + .../models/item/power_relic_aquamarine.json | 1 + .../models/item/power_relic_citrine.json | 1 + .../models/item/power_relic_jade.json | 1 + .../models/item/power_relic_jasper.json | 1 + .../models/item/power_relic_onyx.json | 1 + .../models/item/power_relic_opal.json | 1 + .../models/item/power_relic_peridot.json | 1 + .../models/item/power_relic_ruby.json | 1 + .../models/item/power_relic_sapphire.json | 1 + .../models/item/power_relic_topaz.json | 1 + .../firmskyblock/models/item/power_ring.json | 1 + .../models/item/power_ring_amber.json | 1 + .../models/item/power_ring_amethyst.json | 1 + .../models/item/power_ring_jade.json | 1 + .../models/item/power_ring_ruby.json | 1 + .../models/item/power_talisman.json | 1 + .../models/item/power_talisman_amber.json | 1 + .../models/item/power_talisman_ruby.json | 1 + .../models/item/power_wither_boots.json | 1 + .../models/item/power_wither_boots_dyed.json | 1 + .../models/item/power_wither_chestplate.json | 1 + .../item/power_wither_chestplate_dyed.json | 1 + .../models/item/power_wither_leggings.json | 1 + .../item/power_wither_leggings_dyed.json | 1 + .../models/item/pre_digestion_fish.json | 1 + .../firmskyblock/models/item/precious.json | 1 + .../models/item/precious_pearl.json | 1 + .../models/item/precursor_apparatus.json | 1 + .../models/item/precursor_gear.json | 1 + .../models/item/prehistoric_egg.json | 1 + .../models/item/prehistoric_egg_epic.json | 1 + .../item/prehistoric_egg_legendary.json | 1 + .../models/item/prehistoric_egg_rare.json | 1 + .../models/item/prehistoric_egg_uncommon.json | 1 + .../models/item/premium_flesh.json | 1 + .../models/item/pressure_artifact.json | 1 + .../models/item/pressure_ring.json | 1 + .../models/item/pressure_talisman.json | 1 + .../models/item/prestige_chocolate_realm.json | 1 + .../item/presumed_gallon_of_red_paint.json | 1 + .../models/item/priceless_the_fish.json | 1 + .../models/item/primal_dragon_boots.json | 1 + .../models/item/primal_dragon_boots_dyed.json | 1 + .../models/item/primal_dragon_chestplate.json | 1 + .../item/primal_dragon_chestplate_dyed.json | 1 + .../models/item/primal_dragon_egg.json | 1 + .../models/item/primal_dragon_heart.json | 1 + .../models/item/primal_dragon_leggings.json | 1 + .../item/primal_dragon_leggings_dyed.json | 1 + .../models/item/primal_fear_rune.json | 1 + .../models/item/primal_fear_rune_2.json | 1 + .../models/item/primal_fear_rune_3.json | 1 + .../models/item/primal_fragment.json | 1 + .../models/item/prime_lushlilac_bonbon.json | 1 + .../models/item/primordial_boots.json | 1 + .../models/item/primordial_boots_dyed.json | 1 + .../models/item/primordial_chestplate.json | 1 + .../item/primordial_chestplate_dyed.json | 1 + .../models/item/primordial_eye.json | 1 + .../models/item/primordial_leggings.json | 1 + .../models/item/primordial_leggings_dyed.json | 1 + .../firmskyblock/models/item/prismapump.json | 1 + .../models/item/prismarine_blade.json | 1 + .../models/item/prismarine_bow.json | 1 + .../models/item/prismarine_bow_pulling_0.json | 1 + .../models/item/prismarine_bow_pulling_1.json | 1 + .../models/item/prismarine_bow_pulling_2.json | 1 + .../models/item/prismarine_necklace.json | 1 + .../models/item/prismarine_rod.json | 1 + .../models/item/prismarine_rod_cast.json | 1 + .../models/item/prismarine_sinker.json | 1 + .../models/item/promising_axe.json | 1 + .../models/item/promising_hoe.json | 1 + .../models/item/promising_pickaxe.json | 1 + .../models/item/promising_spade.json | 1 + .../models/item/protector_dragon_boots.json | 1 + .../item/protector_dragon_boots_dyed.json | 1 + .../item/protector_dragon_chestplate.json | 1 + .../protector_dragon_chestplate_dyed.json | 1 + .../item/protector_dragon_leggings.json | 1 + .../item/protector_dragon_leggings_dyed.json | 1 + .../models/item/protector_fragment.json | 1 + .../models/item/protochicken.json | 1 + .../firmskyblock/models/item/puff_crux.json | 1 + .../models/item/pulpous_orange_juice.json | 1 + .../firmskyblock/models/item/pulse_ring.json | 1 + .../models/item/pulse_ring_epic.json | 1 + .../models/item/pulse_ring_legendary.json | 1 + .../models/item/pulse_ring_rare.json | 1 + .../models/item/pumpkin_boots.json | 1 + .../models/item/pumpkin_boots_dyed.json | 1 + .../models/item/pumpkin_chestplate.json | 1 + .../models/item/pumpkin_chestplate_dyed.json | 1 + .../models/item/pumpkin_dicer.json | 1 + .../models/item/pumpkin_dicer_2.json | 1 + .../models/item/pumpkin_dicer_3.json | 1 + .../models/item/pumpkin_guts.json | 1 + .../models/item/pumpkin_helmet.json | 1 + .../models/item/pumpkin_helmet_dyed.json | 1 + .../models/item/pumpkin_launcher.json | 1 + .../models/item/pumpkin_leggings.json | 1 + .../models/item/pumpkin_leggings_dyed.json | 1 + .../models/item/punchcard_artifact.json | 1 + .../models/item/pure_mithril.json | 1 + .../models/item/purple_candy.json | 1 + .../firmskyblock/models/item/purple_egg.json | 1 + .../models/item/purple_egg_applied.json | 1 + .../models/item/purple_gift_talisman.json | 1 + .../models/item/purple_greater_backpack.json | 1 + .../models/item/purple_jumbo_backpack.json | 1 + .../models/item/purple_large_backpack.json | 1 + .../models/item/purple_medium_backpack.json | 1 + .../models/item/purple_small_backpack.json | 1 + .../models/item/pyroclastic_scale.json | 1 + .../firmskyblock/models/item/quality_map.json | 1 + .../firmskyblock/models/item/rabbit_axe.json | 1 + .../models/item/rabbit_boots.json | 1 + .../models/item/rabbit_boots_dyed.json | 1 + .../models/item/rabbit_chestplate.json | 1 + .../models/item/rabbit_chestplate_dyed.json | 1 + .../models/item/rabbit_helmet.json | 1 + .../models/item/rabbit_helmet_dyed.json | 1 + .../models/item/rabbit_leggings.json | 1 + .../models/item/rabbit_leggings_dyed.json | 1 + .../models/item/rabbit_potion.json | 1 + .../models/item/rabbit_splash_potion.json | 1 + .../models/item/rabbit_the_fish.json | 1 + .../models/item/radioactive_vial.json | 1 + .../item/raggedy_shark_tooth_necklace.json | 1 + .../firmskyblock/models/item/ragna_rock.json | 1 + .../models/item/ragnarock_axe.json | 1 + .../firmskyblock/models/item/raider_axe.json | 1 + .../models/item/rainbow_feather.json | 1 + .../models/item/rainbow_rune.json | 1 + .../models/item/rainbow_rune_2.json | 1 + .../models/item/rainbow_rune_3.json | 1 + .../models/item/rainy_day_rune.json | 1 + .../models/item/rainy_day_rune_2.json | 1 + .../models/item/rainy_day_rune_3.json | 1 + .../models/item/rampart_boots.json | 1 + .../models/item/rampart_boots_dyed.json | 1 + .../models/item/rampart_chestplate.json | 1 + .../models/item/rampart_chestplate_dyed.json | 1 + .../models/item/rampart_leggings.json | 1 + .../models/item/rampart_leggings_dyed.json | 1 + .../models/item/ranchers_boots.json | 1 + .../models/item/random_century_cake_pack.json | 1 + .../models/item/rare_diamond.json | 1 + .../models/item/rare_kuudra_chunk.json | 1 + .../firmskyblock/models/item/rat_jetpack.json | 1 + .../models/item/raw_soulflow.json | 1 + .../razor_sharp_shark_tooth_necklace.json | 1 + .../models/item/reaper_boots.json | 1 + .../models/item/reaper_boots_dyed.json | 1 + .../models/item/reaper_boots_rage.json | 1 + .../models/item/reaper_chestplate.json | 1 + .../models/item/reaper_chestplate_dyed.json | 1 + .../models/item/reaper_chestplate_rage.json | 1 + .../firmskyblock/models/item/reaper_gem.json | 1 + .../models/item/reaper_leggings.json | 1 + .../models/item/reaper_leggings_dyed.json | 1 + .../models/item/reaper_leggings_rage.json | 1 + .../firmskyblock/models/item/reaper_orb.json | 1 + .../models/item/reaper_pepper.json | 1 + .../models/item/reaper_scythe.json | 1 + .../models/item/reaper_scythe_hand.json | 1 + .../models/item/reaper_sword.json | 1 + .../models/item/recall_potion.json | 1 + .../models/item/recluse_fang.json | 1 + .../models/item/recombobulator_3000.json | 1 + .../firmskyblock/models/item/red_belt.json | 1 + .../models/item/red_claw_egg.json | 1 + .../models/item/red_claw_ring.json | 1 + .../models/item/red_claw_talisman.json | 1 + .../firmskyblock/models/item/red_gift.json | 1 + .../models/item/red_greater_backpack.json | 1 + .../models/item/red_jumbo_backpack.json | 1 + .../models/item/red_large_backpack.json | 1 + .../models/item/red_medium_backpack.json | 1 + .../firmskyblock/models/item/red_nose.json | 1 + .../firmskyblock/models/item/red_scarf.json | 1 + .../models/item/red_small_backpack.json | 1 + .../models/item/red_thornleaf.json | 1 + .../models/item/red_thornleaf_tea.json | 1 + .../models/item/redstone_rune.json | 1 + .../models/item/redstone_rune_2.json | 1 + .../models/item/redstone_rune_3.json | 1 + .../models/item/redstone_tipped_arrow.json | 1 + .../firmskyblock/models/item/reed_boat.json | 1 + .../models/item/refined_amber.json | 1 + .../models/item/refined_bottle_of_jyrre.json | 1 + .../item/refined_dark_cacao_truffle.json | 1 + .../models/item/refined_diamond.json | 1 + .../models/item/refined_mineral.json | 1 + .../models/item/refined_mithril.json | 1 + .../models/item/refined_mithril_pickaxe.json | 1 + .../models/item/refined_titanium.json | 1 + .../models/item/refined_titanium_pickaxe.json | 1 + .../models/item/refined_tungsten.json | 1 + .../models/item/refined_umber.json | 1 + .../item/reheated_gummy_polar_bear.json | 1 + .../models/item/reindeer_backpack.json | 1 + .../item/reindeer_backpack_applied.json | 1 + .../models/item/reinforced_chisel.json | 1 + .../models/item/reinforced_scales.json | 1 + .../models/item/rekindled_ember_boots.json | 1 + .../item/rekindled_ember_boots_dyed.json | 1 + .../item/rekindled_ember_chestplate.json | 1 + .../item/rekindled_ember_chestplate_dyed.json | 1 + .../models/item/rekindled_ember_fragment.json | 1 + .../models/item/rekindled_ember_leggings.json | 1 + .../item/rekindled_ember_leggings_dyed.json | 1 + .../models/item/relic_of_coins.json | 1 + .../models/item/remnant_of_the_eye.json | 1 + .../models/item/repelling_candle_aqua.json | 1 + .../models/item/repelling_candle_black.json | 1 + .../models/item/repelling_candle_blue.json | 1 + .../models/item/repelling_candle_brown.json | 1 + .../models/item/repelling_candle_cyan.json | 1 + .../models/item/repelling_candle_gray.json | 1 + .../models/item/repelling_candle_green.json | 1 + .../models/item/repelling_candle_lilac.json | 1 + .../models/item/repelling_candle_orange.json | 1 + .../models/item/repelling_candle_pink.json | 1 + .../models/item/repelling_candle_purple.json | 1 + .../models/item/repelling_candle_red.json | 1 + .../models/item/repelling_candle_white.json | 1 + .../models/item/repelling_candle_yellow.json | 1 + .../models/item/resistance_potion.json | 1 + .../models/item/resistance_splash_potion.json | 1 + .../item/resource_regenerator_crystal.json | 1 + .../models/item/respiration_artifact.json | 1 + .../models/item/respiration_ring.json | 1 + .../models/item/respiration_talisman.json | 1 + .../models/item/retia_basica.json | 1 + .../models/item/retia_basica_set.json | 1 + .../firmskyblock/models/item/retia_forta.json | 1 + .../models/item/retia_forta_set.json | 1 + .../models/item/retia_meliora.json | 1 + .../models/item/retia_meliora_set.json | 1 + .../models/item/retia_robusta.json | 1 + .../models/item/retia_robusta_set.json | 1 + .../models/item/retia_suprema.json | 1 + .../models/item/retia_suprema_set.json | 1 + .../models/item/revenant_boots.json | 1 + .../models/item/revenant_boots_dyed.json | 1 + .../models/item/revenant_catalyst.json | 1 + .../models/item/revenant_chestplate.json | 1 + .../models/item/revenant_chestplate_dyed.json | 1 + .../models/item/revenant_flesh.json | 1 + .../models/item/revenant_flesh_locked.json | 1 + .../models/item/revenant_leggings.json | 1 + .../models/item/revenant_leggings_dyed.json | 1 + .../models/item/revenant_sword.json | 1 + .../models/item/revenant_viscera.json | 1 + .../firmskyblock/models/item/revenge.json | 1 + .../models/item/revive_stone.json | 1 + .../models/item/revive_stone_broken.json | 1 + .../models/item/rich_chocolate_chunk.json | 1 + .../models/item/rift_completion_memento.json | 1 + .../models/item/rift_gravity_potion.json | 1 + .../item/rift_gravity_splash_potion.json | 1 + .../models/item/rift_jump_elixir.json | 1 + .../models/item/rift_necklace_inside.json | 1 + .../models/item/rift_necklace_outside.json | 1 + .../firmskyblock/models/item/rift_prism.json | 1 + .../models/item/rift_speed_elixir.json | 1 + .../models/item/rift_stability_elixir.json | 1 + .../models/item/rift_strength_elixir.json | 1 + .../item/rift_trophy_chicken_n_egg.json | 1 + .../models/item/rift_trophy_citizen.json | 1 + .../models/item/rift_trophy_lazy_living.json | 1 + .../models/item/rift_trophy_mirrored.json | 1 + .../models/item/rift_trophy_mountain.json | 1 + .../models/item/rift_trophy_slime.json | 1 + .../models/item/rift_trophy_vampiric.json | 1 + .../item/rift_trophy_wyldly_supreme.json | 1 + .../item/rift_wizard_tower_travel_scroll.json | 1 + .../models/item/riftwart_roots.json | 1 + .../models/item/ring_of_broken_love.json | 1 + .../models/item/ring_of_coins.json | 1 + .../models/item/ring_of_eternal_love.json | 1 + .../models/item/ring_of_space.json | 1 + .../models/item/ring_potion_affinity.json | 1 + .../models/item/ritual_residue.json | 1 + .../models/item/robotron_reflector.json | 1 + .../firmskyblock/models/item/rock_candy.json | 1 + .../models/item/rock_gemstone.json | 1 + .../models/item/rock_paper_shears.json | 1 + .../models/item/rock_the_fish.json | 1 + .../models/item/rod_of_the_sea.json | 1 + .../models/item/rod_of_the_sea_cast.json | 1 + .../firmskyblock/models/item/rogue_flesh.json | 1 + .../firmskyblock/models/item/rogue_sword.json | 1 + .../item/roofed_forest_biome_stick.json | 1 + .../firmskyblock/models/item/rookie_axe.json | 1 + .../firmskyblock/models/item/rookie_hoe.json | 1 + .../models/item/rookie_pickaxe.json | 1 + .../models/item/rookie_spade.json | 1 + .../models/item/rose_bouquet.json | 1 + .../models/item/rosetta_boots.json | 1 + .../models/item/rosetta_boots_dyed.json | 1 + .../models/item/rosetta_chestplate.json | 1 + .../models/item/rosetta_chestplate_dyed.json | 1 + .../models/item/rosetta_helmet.json | 1 + .../models/item/rosetta_helmet_dyed.json | 1 + .../models/item/rosetta_leggings.json | 1 + .../models/item/rosetta_leggings_dyed.json | 1 + .../models/item/rotten_apple.json | 1 + .../models/item/rotten_boots.json | 1 + .../models/item/rotten_boots_dyed.json | 1 + .../models/item/rotten_chestplate.json | 1 + .../models/item/rotten_chestplate_dyed.json | 1 + .../models/item/rotten_helmet.json | 1 + .../models/item/rotten_helmet_dyed.json | 1 + .../models/item/rotten_leggings.json | 1 + .../models/item/rotten_leggings_dyed.json | 1 + .../models/item/rough_amber_gem.json | 1 + .../models/item/rough_amethyst_gem.json | 1 + .../models/item/rough_aquamarine_gem.json | 1 + .../models/item/rough_citrine_gem.json | 1 + .../models/item/rough_jade_gem.json | 1 + .../models/item/rough_jasper_gem.json | 1 + .../models/item/rough_onyx_gem.json | 1 + .../models/item/rough_opal_gem.json | 1 + .../models/item/rough_peridot_gem.json | 1 + .../models/item/rough_ruby_gem.json | 1 + .../models/item/rough_sapphire_gem.json | 1 + .../models/item/rough_topaz_gem.json | 1 + .../models/item/royal_compass.json | 1 + .../models/item/royal_pigeon.json | 1 + .../models/item/royal_pigeon_call.json | 1 + .../models/item/ruby_crystal.json | 1 + .../firmskyblock/models/item/ruby_drill.json | 1 + .../models/item/ruby_drill_drilling.json | 1 + .../item/ruby_polished_drill_engine.json | 1 + .../models/item/ruby_power_scroll.json | 1 + .../firmskyblock/models/item/runaans_bow.json | 1 + .../models/item/runaans_bow_pulling_0.json | 1 + .../models/item/runaans_bow_pulling_1.json | 1 + .../models/item/runaans_bow_pulling_2.json | 1 + .../assets/firmskyblock/models/item/rune.json | 1 + .../firmskyblock/models/item/rune_sack.json | 1 + .../models/item/runeblade_artifact.json | 1 + .../models/item/runeblade_ring.json | 1 + .../models/item/runeblade_talisman.json | 1 + .../firmskyblock/models/item/runebook.json | 1 + .../models/item/runebook_epic.json | 1 + .../models/item/runebook_legendary.json | 1 + .../models/item/runebook_rare.json | 1 + .../models/item/runebook_uncommon.json | 1 + .../firmskyblock/models/item/runic_staff.json | 1 + .../models/item/runic_staff_hand.json | 1 + .../models/item/rusty_anchor.json | 1 + .../firmskyblock/models/item/rusty_coin.json | 1 + .../models/item/rusty_ship_engine.json | 1 + .../models/item/rusty_ship_hull.json | 1 + .../models/item/rusty_titanium_pickaxe.json | 1 + .../models/item/s_logo_chestplate.json | 1 + .../models/item/s_logo_fragment.json | 1 + .../models/item/sadan_brooch.json | 1 + .../firmskyblock/models/item/salmon_mask.json | 1 + .../firmskyblock/models/item/salmon_opal.json | 1 + .../firmskyblock/models/item/salt_cube.json | 1 + .../firmskyblock/models/item/sam_scythe.json | 1 + .../models/item/sam_scythe_hand.json | 1 + .../models/item/sapphire_cloak.json | 1 + .../models/item/sapphire_crystal.json | 1 + .../item/sapphire_polished_drill_engine.json | 1 + .../models/item/sapphire_power_scroll.json | 1 + .../firmskyblock/models/item/satelite.json | 1 + .../models/item/satin_trousers.json | 1 + .../models/item/sauls_recommendation.json | 1 + .../models/item/savana_biome_stick.json | 1 + .../firmskyblock/models/item/savana_bow.json | 1 + .../models/item/savana_bow_pulling_0.json | 1 + .../models/item/savana_bow_pulling_1.json | 1 + .../models/item/savana_bow_pulling_2.json | 1 + .../models/item/saving_grace.json | 1 + .../models/item/scare_fragment.json | 1 + .../models/item/scarf_fragment.json | 1 + .../models/item/scarf_grimoire.json | 1 + .../models/item/scarf_studies.json | 1 + .../models/item/scarf_thesis.json | 1 + .../models/item/scarleton_premium.json | 1 + .../models/item/scarleton_travel_scroll.json | 1 + .../models/item/scary_grimoire.json | 1 + .../models/item/scary_grimoire_1st.json | 1 + .../models/item/scavenger_artifact.json | 1 + .../models/item/scavenger_ring.json | 1 + .../models/item/scavenger_talisman.json | 1 + .../models/item/scorched_books.json | 1 + .../models/item/scorched_crab_stick.json | 1 + .../models/item/scorched_power_crystal.json | 1 + .../models/item/scornclaw_brew.json | 1 + .../models/item/scorpion_bow.json | 1 + .../models/item/scorpion_bow_pulling_0.json | 1 + .../models/item/scorpion_bow_pulling_1.json | 1 + .../models/item/scorpion_bow_pulling_2.json | 1 + .../models/item/scorpion_foil.json | 1 + .../models/item/scourge_cloak.json | 1 + .../models/item/scoville_belt.json | 1 + .../firmskyblock/models/item/scribe_crux.json | 1 + .../models/item/sculptors_axe.json | 1 + .../models/item/scuttler_shell.json | 1 + .../firmskyblock/models/item/scylla.json | 1 + .../models/item/scythe_blade.json | 1 + .../models/item/sea_creature_ring.json | 1 + .../models/item/sea_creature_talisman.json | 1 + .../models/item/sea_lantern_hat.json | 1 + .../models/item/sea_lantern_hat_armor.json | 1 + .../models/item/sea_walker_boots.json | 1 + .../models/item/sea_walker_chestplate.json | 1 + .../models/item/sea_walker_leggings.json | 1 + .../models/item/seal_of_the_family.json | 1 + .../firmskyblock/models/item/seal_ring.json | 1 + .../models/item/seal_talisman.json | 1 + .../models/item/seal_treat_bag.json | 1 + .../models/item/searing_stone.json | 1 + .../models/item/second_master_star.json | 1 + .../models/item/secret_bingo_card.json | 1 + .../models/item/secret_bingo_memento.json | 1 + .../item/secret_dungeon_redstone_key.json | 1 + .../models/item/secret_railroad_pass.json | 1 + .../models/item/secret_tracker.json | 1 + .../models/item/secrets_potion.json | 1 + .../models/item/secrets_splash_potion.json | 1 + .../models/item/self_recursive_pickaxe.json | 1 + .../models/item/seriously_damaged_axe.json | 1 + .../models/item/serrated_claws.json | 1 + .../models/item/severed_hand.json | 1 + .../models/item/severed_pincer.json | 1 + .../firmskyblock/models/item/sewer_fish.json | 1 + .../models/item/shadow_assassin_boots.json | 1 + .../item/shadow_assassin_boots_dyed.json | 1 + .../item/shadow_assassin_chestplate.json | 1 + .../item/shadow_assassin_chestplate_dyed.json | 1 + .../models/item/shadow_assassin_cloak.json | 1 + .../models/item/shadow_assassin_leggings.json | 1 + .../item/shadow_assassin_leggings_dyed.json | 1 + .../firmskyblock/models/item/shadow_crux.json | 1 + .../firmskyblock/models/item/shadow_fury.json | 1 + .../models/item/shadow_warp_scroll.json | 1 + .../firmskyblock/models/item/shady_ring.json | 1 + .../models/item/shaman_sword.json | 1 + .../firmskyblock/models/item/shame_crux.json | 1 + .../models/item/shard_of_the_shredded.json | 1 + .../firmskyblock/models/item/shark_bait.json | 1 + .../firmskyblock/models/item/shark_fin.json | 1 + .../models/item/shark_scale_boots.json | 1 + .../models/item/shark_scale_boots_dyed.json | 1 + .../models/item/shark_scale_chestplate.json | 1 + .../item/shark_scale_chestplate_dyed.json | 1 + .../models/item/shark_scale_leggings.json | 1 + .../item/shark_scale_leggings_dyed.json | 1 + .../models/item/shark_water_orb.json | 1 + .../item/sharp_shark_tooth_necklace.json | 1 + .../models/item/sharp_steak_stake.json | 1 + .../models/item/shattered_pendant.json | 1 + .../firmskyblock/models/item/sheep_axe.json | 1 + .../models/item/shens_regalia.json | 1 + .../models/item/shens_ringalia.json | 1 + .../item/shimmering_light_slippers.json | 1 + .../item/shimmering_light_slippers_dyed.json | 1 + .../item/shimmering_light_trousers.json | 1 + .../item/shimmering_light_trousers_dyed.json | 1 + .../models/item/shimmering_light_tunic.json | 1 + .../item/shimmering_light_tunic_dyed.json | 1 + .../item/shimmersparkle_chestplate.json | 1 + .../item/shimmersparkle_chestplate_dyed.json | 1 + .../firmskyblock/models/item/shiniest.json | 1 + .../models/item/shiny_astraea.json | 1 + .../models/item/shiny_hyperion.json | 1 + .../models/item/shiny_necron_blade.json | 1 + .../models/item/shiny_necron_handle.json | 1 + .../firmskyblock/models/item/shiny_orb.json | 1 + .../models/item/shiny_power_wither_boots.json | 1 + .../item/shiny_power_wither_boots_dyed.json | 1 + .../item/shiny_power_wither_chestplate.json | 1 + .../shiny_power_wither_chestplate_dyed.json | 1 + .../item/shiny_power_wither_leggings.json | 1 + .../shiny_power_wither_leggings_dyed.json | 1 + .../firmskyblock/models/item/shiny_prism.json | 1 + .../firmskyblock/models/item/shiny_relic.json | 1 + .../firmskyblock/models/item/shiny_rod.json | 1 + .../models/item/shiny_scylla.json | 1 + .../firmskyblock/models/item/shiny_shard.json | 1 + .../models/item/shiny_speed_wither_boots.json | 1 + .../item/shiny_speed_wither_boots_dyed.json | 1 + .../item/shiny_speed_wither_chestplate.json | 1 + .../shiny_speed_wither_chestplate_dyed.json | 1 + .../item/shiny_speed_wither_leggings.json | 1 + .../shiny_speed_wither_leggings_dyed.json | 1 + .../models/item/shiny_tank_wither_boots.json | 1 + .../item/shiny_tank_wither_boots_dyed.json | 1 + .../item/shiny_tank_wither_chestplate.json | 1 + .../shiny_tank_wither_chestplate_dyed.json | 1 + .../item/shiny_tank_wither_leggings.json | 1 + .../item/shiny_tank_wither_leggings_dyed.json | 1 + .../models/item/shiny_valkyrie.json | 1 + .../models/item/shiny_wise_wither_boots.json | 1 + .../item/shiny_wise_wither_boots_dyed.json | 1 + .../item/shiny_wise_wither_chestplate.json | 1 + .../shiny_wise_wither_chestplate_dyed.json | 1 + .../item/shiny_wise_wither_leggings.json | 1 + .../item/shiny_wise_wither_leggings_dyed.json | 1 + .../models/item/shiny_wither_boots.json | 1 + .../models/item/shiny_wither_boots_dyed.json | 1 + .../models/item/shiny_wither_chestplate.json | 1 + .../item/shiny_wither_chestplate_dyed.json | 1 + .../models/item/shiny_wither_leggings.json | 1 + .../item/shiny_wither_leggings_dyed.json | 1 + .../models/item/shredded_line.json | 1 + .../models/item/shrimp_the_fish.json | 1 + .../models/item/shriveled_bracelet.json | 1 + .../models/item/shriveled_cornea.json | 1 + .../models/item/shriveled_wasp.json | 1 + .../models/item/signal_enhancer.json | 1 + .../firmskyblock/models/item/sil_ex.json | 1 + .../models/item/silent_death.json | 1 + .../models/item/silent_pearl.json | 1 + .../firmskyblock/models/item/silex.json | 1 + .../models/item/silk_edge_sword.json | 1 + .../models/item/silkrider_safety_belt.json | 1 + .../models/item/silkwire_stick.json | 1 + .../models/item/silky_lichen.json | 1 + .../models/item/silva_dominus.json | 1 + .../firmskyblock/models/item/silver_fang.json | 1 + .../models/item/silver_hunter_boots.json | 1 + .../models/item/silver_hunter_boots_dyed.json | 1 + .../models/item/silver_hunter_chestplate.json | 1 + .../item/silver_hunter_chestplate_dyed.json | 1 + .../models/item/silver_hunter_helmet.json | 1 + .../item/silver_hunter_helmet_dyed.json | 1 + .../models/item/silver_hunter_leggings.json | 1 + .../item/silver_hunter_leggings_dyed.json | 1 + .../models/item/silver_laced_karambit.json | 1 + .../item/silver_trophy_fishing_sack.json | 1 + .../models/item/silvertwist_karambit.json | 1 + .../models/item/simple_carrot_candy.json | 1 + .../firmskyblock/models/item/sinful_dice.json | 1 + .../models/item/singed_powder.json | 1 + .../models/item/singing_fish.json | 1 + .../models/item/singing_fish_singing.json | 1 + .../models/item/sinseeker_scythe.json | 1 + .../models/item/sinseeker_scythe_hand.json | 1 + .../item/sinseeker_scythe_sinrecall.json | 1 + .../item/sinseeker_scythe_sinrecall_hand.json | 1 + .../firmskyblock/models/item/sirius_book.json | 1 + .../item/sirius_personal_phone_number.json | 1 + .../models/item/skeleton_fish_bronze.json | 1 + .../models/item/skeleton_fish_diamond.json | 1 + .../models/item/skeleton_fish_gold.json | 1 + .../models/item/skeleton_fish_silver.json | 1 + .../models/item/skeleton_grunt_boots.json | 1 + .../item/skeleton_grunt_boots_dyed.json | 1 + .../item/skeleton_grunt_chestplate.json | 1 + .../item/skeleton_grunt_chestplate_dyed.json | 1 + .../models/item/skeleton_grunt_helmet.json | 1 + .../item/skeleton_grunt_helmet_dyed.json | 1 + .../models/item/skeleton_grunt_leggings.json | 1 + .../item/skeleton_grunt_leggings_dyed.json | 1 + .../models/item/skeleton_helmet.json | 1 + .../models/item/skeleton_helmet_dyed.json | 1 + .../models/item/skeleton_key.json | 1 + .../models/item/skeleton_lord_boots.json | 1 + .../models/item/skeleton_lord_boots_dyed.json | 1 + .../models/item/skeleton_lord_bow.json | 1 + .../item/skeleton_lord_bow_pulling_0.json | 1 + .../item/skeleton_lord_bow_pulling_1.json | 1 + .../item/skeleton_lord_bow_pulling_2.json | 1 + .../models/item/skeleton_lord_chestplate.json | 1 + .../item/skeleton_lord_chestplate_dyed.json | 1 + .../models/item/skeleton_lord_helmet.json | 1 + .../item/skeleton_lord_helmet_dyed.json | 1 + .../models/item/skeleton_lord_leggings.json | 1 + .../item/skeleton_lord_leggings_dyed.json | 1 + .../models/item/skeleton_master_boots.json | 1 + .../item/skeleton_master_boots_dyed.json | 1 + .../item/skeleton_master_chestplate.json | 1 + .../item/skeleton_master_chestplate_dyed.json | 1 + .../models/item/skeleton_master_helmet.json | 1 + .../item/skeleton_master_helmet_dyed.json | 1 + .../models/item/skeleton_master_leggings.json | 1 + .../item/skeleton_master_leggings_dyed.json | 1 + .../models/item/skeleton_soldier_boots.json | 1 + .../item/skeleton_soldier_boots_dyed.json | 1 + .../item/skeleton_soldier_chestplate.json | 1 + .../skeleton_soldier_chestplate_dyed.json | 1 + .../models/item/skeleton_soldier_helmet.json | 1 + .../item/skeleton_soldier_helmet_dyed.json | 1 + .../item/skeleton_soldier_leggings.json | 1 + .../item/skeleton_soldier_leggings_dyed.json | 1 + .../models/item/skeleton_talisman.json | 1 + .../models/item/skeleton_the_fish.json | 1 + .../models/item/skeletor_boots.json | 1 + .../models/item/skeletor_boots_dyed.json | 1 + .../models/item/skeletor_chestplate.json | 1 + .../models/item/skeletor_chestplate_dyed.json | 1 + .../models/item/skeletor_leggings.json | 1 + .../models/item/skeletor_leggings_dyed.json | 1 + .../models/item/skyblock_menu.json | 1 + .../models/item/skyblock_menu_rift.json | 1 + .../models/item/skymart_brochure.json | 1 + .../models/item/skymart_hyper_vacuum.json | 1 + .../models/item/skymart_turbo_vacuum.json | 1 + .../models/item/skymart_vacuum.json | 1 + .../models/item/slayer_energy_drink.json | 1 + .../models/item/sleeping_eye.json | 1 + .../models/item/sleepy_hollow.json | 1 + .../models/item/slice_of_blueberry_cake.json | 1 + .../models/item/slice_of_cheesecake.json | 1 + .../item/slice_of_green_velvet_cake.json | 1 + .../models/item/slice_of_red_velvet_cake.json | 1 + .../item/slice_of_strawberry_shortcake.json | 1 + .../firmskyblock/models/item/slime_bow.json | 1 + .../models/item/slime_bow_pulling_0.json | 1 + .../models/item/slime_bow_pulling_1.json | 1 + .../models/item/slime_bow_pulling_2.json | 1 + .../firmskyblock/models/item/slimy_rune.json | 1 + .../models/item/slimy_rune_2.json | 1 + .../models/item/slimy_rune_3.json | 1 + .../models/item/sludge_juice.json | 1 + .../firmskyblock/models/item/slug_boots.json | 1 + .../models/item/slug_boots_dyed.json | 1 + .../models/item/slugfish_bronze.json | 1 + .../models/item/slugfish_diamond.json | 1 + .../models/item/slugfish_gold.json | 1 + .../models/item/slugfish_silver.json | 1 + .../models/item/small_agronomy_sack.json | 1 + .../models/item/small_backpack.json | 1 + .../models/item/small_combat_sack.json | 1 + .../models/item/small_dragon_sack.json | 1 + .../models/item/small_fish_bowl.json | 1 + .../models/item/small_fishing_sack.json | 1 + .../models/item/small_foraging_sack.json | 1 + .../models/item/small_frog_treat.json | 1 + .../models/item/small_gemstone_sack.json | 1 + .../models/item/small_husbandry_sack.json | 1 + .../models/item/small_lava_fishing_sack.json | 1 + .../models/item/small_mining_sack.json | 1 + .../models/item/small_nether_sack.json | 1 + .../models/item/small_pocket_black_hole.json | 1 + .../models/item/small_runes_sack.json | 1 + .../models/item/small_slayer_sack.json | 1 + .../models/item/smitten_rune.json | 1 + .../models/item/smitten_rune_2.json | 1 + .../models/item/smitten_rune_3.json | 1 + .../firmskyblock/models/item/smokey_rune.json | 1 + .../models/item/smokey_rune_2.json | 1 + .../models/item/smokey_rune_3.json | 1 + .../smoldering_chambers_travel_scroll.json | 1 + .../models/item/smooth_chocolate_bar.json | 1 + .../models/item/snake_in_a_boot.json | 1 + .../firmskyblock/models/item/snake_rune.json | 1 + .../models/item/snake_rune_2.json | 1 + .../models/item/snake_rune_3.json | 1 + .../firmskyblock/models/item/sniper_bow.json | 1 + .../models/item/sniper_bow_pulling_0.json | 1 + .../models/item/sniper_bow_pulling_1.json | 1 + .../models/item/sniper_bow_pulling_2.json | 1 + .../models/item/snorkeling_boots.json | 1 + .../models/item/snorkeling_boots_dyed.json | 1 + .../models/item/snorkeling_chestplate.json | 1 + .../item/snorkeling_chestplate_dyed.json | 1 + .../models/item/snorkeling_leggings.json | 1 + .../models/item/snorkeling_leggings_dyed.json | 1 + .../firmskyblock/models/item/snow_belt.json | 1 + .../models/item/snow_blaster.json | 1 + .../firmskyblock/models/item/snow_cannon.json | 1 + .../firmskyblock/models/item/snow_cloak.json | 1 + .../firmskyblock/models/item/snow_gloves.json | 1 + .../models/item/snow_howitzer.json | 1 + .../models/item/snow_necklace.json | 1 + .../firmskyblock/models/item/snow_rune.json | 1 + .../firmskyblock/models/item/snow_rune_2.json | 1 + .../firmskyblock/models/item/snow_rune_3.json | 1 + .../firmskyblock/models/item/snow_shovel.json | 1 + .../models/item/snow_suit_boots.json | 1 + .../models/item/snow_suit_boots_dyed.json | 1 + .../models/item/snow_suit_chestplate.json | 1 + .../item/snow_suit_chestplate_dyed.json | 1 + .../models/item/snow_suit_leggings.json | 1 + .../models/item/snow_suit_leggings_dyed.json | 1 + .../models/item/snowflake_the_fish.json | 1 + .../models/item/snowman_mask.json | 1 + .../models/item/social_display.json | 1 + .../firmskyblock/models/item/solar_panel.json | 1 + .../models/item/solved_prism.json | 1 + .../firmskyblock/models/item/sorrow.json | 1 + .../models/item/sorrow_boots.json | 1 + .../models/item/sorrow_boots_dyed.json | 1 + .../models/item/sorrow_chestplate.json | 1 + .../models/item/sorrow_chestplate_dyed.json | 1 + .../models/item/sorrow_helmet.json | 1 + .../models/item/sorrow_helmet_dyed.json | 1 + .../models/item/sorrow_leggings.json | 1 + .../models/item/sorrow_leggings_dyed.json | 1 + .../firmskyblock/models/item/sos_flare.json | 1 + .../models/item/soul_campfire_talisman_1.json | 1 + .../models/item/soul_campfire_talisman_2.json | 1 + .../models/item/soul_campfire_talisman_3.json | 1 + .../models/item/soul_campfire_talisman_4.json | 1 + .../models/item/soul_campfire_talisman_5.json | 1 + .../models/item/soul_esoward.json | 1 + .../models/item/soul_esoward_blink.json | 1 + .../models/item/soul_fish_bronze.json | 1 + .../models/item/soul_fish_diamond.json | 1 + .../models/item/soul_fish_gold.json | 1 + .../models/item/soul_fish_silver.json | 1 + .../models/item/soul_fragment.json | 1 + .../firmskyblock/models/item/soul_string.json | 1 + .../firmskyblock/models/item/soul_whip.json | 1 + .../models/item/soul_whip_cast.json | 1 + .../firmskyblock/models/item/soulflow.json | 1 + .../models/item/soulflow_battery.json | 1 + .../models/item/soulflow_pile.json | 1 + .../models/item/soulflow_supercell.json | 1 + .../models/item/souls_rebound.json | 1 + .../models/item/souls_rebound_pulling_0.json | 1 + .../models/item/souls_rebound_pulling_1.json | 1 + .../models/item/souls_rebound_pulling_2.json | 1 + .../models/item/soultwist_rune.json | 1 + .../models/item/soultwist_rune_2.json | 1 + .../models/item/soultwist_rune_3.json | 1 + .../models/item/soulweaver_gloves.json | 1 + .../models/item/sparkling_rune.json | 1 + .../models/item/sparkling_rune_2.json | 1 + .../models/item/sparkling_rune_3.json | 1 + .../models/item/speckled_teacup.json | 1 + .../models/item/spectre_dust.json | 1 + .../models/item/speed_artifact.json | 1 + .../firmskyblock/models/item/speed_ring.json | 1 + .../models/item/speed_talisman.json | 1 + .../models/item/speed_wither_boots.json | 1 + .../models/item/speed_wither_boots_dyed.json | 1 + .../models/item/speed_wither_chestplate.json | 1 + .../item/speed_wither_chestplate_dyed.json | 1 + .../models/item/speed_wither_leggings.json | 1 + .../item/speed_wither_leggings_dyed.json | 1 + .../models/item/speedster_boots.json | 1 + .../models/item/speedster_boots_dyed.json | 1 + .../models/item/speedster_chestplate.json | 1 + .../item/speedster_chestplate_dyed.json | 1 + .../models/item/speedster_helmet.json | 1 + .../models/item/speedster_helmet_dyed.json | 1 + .../models/item/speedster_leggings.json | 1 + .../models/item/speedster_leggings_dyed.json | 1 + .../models/item/speedster_rod.json | 1 + .../models/item/speedster_rod_cast.json | 1 + .../firmskyblock/models/item/speedy_line.json | 1 + .../models/item/spell_powder.json | 1 + .../models/item/spellbound_rune.json | 1 + .../models/item/spellbound_rune_2.json | 1 + .../models/item/spellbound_rune_3.json | 1 + .../models/item/spelunker_potion.json | 1 + .../models/item/spelunker_splash_potion.json | 1 + .../models/item/spider_artifact.json | 1 + .../models/item/spider_boots.json | 1 + .../models/item/spider_boots_dyed.json | 1 + .../models/item/spider_catalyst.json | 1 + .../models/item/spider_egg_mixin.json | 1 + .../models/item/spider_queens_stinger.json | 1 + .../item/spider_queens_stinger_pulling_0.json | 1 + .../item/spider_queens_stinger_pulling_1.json | 1 + .../item/spider_queens_stinger_pulling_2.json | 1 + .../firmskyblock/models/item/spider_ring.json | 1 + .../models/item/spider_sword.json | 1 + .../models/item/spider_talisman.json | 1 + .../item/spiders_den_top_travel_scroll.json | 1 + .../models/item/spiked_atrocity.json | 1 + .../firmskyblock/models/item/spiked_bait.json | 1 + .../models/item/spine_fossil.json | 1 + .../firmskyblock/models/item/spirit_bone.json | 1 + .../models/item/spirit_decoy.json | 1 + .../firmskyblock/models/item/spirit_leap.json | 1 + .../firmskyblock/models/item/spirit_mask.json | 1 + .../models/item/spirit_potion.json | 1 + .../firmskyblock/models/item/spirit_rune.json | 1 + .../models/item/spirit_rune_2.json | 1 + .../models/item/spirit_rune_3.json | 1 + .../models/item/spirit_splash_potion.json | 1 + .../models/item/spirit_sword.json | 1 + .../firmskyblock/models/item/spirit_wing.json | 1 + .../models/item/splatter_crux.json | 1 + .../models/item/splendid_fish_drawing.json | 1 + .../firmskyblock/models/item/sponge_belt.json | 1 + .../models/item/sponge_boots.json | 1 + .../models/item/sponge_boots_dyed.json | 1 + .../models/item/sponge_chestplate.json | 1 + .../models/item/sponge_chestplate_dyed.json | 1 + .../models/item/sponge_helmet.json | 1 + .../models/item/sponge_helmet_armor.json | 1 + .../models/item/sponge_leggings.json | 1 + .../models/item/sponge_leggings_dyed.json | 1 + .../firmskyblock/models/item/sponge_rod.json | 1 + .../models/item/sponge_rod_cast.json | 1 + .../models/item/sponge_sinker.json | 1 + .../models/item/spook_the_fish.json | 1 + .../firmskyblock/models/item/spooky_bait.json | 1 + .../models/item/spooky_boots.json | 1 + .../models/item/spooky_boots_dyed.json | 1 + .../models/item/spooky_chestplate.json | 1 + .../models/item/spooky_chestplate_dyed.json | 1 + .../firmskyblock/models/item/spooky_disc.json | 1 + .../models/item/spooky_leggings.json | 1 + .../models/item/spooky_leggings_dyed.json | 1 + .../firmskyblock/models/item/spooky_pie.json | 1 + .../models/item/spooky_shard.json | 1 + .../firmskyblock/models/item/spooky_tree.json | 1 + .../models/item/spooky_water_orb.json | 1 + .../models/item/spore_harvester.json | 1 + .../firmskyblock/models/item/spotlite.json | 1 + .../firmskyblock/models/item/spray_can.json | 1 + .../models/item/spray_can_spraying.json | 1 + .../firmskyblock/models/item/sprayonator.json | 1 + .../models/item/sprayonator_cheese_fuel.json | 1 + .../models/item/sprayonator_compost.json | 1 + .../models/item/sprayonator_dung.json | 1 + .../models/item/sprayonator_fine_flour.json | 1 + .../models/item/sprayonator_honey_jar.json | 1 + .../models/item/sprayonator_plant_matter.json | 1 + .../models/item/sprayonator_spraying.json | 1 + .../models/item/spring_boots.json | 1 + .../models/item/spring_boots_dyed.json | 1 + .../firmskyblock/models/item/squash.json | 1 + .../models/item/squash_boots.json | 1 + .../models/item/squash_boots_dyed.json | 1 + .../models/item/squash_chestplate.json | 1 + .../models/item/squash_chestplate_dyed.json | 1 + .../models/item/squash_leggings.json | 1 + .../models/item/squash_leggings_dyed.json | 1 + .../firmskyblock/models/item/squash_ring.json | 1 + .../models/item/squeaky_mousemat.json | 1 + .../firmskyblock/models/item/squeaky_toy.json | 1 + .../firmskyblock/models/item/squid_boots.json | 1 + .../models/item/squid_boots_dyed.json | 1 + .../models/item/squire_boots.json | 1 + .../models/item/squire_boots_dyed.json | 1 + .../models/item/squire_chestplate.json | 1 + .../models/item/squire_chestplate_dyed.json | 1 + .../models/item/squire_helmet.json | 1 + .../models/item/squire_helmet_dyed.json | 1 + .../models/item/squire_leggings.json | 1 + .../models/item/squire_leggings_dyed.json | 1 + .../models/item/squire_sword.json | 1 + .../models/item/staff_of_the_rising_moon.json | 1 + .../item/staff_of_the_rising_moon_hand.json | 1 + .../models/item/staff_of_the_volcano.json | 1 + .../item/staff_of_the_volcano_hand.json | 1 + .../models/item/stamina_potion.json | 1 + .../models/item/stamina_splash_potion.json | 1 + .../firmskyblock/models/item/star_boots.json | 1 + .../models/item/star_boots_dyed.json | 1 + .../models/item/star_chestplate.json | 1 + .../models/item/star_chestplate_dyed.json | 1 + .../firmskyblock/models/item/star_helmet.json | 1 + .../models/item/star_helmet_dyed.json | 1 + .../models/item/star_leggings.json | 1 + .../models/item/star_leggings_dyed.json | 1 + .../firmskyblock/models/item/star_sword.json | 1 + .../firmskyblock/models/item/starfall.json | 1 + .../models/item/starfall_seasoning.json | 1 + .../models/item/starlight_boots.json | 1 + .../models/item/starlight_boots_dyed.json | 1 + .../models/item/starlight_chestplate.json | 1 + .../item/starlight_chestplate_dyed.json | 1 + .../models/item/starlight_helmet.json | 1 + .../models/item/starlight_helmet_dyed.json | 1 + .../models/item/starlight_leggings.json | 1 + .../models/item/starlight_leggings_dyed.json | 1 + .../models/item/starlight_wand.json | 1 + .../models/item/starlight_wand_starfall.json | 1 + .../models/item/starlyn_prize.json | 1 + .../models/item/starred_adaptive_belt.json | 1 + .../models/item/starred_adaptive_boots.json | 1 + .../item/starred_adaptive_boots_dyed.json | 1 + .../item/starred_adaptive_chestplate.json | 1 + .../starred_adaptive_chestplate_dyed.json | 1 + .../item/starred_adaptive_leggings.json | 1 + .../item/starred_adaptive_leggings_dyed.json | 1 + .../models/item/starred_bat_wand.json | 1 + .../models/item/starred_bat_wand_hand.json | 1 + .../models/item/starred_bone_boomerang.json | 1 + .../item/starred_bone_boomerang_thrown.json | 1 + .../models/item/starred_bone_necklace.json | 1 + .../models/item/starred_bonzo_mask.json | 1 + .../models/item/starred_bonzo_staff.json | 1 + .../models/item/starred_bonzo_staff_hand.json | 1 + .../models/item/starred_daedalus_axe.json | 1 + .../models/item/starred_felthorn_reaper.json | 1 + .../item/starred_felthorn_reaper_hand.json | 1 + .../models/item/starred_glacial_scythe.json | 1 + .../item/starred_glacial_scythe_hand.json | 1 + .../models/item/starred_ice_spray_wand.json | 1 + .../models/item/starred_item_spirit_bow.json | 1 + .../starred_item_spirit_bow_pulling_0.json | 1 + .../starred_item_spirit_bow_pulling_1.json | 1 + .../starred_item_spirit_bow_pulling_2.json | 1 + .../models/item/starred_last_breath.json | 1 + .../item/starred_last_breath_pulling_0.json | 1 + .../item/starred_last_breath_pulling_1.json | 1 + .../item/starred_last_breath_pulling_2.json | 1 + .../models/item/starred_midas_staff.json | 1 + .../models/item/starred_midas_staff_hand.json | 1 + .../models/item/starred_midas_sword.json | 1 + .../item/starred_shadow_assassin_boots.json | 1 + .../starred_shadow_assassin_boots_dyed.json | 1 + .../starred_shadow_assassin_chestplate.json | 1 + ...arred_shadow_assassin_chestplate_dyed.json | 1 + .../item/starred_shadow_assassin_cloak.json | 1 + .../starred_shadow_assassin_leggings.json | 1 + ...starred_shadow_assassin_leggings_dyed.json | 1 + .../models/item/starred_shadow_fury.json | 1 + .../item/starred_spider_queens_stinger.json | 1 + ...arred_spider_queens_stinger_pulling_0.json | 1 + ...arred_spider_queens_stinger_pulling_1.json | 1 + ...arred_spider_queens_stinger_pulling_2.json | 1 + .../models/item/starred_spirit_mask.json | 1 + .../models/item/starred_stone_blade.json | 1 + .../models/item/starred_thorns_boots.json | 1 + .../item/starred_thorns_boots_dyed.json | 1 + .../models/item/starred_venoms_touch.json | 1 + .../item/starred_venoms_touch_pulling_0.json | 1 + .../item/starred_venoms_touch_pulling_1.json | 1 + .../item/starred_venoms_touch_pulling_2.json | 1 + .../models/item/starred_yeti_sword.json | 1 + .../models/item/starter_lava_rod.json | 1 + .../models/item/starter_lava_rod_cast.json | 1 + .../firmskyblock/models/item/steak_stake.json | 1 + .../models/item/steamed_chocolate_fish.json | 1 + .../item/steaming_hot_flounder_bronze.json | 1 + .../item/steaming_hot_flounder_diamond.json | 1 + .../item/steaming_hot_flounder_gold.json | 1 + .../item/steaming_hot_flounder_silver.json | 1 + .../models/item/steel_chestplate.json | 1 + .../models/item/steel_chestplate_dyed.json | 1 + .../models/item/stew_the_fish.json | 1 + .../firmskyblock/models/item/sting.json | 1 + .../firmskyblock/models/item/stinger_bow.json | 1 + .../models/item/stinger_bow_pulling_0.json | 1 + .../models/item/stinger_bow_pulling_1.json | 1 + .../models/item/stinger_bow_pulling_2.json | 1 + .../models/item/stingy_sinker.json | 1 + .../models/item/stinky_cheese_potion.json | 1 + .../item/stinky_cheese_splash_potion.json | 1 + .../models/item/stock_of_stonks.json | 1 + .../firmskyblock/models/item/stone_blade.json | 1 + .../models/item/stone_bridge.json | 1 + .../models/item/stone_chestplate.json | 1 + .../models/item/stone_chestplate_dyed.json | 1 + .../models/item/stonk_pickaxe.json | 1 + .../models/item/storm_in_a_bottle.json | 1 + .../models/item/storm_in_a_bottle_empty.json | 1 + .../models/item/storm_the_fish.json | 1 + .../models/item/stretching_sticks.json | 1 + .../models/item/strong_dragon_boots.json | 1 + .../models/item/strong_dragon_boots_dyed.json | 1 + .../models/item/strong_dragon_chestplate.json | 1 + .../item/strong_dragon_chestplate_dyed.json | 1 + .../models/item/strong_dragon_leggings.json | 1 + .../item/strong_dragon_leggings_dyed.json | 1 + .../models/item/strong_fragment.json | 1 + .../models/item/stuffed_chili_pepper.json | 1 + .../firmskyblock/models/item/stun_bow.json | 1 + .../models/item/stun_bow_pulling_0.json | 1 + .../models/item/stun_bow_pulling_1.json | 1 + .../models/item/stun_bow_pulling_2.json | 1 + .../firmskyblock/models/item/stun_potion.json | 1 + .../models/item/stun_splash_potion.json | 1 + .../firmskyblock/models/item/sturdy_bone.json | 1 + .../models/item/subzero_inverter.json | 1 + .../firmskyblock/models/item/sulphur_bow.json | 1 + .../models/item/sulphur_bow_pulling_0.json | 1 + .../models/item/sulphur_bow_pulling_1.json | 1 + .../models/item/sulphur_bow_pulling_2.json | 1 + .../firmskyblock/models/item/sulphur_ore.json | 1 + .../models/item/sulphur_skitter_bronze.json | 1 + .../models/item/sulphur_skitter_diamond.json | 1 + .../models/item/sulphur_skitter_gold.json | 1 + .../models/item/sulphur_skitter_silver.json | 1 + .../models/item/sulphuric_coal.json | 1 + .../models/item/summoning_eye.json | 1 + .../models/item/summoning_ring.json | 1 + .../models/item/super_cleaver.json | 1 + .../models/item/super_compactor_3000.json | 1 + .../firmskyblock/models/item/super_egg.json | 1 + .../models/item/super_heavy_boots.json | 1 + .../models/item/super_heavy_boots_dyed.json | 1 + .../models/item/super_heavy_chestplate.json | 1 + .../item/super_heavy_chestplate_dyed.json | 1 + .../models/item/super_heavy_helmet.json | 1 + .../models/item/super_heavy_helmet_dyed.json | 1 + .../models/item/super_heavy_leggings.json | 1 + .../item/super_heavy_leggings_dyed.json | 1 + .../models/item/super_leech_modifier.json | 1 + .../item/super_magic_mushroom_soup.json | 1 + .../models/item/super_pumpkin_rune.json | 1 + .../models/item/super_pumpkin_rune_2.json | 1 + .../models/item/super_pumpkin_rune_3.json | 1 + .../models/item/super_undead_bow.json | 1 + .../item/super_undead_bow_pulling_0.json | 1 + .../item/super_undead_bow_pulling_1.json | 1 + .../item/super_undead_bow_pulling_2.json | 1 + .../models/item/superb_carrot_candy.json | 1 + .../models/item/superboom_tnt.json | 1 + .../models/item/superior_dragon_boots.json | 1 + .../item/superior_dragon_boots_dyed.json | 1 + .../item/superior_dragon_chestplate.json | 1 + .../item/superior_dragon_chestplate_dyed.json | 1 + .../models/item/superior_dragon_leggings.json | 1 + .../item/superior_dragon_leggings_dyed.json | 1 + .../models/item/superior_fragment.json | 1 + .../models/item/superlite_motor.json | 1 + .../models/item/supreme_chocolate_bar.json | 1 + .../models/item/suspicious_red_gift.json | 1 + .../models/item/suspicious_scrap.json | 1 + .../models/item/suspicious_vial.json | 1 + .../models/item/swamp_the_fish.json | 1 + .../models/item/swappable_preview.json | 1 + .../models/item/sweep_booster.json | 1 + .../firmskyblock/models/item/sweet_axe.json | 1 + .../firmskyblock/models/item/sweet_flesh.json | 1 + .../models/item/sword_of_bad_health.json | 1 + .../models/item/sword_of_revelations.json | 1 + .../models/item/sword_of_the_multiverse.json | 1 + .../models/item/synthesizer_v1.json | 1 + .../models/item/synthesizer_v2.json | 1 + .../models/item/synthesizer_v3.json | 1 + .../models/item/synthetic_heart.json | 1 + .../models/item/tactical_insertion.json | 1 + .../models/item/tactician_murder_weapon.json | 1 + .../models/item/tactician_sword.json | 1 + .../models/item/taiga_biome_stick.json | 1 + .../models/item/talbots_theodolite.json | 1 + .../talisman_enrichment_attack_speed.json | 1 + .../talisman_enrichment_critical_chance.json | 1 + .../talisman_enrichment_critical_damage.json | 1 + .../item/talisman_enrichment_defense.json | 1 + .../item/talisman_enrichment_ferocity.json | 1 + .../item/talisman_enrichment_health.json | 1 + .../talisman_enrichment_intelligence.json | 1 + .../item/talisman_enrichment_magic_find.json | 1 + ...lisman_enrichment_sea_creature_chance.json | 1 + .../item/talisman_enrichment_strength.json | 1 + .../item/talisman_enrichment_swapper.json | 1 + .../item/talisman_enrichment_walk_speed.json | 1 + .../models/item/talisman_of_space.json | 1 + .../models/item/tank_miner_boots.json | 1 + .../models/item/tank_miner_boots_dyed.json | 1 + .../models/item/tank_miner_chestplate.json | 1 + .../item/tank_miner_chestplate_dyed.json | 1 + .../models/item/tank_miner_helmet.json | 1 + .../models/item/tank_miner_helmet_dyed.json | 1 + .../models/item/tank_miner_leggings.json | 1 + .../models/item/tank_miner_leggings_dyed.json | 1 + .../models/item/tank_wither_boots.json | 1 + .../models/item/tank_wither_boots_dyed.json | 1 + .../models/item/tank_wither_chestplate.json | 1 + .../item/tank_wither_chestplate_dyed.json | 1 + .../models/item/tank_wither_leggings.json | 1 + .../item/tank_wither_leggings_dyed.json | 1 + .../models/item/tarantula_boots.json | 1 + .../models/item/tarantula_boots_dyed.json | 1 + .../models/item/tarantula_catalyst.json | 1 + .../models/item/tarantula_chestplate.json | 1 + .../item/tarantula_chestplate_dyed.json | 1 + .../models/item/tarantula_fang.json | 1 + .../models/item/tarantula_helmet.json | 1 + .../models/item/tarantula_helmet_dyed.json | 1 + .../models/item/tarantula_leggings.json | 1 + .../models/item/tarantula_leggings_dyed.json | 1 + .../models/item/tarantula_ring.json | 1 + .../models/item/tarantula_silk.json | 1 + .../models/item/tarantula_talisman.json | 1 + .../models/item/tarantula_web.json | 1 + .../models/item/tarantula_web_locked.json | 1 + .../models/item/tasty_cat_food.json | 1 + .../models/item/teleporter_pill.json | 1 + .../firmskyblock/models/item/tender_wood.json | 1 + .../models/item/tentacle_dye.json | 1 + .../models/item/tentacle_meat.json | 1 + .../models/item/tepid_green_tea.json | 1 + .../models/item/tera_shell_necklace.json | 1 + .../firmskyblock/models/item/terminator.json | 1 + .../models/item/terminator_pulling_0.json | 1 + .../models/item/terminator_pulling_1.json | 1 + .../models/item/terminator_pulling_2.json | 1 + .../models/item/terror_boots.json | 1 + .../models/item/terror_boots_dyed.json | 1 + .../models/item/terror_chestplate.json | 1 + .../models/item/terror_chestplate_dyed.json | 1 + .../models/item/terror_leggings.json | 1 + .../models/item/terror_leggings_dyed.json | 1 + .../models/item/terry_snowglobe.json | 1 + .../models/item/tessellated_ender_pearl.json | 1 + .../item/test_bucket_please_ignore.json | 1 + .../models/item/the_art_of_peace.json | 1 + .../models/item/the_art_of_war.json | 1 + .../firmskyblock/models/item/the_cake.json | 1 + .../models/item/the_primordial.json | 1 + .../models/item/the_shredder.json | 1 + .../models/item/the_shredder_cast.json | 1 + .../models/item/the_soup_painting.json | 1 + .../models/item/theoretical_hoe.json | 1 + .../models/item/theoretical_hoe_cane_1.json | 1 + .../models/item/theoretical_hoe_cane_2.json | 1 + .../models/item/theoretical_hoe_cane_3.json | 1 + .../models/item/theoretical_hoe_carrot_1.json | 1 + .../models/item/theoretical_hoe_carrot_2.json | 1 + .../models/item/theoretical_hoe_carrot_3.json | 1 + .../models/item/theoretical_hoe_potato_1.json | 1 + .../models/item/theoretical_hoe_potato_2.json | 1 + .../models/item/theoretical_hoe_potato_3.json | 1 + .../models/item/theoretical_hoe_warts_1.json | 1 + .../models/item/theoretical_hoe_warts_2.json | 1 + .../models/item/theoretical_hoe_warts_3.json | 1 + .../models/item/theoretical_hoe_wheat_1.json | 1 + .../models/item/theoretical_hoe_wheat_2.json | 1 + .../models/item/theoretical_hoe_wheat_3.json | 1 + .../models/item/third_master_star.json | 1 + .../models/item/thorn_fragment.json | 1 + .../models/item/thornleaf_scythe.json | 1 + .../models/item/thornleaf_scythe_hand.json | 1 + .../models/item/thorns_boots.json | 1 + .../models/item/thorns_boots_dyed.json | 1 + .../models/item/thunder_boots.json | 1 + .../models/item/thunder_boots_dyed.json | 1 + .../models/item/thunder_chestplate.json | 1 + .../models/item/thunder_chestplate_dyed.json | 1 + .../models/item/thunder_in_a_bottle.json | 1 + .../item/thunder_in_a_bottle_empty.json | 1 + .../models/item/thunder_leggings.json | 1 + .../models/item/thunder_leggings_dyed.json | 1 + .../models/item/thunder_shards.json | 1 + .../models/item/thunderbolt_necklace.json | 1 + .../firmskyblock/models/item/tic_tac_toe.json | 1 + .../firmskyblock/models/item/tidal_rune.json | 1 + .../models/item/tidal_rune_2.json | 1 + .../models/item/tidal_rune_3.json | 1 + .../models/item/tiger_shark_tooth.json | 1 + .../models/item/tight_pants_fragment.json | 1 + .../models/item/tightly_tied_hay_bale.json | 1 + .../firmskyblock/models/item/time_gun.json | 1 + .../firmskyblock/models/item/time_knife.json | 1 + .../firmskyblock/models/item/timite.json | 1 + .../firmskyblock/models/item/tiny_dancer.json | 1 + .../firmskyblock/models/item/tiny_hammer.json | 1 + .../models/item/tiny_scaffolding.json | 1 + .../firmskyblock/models/item/titan_boots.json | 1 + .../models/item/titan_boots_dyed.json | 1 + .../models/item/titan_chestplate.json | 1 + .../models/item/titan_chestplate_dyed.json | 1 + .../models/item/titan_leggings.json | 1 + .../models/item/titan_leggings_dyed.json | 1 + .../firmskyblock/models/item/titan_line.json | 1 + .../models/item/titanic_exp_bottle.json | 1 + .../models/item/titanium_alloy.json | 1 + .../models/item/titanium_artifact.json | 1 + .../models/item/titanium_belt.json | 1 + .../models/item/titanium_cloak.json | 1 + .../models/item/titanium_drill.json | 1 + .../models/item/titanium_drill_drilling.json | 1 + .../models/item/titanium_drill_engine.json | 1 + .../models/item/titanium_fuel_tank.json | 1 + .../models/item/titanium_gauntlet.json | 1 + .../models/item/titanium_necklace.json | 1 + .../models/item/titanium_ore.json | 1 + .../models/item/titanium_pickaxe.json | 1 + .../models/item/titanium_relic.json | 1 + .../models/item/titanium_ring.json | 1 + .../models/item/titanium_talisman.json | 1 + .../models/item/titanium_tesseract.json | 1 + .../models/item/titanoboa_shed.json | 1 + .../firmskyblock/models/item/toil_log.json | 1 + .../models/item/token_of_the_century.json | 1 + .../models/item/topaz_crystal.json | 1 + .../firmskyblock/models/item/topaz_drill.json | 1 + .../models/item/topaz_drill_drilling.json | 1 + .../models/item/topaz_power_scroll.json | 1 + .../firmskyblock/models/item/tormentor.json | 1 + .../firmskyblock/models/item/torn_cloth.json | 1 + .../models/item/totem_of_corruption.json | 1 + .../item/totem_of_corruption_model0.json | 1 + .../item/totem_of_corruption_model1.json | 1 + .../item/totem_of_corruption_model2.json | 1 + .../item/totem_of_corruption_model3.json | 1 + .../item/totem_of_corruption_model4.json | 1 + .../item/totem_of_corruption_model5.json | 1 + .../item/totem_of_corruption_model6.json | 1 + .../item/totem_of_corruption_model7.json | 1 + .../models/item/toxic_arrow_poison.json | 1 + .../assets/firmskyblock/models/item/toy.json | 1 + .../models/item/training_weights.json | 1 + .../models/item/transmission_tuner.json | 1 + .../models/item/trapper_crest.json | 1 + .../models/item/trapper_crest_uncommon.json | 1 + .../item/trapper_den_travel_scroll.json | 1 + .../models/item/treasure_artifact.json | 1 + .../models/item/treasure_bait.json | 1 + .../models/item/treasure_hook.json | 1 + .../models/item/treasure_ring.json | 1 + .../models/item/treasure_talisman.json | 1 + .../firmskyblock/models/item/treasurite.json | 1 + .../models/item/tree_the_fish.json | 1 + .../models/item/treecapitator_axe.json | 1 + .../models/item/tribal_spear.json | 1 + .../models/item/tribal_spear_hand.json | 1 + .../models/item/tribal_spear_thrown.json | 1 + .../models/item/trick_or_treat_bag.json | 1 + .../models/item/trio_contacts_addon.json | 1 + .../models/item/troubled_bubble.json | 1 + .../models/item/true_defense_potion.json | 1 + .../item/true_defense_splash_potion.json | 1 + .../models/item/true_essence.json | 1 + .../firmskyblock/models/item/tungsten.json | 1 + .../models/item/tungsten_key.json | 1 + .../models/item/tungsten_keychain.json | 1 + .../models/item/tungsten_plate.json | 1 + .../firmskyblock/models/item/tuning_fork.json | 1 + .../models/item/turbo_fishing_net.json | 1 + .../models/item/turbomax_vacuum.json | 1 + .../firmskyblock/models/item/tusk_fossil.json | 1 + .../models/item/tutti_frutti_poison.json | 1 + .../models/item/twilight_arrow_poison.json | 1 + .../models/item/two_iq_point.json | 1 + .../firmskyblock/models/item/ubiks_cube.json | 1 + .../models/item/ubiks_cube_turn.json | 1 + .../firmskyblock/models/item/ugly_boots.json | 1 + .../models/item/ugly_boots_fragment.json | 1 + .../firmskyblock/models/item/ugly_fossil.json | 1 + .../models/item/ultimate_carrot_candy.json | 1 + .../item/ultimate_carrot_candy_upgrade.json | 1 + .../models/item/ultimate_wither_scroll.json | 1 + .../firmskyblock/models/item/umber.json | 1 + .../firmskyblock/models/item/umber_key.json | 1 + .../firmskyblock/models/item/umber_plate.json | 1 + .../firmskyblock/models/item/umberella.json | 1 + .../models/item/uncommon_kuudra_chunk.json | 1 + .../models/item/uncommon_party_hat.json | 1 + .../firmskyblock/models/item/undead_bow.json | 1 + .../models/item/undead_bow_pulling_0.json | 1 + .../models/item/undead_bow_pulling_1.json | 1 + .../models/item/undead_bow_pulling_2.json | 1 + .../models/item/undead_catalyst.json | 1 + .../models/item/undead_sword.json | 1 + .../models/item/unfanged_vampire_part.json | 1 + .../firmskyblock/models/item/unique_rune.json | 1 + .../models/item/unknown_item.json | 1 + .../firmskyblock/models/item/unknown_pet.json | 1 + .../models/item/unstable_dragon_boots.json | 1 + .../item/unstable_dragon_boots_dyed.json | 1 + .../item/unstable_dragon_chestplate.json | 1 + .../item/unstable_dragon_chestplate_dyed.json | 1 + .../models/item/unstable_dragon_leggings.json | 1 + .../item/unstable_dragon_leggings_dyed.json | 1 + .../models/item/unstable_fragment.json | 1 + .../models/item/upgrade_stone_frost.json | 1 + .../models/item/upgrade_stone_glacial.json | 1 + .../models/item/upgrade_stone_subzero.json | 1 + .../models/item/vaccine_artifact.json | 1 + .../models/item/vaccine_ring.json | 1 + .../models/item/vaccine_talisman.json | 1 + .../models/item/vacuum_particle.json | 1 + .../firmskyblock/models/item/valkyrie.json | 1 + .../models/item/vampire_dentist_relic.json | 1 + .../models/item/vampire_mask.json | 1 + .../models/item/vampire_witch_mask.json | 1 + .../models/item/vampiric_melon.json | 1 + .../models/item/vanguard_boots.json | 1 + .../models/item/vanguard_boots_dyed.json | 1 + .../models/item/vanguard_chestplate.json | 1 + .../models/item/vanguard_chestplate_dyed.json | 1 + .../models/item/vanguard_leggings.json | 1 + .../models/item/vanguard_leggings_dyed.json | 1 + .../models/item/vanille_bronze.json | 1 + .../models/item/vanille_diamond.json | 1 + .../models/item/vanille_gold.json | 1 + .../models/item/vanille_silver.json | 1 + .../models/item/vanquished_blaze_belt.json | 1 + .../models/item/vanquished_ghast_cloak.json | 1 + .../item/vanquished_glowstone_gauntlet.json | 1 + .../item/vanquished_magma_necklace.json | 1 + .../models/item/velvet_top_hat.json | 1 + .../models/item/venator_genesis.json | 1 + .../models/item/venomous_potion.json | 1 + .../models/item/venomous_splash_potion.json | 1 + .../models/item/venoms_touch.json | 1 + .../models/item/venoms_touch_pulling_0.json | 1 + .../models/item/venoms_touch_pulling_1.json | 1 + .../models/item/venoms_touch_pulling_2.json | 1 + .../firmskyblock/models/item/vermin_belt.json | 1 + .../models/item/very_crude_gabagool.json | 1 + .../item/very_official_yellow_rock.json | 1 + .../models/item/very_scientific_paper.json | 1 + .../models/item/vial_of_venom.json | 1 + .../firmskyblock/models/item/viking_tear.json | 1 + .../models/item/village_talisman.json | 1 + .../models/item/vinerip_lasso.json | 1 + .../firmskyblock/models/item/vinesap.json | 1 + .../models/item/vinyl_beetle.json | 1 + .../models/item/vinyl_buzzin_beats.json | 1 + .../models/item/vinyl_cicada_symphony.json | 1 + .../models/item/vinyl_cricket_choir.json | 1 + .../models/item/vinyl_dynamites.json | 1 + .../models/item/vinyl_earthworm_ensemble.json | 1 + .../models/item/vinyl_pretty_fly.json | 1 + .../models/item/vinyl_rodent_revolution.json | 1 + .../models/item/vinyl_slow_and_groovy.json | 1 + .../models/item/vinyl_wings_of_harmony.json | 1 + .../models/item/vitamin_death.json | 1 + .../models/item/vitamin_life.json | 1 + .../item/void_sepulture_travel_scroll.json | 1 + .../firmskyblock/models/item/void_sword.json | 1 + .../models/item/voidedge_katana.json | 1 + .../models/item/voidedge_katana_hand.json | 1 + .../models/item/voidedge_katana_soulcry.json | 1 + .../item/voidedge_katana_soulcry_hand.json | 1 + .../models/item/voidwalker_katana.json | 1 + .../models/item/voidwalker_katana_hand.json | 1 + .../models/item/volcanic_rock.json | 1 + .../item/volcanic_stonefish_bronze.json | 1 + .../item/volcanic_stonefish_diamond.json | 1 + .../models/item/volcanic_stonefish_gold.json | 1 + .../item/volcanic_stonefish_silver.json | 1 + .../firmskyblock/models/item/volt_crux.json | 1 + .../firmskyblock/models/item/volta.json | 1 + .../firmskyblock/models/item/voodoo_doll.json | 1 + .../models/item/voodoo_doll_acupuncture.json | 1 + .../models/item/voodoo_doll_wilted.json | 1 + .../item/voodoo_doll_wilted_acupuncture.json | 1 + .../models/item/vorpal_katana.json | 1 + .../models/item/vorpal_katana_hand.json | 1 + .../models/item/vorpal_katana_soulcry.json | 1 + .../item/vorpal_katana_soulcry_hand.json | 1 + .../firmskyblock/models/item/wake_rune.json | 1 + .../firmskyblock/models/item/wake_rune_2.json | 1 + .../firmskyblock/models/item/wake_rune_3.json | 1 + .../firmskyblock/models/item/walnut.json | 1 + .../models/item/wand_of_atonement.json | 1 + .../models/item/wand_of_atonement_heal.json | 1 + .../models/item/wand_of_healing.json | 1 + .../models/item/wand_of_healing_heal.json | 1 + .../models/item/wand_of_mending.json | 1 + .../models/item/wand_of_mending_heal.json | 1 + .../models/item/wand_of_restoration.json | 1 + .../models/item/wand_of_restoration_heal.json | 1 + .../models/item/wand_of_strength.json | 1 + .../item/wand_of_strength_life_blood.json | 1 + .../models/item/wand_of_warding.json | 1 + .../firmskyblock/models/item/warden_art.json | 1 + .../models/item/warden_heart.json | 1 + .../models/item/warding_trinket.json | 1 + .../models/item/warm_wizard_face.json | 1 + .../models/item/warm_wizard_face_2_aqua.json | 1 + .../models/item/warm_wizard_face_2_black.json | 1 + .../models/item/warm_wizard_face_2_blue.json | 1 + .../models/item/warm_wizard_face_2_brown.json | 1 + .../models/item/warm_wizard_face_2_cyan.json | 1 + .../models/item/warm_wizard_face_2_gray.json | 1 + .../models/item/warm_wizard_face_2_green.json | 1 + .../models/item/warm_wizard_face_2_lime.json | 1 + .../item/warm_wizard_face_2_magenta.json | 1 + .../item/warm_wizard_face_2_orange.json | 1 + .../models/item/warm_wizard_face_2_pink.json | 1 + .../item/warm_wizard_face_2_purple.json | 1 + .../models/item/warm_wizard_face_2_red.json | 1 + .../item/warm_wizard_face_2_silver.json | 1 + .../models/item/warm_wizard_face_2_white.json | 1 + .../item/warm_wizard_face_2_yellow.json | 1 + .../models/item/warning_flare.json | 1 + .../firmskyblock/models/item/warts_stew.json | 1 + .../firmskyblock/models/item/warty.json | 1 + .../models/item/washed_up_souvenir.json | 1 + .../models/item/wasteland_travel_scroll.json | 1 + .../models/item/watcher_boots.json | 1 + .../models/item/watcher_chestplate.json | 1 + .../models/item/watcher_legs.json | 1 + .../firmskyblock/models/item/water_orb.json | 1 + .../models/item/weak_wolf_catalyst.json | 1 + .../models/item/weather_stick.json | 1 + .../models/item/webbed_fossil.json | 1 + .../models/item/wedding_ring_common.json | 1 + .../models/item/wedding_ring_epic.json | 1 + .../models/item/wedding_ring_legendary.json | 1 + .../models/item/wedding_ring_rare.json | 1 + .../models/item/wedding_ring_uncommon.json | 1 + .../firmskyblock/models/item/weird_tuba.json | 1 + .../models/item/weirder_tuba.json | 1 + .../models/item/werewolf_boots.json | 1 + .../models/item/werewolf_boots_dyed.json | 1 + .../models/item/werewolf_chestplate.json | 1 + .../models/item/werewolf_chestplate_dyed.json | 1 + .../models/item/werewolf_leggings.json | 1 + .../models/item/werewolf_leggings_dyed.json | 1 + .../models/item/werewolf_skin.json | 1 + .../firmskyblock/models/item/wet_book.json | 1 + .../firmskyblock/models/item/wet_napkin.json | 1 + .../firmskyblock/models/item/wet_pumpkin.json | 1 + .../firmskyblock/models/item/wet_water.json | 1 + .../firmskyblock/models/item/whale_bait.json | 1 + .../models/item/wheat_island_crystal.json | 1 + .../models/item/wheel_of_fate.json | 1 + .../models/item/whipped_magma_cream.json | 1 + .../firmskyblock/models/item/white_gift.json | 1 + .../models/item/white_gift_talisman.json | 1 + .../models/item/white_greater_backpack.json | 1 + .../models/item/white_jumbo_backpack.json | 1 + .../models/item/white_large_backpack.json | 1 + .../models/item/white_medium_backpack.json | 1 + .../models/item/white_small_backpack.json | 1 + .../models/item/white_spiral_rune.json | 1 + .../models/item/white_spiral_rune_2.json | 1 + .../models/item/white_spiral_rune_3.json | 1 + .../models/item/wiki_journal.json | 1 + .../models/item/wilson_engineering_plans.json | 1 + .../models/item/wilted_berberis.json | 1 + .../models/item/wilted_berberis_bunch.json | 1 + .../firmskyblock/models/item/winter_disc.json | 1 + .../models/item/winter_fragment.json | 1 + .../models/item/winter_island_crystal.json | 1 + .../firmskyblock/models/item/winter_rod.json | 1 + .../models/item/winter_rod_cast.json | 1 + .../models/item/winter_water_orb.json | 1 + .../models/item/wise_dragon_boots.json | 1 + .../models/item/wise_dragon_boots_dyed.json | 1 + .../models/item/wise_dragon_chestplate.json | 1 + .../item/wise_dragon_chestplate_dyed.json | 1 + .../models/item/wise_dragon_leggings.json | 1 + .../item/wise_dragon_leggings_dyed.json | 1 + .../models/item/wise_fragment.json | 1 + .../models/item/wise_wither_boots.json | 1 + .../models/item/wise_wither_boots_dyed.json | 1 + .../models/item/wise_wither_chestplate.json | 1 + .../item/wise_wither_chestplate_dyed.json | 1 + .../models/item/wise_wither_leggings.json | 1 + .../item/wise_wither_leggings_dyed.json | 1 + .../models/item/wishing_compass.json | 1 + .../models/item/wisp_ice_potion.json | 1 + .../firmskyblock/models/item/witch_mask.json | 1 + .../models/item/wither_blood.json | 1 + .../models/item/wither_boots.json | 1 + .../models/item/wither_boots_dyed.json | 1 + .../firmskyblock/models/item/wither_bow.json | 1 + .../models/item/wither_bow_pulling_0.json | 1 + .../models/item/wither_bow_pulling_1.json | 1 + .../models/item/wither_bow_pulling_2.json | 1 + .../models/item/wither_catalyst.json | 1 + .../models/item/wither_chestplate.json | 1 + .../models/item/wither_chestplate_dyed.json | 1 + .../models/item/wither_cloak.json | 1 + .../models/item/wither_leggings.json | 1 + .../models/item/wither_leggings_dyed.json | 1 + .../models/item/wither_shield_scroll.json | 1 + .../firmskyblock/models/item/wither_soul.json | 1 + .../models/item/wizard_breadcrumbs.json | 1 + .../firmskyblock/models/item/wizard_face.json | 1 + .../models/item/wizard_portal_memento.json | 1 + .../item/wizard_portal_memento_1st.json | 1 + .../firmskyblock/models/item/wizard_wand.json | 1 + .../models/item/wizardman_leggings.json | 1 + .../models/item/wolf_fur_mixin.json | 1 + .../firmskyblock/models/item/wolf_paw.json | 1 + .../firmskyblock/models/item/wolf_ring.json | 1 + .../models/item/wolf_talisman.json | 1 + .../firmskyblock/models/item/wolf_tooth.json | 1 + .../models/item/wolf_tooth_locked.json | 1 + .../models/item/wood_singularity.json | 1 + .../models/item/wood_talisman.json | 1 + .../models/item/woodcutting_crystal.json | 1 + .../firmskyblock/models/item/wooden_bait.json | 1 + .../firmskyblock/models/item/worm_bait.json | 1 + .../models/item/worm_membrane.json | 1 + .../models/item/worm_the_fish.json | 1 + .../models/item/wounded_potion.json | 1 + .../models/item/wounded_splash_potion.json | 1 + .../item/wrapped_gift_for_juliette.json | 1 + .../models/item/wriggling_larva.json | 1 + .../firmskyblock/models/item/wyld_boots.json | 1 + .../models/item/wyld_chestplate.json | 1 + .../models/item/wyld_leggings.json | 1 + .../firmskyblock/models/item/wyld_sword.json | 1 + .../assets/firmskyblock/models/item/x.json | 1 + .../assets/firmskyblock/models/item/y.json | 1 + .../models/item/yellow_bandana.json | 1 + .../models/item/yellow_greater_backpack.json | 1 + .../models/item/yellow_jumbo_backpack.json | 1 + .../models/item/yellow_large_backpack.json | 1 + .../models/item/yellow_medium_backpack.json | 1 + .../firmskyblock/models/item/yellow_rock.json | 1 + .../models/item/yellow_small_backpack.json | 1 + .../firmskyblock/models/item/yeti_rod.json | 1 + .../models/item/yeti_rod_cast.json | 1 + .../firmskyblock/models/item/yeti_sword.json | 1 + .../firmskyblock/models/item/yoggie.json | 1 + .../models/item/young_dragon_boots.json | 1 + .../models/item/young_dragon_boots_dyed.json | 1 + .../models/item/young_dragon_chestplate.json | 1 + .../item/young_dragon_chestplate_dyed.json | 1 + .../models/item/young_dragon_leggings.json | 1 + .../item/young_dragon_leggings_dyed.json | 1 + .../models/item/young_fragment.json | 1 + .../firmskyblock/models/item/youngite.json | 1 + .../assets/firmskyblock/models/item/z.json | 1 + .../firmskyblock/models/item/zap_rune.json | 1 + .../firmskyblock/models/item/zap_rune_2.json | 1 + .../firmskyblock/models/item/zap_rune_3.json | 1 + .../firmskyblock/models/item/zog_anvil.json | 1 + .../models/item/zombie_boots.json | 1 + .../models/item/zombie_boots_dyed.json | 1 + .../models/item/zombie_brain_mixin.json | 1 + .../models/item/zombie_chestplate.json | 1 + .../models/item/zombie_chestplate_dyed.json | 1 + .../models/item/zombie_commander_boots.json | 1 + .../item/zombie_commander_boots_dyed.json | 1 + .../item/zombie_commander_chestplate.json | 1 + .../zombie_commander_chestplate_dyed.json | 1 + .../models/item/zombie_commander_helmet.json | 1 + .../item/zombie_commander_helmet_dyed.json | 1 + .../item/zombie_commander_leggings.json | 1 + .../item/zombie_commander_leggings_dyed.json | 1 + .../models/item/zombie_commander_whip.json | 1 + .../item/zombie_commander_whip_cast.json | 1 + .../models/item/zombie_knight_boots.json | 1 + .../models/item/zombie_knight_boots_dyed.json | 1 + .../models/item/zombie_knight_chestplate.json | 1 + .../item/zombie_knight_chestplate_dyed.json | 1 + .../models/item/zombie_knight_helmet.json | 1 + .../item/zombie_knight_helmet_dyed.json | 1 + .../models/item/zombie_knight_leggings.json | 1 + .../item/zombie_knight_leggings_dyed.json | 1 + .../models/item/zombie_knight_sword.json | 1 + .../models/item/zombie_leggings.json | 1 + .../models/item/zombie_leggings_dyed.json | 1 + .../models/item/zombie_lord_boots.json | 1 + .../models/item/zombie_lord_boots_dyed.json | 1 + .../models/item/zombie_lord_chestplate.json | 1 + .../item/zombie_lord_chestplate_dyed.json | 1 + .../models/item/zombie_lord_helmet.json | 1 + .../models/item/zombie_lord_helmet_dyed.json | 1 + .../models/item/zombie_lord_leggings.json | 1 + .../item/zombie_lord_leggings_dyed.json | 1 + .../firmskyblock/models/item/zombie_mask.json | 1 + .../models/item/zombie_pickaxe.json | 1 + .../firmskyblock/models/item/zombie_ring.json | 1 + .../models/item/zombie_soldier_boots.json | 1 + .../item/zombie_soldier_boots_dyed.json | 1 + .../item/zombie_soldier_chestplate.json | 1 + .../item/zombie_soldier_chestplate_dyed.json | 1 + .../models/item/zombie_soldier_cutlass.json | 1 + .../models/item/zombie_soldier_helmet.json | 1 + .../item/zombie_soldier_helmet_dyed.json | 1 + .../models/item/zombie_soldier_leggings.json | 1 + .../item/zombie_soldier_leggings_dyed.json | 1 + .../models/item/zombie_sword.json | 1 + .../models/item/zombie_sword_heal.json | 1 + .../models/item/zombie_talisman.json | 1 + .../models/item/zoom_pickaxe.json | 1 + .../models/item/zoop_the_fish.json | 1 + .../firmskyblock/models/item/zorros_cape.json | 1 + assets/resourcepacks/Hypixel_Plus/config.json | 7 + assets/resourcepacks/Hypixel_Plus/pack.mcmeta | 24 ++ assets/resourcepacks/Hypixel_Plus/pack.png | Bin 0 -> 902 bytes src/lib/custom_resources.go | 116 ++++--- src/lib/renderer.go | 20 +- src/models/custom_resources.go | 27 +- src/models/resourcepacks.go | 13 +- src/routes/resourcepacks.go | 5 + src/stats/items/processing.go | 7 +- src/stats/pets.go | 25 +- src/utility/helper.go | 6 +- tools/formatHypixelPlus.go | 296 ++++++++++++++++++ ...Packs.go => formatResourcePacks.go.ignore} | 0 9843 files changed, 5123 insertions(+), 72 deletions(-) create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_red_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_red_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_yellow_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_yellow_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_front.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/archaeologist_compass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_spring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_summer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_winter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/auto_recombobulator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bait_ring/bait_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bait_ring/spiked_atrocity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_common.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_combat_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_heirloom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bits_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blaze_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_mythic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_aquamarine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_archfiend.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bingo_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_brick_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_byzantium.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_carmine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celadon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celeste.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_chocolate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_copper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_cyclamen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dark_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dung.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_emerald.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_flame.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_frostbitten.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_holly.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_iceberg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_livid.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lucky.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lucky.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mango.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_matcha.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_midnight.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mocha.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nadeshiko.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_necron.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nyanza.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pearlescent.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pelt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_periwinkle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_sangria.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_secret.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_tentacle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_treasure.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_wild_strawberry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag_empty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/catacombs_expert_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/century/century_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/century/century_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/ganache_chocolate_slab.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/nibble_chocolate_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/prestige_chocolate_realm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/rich_chocolate_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/smooth_chocolate_bar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chumming_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/artifact_of_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/coin_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/relic_of_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/ring_of_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/cropie_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/fermento_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/squash_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7_maxed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dante/dante_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dante/dante_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/crooked_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/hegemony_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/hocus_pocus_cipher.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/magic_8_ball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/seal_of_the_family.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/shady_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/day_crystal/day_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/day_crystal/eternal_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/day_crystal/night_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/devour_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dwarven_metal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emerald/emerald_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emerald/emerald_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/experience_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/farming_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/feather/feather_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/feather/feather_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fire_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_affinity_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_bowl/large_fish_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_bowl/medium_fish_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_bowl/small_fish_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/general_medallion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/blue_gift_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/gold_gift_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/green_gift_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/purple_gift_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/white_gift_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gravity_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_ring_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/handy_blood_chalice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/hunter/hunter_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/hunter/hunter_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jacobus_register.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jake_plushie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_golden.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jungle_amulet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/king_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/burning_kuudra_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/fiery_kuudra_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/infernal_kuudra_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_follower/kuudra_follower_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_follower/kuudra_follower_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lava_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/luck_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/eternal_hoof.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/lucky_hoof.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/magnetic_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/melody_hair.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mine_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mineral/glossy_mineral_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mineral/mineral_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/netherrack_looking_sunshade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag_empty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag_full.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/night_vision_charm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_bronze_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_diamond_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_gold_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_silver_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_4000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_5000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_6000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_7000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_4000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_5000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_6000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_7000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_badge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/broken_piggy_bank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/cracked_piggy_bank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/piggy_bank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pocket_espresso_machine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/artifact_potion_affinity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/potion_affinity_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/ring_potion_affinity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_artifact_full_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_artifact_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_full_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_full_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_talisman_full_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_talisman_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_amethyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_jasper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_ruby.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_sapphire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_topaz.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_amethyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_aquamarine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_citrine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jasper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_onyx.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_opal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_peridot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_ruby.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_sapphire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_topaz.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amethyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_ruby.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_ruby.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cat_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cheetah_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/fried_frozen_chicken.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/frozen_chicken.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/grizzly_paw.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/lynx_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/pigs_foot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/wolf_paw.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/reaper_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/red_claw/red_claw_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/red_claw/red_claw_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/big_brain_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluertooth_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluetooth_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/combo_mania_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/defective_monitor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/future_calories.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/garlic_flavored_gummy_bear.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/harmonious_surgery_toolkit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/iq_point.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/miniaturized_tubulator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/punchcard_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/rift_prism.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/ring_of_broken_love.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/ring_of_eternal_love.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/satelite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/test_bucket_please_ignore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/tiny_dancer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/two_iq_point.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/vampire_dentist_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/warding_trinket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runeblade/runeblade_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runeblade/runeblade_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runeblade/runeblade_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_grimoire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_studies.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_thesis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/sea_creature/sea_creature_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/sea_creature/sea_creature_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/dull_shark_tooth_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/honed_shark_tooth_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/raggedy_shark_tooth_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/razor_sharp_shark_tooth_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/sharp_shark_tooth_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/artifact_of_control.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_mythic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/shens_regalia.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/skeleton_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/soulflow/soulflow_battery.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/soulflow/soulflow_pile.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/soulflow/soulflow_supercell.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/space/artifact_of_space.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/space/ring_of_space.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/space/talisman_of_space.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/tarantula/tarantula_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/tarantula/tarantula_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/technoblade/blood_god_crest.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/technoblade/potato_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/titanium/titanium_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/titanium/titanium_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/titanium/titanium_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/titanium/titanium_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/trapper_crest/trapper_crest.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/trapper_crest/trapper_crest_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_artifact.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/village_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_common.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wolf/wolf_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wolf/wolf_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wood_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/zombie/zombie_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/zombie/zombie_talisman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_archer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_berserker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_healer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_mage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_archer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_berserker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_healer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_mage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_archer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_berserker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_healer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_mage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_cap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_cap_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_cap_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_slippers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_slippers_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_slippers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_chestplate.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_chestplate_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_chestplate_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/slug_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/slug_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/slug_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/armadillo_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bee_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bonzo_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/detransfigured_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/enderman_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/frog_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/happy_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/kalhuiki_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/not_deadgehog_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/parrot_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/pig_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/salmon_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/snowman_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/spirit_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/starred_bonzo_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/starred_spirit_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/vampire_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/vampire_witch_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/witch_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/zombie_mask.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/farmer_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/farmer_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ghost_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ghost_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/music_pants.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/music_pants_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/party_hat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/party_hat_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/party_hat_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ranchers_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ranchers_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/sea_lantern_hat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/sea_lantern_hat_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/shimmersparkle_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/shimmersparkle_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/shimmersparkle_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_robes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_shoes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/watcher/watcher_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/watcher/watcher_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/watcher/watcher_legs.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/skeleton_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/skeleton_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/skeleton_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/obsidian/obsidian_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/obsidian/obsidian_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/obsidian/obsidian_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/melody_shoes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/melody_shoes_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/melody_shoes_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_armor_1_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_chestplate_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_chestplate_1_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_helmet_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_helmet_1_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_leggings_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_leggings_1_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_armor_10_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_boots_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_boots_10_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_chestplate_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_chestplate_10_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_helmet_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_helmet_10_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_leggings_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_leggings_10_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_armor_11_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_boots_11.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_boots_11_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_chestplate_11.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_chestplate_11_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_helmet_11.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_helmet_11_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_leggings_11.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_leggings_11_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_armor_12_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_chestplate_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_chestplate_12_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_armor_13_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_boots_13.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_boots_13_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_chestplate_13.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_chestplate_13_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_leggings_13.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_leggings_13_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_armor_2_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_chestplate_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_chestplate_2_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_leggings_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_leggings_2_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_armor_3_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_chestplate_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_chestplate_3_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_leggings_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_leggings_3_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_armor_4_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_leggings_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_leggings_4_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_armor_5_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_chestplate_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_chestplate_5_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_helmet_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_helmet_5_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_armor_6_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_boots_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_boots_6_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_chestplate_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_chestplate_6_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_armor_7_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_chestplate_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_chestplate_7_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_helmet_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_helmet_7_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_leggings_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_leggings_7_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_armor_8_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_boots_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_boots_8_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_leggings_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_leggings_8_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_armor_9_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_boots_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_boots_9_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_helmet_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_helmet_9_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_leggings_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_leggings_9_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_rage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_chestplate_rage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings_rage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_black_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_blue_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_brown_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_cyan_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_gray_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_green_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_magenta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_magenta_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_orange_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_pink_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_purple_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_red_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_silver_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_white_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_yellow_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/burned_pants.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/chicken_leggs.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/exceedingly_comfy_sneakers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/femurgrowth_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/gunther_sneakers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/leggings_of_the_coven.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/leggings_of_the_coven_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/lively_sepulture_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/orange_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/snake_in_a_boot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_aqua.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_lime.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_magenta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/wizard_face.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/s_logo_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/ugly_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/wizardman_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/wizardman_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_tunic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_tunic_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_tunic_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_armor_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_armor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/cashmere_jacket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/cashmere_jacket_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings_dyed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ancient_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/annihilation_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/demonlord_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/destruction_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/blaze_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/ghast_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/glowstone_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/magma_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_mythic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/divan_pendant.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_black_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_blue_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_brown_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_green_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_white_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_yellow_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/draconic/dragonfade_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/draconic/dragonfuse_glove.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/adaptive_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/balloon_snake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/bone_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/shadow_assassin_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/soulweaver_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_adaptive_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_bone_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_shadow_assassin_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dwarven_handwarmers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ember/delirium_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ember/scourge_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ember/scoville_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clay_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clownfish_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/prismarine_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/sponge_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/flaming_fist.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/frozen_amulet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gauntlet_of_contagion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amber_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amethyst_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/jade_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/sapphire_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/implosion_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/knuckle_sandwich.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lava_shell_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/luminous_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/magma_lord_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mangrove/mangrove_grippers.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mangrove/mangrove_locket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mangrove/mangrove_vine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pelt_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pest_vest.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/disinfestor_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/enigma_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/golden_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/leech_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_inside.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_outside.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/shens_ringalia.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/silkrider_safety_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/vermin_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/shriveled_bracelet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_gloves.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/tera_shell_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/the_primordial.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/thunderbolt_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_blaze_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_ghast_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_glowstone_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_magma_necklace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/zorros_cape.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/frosty_snow_ball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null/alpha_slab.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null/null_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null_map.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/black_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/blue_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/brown_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/cyan_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/green_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/grey_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/light_blue_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/light_grey_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/lime_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/magenta_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/orange_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/pink_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/purple_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/red_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/white_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/yellow_greater_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/black_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/blue_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/brown_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/cyan_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/green_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/grey_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/light_blue_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/light_grey_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/lime_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/magenta_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/orange_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/pink_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/purple_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/red_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/white_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/yellow_jumbo_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack_upgrade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/black_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/blue_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/brown_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/cyan_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/green_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/grey_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/light_blue_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/light_grey_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/lime_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/magenta_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/orange_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/pink_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/purple_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/red_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/white_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/yellow_large_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/black_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/blue_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/brown_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/cyan_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/green_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/grey_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_blue_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_grey_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/lime_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/magenta_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/orange_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/pink_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/purple_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/red_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/white_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/yellow_medium_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/awakened_eye_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/awakened_eye_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/babyseal_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/babyseal_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/blue_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/blue_egg_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/christmas_stocking_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/christmas_stocking_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/dragon_egg_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/dragon_egg_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_black_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_black_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_blue_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_blue_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_green_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_green_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_purple_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_purple_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_white_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_white_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/green_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/green_egg_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_ender_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_ender_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_green_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_green_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_teal_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_teal_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/north_star_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/north_star_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/penguin_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/penguin_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack_applied.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/black_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/blue_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/brown_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/cyan_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/green_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/grey_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/light_blue_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/light_grey_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/lime_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/magenta_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/orange_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/pink_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/purple_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/red_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/white_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/yellow_small_backpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/trick_or_treat_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/dean_letter_of_recommendation.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/enchanted_mycelium_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/enchanted_red_sand_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/enchanted_sulphur_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/fire_soul.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/heavy_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_burning_tier_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_fiery_tier_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_hot_tier_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_infernal_tier_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_tier_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/marsh_spore_soup.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/match_sticks.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/bezos.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/blaze_ashes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/burning_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/compact_ooze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/corrupted_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/digested_mushrooms.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/ember_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/flames.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/gazing_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/hallowed_skull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/kada_lead.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/kuudra_teeth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/leather_cloth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/lumino_fiber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magma_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magmag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/millenia_old_blaze_ashes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/mutated_blaze_ashes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/rekindled_ember_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/spectre_dust.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/spell_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/tentacle_meat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/wither_soul.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/x.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/y.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/z.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mushroom_spore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/red_thornleaf.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/scorched_power_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/sulphur_ore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/whipped_magma_cream.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/architect_first_draft.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/aspiring_leap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/bonzo_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_10.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_8.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_9.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/crypt_skull_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/defuse_kit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_boss_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_chest_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_decoy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_golden_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_lore_diary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_lore_journal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_lore_paper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_normal_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_trap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_wizard_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/fel_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/fel_rose.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/fel_skull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_bigfoot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_boulder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_laser.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/golem_poppy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability_click.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/healing_tissue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/infinite_spirit_leap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/infinite_superboom_tnt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/inflatable_jerry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_a.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_b.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_c.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_d.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_f.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_s.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_x.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/kismet_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/livid_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/mimic_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/necron_handle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone_broken.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/sauls_recommendation.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/scarf_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/secret_dungeon_redstone_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/secret_tracker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/shiny_necron_handle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/spirit_bone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/spirit_leap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/spirit_wing.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/summoning_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/superboom_tnt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/thorn_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/training_weights.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/wither_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aquamarine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_archfiend.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bingo_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_brick_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_byzantium.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_carmine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celadon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celeste.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_chocolate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_copper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_cyclamen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_dark_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_dung.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_emerald.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_flame.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frostbitten.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_holly.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_iceberg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lava.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lava.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_livid.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_mango.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_matcha.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_midnight.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_mocha.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nadeshiko.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_necron.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nyanza.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_oasis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_oasis.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pastel_sky.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pastel_sky.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pearlescent.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pelt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_periwinkle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_portal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_portal.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sangria.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_secret.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_snowflake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_snowflake.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunflower.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunflower.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_treasure.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_warden.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_warden.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_wild_strawberry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/tentacle_dye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/awakened_summoning_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/crystal_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/draconic_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/endstone_rose.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/holy_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/hyper_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/hyper_catalyst_upgrade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/mite_gel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/mite_gel2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/old_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_dragon_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/protector_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/remnant_of_the_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/ritual_residue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/silent_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/sleeping_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/strong_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/summoning_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/superior_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/unstable_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/wise_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/young_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/blazetekk_ham.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/fudge_mint_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/fudge_mint_core_blink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/fudge_mint_core_blink.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/noisy_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/novice_skull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/ragna_rock.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/red_belt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/suspicious_red_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/vitamin_life.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/warden_art.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/alchemist_recipe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/dark_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/dead_seed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/decayed_bat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/dwarven_iron_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/eerie_toy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/ephemeral_gratitude.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/expired_pumpkin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/fairy_wings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/free_spider.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/french_fries.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/frozen_spider.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/great_spook_reforging_manual.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/nightmare_nullifier.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/obscure_ending.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/poisoned_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/precious.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/rogue_flesh.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scare_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sewer_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sirius_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sleepy_hollow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/spooky_tree.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sweet_flesh.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/the_soup_painting.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/wet_pumpkin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/dark_cacao_truffle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/egglocator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/egglocator_blink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/refined_dark_cacao_truffle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/steamed_chocolate_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/supreme_chocolate_bar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/blue_ice_hunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/bottle_of_jyrre.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/bottle_of_jyrre2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/cryopowder_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/einary_red_hoodie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_compass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_of_learning.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/glacial_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gold_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/green_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/hilt_of_true_ice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/ice_hunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_golden.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_mega.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/party_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/red_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/refined_bottle_of_jyrre.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/volcanic_rock.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/walnut.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/white_gift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/winter_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/ancient_claw.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/daedalus_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/griffin_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/bat_firework.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/blue_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/echolocator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/ectoplasm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/gold_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/green_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/horseman_candle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/pumpkin_guts.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/purple_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/soul_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/spooky_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/werewolf_skin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/box_of_seeds.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/chirping_stereo.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/compost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/condensed_fermento.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/cropie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/dung.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/enchanted_compost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/fermento.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/fine_flour.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/honey_jar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/jacobs_ticket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mouse_pest_trap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mutant_nether_stalk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mycelium_dust.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/omega_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_max.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_spraying.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_trap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/plant_matter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/polished_pumpkin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/prismapump.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/squash.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/super_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/tightly_tied_hay_bale.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_beetle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_buzzin_beats.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cicada_symphony.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cricket_choir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_dynamites.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_earthworm_ensemble.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_pretty_fly.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_rodent_revolution.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_slow_and_groovy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_wings_of_harmony.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/warty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/wriggling_larva.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agaricus_chum_cap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agarimoo_tongue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/alligator_skin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_helm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_hull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/busted_belt_buckle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/can_of_worms.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/cracked_ship_helm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/moby_duck.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/moby_duck_collector_edition.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/old_leather_boot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_coin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_hull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/titanoboa_shed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/torn_cloth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/blessed_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/carrot_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/dark_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/fish_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/frozen_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/glowy_chum_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/golden_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hot_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hotspot_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/ice_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/light_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/minnow_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/shark_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/spiked_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/spooky_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/treasure_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/whale_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/wooden_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/worm_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bobbin_scriptures.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/chum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/cup_of_blood.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/flaming_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/horn_of_taurus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/brimstone_handle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/fried_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/scorched_crab_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/singed_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lava_shell.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lump_of_magma.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lump_of_magma.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_lord_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/moogma_pelt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/mysterious_package.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/orb_of_energy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/pyroclastic_scale.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/thunder_shards.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/framed_volcanic_stonefish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_bronze.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_diamond.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_gold.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_silver.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_bronze.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_diamond.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_gold.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_silver.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_diamond.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_gold.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_silver.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_bronze.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/eternal_flame_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/magma_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/worm_membrane.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/blue_shark_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_shark_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_tooth_meal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/nurse_shark_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/shark_fin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/tiger_shark_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/diver_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/flexbone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/gill_membrane.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/sturdy_bone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_water.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/glowing_mushroom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/blue_ring.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/broken_radar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/half_eaten_mushroom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/bayou_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/hotspot_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/lava_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/shark_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/spooky_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/water_orb_water.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/winter_water_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/bouncy_beach_ball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/fish_food.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/fishy_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/giant_bouncy_beach_ball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/loudmouth_bass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/loudmouth_bass_divine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/seal_treat_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/agatha_coupon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/deep_root.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/fig_log.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/figstone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/mangcore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/candycomb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/exalted_lushlilac_bonbon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac_bonbon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/oceandy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/prime_lushlilac_bonbon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/shiniest.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/signal_enhancer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/starlyn_prize.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/stretching_sticks.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/tender_wood.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/vinesap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/ascension_rope.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/concentrated_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/control_switch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/corleonite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/divan_alloy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/divan_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_diamond_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_emerald_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_gold_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_lapis_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/electron_transmitter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/ftx_3070.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/gemstone_chamber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/helix.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/oil_barrel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/perfectly_cut_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/power_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/precursor_apparatus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/recall_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/robotron_reflector.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/silex.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/sludge_juice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/superlite_motor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/synthetic_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/yoggie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/bejeweled_handle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/biofuel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/chilled_pristine_potato.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/divan_powder_coating.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_block_bran.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_gemstone_grahams.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_metallic_minis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_ore_oats.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_tankard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/filet_o_fortune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/glacite_jewel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/goblin_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/golden_plate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mining_pumpkin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mining_raffle_ticket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_gourmand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_ore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_plate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/plasma.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_mithril.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_titanium.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/royal_pigeon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/royal_pigeon_call.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/sorrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/speckled_teacup.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/starfall.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_alloy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_ore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/treasurite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/volta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/amber_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/amethyst_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/aquamarine_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/citrine_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_amber_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_amethyst_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_aquamarine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_citrine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jade_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jasper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_onyx_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_opal_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_peridot_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_ruby_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_sapphire_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_topaz_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amber_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amethyst_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_aquamarine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_citrine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_jade_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_jasper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_onyx_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_opal_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_peridot_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_ruby_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_sapphire_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_topaz_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_amber_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_amethyst_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_aquamarine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_citrine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jade_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jasper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_onyx_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_opal_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_peridot_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_ruby_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_sapphire_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_topaz_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_mixture.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/jade_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/jasper_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/onyx_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/opal_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amber_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amethyst_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_aquamarine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_citrine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_jade_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_jasper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_onyx_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_opal_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_peridot_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_ruby_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_sapphire_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_topaz_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/peridot_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amber_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amethyst_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_aquamarine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_citrine_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_jade_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_jasper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_onyx_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_opal_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_peridot_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_ruby_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_sapphire_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_topaz_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/ruby_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/sapphire_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/topaz_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/claw_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/clubbed_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/footprint_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/glacite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/glacite_amalgamation.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/glacite_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/perfect_plate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/refined_tungsten.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/refined_umber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/secret_railroad_pass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/shattered_pendant.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/skeleton_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/spine_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/suspicious_scrap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten_plate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tusk_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/ugly_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/umber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/umber_key.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/umber_plate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/webbed_fossil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glossy_gemstone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/refined_mineral.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/aatrox_phone_number.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ananke_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bag_of_cash.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bag_of_gold.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bingo_display.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/booster_cookie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/booster_cookie_box.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bridge_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/carnival_ticket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/century_party_invitation.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/collection_display.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/colossal_exp_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/colossal_exp_bottle_upgrade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/connect_four.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/copper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/day_saver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/dianas_bookshelf.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/battle_disc.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/revenge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/spooky_disc.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/winter_disc.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_blob.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skull.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_attack_speed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_critical_chance.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_critical_damage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_defense.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_ferocity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_health.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_intelligence.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_magic_find.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_sea_creature_chance.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_strength.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_swapper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_walk_speed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/desert_island_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/farm_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/fishing_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/forest_island_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/mithril_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/nether_wart_island_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/resource_regenerator_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/wheat_island_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/winter_island_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/woodcutting_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/fruit_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/giant_flesh_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/giftbag_of_the_century.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/grand_exp_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/heat_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/hologram.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ice_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/island_npc.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/kuudra_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_light_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_light_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_lilac.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_lime.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_magenta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_rainbow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/magic_mushroom_soup.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/magical_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/matriarch_parfum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/matriarch_parfum_spraying.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/metaphysical_serum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/budget_hopper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/budget_hopper_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/cheese_fuel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/compactor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/corrupt_soil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/diamond_spreading.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/dwarven_compactor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/enchanted_hopper_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/everburning_flame.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/free_will.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_clay_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_fishing_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_revenant_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_tarantula_12.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/magma_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/mithril_infusion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/perfect_hopper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/perfect_hopper_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/plasma_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/postcard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/potato_spreading.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/solar_panel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/super_compactor_3000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_storage_expander.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/mysterious_crop.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/mysterious_meat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/necrons_ladder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/night_saver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/paint_cartridge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/parkour_controller.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/parkour_point.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/parkour_times.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/personal_bank_item.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/pet_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/plasma_nucleus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/plumber_sponge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/poison_sample.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/portalizer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/potion_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_aqua.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_lilac.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/rock_paper_shears.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/flower_maelstrom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/poem_of_infinite_love.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/poorly_wrapped_rock.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/rose_bouquet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/very_official_yellow_rock.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/warts_stew.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/wrapped_gift_for_juliette.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/yellow_rock.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/rotten_apple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/saving_grace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/shiny_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/shiny_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/shiny_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/sirius_personal_phone_number.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/skyblock_menu.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/skyblock_menu_rift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/social_display.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/solved_prism.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can_spraying.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stone_bridge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/avaricious_chalice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_soaked_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_stained_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/freshly_minted_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/golden_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/stock_of_stonks.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/super_magic_mushroom_soup.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/swappable_preview.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/talisman_bag.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/tic_tac_toe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/titanic_exp_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/token_of_the_century.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/toy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/arachne_sanctuary_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/base_camp_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/bayou_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/blaze_farm_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/crystal_hollows_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/crystal_nucleus_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_1_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_2_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_2_travel_scroll_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_3_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragon_nest_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragontail_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_1_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_2_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/foraging_1_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/foraging_2_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/forge_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_castle_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_crypts_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_da_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_wizard_tower_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_1_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_2_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_3_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/murkwater_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/museum_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/nether_fortress_boss_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/nether_fortress_boss_travel_scroll_old.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/park_cave_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/park_jungle_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/rift_wizard_tower_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/scarleton_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/smoldering_chambers_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/spiders_den_top_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/trapper_den_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/unknown_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/void_sepulture_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/wasteland_travel_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/trio_contacts_addon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/unknown_item.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wet_napkin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wheel_of_fate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/amber_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/amethyst_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/attribute_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/attribute_shard_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/book_of_stats.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/bookworm_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_bundle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_epic_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_legendary_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_stacking.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon_ultimate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/chain_end_times.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/endstone_idol.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/ensnared_snail.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/gold_bottle_cap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/golden_bounty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/octopus_tendril.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/pesthunting_guide.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_pincer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/sil_ex.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/farming_for_dummies.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fifth_master_star.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fighting_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/first_master_star.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/foraging_fortune_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/foraging_wisdom_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fourth_master_star.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fuming_potato_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/hot_potato_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/implosion_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/jade_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/jalapeno_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/jasper_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/kuudra_washing_machine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/luck_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/opal_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/polarvoid_book.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/recombobulator_3000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/ruby_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/sapphire_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/second_master_star.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/shadow_warp_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/sweep_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_peace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_war.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/third_master_star.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/topaz_power_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/transmission_tuner.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/ultimate_wither_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/wither_shield_scroll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/wood_singularity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/all_skills_super_boost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/antique_remedies.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/base_griffin_upgrade_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bejeweled_collar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bigger_teeth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bingo_booster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/black_woolen_yarn.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/brown_bandana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/burnt_texts.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/crochet_tiger_plushie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/dwarf_turtle_shelmet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/edible_seaweed.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/epic_kuudra_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/fake_neuroscience_degree.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/four_eyed_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/giant_frog_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/gold_claws.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/grandmas_knitting_needle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/great_carrot_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/green_bandana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/guardian_lucky_block.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_bouquet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_flower.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/large_frog_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/legendary_kuudra_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/magic_top_hat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/medium_frog_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/minos_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_all_skills_boost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_big_teeth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_bubblegum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_chocolate_syringe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share_drop.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share_drop.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_flying_pig.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_hardened_scales.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_iron_claws.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_lucky_clover.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_lucky_clover_drop.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_pure_mithril_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_quick_claw.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_sharpened_claws.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_common.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_legendary.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_spooky_cupcake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_textbook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_tier_boost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_tier_boost_drop.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_titanium_minecart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_toy_jerry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_vampire_fang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/primal_dragon_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/radioactive_vial.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rainbow_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rare_kuudra_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rat_jetpack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reaper_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reinforced_scales.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/scuttler_shell.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/serrated_claws.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/simple_carrot_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/small_frog_treat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/superb_carrot_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy_upgrade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_kuudra_chunk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_party_hat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_frost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_glacial.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_subzero.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/washed_up_souvenir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/yellow_bandana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/zog_anvil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/absorption_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/absorption_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/alchemy_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/alchemy_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/bitter_ice_tea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/black_coffee.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/brew_mug.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/brew_overlay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/cheap_coffee.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/decent_coffee.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/dr_paper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/hot_chocolate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/knockoff_cola.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/pulpous_orange_juice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/red_thornleaf_tea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/scarleton_premium.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/scornclaw_brew.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/slayer_energy_drink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tepid_green_tea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tutti_frutti_poison.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/viking_tear.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/burning_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/burning_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/enchanting_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/enchanting_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/farming_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/farming_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/foraging_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/foraging_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/god_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/great_spook_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/great_spook_potion.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/haste_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/haste_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/magic_find_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/magic_find_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mana_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mana_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/deepterror_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/end_portal_fumes_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/gabagoey_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/hot_chocolate_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mixin_glass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mushed_mushroom_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/spider_egg_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/wolf_fur_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/zombie_brain_mixin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mushed_glowy_tonic_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mushed_glowy_tonic_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/poisoned_candy_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/poisoned_candy_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rabbit_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rabbit_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/resistance_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/resistance_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rift_gravity_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rift_gravity_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spelunker_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spelunker_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spirit_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spirit_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stun_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stun_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/true_defense_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/true_defense_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/venomous_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/venomous_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wounded_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wounded_splash_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/amber_material.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/anvil_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/aote_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/beady_eyes.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blaze_wax.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blazen_sphere.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blessed_fruit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/boo_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/bulky_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/burrowing_spores.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/calcified_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/candy_corn.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/deep_sea_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamond_atom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamonite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dirt_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dragon_claw.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dragon_horn.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dragon_scale.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dwarven_treasure.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/endstone_geode.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/entropy_suppressor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/flowering_bouquet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frigid_husk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frozen_bauble.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/full_jaw_fanging_kit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/giant_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/gleaming_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/golden_ball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/hardened_wood.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/hot_stuff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/jaderald.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/jerry_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/kuudra_mandible.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lapis_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/large_walnut.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lucky_dice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/mangrove_gem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/meteor_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/midas_jewel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/moil_log.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/molten_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/moonglade_jewel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/necromancer_brooch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/onyx.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/optical_lens.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/overflowing_trash_can.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/overgrown_grass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/petrified_starfall.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pitchin_koi.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pocket_iceberg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/acacia_birdhouse.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/bubba_blister.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/chocolate_chip.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/dark_orb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/displaced_leech.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting_bundle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/end_stone_shulker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/ender_monocle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/furball.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/glacite_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/hazmat_enderman.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/horns_of_torment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/luxurious_spool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/magma_urchin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/mandraa.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/obsidian_tablet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/precious_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/rock_candy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/scorched_books.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/vitamin_death.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/precursor_gear.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/premium_flesh.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/presumed_gallon_of_red_paint.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pure_mithril.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rare_diamond.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_nose.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_scarf.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/refined_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rock_gemstone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rusty_anchor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/sadan_brooch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/salmon_opal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/salt_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/searing_stone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/shiny_prism.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/shriveled_cornea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/skymart_brochure.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/spirit_decoy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/squeaky_toy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/suspicious_vial.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/terry_snowglobe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/titanium_tesseract.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/toil_log.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/wither_blood.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap_bunch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_soup.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/anti_morph_potion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_1_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_3_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bacte_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/barry_pen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bedwars_wool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/berberis_blowgun.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/berberis_fuel_injector.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bottled_odonata.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bottled_odonata_blink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bottled_odonata_blink.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_extract.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_feeder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_legume.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem_bunch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/cruxmotion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dark_pebble.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_detector.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_food.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/deadgehog_spine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner_sniff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_wallet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/discrite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/emmett_pointer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/empty_odonata_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/enchanted_lush_berberis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/exportable_carrots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/fake_shuriken.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/family_doubloon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/farming_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/frosty_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/frozen_water.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/frozen_water_pungi.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_conclamatus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_firmitas.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_fortis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_pernimius.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_potentia.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_robur.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_validus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_vis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/gunthesizer_lichen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/half_eaten_carrot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemobomb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemoglass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemovibe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/highlite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/horsezooka.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hot_dog.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/key_to_kat_soul.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_hook_damaged.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_silk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/leech_supreme_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lil_pad.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal_anvil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_boots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_cap.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_chest.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_legs.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lush_berberis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/metal_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/metaphoric_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/muted_bark.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_coherent_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_whole_carrot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nullified_metal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/obsolite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/placeable_fairy_soul_rift.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/pre_digestion_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/protochicken.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/puff_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/reed_boat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_jump_elixir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_speed_elixir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_stability_elixir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_strength_elixir.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_chicken_n_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_citizen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_lazy_living.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_mirrored.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_mountain.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_slime.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_vampiric.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_wyldly_supreme.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/riftwart_roots.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/s_logo_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/scribe_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shadow_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shame_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/silkwire_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/splatter_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/spotlite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/super_leech_modifier.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/tasty_cat_food.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/tight_pants_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/time_gun.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/time_knife.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/timite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/tiny_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/turbomax_vacuum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/ubiks_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/ubiks_cube_turn.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/ugly_boots_fragment.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/vampiric_melon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/very_scientific_paper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/volt_crux.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wand_of_warding.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wilted_berberis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wilted_berberis_bunch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wizard_breadcrumbs.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/youngite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/bite_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/bite_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/bite_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/blood_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/blood_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/blood_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/clouds_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/clouds_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/clouds_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/couture_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/couture_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/couture_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/darkness_within_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/darkness_within_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/darkness_within_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/enchant_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/enchant_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/enchant_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/end_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/end_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/end_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fiery_burst_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fiery_burst_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fiery_burst_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/golden_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/golden_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/golden_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hearts_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hearts_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hearts_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hot_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hot_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hot_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lava_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lava_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lava_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/magical_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/magical_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/magical_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/music_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/music_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/music_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snow_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snow_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snow_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/spirit_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/spirit_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/spirit_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/tidal_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/tidal_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/tidal_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/bark_tunes_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/bark_tunes_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/bark_tunes_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blazing_sun_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blazing_sun_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blazing_sun_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/flower_carpet_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/flower_carpet_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/flower_carpet_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/golden_carpet_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/golden_carpet_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/golden_carpet_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/grand_freezing_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/grand_freezing_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/grand_freezing_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/meow_music_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/meow_music_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/meow_music_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/smitten_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/smitten_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/smitten_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/spellbound_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/spellbound_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/spellbound_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/unique_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/zap_rune.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/zap_rune_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/zap_rune_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/bronze_trophy_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/crystal_hollows_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/dwarven_mines_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/extra_large_gemstone_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/flower_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/garden_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_agronomy_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_candy_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_combat_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_dragon_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_dungeon_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_agronomy_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_combat_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_foraging_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_husbandry_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_mining_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_events_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_foraging_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_gemstone_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_husbandry_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_lava_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_mining_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_nether_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_runes_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_slayer_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_winter_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_agronomy_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_combat_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_dragon_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_foraging_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_gemstone_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_husbandry_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_lava_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_mining_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_nether_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_runes_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_slayer_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/pocket_sack_in_a_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/rune_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/silver_trophy_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_agronomy_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_combat_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_dragon_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_foraging_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_gemstone_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_husbandry_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_lava_fishing_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_mining_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_nether_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_runes_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_slayer_sack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/amalgamated_crimsonite_new.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/archfiend_dice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/blaze_rod_distillate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/capsaicin_eyedrops.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/chili_pepper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/crude_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/crude_gabagool_distillate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/derelict_ashe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/derelict_ashe_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_blaze_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_block.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_crude_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_glowstone_dust.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_magma_cream.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_nether_stalk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_blaze_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_crude_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_glowstone_dust.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_magma_cream.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_nether_stalk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_blaze_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_crude_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_glowstone_dust.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_magma_cream.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_nether_stalk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/glowstone_dust_distillate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/heavy_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/high_class_archfiend_dice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/hypergolic_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/hypergolic_ionized_ceramics.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/inferno_apex.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/inferno_vertex.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/kelvin_inverter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/magma_cream_distillate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/molten_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/nether_stalk_distillate.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/reaper_pepper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/reheated_gummy_polar_bear.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/stuffed_chili_pepper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/subzero_inverter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/sulphuric_coal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/teleporter_pill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/very_crude_gabagool.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/wilson_engineering_plans.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/festering_maggot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/foul_flesh.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/golden_powder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_flesh.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_flesh_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_viscera.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/scythe_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/shard_of_the_shredded.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/undead_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/coven_seal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/healing_melon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/healing_melon_bite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon_bite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon_bite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/mcgrubber_burger.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/unfanged_vampire_part.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/golden_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/grizzly_bait.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel_spin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel_spin.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/overflux_capacitor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/polished_pebble.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/red_claw_egg.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/silky_lichen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/true_essence.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/weak_wolf_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/wolf_tooth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/wolf_tooth_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/arachne_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/arachne_fang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/dark_queens_soul_drop.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/digested_mosquito.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/fly_swatter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/flycatcher_upgrade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/primordial_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/shriveled_wasp.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/soul_string.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/spider_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_catalyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_silk.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/toxic_arrow_poison.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/vial_of_venom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/absolute_ender_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/braided_griffin_feather.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_cage.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_conduit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_merger.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/gloomlock_grimoire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/judgement_core.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/judgement_core_blink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/judgement_core_blink.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_atom.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_edge.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_ovoid.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_sphere.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_sphere_locked.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/raw_soulflow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/sinful_dice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward_blink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soulflow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/tessellated_ender_pearl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/twilight_arrow_poison.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/alpha_pick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/archery_cube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/bingo_card.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_aqua.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_lime.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_magenta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/creative_mind.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/dead_bush_of_love.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/editor_pencil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_aqua.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_cyan.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_dark_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_gray.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_magenta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_orange.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_silver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_white.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/full_century_cake_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/random_century_cake_pack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/extreme_bingo_card.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/game_annihilator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/jar_of_sand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kloonboat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_common.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_epic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_rare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_special.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_uncommon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/lantern_of_the_dead.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/burning_coins.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/campaign_poster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_blue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_green.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_pink.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_yellow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/golden_collar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/golden_collar_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/mediocre_fish_drawing.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/moldy_muffin.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/rift_completion_memento.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/secret_bingo_memento.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/splendid_fish_drawing.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/mini_fish_bowl.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/new_year_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/plastic_shovel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/potato_silver_medal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/quality_map.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/secret_bingo_card.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/shiny_relic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish_singing.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish_singing.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_blueberry_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_cheesecake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_green_velvet_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_red_velvet_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_strawberry_shortcake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/spooky_pie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_cake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/bat_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/berry_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/candy_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/century_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/chill_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/clown_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/cluck_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/diamond_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/dust_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/egg_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/eon_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/experiment_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fish_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fossil_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/gabagool_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/giant_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/giant_the_fish_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/gift_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/goldor_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/herring_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/maxor_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/mob_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/nope_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/oops_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/party_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/priceless_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/priceless_the_fish.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/rabbit_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/rock_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/shrimp_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/skeleton_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/snowflake_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/spook_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/stew_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/storm_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/swamp_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/tree_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/worm_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/zoop_the_fish.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/wiki_journal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/wizard_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/pets/unknown_pet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_badphone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_badphone_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_lunar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_lunar_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_lunar_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_back.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_emissive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_on.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/armorshred_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_bundle_magma.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_armorshred.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_bouncy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_emerald_tipped.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_explosive.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_flint.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_glue.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_gold_tipped.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_icy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_magma.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_nansorb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_none.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_redstone_tipped.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_reinforced_iron.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/bouncy_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/emerald_tipped_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/explosive_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/flint_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/glue_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/gold_tipped_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/icy_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/magma_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/nansorb_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/redstone_tipped_arrow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/birch_forest_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/deep_ocean_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/desert_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/end_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/forest_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/jungle_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/mesa_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/mushroom_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/nether_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/roofed_forest_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/savana_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/taiga_biome_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/alert_flare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/ancestral_spade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/atominizer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_am.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_bt.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_fm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_gps.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_inf.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_seti.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_xm.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/carnival_dart_tube.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/charminizer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/holy_ice.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/holy_ice_splash.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/jingle_bells.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/moody_grappleshot.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/sharp_steak_stake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_blaster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_cannon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_howitzer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/sos_flare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/steak_stake.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/tactical_insertion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_acupuncture.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_wilted.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_wilted_acupuncture.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_healing.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_healing_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_mending.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_mending_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_restoration.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_restoration_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength_life_blood.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/warning_flare.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weird_tuba.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weirder_tuba.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/divan_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/divan_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/divan_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_4.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_full.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_high.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_low.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_med.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/amber_polished_drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/fuel_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/gemstone_fuel_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_blue_cheese.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_pesto.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_spicy.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_sunny_side.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_fuel_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/perfectly_cut_fuel_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/ruby_polished_drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/sapphire_polished_drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/starfall_seasoning.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_drill_engine.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_fuel_tank.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/tungsten_keychain.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/mithril_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/mithril_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/mithril_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/ruby_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/ruby_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/ruby_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill_drilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill_drilling.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/advanced_gardening_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/advanced_gardening_hoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_hoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/binghoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/block_zapper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/builders_ruler.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/builders_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/garden_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/garden_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_great_tilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_greater_tilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_greatest_tilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_no_tilling.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/infini_vacuum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/infini_vacuum_hooverius.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/infinidirt_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/portable_washer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/promising_hoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/rookie_hoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/skymart_hyper_vacuum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/skymart_turbo_vacuum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/skymart_vacuum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/spore_harvester.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_cheese_fuel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_compost.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_dung.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_fine_flour.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_honey_jar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_plant_matter.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_spraying.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/squeaky_mousemat.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/talbots_theodolite.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_cane_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_cane_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_cane_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_warts_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_warts_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_warts_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_3.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chum_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chumcap_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/auger_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/auger_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_lava_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_lava_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/challenge_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/challenge_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/champ_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/champ_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/farmer_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/farmer_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_cast_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/grappling_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/grappling_hook_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/hellfire_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/hellfire_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/ice_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/ice_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/magma_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/magma_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/null_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/phantom_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/phantom_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/prismarine_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/prismarine_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/rod_of_the_sea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/rod_of_the_sea_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/starter_lava_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/starter_lava_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/the_shredder.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/the_shredder_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/full_chum_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/full_chumcap_bucket.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/hotspot_radar.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/hurricane_in_a_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/hurricane_in_a_bottle_empty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/chum_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/common_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/festive_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/icy_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/junk_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/oasis_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/phantom_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/prismarine_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/shredded_line.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/speedy_line.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/sponge_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/stingy_sinker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/titan_line.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/treasure_hook.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle_empty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle_empty.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/umberella.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/abysmal_lasso.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/apex_praedator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/basic_fishing_net.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bingaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bubbles_of_air.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/cursus_ferae.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/decent_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/efficient_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/entangler_lasso.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/everstretch_lasso.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/fig_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/figstone_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/hunting_toolkit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/jungle_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/large_scaffolding.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/medium_fishing_net.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/medium_pocket_black_hole.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/medium_scaffolding.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/mobys_shears.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/nex_titanum.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/promising_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_basica.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_basica_set.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_forta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_forta_set.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_meliora.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_meliora_set.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_robusta.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_robusta_set.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_suprema.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_suprema_set.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/rookie_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/sculptors_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/seriously_damaged_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/silva_dominus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/small_pocket_black_hole.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/sweet_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/tiny_scaffolding.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/treecapitator_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/tuning_fork.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/turbo_fishing_net.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/venator_genesis.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/vinerip_lasso.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/weather_stick.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/anti_sentient_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/bandaged_mithril_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/bingonimbus_2000.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/bob_omb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel_anchor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel_treasure.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chisel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chrono_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dungeonbreaker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dwarven_metal_detector.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dwarven_metal_detector_model.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/eon_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fallen_star_tracker.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/flint_shovel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fractured_mithril_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_amethyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_full.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amber.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amethyst.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_full.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_jade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_sapphire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_topaz.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_sapphire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_topaz.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/glacite_chisel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/jungle_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/lapis_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/mithril_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/perfect_chisel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/pickonimbus.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/promising_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/promising_spade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_mithril_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_titanium_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/reinforced_chisel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_spade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/royal_compass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rusty_titanium_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/snow_shovel.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/stonk_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/titanium_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/zombie_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/zoom_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bone_boomerang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bone_boomerang_thrown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/null_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_bone_boomerang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_bone_boomerang_thrown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_0.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_1.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_2.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana_soulcry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana_soulcry_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/felthorn_reaper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/felthorn_reaper_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/starred_felthorn_reaper.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/starred_felthorn_reaper_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana_soulcry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana_soulcry_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/other/pumpkin_launcher.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/frozen_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/frozen_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/glacial_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/glacial_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/alchemists_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/alchemists_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bonzo_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bonzo_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st_hand.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_hand.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hellstorm_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hellstorm_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hope_of_the_resistance.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hope_of_the_resistance_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_volcano.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_volcano_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bat_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bat_wand_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bonzo_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bonzo_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_midas_staff.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_midas_staff_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear_thrown.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/arack.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_draconic.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_dragon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_open.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_teleport.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry_signature.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry_signature_parley.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry_signature_parley.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_open.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_teleport.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_transmission.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/astraea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/axe_of_the_shredded.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/axe_of_the_shredded_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/bingolibur.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_dragonfire.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_the_volcano.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/bouquet_of_lies.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_ashen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_auric.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstmaw_dagger_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstmaw_dagger_spirit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/chicken_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cleaver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/conjuring_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cow_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/crypt_dreadlord_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/crypt_witherlord_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/daedalus_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/dungeon_hammer.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/earth_shard.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/edible_mace.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ember_rod.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/emerald_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/end_stone_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/end_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/enrager.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fancy_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fel_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_ashen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_auric.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flaming_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flaming_sword_flames.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flower_of_truth.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/giant_cleaver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/giant_cleaver_hand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/golem_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword_1st.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword_1st.png.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartfire_dagger_ashen.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartfire_dagger_auric.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartmaw_dagger_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartmaw_dagger_spirit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hunter_knife.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyper_cleaver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyperion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leaping_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leech_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/livid_dagger.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mawdust_dagger_crystal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mawdust_dagger_spirit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mercenary_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/midas_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mushroom_cow_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/necromancer_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/necromancer_sword_flames.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/necron_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/nova_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/nova_sword_flames.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/pig_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/pigman_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/pooch_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/prismarine_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rabbit_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ragnarock_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/raider_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/reaper_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/recluse_fang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/revenant_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rogue_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/scorpion_foil.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/scylla.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/self_recursive_pickaxe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shadow_fury.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shadow_fury_flames.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shaman_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sheep_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_astraea.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_hyperion.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_necron_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_scylla.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_valkyrie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silent_death.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silk_edge_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_fang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_laced_karambit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silvertwist_karambit.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/spider_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/spirit_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/squire_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/star_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_daedalus_axe.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_midas_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_shadow_fury.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_stone_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_yeti_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sting.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/stone_blade.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/super_cleaver.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sword_of_bad_health.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sword_of_revelations.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sword_of_the_multiverse.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tactician_murder_weapon.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tactician_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tarantula_fang.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tormentor.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/undead_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/valkyrie.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/void_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/wither_cloak.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/wyld_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/yeti_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_knight_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_soldier_cutlass.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_sword.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_sword_heal.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/bingo_blaster.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand_lightning_strike.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/electric_wand_item.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/fire_veil_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/gyrokinetic_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand_left.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand_right.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/ice_spray_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/ink_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/ink_wand_ink_bomb.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/starlight_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/starlight_wand_starfall.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/starred_ice_spray_wand.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/flaming_flay.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/flaming_flay_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/soul_whip.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/soul_whip_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/zombie_commander_whip.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/zombie_commander_whip_cast.png create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aatrox_badphone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aatrox_badphone_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aatrox_batphone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aatrox_batphone_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aatrox_phone_number.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abingophone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abingophone_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_basic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_basic_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_dragon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_dragon_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_nucleus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_nucleus_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_clockwork.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_clockwork_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_flower.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_flower_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_lunar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_plus_lunar_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_volcano.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_flip_volcano_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_x_plus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_x_plus_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_x_plus_special_edition.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_x_plus_special_edition_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xi_ultra.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xi_ultra_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xi_ultra_style.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xi_ultra_style_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xii_mega.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xii_mega_color.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xii_mega_color_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xii_mega_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiii_pro.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiii_pro_giga.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiii_pro_giga_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiii_pro_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous_black_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abiphone_xiv_enormous_purple_on.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/absolute_ender_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/absorption_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/absorption_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abysmal_lasso.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/abyssal_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/acacia_birdhouse.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_archer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_berserker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_healer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_mage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_boots_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_archer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_berserker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_healer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_mage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_chestplate_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_archer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_berserker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_healer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_mage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adaptive_leggings_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adrenaline_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/adrenaline_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/advanced_gardening_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/advanced_gardening_hoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agaricus_cap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agaricus_cap_bunch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agaricus_chum_cap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agaricus_soup.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agarimoo_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agarimoo_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agarimoo_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agarimoo_tongue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agatha_coupon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agility_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/agility_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alchemist_recipe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alchemists_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alchemists_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alchemy_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alchemy_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alert_flare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/all_skills_super_boost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alligator_skin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/alpha_pick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amalgamated_crimsonite_new.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amber_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amber_material.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amber_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amber_polished_drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amber_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amethyst_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amethyst_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/amethyst_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ananke_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ancestral_spade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ancient_claw.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ancient_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/angler_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anita_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anita_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anita_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/annihilation_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_aqua.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_aqua_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_black_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_blue_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_brown_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_cyan_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_gray_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_green_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_lime.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_lime_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_magenta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_magenta_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_orange_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_pink_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_purple_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_silver_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_white_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_2_yellow_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_bite_scarf_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_morph_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anti_sentient_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/antique_remedies.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/anvil_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aote_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/apex_praedator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aquamarine_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_fang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arachne_sanctuary_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/archaeologist_compass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/archery_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/archery_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/archery_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/archfiend_dice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/architect_first_draft.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armadillo_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_magma_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_the_resistance_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armor_of_yog_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/armorshred_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_bundle_magma.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_armorshred.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_bouncy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_emerald_tipped.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_explosive.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_flint.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_glue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_gold_tipped.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_icy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_magma.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_nansorb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_none.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_redstone_tipped.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/arrow_swapper_reinforced_iron.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artifact_of_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artifact_of_control.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artifact_of_space.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artifact_potion_affinity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artisanal_shortbow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artisanal_shortbow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artisanal_shortbow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/artisanal_shortbow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ascension_rope.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_draconic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_dragon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end_etherwarp.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end_etherwarp_open.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end_etherwarp_teleport.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end_etherwarp_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_end_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_jerry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_jerry_signature.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_jerry_signature_parley.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_1_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_2_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_leech_3_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void_etherwarp.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void_etherwarp_open.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void_etherwarp_teleport.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void_etherwarp_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspect_of_the_void_transmission.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aspiring_leap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/astraea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atmospheric_filter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atmospheric_filter_spring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atmospheric_filter_summer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atmospheric_filter_winter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atominizer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atomsplit_katana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atomsplit_katana_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atomsplit_katana_soulcry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/atomsplit_katana_soulcry_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/attribute_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/attribute_shard_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/auger_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/auger_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/aurora_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/auto_recombobulator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/avaricious_chalice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/awakened_eye_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/awakened_eye_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/awakened_summoning_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_green_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_green_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_green_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_white_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_white_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_fading_white_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_of_the_shredded.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/axe_of_the_shredded_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/babyseal_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/babyseal_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backpack_cat_o_lantern.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backpack_cat_o_lantern_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backpack_cooler.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backpack_cooler_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/backwater_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bacte_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bag_of_cash.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bag_of_coal_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bag_of_coal_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bag_of_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bait_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/balloon_snake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bandaged_mithril_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bark_tunes_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bark_tunes_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bark_tunes_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/barry_pen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/base_camp_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/base_griffin_upgrade_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/basic_fishing_net.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/basic_gardening_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/basic_gardening_hoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_firework.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_person_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bat_wand_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/battle_disc.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bayou_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bayou_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beady_eyes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beastmaster_crest_common.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beastmaster_crest_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beastmaster_crest_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beastmaster_crest_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beastmaster_crest_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/beating_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bedwars_wool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bee_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bejeweled_collar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bejeweled_handle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berberis_blowgun.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berberis_fuel_injector.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berry_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/berserker_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bezos.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/big_brain_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/big_spring_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/big_spring_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bigger_spring_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bigger_spring_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bigger_teeth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingbow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingbow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingbow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingbow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/binghoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_blaster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_card.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_combat_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_display.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_heirloom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_lava_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_lava_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingo_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingolibur.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bingonimbus_2000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biofuel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_suit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/biohazard_suit_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/birch_forest_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bite_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bite_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bite_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bits_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bitter_ice_tea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_coffee.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/black_woolen_yarn.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blade_of_dragonfire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blade_of_the_volcano.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_ashes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_farm_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_rod_distillate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blaze_wax.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazen_sphere.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_am.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_bt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_fm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_gps.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_inf.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_seti.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazetekk_ham_radio_xm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazing_sun_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazing_sun_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blazing_sun_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blessed_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blessed_fruit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blindness_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blindness_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blobfish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blobfish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blobfish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blobfish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/block_zapper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_donor_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_donor_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_donor_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_god_crest.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_soaked_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blood_stained_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bloodbadge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bloodbadge_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blooming_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blooming_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blooming_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_egg_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_gift_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_ice_hunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_shark_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/blue_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bluertooth_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bluetooth_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bob_omb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bobbin_scriptures.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bone_boomerang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bone_boomerang_thrown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bone_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bone_reaver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bone_reaver_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bonzo_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bonzo_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bonzo_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bonzo_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/boo_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression_mythic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_progression_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/book_of_stats.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bookworm_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/booster_cookie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/booster_cookie_box.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/boots_of_the_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/boots_of_the_pack_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bottle_of_jyrre.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bottled_odonata.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bottled_odonata_blink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_beach_ball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouncy_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bouquet_of_lies.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/box_of_seeds.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/braided_griffin_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bridge_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brimstone_handle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/broken_piggy_bank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/broken_radar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_hunter_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_ship_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_ship_helm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_ship_hull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bronze_trophy_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_bandana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/brown_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bubba_blister.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bubbles_of_air.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_aquamarine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_archfiend.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_bingo_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_bone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_brick_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_byzantium.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_carmine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_celadon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_celeste.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_chocolate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_copper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_cyclamen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_dark_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_dung.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_emerald.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_flame.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_frostbitten.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_holly.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_iceberg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_lava.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_livid.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_lucky.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_mango.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_matcha.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_midnight.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_mocha.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_nadeshiko.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_necron.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_nyanza.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pastel_sky.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pearlescent.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pelt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_periwinkle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_portal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pure_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pure_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pure_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_pure_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_rose.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_sangria.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_secret.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_tentacle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_treasure.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_warden.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bucket_of_dye_wild_strawberry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/budget_hopper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/budget_hopper_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/builders_ruler.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/builders_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/bulky_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burned_pants.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_aurora_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_crimson_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_fervor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_hollow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_kuudra_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burning_terror_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burnt_texts.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burrowing_spores.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burstfire_dagger_ashen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burstfire_dagger_auric.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burstmaw_dagger_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burstmaw_dagger_spirit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burststopper_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/burststopper_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/busted_belt_buckle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_knife.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_knife_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_knife_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cactus_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/caducous_extract.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/caducous_feeder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/caducous_legume.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/caducous_stem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/caducous_stem_bunch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_aqua.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_lime.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_magenta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cake_soul_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/calcified_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campaign_poster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campfire_talisman_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campfire_talisman_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campfire_talisman_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campfire_talisman_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/campfire_talisman_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/can_of_worms.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_corn.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candy_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/candycomb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/canopy_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/capsaicin_eyedrops.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_dart_tube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_fishing_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_fishing_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_mask_bag.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_mask_bag_empty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_shovel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_shovel_anchor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_shovel_treasure.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carnival_ticket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/carrot_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cashmere_jacket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cat_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_expert_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catacombs_pass_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/celeste_wand_lightning_strike.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_memento_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_memento_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_memento_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_memento_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_memento_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_party_invitation.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/century_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chain_end_times.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/challenge_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/challenge_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/champ_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/champ_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/charlie_trousers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/charlie_trousers_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/charminizer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_coffee.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheap_tuxedo_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheese_fuel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cheetah_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chestplate_of_the_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chestplate_of_the_pack_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chicken_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chicken_leggs.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chili_pepper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chill_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chilled_pristine_potato.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chirping_stereo.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chisel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chocolate_chip.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/christmas_stocking_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/christmas_stocking_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chrono_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chum_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chum_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chum_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/chumming_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/citrine_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/claw_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clay_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cleaver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clipped_wings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clouds_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clouds_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clouds_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clown_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clownfish_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/clubbed_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cluck_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/coco_chopper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/coco_chopper_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/coco_chopper_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/coin_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cold_resistance_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cold_resistance_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/collection_display.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/colossal_exp_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/colossal_exp_bottle_upgrade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/combat_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/combat_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/combo_mania_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/common_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/compact_ooze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/compactor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/compost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/concentrated_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/condensed_fermento.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/conjuring_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/connect_four.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/control_switch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/copper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/corleonite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/corrupt_soil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/corrupted_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/corrupted_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/couture_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/couture_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/couture_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/coven_seal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cow_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cracked_piggy_bank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cracked_ship_helm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/creative_mind.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/creeper_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/creeper_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crimson_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/critical_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/critical_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crochet_tiger_plushie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crooked_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cropie_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crown_of_greed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crown_of_greed_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crude_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crude_gabagool_distillate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crux_talisman_7_maxed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cruxmotion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cryopowder_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_dreadlord_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_skull_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crypt_witherlord_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_hollows_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_hollows_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/crystal_nucleus_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cup_of_blood.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cursus_ferae.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cyan_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cyan_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cyan_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cyan_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/cyan_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/daedalus_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/daedalus_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/danger_1_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/danger_2_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/danger_2_travel_scroll_old.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/danger_3_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dante_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dante_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_cacao_truffle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_claymore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_claymore_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_pebble.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dark_queens_soul_drop.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/darkness_within_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/darkness_within_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/darkness_within_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak_mythic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/davids_cloak_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/day_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/day_saver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dctr_space_helm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dead_bush_of_love.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dead_cat_detector.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dead_cat_food.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dead_seed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/deadgehog_spine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dean_letter_of_recommendation.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/death_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/death_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/death_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/death_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decayed_bat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/decent_coffee.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/deep_ocean_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/deep_root.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/deep_sea_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/deepterror_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/defective_monitor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/defuse_kit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/delirium_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/demonlord_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/derelict_ashe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/derelict_ashe_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/desert_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/desert_island_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/destruction_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/detective_scanner.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/detective_scanner_sniff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/detective_wallet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/detransfigured_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/devour_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_atom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_hunter_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_spreading.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamond_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diamonite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dianas_bookshelf.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/digested_mosquito.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/digested_mushrooms.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dirt_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dirt_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dirt_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/discrite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/disinfestor_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/displaced_leech.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ditto_blob.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ditto_skin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ditto_skull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_alloy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_pendant.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/divan_powder_coating.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/diver_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dodge_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dodge_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_black_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_blue_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_brown_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_green_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_white_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dojo_yellow_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dr_paper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/draconic_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/draconic_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/draconic_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/draconic_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_claw.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_egg_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_egg_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_horn.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_nest_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_scale.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_shortbow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_shortbow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_shortbow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragon_shortbow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragonfade_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragonfuse_glove.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dragontail_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_fuel_full.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_fuel_high.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_fuel_low.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/drill_fuel_med.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dull_shark_tooth_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dung.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_boss_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_chest_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_decoy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_disc_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_disc_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_disc_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_disc_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_disc_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_golden_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_lore_diary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_lore_journal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_lore_paper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_normal_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_potion_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_trap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeon_wizard_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dungeonbreaker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dust_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarf_turtle_shelmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_compactor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_diamond_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_emerald_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_gold_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_handwarmers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_iron_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_lapis_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_metal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_metal_detector.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_metal_detector_model.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_mines_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_os_block_bran.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_os_gemstone_grahams.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_os_metallic_minis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_os_ore_oats.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_tankard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dwarven_treasure.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_aquamarine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_archfiend.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_aurora.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_bingo_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_black_ice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_bone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_brick_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_byzantium.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_carmine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_celadon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_celeste.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_chocolate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_copper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_cyclamen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_dark_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_dung.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_emerald.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_flame.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_frog.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_frostbitten.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_holly.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_iceberg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_lava.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_livid.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_lucky.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_mango.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_matcha.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_midnight.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_mocha.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_nadeshiko.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_necron.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_nyanza.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_oasis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_ocean.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pastel_sky.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pearlescent.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pelt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_periwinkle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_portal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pure_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pure_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pure_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_pure_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_red_tulip.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_rose.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_sangria.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_secret.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_snowflake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_sunflower.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_sunset.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_treasure.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_warden.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/dye_wild_strawberry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/earth_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eccentric_painting.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eccentric_painting_bundle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/echolocator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ectoplasm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/edible_mace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/edible_seaweed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/editor_pencil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eerie_toy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eerie_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eerie_treat_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/efficient_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/egg_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/egglocator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/egglocator_blink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/einary_red_hoodie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_cap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_cap_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_slippers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_slippers_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_trousers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_trousers_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_tunic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eleanor_tunic_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/electric_wand_item.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/electron_transmitter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/elegant_tuxedo_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ember_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_armor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emerald_tipped_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emmett_pointer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_robes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_shoes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/emperor_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/empty_chum_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/empty_chumcap_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/empty_odonata_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchant_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchant_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchant_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_book_bundle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_book_stacking.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_compost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_hopper_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_lush_berberis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_mycelium_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_red_sand_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanted_sulphur_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanting_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enchanting_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_portal_fumes_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_shulker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_stone_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/end_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_monocle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ender_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enderman_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enderpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enderpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endersnake_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endersnake_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endersnake_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endstone_geode.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endstone_idol.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/endstone_rose.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enigma_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/enrager.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ensnared_snail.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/entangler_lasso.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/entropy_suppressor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eon_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eon_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ephemeral_gratitude.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epic_kuudra_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_aqua.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_dark_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_magenta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/epoch_cake_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eternal_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eternal_flame_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/eternal_hoof.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/etherwarp_conduit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/etherwarp_merger.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/everburning_flame.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/everstretch_lasso.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/exalted_lushlilac_bonbon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/exceedingly_comfy_sneakers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/expensive_toy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/expensive_toy_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/experience_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/experience_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/experience_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/experiment_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/expired_pumpkin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/explosive_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/explosive_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/explosive_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/explosive_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/explosive_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/exportable_carrots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/extra_large_gemstone_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/extreme_bingo_card.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fairy_wings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fake_neuroscience_degree.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fake_shuriken.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fallen_star_tracker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/family_doubloon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fancy_tuxedo_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_armor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farm_suit_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farmer_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farmer_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farmer_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_1_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_2_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_for_dummies.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/farming_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/feather_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/feather_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fel_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fel_rose.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fel_skull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fel_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/felthorn_reaper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/felthorn_reaper_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/femurgrowth_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fermento_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fervor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/festering_maggot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/festive_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_aurora_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_burst_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_burst_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_burst_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_crimson_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_fervor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_hollow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_kuudra_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fiery_terror_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fifth_master_star.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fig_log.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fighting_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/figstone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/figstone_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/filet_o_fortune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/final_destination_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_amber_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_amethyst_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_aquamarine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_citrine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_flour.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_jade_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_jasper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_onyx_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_opal_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_peridot_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_ruby_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_sapphire_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fine_topaz_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/finwave_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/finwave_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/finwave_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_freeze_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_freeze_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_fury_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_fury_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_soul.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_spiral_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_spiral_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_spiral_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fire_veil_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/firedust_dagger_ashen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/firedust_dagger_auric.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/first_master_star.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fish_affinity_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fish_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fish_food.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fish_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fishing_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fishing_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fishing_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fishy_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flame_breaker_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flamebreaker_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flames.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_fist.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_flay.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_flay_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flaming_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_amber_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_amethyst_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_aquamarine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_citrine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_jade_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_jasper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_onyx_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_opal_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_peridot_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_ruby_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_sapphire_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawed_topaz_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_amber_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_amethyst_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_aquamarine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_citrine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_jade_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_jasper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_onyx_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_opal_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_peridot_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_ruby_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_sapphire_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flawless_topaz_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flexbone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flint_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flint_shovel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/florid_zombie_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/florid_zombie_sword_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_carpet_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_carpet_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_carpet_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_maelstrom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_of_truth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flower_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flowering_bouquet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fly_swatter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flycatcher_upgrade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flyfish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flyfish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flyfish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/flyfish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/footprint_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_1_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_2_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_fortune_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_wisdom_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foraging_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/forest_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/forest_island_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/forge_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fossil_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/foul_flesh.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/four_eyed_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fourth_master_star.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fractured_mithril_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/framed_volcanic_stonefish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/free_spider.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/free_will.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/french_fries.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/freshly_minted_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fried_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fried_frozen_chicken.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frigid_husk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frog_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frosty_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frosty_snow_ball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_amulet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_bauble.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_blaze_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_chicken.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_spider.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_water.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/frozen_water_pungi.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fruit_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ftx_3070.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fudge_mint_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fudge_mint_core_blink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fuel_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fuel_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/full_century_cake_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/full_chum_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/full_chumcap_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/full_jaw_fanging_kit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fuming_potato_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fungi_cutter_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fungi_cutter_brown_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/fungi_cutter_brown_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/furball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/future_calories.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gabagoey_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gabagool_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/game_annihilator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ganache_chocolate_slab.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/garden_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/garden_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/garden_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/garlic_flavored_gummy_bear.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gauntlet_of_contagion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gazing_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gem_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gem_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gem_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_chamber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_fuel_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_amethyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_full.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_amethyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_full.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_sapphire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_model_topaz.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_sapphire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_gauntlet_topaz.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_mixture.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gemstone_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/general_medallion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/generator_upgrade_stone_clay_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/generator_upgrade_stone_fishing_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/generator_upgrade_stone_revenant_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/generator_upgrade_stone_tarantula_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ghast_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ghost_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ghoul_buster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ghoul_buster_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_bouncy_beach_ball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_cleaver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_cleaver_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fishing_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fishing_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fishing_rod_cast_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fishing_rod_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_flesh_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fragment_bigfoot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fragment_boulder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fragment_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_fragment_laser.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_frog_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_the_fish_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giant_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giants_eye_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giants_eye_sword_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giants_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giants_sword_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_black_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_black_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_blue_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_blue_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_compass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_gold_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_gold_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_green_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_green_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_of_learning.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_purple_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_purple_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_white_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gift_white_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/giftbag_of_the_century.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gill_membrane.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gillsplash_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gillsplash_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gillsplash_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacial_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacial_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacial_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacial_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacial_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_amalgamation.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_chisel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_helmet_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_jewel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glacite_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gleaming_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gloomlock_grimoire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_gemstone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glossy_mineral_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glowing_mushroom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glowstone_dust_distillate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glowstone_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glowy_chum_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glue_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_conclamatus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_firmitas.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_fortis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_pernimius.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_potentia.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_robur.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_validus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/glyph_vis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_egg_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_egg_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_egg_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_egg_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_king_scent_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_king_scent_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_omelette.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_omelette_blue_cheese.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_omelette_pesto.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_omelette_spicy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goblin_omelette_sunny_side.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_bottle_cap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_claws.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_gift_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_hunter_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gold_tipped_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_ball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_bounty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_carpet_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_carpet_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_carpet_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_collar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_collar_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_fish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_fish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_fish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_fish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_plate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golden_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/goldor_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_armor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_poppy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/golem_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_exp_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_freezing_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_freezing_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_freezing_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_searing_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_searing_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grand_searing_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grandmas_knitting_needle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grappling_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grappling_hook_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gravity_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_carrot_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_artifact_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_belt_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_boots_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_chestplate_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_cloak_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_gloves_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_helmet_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_leggings_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_necklace_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_reforging_manual.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_ring_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_staff_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_staff_1st_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_sword_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_spook_talisman_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_white_shark_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/great_white_tooth_meal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_bandana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_egg_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_gift_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/green_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grey_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grey_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grey_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grey_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grey_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/griffin_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/griffin_upgrade_stone_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/griffin_upgrade_stone_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/griffin_upgrade_stone_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/griffin_upgrade_stone_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grizzly_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/grizzly_paw.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/growth_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/guardian_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/guardian_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/guardian_lucky_block.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gunther_sneakers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gunthesizer_lichen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gusher_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gusher_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gusher_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gusher_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/gyrokinetic_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/half_eaten_carrot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/half_eaten_mushroom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hallowed_skull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hambagger_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hambagger_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hamster_wheel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hamster_wheel_spin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/handy_blood_chalice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/happy_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_diamond_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hardened_wood.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/harmonious_surgery_toolkit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/harvest_harbinger_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/harvest_harbinger_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haste_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haste_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haste_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haste_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haunt_ability.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/haunt_ability_click.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hazmat_enderman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_melon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_melon_bite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/healing_tissue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartfire_dagger_ashen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartfire_dagger_auric.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartmaw_dagger_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartmaw_dagger_spirit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hearts_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hearts_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hearts_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartsplosion_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartsplosion_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heartsplosion_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heat_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/heavy_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hegemony_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/helix.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hellfire_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hellfire_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hellstorm_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hellstorm_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/helmet_of_the_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/helmet_of_the_pack_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hemobomb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hemoglass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hemovibe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/herring_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/high_class_archfiend_dice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/highlite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hilt_of_true_ice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hocus_pocus_cipher.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hoe_of_great_tilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hoe_of_greater_tilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hoe_of_greatest_tilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hoe_of_no_tilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_ender_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_ender_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_green_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_green_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_red_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_red_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_teal_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_teal_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_yellow_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holiday_chest_yellow_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_wand_left.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hollow_wand_right.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hologram.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_ice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/holy_ice_splash.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/honed_shark_tooth_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/honey_jar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hope_of_the_resistance.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hope_of_the_resistance_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/horn_of_taurus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/horns_of_torment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/horseman_candle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/horsezooka.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_aurora_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_chocolate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_chocolate_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_cocoa_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_cocoa_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_crimson_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_dog.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_fervor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_hollow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_potato_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_stuff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hot_terror_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hotspot_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hotspot_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hotspot_radar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hotspot_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hotspot_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hub_castle_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hub_crypts_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hub_da_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hub_wizard_tower_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hunter_knife.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hunter_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hunter_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hunting_toolkit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_in_a_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hurricane_in_a_bottle_empty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hydra1_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hydra1_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hydra1_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hyper_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hyper_catalyst_upgrade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hyper_cleaver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hypergolic_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hypergolic_ionized_ceramics.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/hyperion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_hunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_skates_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_skates_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_skates_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ice_spray_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ichthyic_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ichthyic_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ichthyic_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/icy_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/icy_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/implosion_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/implosion_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_aurora_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_crimson_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_fervor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_hollow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_kuudra_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infernal_terror_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_apex.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_blaze_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_block.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_crude_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_glowstone_dust.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_magma_cream.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_fuel_nether_stalk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_heavy_blaze_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_heavy_crude_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_heavy_glowstone_dust.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_heavy_magma_cream.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_heavy_nether_stalk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_hypergolic_blaze_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_hypergolic_crude_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_hypergolic_glowstone_dust.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_hypergolic_magma_cream.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_hypergolic_nether_stalk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inferno_vertex.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infini_vacuum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infini_vacuum_hooverius.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infinidirt_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infinite_spirit_leap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/infinite_superboom_tnt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/inflatable_jerry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ink_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ink_wand_ink_bomb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/intimidation_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/intimidation_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/intimidation_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/intimidation_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/iq_point.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/island_npc.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/item_spirit_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/item_spirit_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/item_spirit_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/item_spirit_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jacobs_ticket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jacobus_register.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jade_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jade_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jade_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jade_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jade_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jaderald.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jake_plushie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jalapeno_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jar_of_sand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jasper_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jasper_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jasper_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jasper_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_box_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_box_golden.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_box_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_box_mega.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_box_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_talisman_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_talisman_golden.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_talisman_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jerry_talisman_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jingle_bells.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/judgement_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/judgement_core_blink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juicy_healing_melon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juicy_healing_melon_bite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juju_shortbow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juju_shortbow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juju_shortbow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/juju_shortbow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jumbo_backpack_upgrade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_amulet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/jungle_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/junk_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/junk_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/junk_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/junk_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kada_lead.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kalhuiki_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/karate_fish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/karate_fish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/karate_fish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/karate_fish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kat_bouquet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kat_flower.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kelly_tshirt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kelly_tshirt_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kelvin_inverter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_a.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_b.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_c.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_d.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_f.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_s.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_to_kat_soul.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/key_x.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/king_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kismet_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kloonboat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/knockback_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/knockback_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/knockoff_cola.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/knuckle_sandwich.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_burning_tier_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity_common.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity_special.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_cavity_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_fiery_tier_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_follower_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_hot_tier_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_infernal_tier_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_mandible.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_teeth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_tier_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/kuudra_washing_machine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_light_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_light_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_lilac.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_lime.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_magenta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_rainbow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lamp_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lantern_of_the_dead.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_helmet_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_armor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lapis_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_agronomy_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_candy_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_combat_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_dragon_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_dungeon_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_agronomy_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_combat_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_foraging_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_husbandry_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_enchanted_mining_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_events_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_fish_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_foraging_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_frog_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_gemstone_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_husbandry_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_lava_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_mining_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_nether_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_runes_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_scaffolding.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_slayer_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_walnut.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/large_winter_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/larva_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/larva_hook_damaged.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/larva_silk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/last_breath.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/last_breath_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/last_breath_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/last_breath_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_horse_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_horse_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_horse_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_horse_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_shell.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_shell_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lava_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lavatears_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lavatears_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lavatears_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_helmet_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaflet_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leaping_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leather_cloth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leech_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leech_supreme_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leech_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/legend_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/legend_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/legendary_kuudra_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leggings_of_the_coven.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leggings_of_the_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/leggings_of_the_pack_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_blue_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_blue_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_blue_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_blue_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_blue_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_grey_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_grey_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_grey_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_grey_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/light_grey_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lightning_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lightning_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lightning_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lil_pad.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lime_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lime_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lime_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lime_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lime_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lively_sepulture_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/livid_dagger.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/livid_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/living_metal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/living_metal_anvil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lm_egg_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lm_egg_cap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lm_egg_chest.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lm_egg_legs.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lotus_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lotus_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lotus_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lotus_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/loudmouth_bass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/loudmouth_bass_divine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luck_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luck_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lucky_dice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lucky_hoof.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lumino_fiber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luminous_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lump_of_magma.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luscious_healing_melon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luscious_healing_melon_bite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lush_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lush_berberis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lush_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lush_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lushlilac.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lushlilac_bonbon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/luxurious_spool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/lynx_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/machine_gun_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/machine_gun_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/machine_gun_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/machine_gun_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magenta_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magenta_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magenta_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magenta_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magenta_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magic_8_ball.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magic_find_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magic_find_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magic_mushroom_soup.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magic_top_hat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magical_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magical_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magical_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_core.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_cream_distillate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_fish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_fish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_fish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_lord_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magma_urchin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magmag.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/magnetic_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_ray_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_ray_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_ray_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_ray_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mana_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mandraa.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mangcore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mangrove_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mangrove_grippers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mangrove_locket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mangrove_vine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/marsh_spore_soup.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_catacombs_pass_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/master_skull_tier_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mastiff_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/match_sticks.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/matriarch_parfum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/matriarch_parfum_spraying.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mawdust_dagger_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mawdust_dagger_spirit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/maxor_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mcgrubber_burger.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mediocre_fish_drawing.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_agronomy_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_combat_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_dragon_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_fish_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_fishing_net.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_foraging_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_frog_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_gemstone_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_husbandry_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_lava_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_mining_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_nether_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_pocket_black_hole.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_runes_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_scaffolding.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/medium_slayer_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melody_hair.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melody_shoes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melody_shoes_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_dicer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_dicer_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_dicer_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_helmet_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/melon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/meow_music_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/meow_music_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/meow_music_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mercenary_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mesa_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/metal_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/metal_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/metal_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/metaphoric_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/metaphysical_serum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/meteor_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/midas_jewel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/midas_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/midas_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/midas_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/millenia_old_blaze_ashes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mimic_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mine_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miner_outfit_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mineral_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mini_fish_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/miniaturized_tubulator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_1_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_2_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_3_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_pumpkin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_raffle_ticket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_xp_boost_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mining_xp_boost_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/minion_storage_expander.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/minnow_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/minos_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_fishing_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mirrored_fishing_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mite_gel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_coat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_coat_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_fuel_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_gourmand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_infusion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_ore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_plate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mithril_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mixed_mite_gel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mob_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moby_duck.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moby_duck_collector_edition.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mobys_shears.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moil_log.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moldfin_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moldfin_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moldfin_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moldfin_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moldy_muffin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/molten_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moody_grappleshot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moogma_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moogma_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moogma_pelt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moonglade_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moonglade_jewel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moonglade_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/moonglade_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mosquito_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mosquito_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mosquito_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mosquito_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mouse_pest_trap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/murkwater_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/museum_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushed_glowy_tonic_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushed_glowy_tonic_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushed_mushroom_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_cow_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mushroom_spore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/music_pants.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/music_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/music_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/music_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mutant_nether_stalk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mutated_blaze_ashes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/muted_bark.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mycelium_dust.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mysterious_crop.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mysterious_meat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/mysterious_package.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nansorb_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nearly_coherent_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nearly_whole_carrot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_brooch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_lord_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necromancer_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necron_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necron_handle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/necrons_ladder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nether_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nether_fortress_boss_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nether_fortress_boss_travel_scroll_old.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nether_stalk_distillate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nether_wart_island_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/netherrack_looking_sunshade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/new_year_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/new_year_cake_bag.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/new_year_cake_bag_empty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/new_year_cake_bag_full.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nex_titanum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nibble_chocolate_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/night_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/night_saver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/night_vision_charm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nightmare_nullifier.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/noisy_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nope_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/north_star_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/north_star_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/not_deadgehog_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nova_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/novice_skull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_atom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_edge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_ovoid.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_sphere.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/null_sphere_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nullified_metal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nurse_shark_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/nutcracker_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/oasis_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_1_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_1_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_1_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_1_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_2_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_2_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_2_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_2_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_3_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_3_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_3_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obfuscated_fish_3_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obscure_ending.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obsidian_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obsidian_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obsidian_tablet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/obsolite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/oceandy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/octopus_tendril.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/odgers_bronze_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/odgers_diamond_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/odgers_gold_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/odgers_silver_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/oil_barrel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/old_leather_boot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/omega_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/onyx.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/onyx_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/oops_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/opal_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/opal_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/optical_lens.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orange_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/orb_of_energy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ornamental_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ornamental_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ornamental_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ornate_zombie_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ornate_zombie_sword_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/overflowing_trash_can.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/overflux_capacitor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/overgrown_grass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/oxford_shoes.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/paint_cartridge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/painters_palette.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/painters_palette_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box_mythic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pandoras_box_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/park_cave_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/park_jungle_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/parkour_controller.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/parkour_point.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/parkour_times.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/parrot_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_hat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_hat_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/party_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pelt_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/penguin_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/penguin_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_amber_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_amethyst_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_aquamarine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_10_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_11.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_11_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_12_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_13.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_13_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_1_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_2_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_3_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_4_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_5_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_6_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_7_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_8_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_boots_9_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_10_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_11.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_11_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_12_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_13.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_13_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_1_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_2_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_3_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_4_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_5_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_6_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_7_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_8_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chestplate_9_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_chisel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_citrine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_10_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_11.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_11_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_12_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_13.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_13_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_1_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_2_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_3_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_4_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_5_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_6_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_7_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_8_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_helmet_9_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_hopper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_hopper_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_jade_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_jasper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_10.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_10_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_11.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_11_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_12.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_12_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_13.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_13_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_1_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_2_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_3_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_4_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_5_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_6_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_7_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_8.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_8_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_9.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_leggings_9_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_onyx_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_opal_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_peridot_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_plate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_ruby_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_sapphire_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfect_topaz_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfectly_cut_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/perfectly_cut_fuel_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/peridot_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_bank_item.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_compactor_4000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_compactor_5000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_compactor_6000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_compactor_7000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_deletor_4000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_deletor_5000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_deletor_6000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/personal_deletor_7000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pest_repellent.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pest_repellent_max.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pest_repellent_spraying.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pest_trap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pest_vest.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunter_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunter_badge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunter_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunters_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunters_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunters_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunters_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pesthunting_guide.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pestilence_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pestilence_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pestilence_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_all_skills_boost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_big_teeth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_bubblegum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_chocolate_syringe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_exp_share.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_exp_share_drop.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_flying_pig.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_hardened_scales.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_iron_claws.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_lucky_clover.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_lucky_clover_drop.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_pure_mithril_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_quick_claw.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_sharpened_claws.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_skill_boost_common.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_skill_boost_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_skill_boost_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_skill_boost_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_skill_boost_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_spooky_cupcake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_textbook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_tier_boost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_tier_boost_drop.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_titanium_minecart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_toy_jerry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_item_vampire_fang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_luck_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pet_luck_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/petrified_starfall.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/phantom_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/phantom_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/phantom_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pickonimbus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pig_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pig_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/piggy_bank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pigman_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pigs_foot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pink_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pink_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pink_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pink_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pink_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pitchin_koi.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/placeable_fairy_soul_rift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plant_matter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plasma.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plasma_bucket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plasma_nucleus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plastic_shovel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/plumber_sponge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pocket_espresso_machine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pocket_iceberg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pocket_sack_in_a_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poem_of_infinite_love.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poison_sample.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poisoned_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poisoned_candy_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poisoned_candy_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/polarvoid_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/polished_pebble.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/polished_pumpkin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/polished_topaz_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/polished_topaz_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pooch_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/poorly_wrapped_rock.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/portable_washer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/portalizer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/postcard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potato_crown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potato_crown_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potato_silver_medal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potato_spreading.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potato_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/potion_affinity_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_amethyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_jasper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_ruby.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_sapphire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_artifact_topaz.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_amethyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_aquamarine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_citrine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_jasper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_onyx.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_opal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_peridot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_ruby.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_sapphire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_relic_topaz.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_ring_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_ring_amethyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_ring_jade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_ring_ruby.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_talisman_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_talisman_ruby.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/power_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pre_digestion_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/precious.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/precious_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/precursor_apparatus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/precursor_gear.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prehistoric_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prehistoric_egg_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prehistoric_egg_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prehistoric_egg_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prehistoric_egg_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/premium_flesh.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pressure_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pressure_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pressure_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prestige_chocolate_realm.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/presumed_gallon_of_red_paint.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/priceless_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_fear_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_fear_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_fear_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primal_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prime_lushlilac_bonbon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/primordial_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismapump.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/prismarine_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/promising_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/promising_hoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/promising_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/promising_spade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protector_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/protochicken.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/puff_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pulpous_orange_juice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pulse_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pulse_ring_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pulse_ring_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pulse_ring_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_dicer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_dicer_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_dicer_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_guts.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_launcher.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pumpkin_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/punchcard_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pure_mithril.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_egg_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_gift_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/purple_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/pyroclastic_scale.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/quality_map.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rabbit_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/radioactive_vial.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/raggedy_shark_tooth_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ragna_rock.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ragnarock_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/raider_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainbow_feather.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainbow_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainbow_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainbow_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainy_day_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainy_day_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rainy_day_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rampart_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ranchers_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/random_century_cake_pack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rare_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rare_kuudra_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rat_jetpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/raw_soulflow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/razor_sharp_shark_tooth_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_boots_rage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_chestplate_rage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_leggings_rage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_pepper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reaper_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/recall_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/recluse_fang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/recombobulator_3000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_claw_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_claw_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_claw_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_nose.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_scarf.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_thornleaf.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/red_thornleaf_tea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/redstone_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/redstone_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/redstone_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/redstone_tipped_arrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reed_boat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_amber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_bottle_of_jyrre.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_dark_cacao_truffle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_mineral.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_mithril.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_mithril_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_titanium.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_titanium_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_tungsten.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/refined_umber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reheated_gummy_polar_bear.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reindeer_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reindeer_backpack_applied.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reinforced_chisel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/reinforced_scales.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rekindled_ember_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/relic_of_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/remnant_of_the_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_aqua.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_lilac.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/repelling_candle_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/resistance_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/resistance_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/resource_regenerator_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/respiration_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/respiration_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/respiration_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_basica.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_basica_set.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_forta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_forta_set.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_meliora.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_meliora_set.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_robusta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_robusta_set.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_suprema.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/retia_suprema_set.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_flesh.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_flesh_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenant_viscera.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revenge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revive_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/revive_stone_broken.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rich_chocolate_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_completion_memento.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_gravity_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_gravity_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_jump_elixir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_necklace_inside.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_necklace_outside.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_prism.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_speed_elixir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_stability_elixir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_strength_elixir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_chicken_n_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_citizen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_lazy_living.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_mirrored.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_mountain.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_slime.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_vampiric.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_trophy_wyldly_supreme.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rift_wizard_tower_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/riftwart_roots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ring_of_broken_love.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ring_of_coins.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ring_of_eternal_love.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ring_of_space.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ring_potion_affinity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ritual_residue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/robotron_reflector.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rock_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rock_gemstone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rock_paper_shears.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rock_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rod_of_the_sea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rod_of_the_sea_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rogue_flesh.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rogue_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/roofed_forest_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rookie_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rookie_hoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rookie_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rookie_spade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rose_bouquet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rosetta_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_apple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rotten_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_amber_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_amethyst_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_aquamarine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_citrine_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_jade_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_jasper_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_onyx_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_opal_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_peridot_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_ruby_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_sapphire_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rough_topaz_gem.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/royal_compass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/royal_pigeon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/royal_pigeon_call.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ruby_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ruby_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ruby_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ruby_polished_drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ruby_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runaans_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runaans_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runaans_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runaans_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rune_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runeblade_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runeblade_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runeblade_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runebook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runebook_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runebook_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runebook_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runebook_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runic_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/runic_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rusty_anchor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rusty_coin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rusty_ship_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rusty_ship_hull.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/rusty_titanium_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/s_logo_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/s_logo_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sadan_brooch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/salmon_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/salmon_opal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/salt_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sam_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sam_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sapphire_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sapphire_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sapphire_polished_drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sapphire_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/satelite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/satin_trousers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sauls_recommendation.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/savana_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/savana_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/savana_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/savana_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/savana_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/saving_grace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scare_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarf_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarf_grimoire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarf_studies.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarf_thesis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarleton_premium.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scarleton_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scary_grimoire.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scary_grimoire_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scavenger_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scavenger_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scavenger_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorched_books.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorched_crab_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorched_power_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scornclaw_brew.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorpion_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorpion_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorpion_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorpion_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scorpion_foil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scourge_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scoville_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scribe_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sculptors_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scuttler_shell.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scylla.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/scythe_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_creature_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_creature_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_lantern_hat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_lantern_hat_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_walker_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_walker_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sea_walker_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/seal_of_the_family.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/seal_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/seal_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/seal_treat_bag.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/searing_stone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/second_master_star.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secret_bingo_card.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secret_bingo_memento.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secret_dungeon_redstone_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secret_railroad_pass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secret_tracker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secrets_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/secrets_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/self_recursive_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/seriously_damaged_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/serrated_claws.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/severed_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/severed_pincer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sewer_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_assassin_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_fury.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shadow_warp_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shady_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shaman_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shame_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shard_of_the_shredded.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_fin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_scale_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shark_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sharp_shark_tooth_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sharp_steak_stake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shattered_pendant.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sheep_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shens_regalia.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shens_ringalia.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_slippers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_slippers_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_trousers.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_trousers_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_tunic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmering_light_tunic_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmersparkle_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shimmersparkle_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiniest.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_astraea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_hyperion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_necron_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_necron_handle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_power_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_prism.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_scylla.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_speed_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_tank_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_valkyrie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wise_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shiny_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shredded_line.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shrimp_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shriveled_bracelet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shriveled_cornea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/shriveled_wasp.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/signal_enhancer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sil_ex.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silent_death.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silent_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silex.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silk_edge_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silkrider_safety_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silkwire_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silky_lichen.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silva_dominus.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_fang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_hunter_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_laced_karambit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silver_trophy_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/silvertwist_karambit.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/simple_carrot_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sinful_dice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/singed_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/singing_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/singing_fish_singing.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sinseeker_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sinseeker_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sinseeker_scythe_sinrecall.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sinseeker_scythe_sinrecall_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sirius_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sirius_personal_phone_number.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_fish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_fish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_fish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_fish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_grunt_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_lord_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_master_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_soldier_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeleton_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skeletor_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skyblock_menu.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skyblock_menu_rift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skymart_brochure.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skymart_hyper_vacuum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skymart_turbo_vacuum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/skymart_vacuum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slayer_energy_drink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sleeping_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sleepy_hollow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slice_of_blueberry_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slice_of_cheesecake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slice_of_green_velvet_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slice_of_red_velvet_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slice_of_strawberry_shortcake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slime_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slime_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slime_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slime_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slimy_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slimy_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slimy_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sludge_juice.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slug_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slug_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slugfish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slugfish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slugfish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/slugfish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_agronomy_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_combat_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_dragon_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_fish_bowl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_foraging_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_frog_treat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_gemstone_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_husbandry_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_lava_fishing_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_mining_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_nether_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_pocket_black_hole.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_runes_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/small_slayer_sack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smitten_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smitten_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smitten_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smokey_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smokey_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smokey_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smoldering_chambers_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/smooth_chocolate_bar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snake_in_a_boot.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snake_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snake_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snake_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sniper_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sniper_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sniper_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sniper_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snorkeling_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_blaster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_cannon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_howitzer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_shovel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snow_suit_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snowflake_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/snowman_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/social_display.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/solar_panel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/solved_prism.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sorrow_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sos_flare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_campfire_talisman_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_campfire_talisman_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_campfire_talisman_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_campfire_talisman_4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_campfire_talisman_5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_esoward.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_esoward_blink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_fish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_fish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_fish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_fish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_string.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_whip.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soul_whip_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soulflow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soulflow_battery.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soulflow_pile.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soulflow_supercell.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/souls_rebound.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/souls_rebound_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/souls_rebound_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/souls_rebound_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soultwist_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soultwist_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soultwist_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/soulweaver_gloves.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sparkling_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sparkling_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sparkling_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speckled_teacup.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spectre_dust.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speed_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedster_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/speedy_line.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spell_powder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spellbound_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spellbound_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spellbound_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spelunker_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spelunker_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_egg_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_queens_stinger.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_queens_stinger_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_queens_stinger_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_queens_stinger_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spider_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spiders_den_top_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spiked_atrocity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spiked_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spine_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_bone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_decoy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_leap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spirit_wing.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/splatter_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/splendid_fish_drawing.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_helmet_armor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sponge_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spook_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_disc.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_pie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_shard.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_tree.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spooky_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spore_harvester.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spotlite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spray_can.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spray_can_spraying.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_cheese_fuel.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_compost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_dung.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_fine_flour.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_honey_jar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_plant_matter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sprayonator_spraying.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spring_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/spring_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squash_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squeaky_mousemat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squeaky_toy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squid_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squid_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/squire_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/staff_of_the_rising_moon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/staff_of_the_rising_moon_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/staff_of_the_volcano.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/staff_of_the_volcano_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stamina_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stamina_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/star_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starfall.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starfall_seasoning.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlight_wand_starfall.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starlyn_prize.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_adaptive_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bat_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bat_wand_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bone_boomerang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bone_boomerang_thrown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bone_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bonzo_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bonzo_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_bonzo_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_daedalus_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_felthorn_reaper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_felthorn_reaper_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_glacial_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_glacial_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_ice_spray_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_item_spirit_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_item_spirit_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_item_spirit_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_item_spirit_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_last_breath.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_last_breath_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_last_breath_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_last_breath_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_midas_staff.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_midas_staff_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_midas_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_assassin_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_shadow_fury.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_spider_queens_stinger.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_spider_queens_stinger_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_spider_queens_stinger_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_spider_queens_stinger_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_spirit_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_stone_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_thorns_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_thorns_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_venoms_touch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_venoms_touch_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_venoms_touch_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_venoms_touch_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starred_yeti_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starter_lava_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/starter_lava_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steak_stake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steamed_chocolate_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steaming_hot_flounder_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steaming_hot_flounder_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steaming_hot_flounder_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steaming_hot_flounder_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steel_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/steel_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stew_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sting.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinger_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinger_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinger_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinger_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stingy_sinker.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinky_cheese_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stinky_cheese_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stock_of_stonks.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stone_blade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stone_bridge.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stone_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stone_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stonk_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/storm_in_a_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/storm_in_a_bottle_empty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/storm_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stretching_sticks.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/strong_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stuffed_chili_pepper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/stun_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sturdy_bone.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/subzero_inverter.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_ore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_skitter_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_skitter_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_skitter_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphur_skitter_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sulphuric_coal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/summoning_eye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/summoning_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_cleaver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_compactor_3000.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_egg.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_heavy_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_leech_modifier.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_magic_mushroom_soup.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_pumpkin_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_pumpkin_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_pumpkin_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_undead_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_undead_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_undead_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/super_undead_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superb_carrot_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superboom_tnt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superior_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/superlite_motor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/supreme_chocolate_bar.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/suspicious_red_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/suspicious_scrap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/suspicious_vial.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/swamp_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/swappable_preview.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sweep_booster.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sweet_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sweet_flesh.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sword_of_bad_health.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sword_of_revelations.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/sword_of_the_multiverse.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/synthesizer_v1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/synthesizer_v2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/synthesizer_v3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/synthetic_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tactical_insertion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tactician_murder_weapon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tactician_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/taiga_biome_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talbots_theodolite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_attack_speed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_critical_chance.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_critical_damage.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_defense.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_ferocity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_health.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_intelligence.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_magic_find.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_sea_creature_chance.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_strength.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_swapper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_enrichment_walk_speed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/talisman_of_space.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_miner_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tank_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_fang.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_silk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_web.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tarantula_web_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tasty_cat_food.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/teleporter_pill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tender_wood.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tentacle_dye.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tentacle_meat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tepid_green_tea.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tera_shell_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terminator.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terminator_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terminator_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terminator_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terror_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/terry_snowglobe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tessellated_ender_pearl.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/test_bucket_please_ignore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_art_of_peace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_art_of_war.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_cake.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_primordial.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_shredder.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_shredder_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/the_soup_painting.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_cane_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_cane_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_cane_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_carrot_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_carrot_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_carrot_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_potato_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_potato_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_potato_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_warts_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_warts_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_warts_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_wheat_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_wheat_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/theoretical_hoe_wheat_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/third_master_star.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thorn_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thornleaf_scythe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thornleaf_scythe_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thorns_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thorns_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_in_a_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_in_a_bottle_empty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunder_shards.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/thunderbolt_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tic_tac_toe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tidal_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tidal_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tidal_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tiger_shark_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tight_pants_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tightly_tied_hay_bale.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/time_gun.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/time_knife.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/timite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tiny_dancer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tiny_hammer.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tiny_scaffolding.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titan_line.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanic_exp_bottle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_alloy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_drill_engine.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_fuel_tank.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_ore.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanium_tesseract.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/titanoboa_shed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/toil_log.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/token_of_the_century.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/topaz_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/topaz_drill.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/topaz_drill_drilling.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/topaz_power_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tormentor.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/torn_cloth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model4.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model5.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model6.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/totem_of_corruption_model7.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/toxic_arrow_poison.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/toy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/training_weights.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/transmission_tuner.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/trapper_crest.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/trapper_crest_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/trapper_den_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasure_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasure_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasure_hook.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasure_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasure_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treasurite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tree_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/treecapitator_axe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tribal_spear.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tribal_spear_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tribal_spear_thrown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/trick_or_treat_bag.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/trio_contacts_addon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/troubled_bubble.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/true_defense_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/true_defense_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/true_essence.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tungsten.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tungsten_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tungsten_keychain.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tungsten_plate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tuning_fork.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/turbo_fishing_net.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/turbomax_vacuum.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tusk_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/tutti_frutti_poison.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/twilight_arrow_poison.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/two_iq_point.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ubiks_cube.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ubiks_cube_turn.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ugly_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ugly_boots_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ugly_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ultimate_carrot_candy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ultimate_carrot_candy_upgrade.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/ultimate_wither_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/umber.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/umber_key.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/umber_plate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/umberella.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/uncommon_kuudra_chunk.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/uncommon_party_hat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/undead_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unfanged_vampire_part.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unique_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unknown_item.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unknown_pet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/unstable_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/upgrade_stone_frost.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/upgrade_stone_glacial.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/upgrade_stone_subzero.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vaccine_artifact.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vaccine_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vaccine_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vacuum_particle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/valkyrie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vampire_dentist_relic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vampire_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vampire_witch_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vampiric_melon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanguard_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanille_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanille_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanille_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanille_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanquished_blaze_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanquished_ghast_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanquished_glowstone_gauntlet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vanquished_magma_necklace.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/velvet_top_hat.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venator_genesis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venomous_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venomous_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venoms_touch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venoms_touch_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venoms_touch_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/venoms_touch_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vermin_belt.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/very_crude_gabagool.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/very_official_yellow_rock.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/very_scientific_paper.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vial_of_venom.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/viking_tear.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/village_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinerip_lasso.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinesap.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_beetle.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_buzzin_beats.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_cicada_symphony.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_cricket_choir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_dynamites.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_earthworm_ensemble.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_pretty_fly.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_rodent_revolution.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_slow_and_groovy.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vinyl_wings_of_harmony.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vitamin_death.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vitamin_life.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/void_sepulture_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/void_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidedge_katana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidedge_katana_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidedge_katana_soulcry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidedge_katana_soulcry_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidwalker_katana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voidwalker_katana_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volcanic_rock.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volcanic_stonefish_bronze.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volcanic_stonefish_diamond.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volcanic_stonefish_gold.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volcanic_stonefish_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volt_crux.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/volta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voodoo_doll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voodoo_doll_acupuncture.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voodoo_doll_wilted.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/voodoo_doll_wilted_acupuncture.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vorpal_katana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vorpal_katana_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vorpal_katana_soulcry.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/vorpal_katana_soulcry_hand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wake_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wake_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wake_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/walnut.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_atonement.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_atonement_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_healing.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_healing_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_mending.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_mending_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_restoration.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_restoration_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_strength.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_strength_life_blood.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wand_of_warding.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warden_art.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warden_heart.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warding_trinket.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_aqua.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_black.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_blue.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_brown.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_cyan.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_gray.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_green.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_lime.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_magenta.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_orange.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_pink.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_purple.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_red.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_silver.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_white.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warm_wizard_face_2_yellow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warning_flare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warts_stew.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/warty.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/washed_up_souvenir.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wasteland_travel_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/watcher_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/watcher_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/watcher_legs.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/weak_wolf_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/weather_stick.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/webbed_fossil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wedding_ring_common.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wedding_ring_epic.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wedding_ring_legendary.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wedding_ring_rare.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wedding_ring_uncommon.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/weird_tuba.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/weirder_tuba.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/werewolf_skin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wet_book.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wet_napkin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wet_pumpkin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wet_water.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/whale_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wheat_island_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wheel_of_fate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/whipped_magma_cream.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_gift.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_gift_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_spiral_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_spiral_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/white_spiral_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wiki_journal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wilson_engineering_plans.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wilted_berberis.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wilted_berberis_bunch.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_disc.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_island_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/winter_water_orb.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wise_wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wishing_compass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wisp_ice_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/witch_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_blood.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_bow.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_bow_pulling_0.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_bow_pulling_1.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_bow_pulling_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_catalyst.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_cloak.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_shield_scroll.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wither_soul.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizard_breadcrumbs.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizard_face.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizard_portal_memento.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizard_portal_memento_1st.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizard_wand.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wizardman_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_fur_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_paw.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_tooth.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wolf_tooth_locked.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wood_singularity.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wood_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/woodcutting_crystal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wooden_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/worm_bait.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/worm_membrane.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/worm_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wounded_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wounded_splash_potion.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wrapped_gift_for_juliette.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wriggling_larva.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wyld_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wyld_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wyld_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/wyld_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/x.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/y.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_bandana.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_greater_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_jumbo_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_large_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_medium_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_rock.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yellow_small_backpack.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yeti_rod.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yeti_rod_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yeti_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/yoggie.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_dragon_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/young_fragment.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/youngite.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/z.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zap_rune.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zap_rune_2.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zap_rune_3.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zog_anvil.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_brain_mixin.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_whip.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_commander_whip_cast.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_knight_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_lord_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_mask.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_ring.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_boots.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_boots_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_chestplate.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_chestplate_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_cutlass.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_helmet.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_helmet_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_leggings.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_soldier_leggings_dyed.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_sword.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_sword_heal.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zombie_talisman.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zoom_pickaxe.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zoop_the_fish.json create mode 100644 assets/resourcepacks/Hypixel_Plus/assets/firmskyblock/models/item/zorros_cape.json create mode 100644 assets/resourcepacks/Hypixel_Plus/config.json create mode 100644 assets/resourcepacks/Hypixel_Plus/pack.mcmeta create mode 100644 assets/resourcepacks/Hypixel_Plus/pack.png create mode 100644 tools/formatHypixelPlus.go rename tools/{formatResourcePacks.go => formatResourcePacks.go.ignore} (100%) diff --git a/.env.example b/.env.example index 1de2310ff..32a6446cb 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ HYPIXEL_API_KEY="" DISCORD_WEBHOOK="" DEV="true" -ENABLE_ARMOR_HEX="false" \ No newline at end of file +ENABLE_ARMOR_HEX="false" diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 0977fa5bc..969d626ab 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 0977fa5bc176a19a05981d7f775059f87f1ce501 +Subproject commit 969d626ab07c01397809701fcde4b9ae20b3014b diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_back.png new file mode 100644 index 0000000000000000000000000000000000000000..7da037483ea5b01acd9f1a832ed61c6d4087763b GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08|)?qBcWYqjh4WldSc z@aaFpv;PdY{xdB7&yf3{A>cnyf!f0SQXs`z666=mupbBtfB&@t3dDN4IEGZ*^6hLF zbvEQUQp3Lgy?wq@{j}9biu#g7kAIiV^7*Ksbfo3;E{~+9+1Bf98FsOkr?y+)xn_HC z?kPThiz(+@zUa=FEW*E~xmCWWm8<)ip~k)NE0y;(J%7lrXkZCV;`F!&w1~me)z4*} HQ$iB}`rlEG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_aqua_front.png new file mode 100644 index 0000000000000000000000000000000000000000..b3cad5e8d313daf1ffd85b73b69ca8b86ebc50b9 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`PM$7~Ar-fh4=~LC_y2geA>*>N zO-~O_Vqxgz-Qn88xSee~qj#r4f~GI;3DrXlcMj${FbJ}-T)4#`pcX8*kVD^%nIY^- W?f->s6Agi;F?hQAxvX!wj978H@g?6%w z9Z=vn`a^#E_x*Y8TzkyUu|%dg_t>QS>92MP2vu@gIaNhTC%W$!r{>anhM-05+y2Jt z9x76+dU4zF8^`Va4|l9P@ZF){v1@|kk6&^U$r({Sf~m!S7+2-9gk5+muo7q$gQu&X J%Q~loCIH$7QSkr( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_blue_front.png new file mode 100644 index 0000000000000000000000000000000000000000..41b36b80b8843a27ea0ec8932de186e6835c6b7d GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`uAVNAAr-fh4>0`x|NnTmA>*>N zO-~O_Vqxgz%}_hk@a$l&1A`zN%Y`cpv!x9@YqHq3G75PoPWo}>!VLxiwP3l09Qtm| Z44&(99Hq9dSPnFh!PC{xWt~$(6968%C|>{o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_back.png new file mode 100644 index 0000000000000000000000000000000000000000..5fdbc0ee10a6a242634b9aebd5babf2c3aa1a8ac GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08|)?qBcWYqjh4WldRR z`A^yOV}ZewX)4E0NUVFp(DNUtU^Dl%yFiMyB*-tAVLuQQ{{CwP6o~Y6aSW-r6?5V! zV}k?35r?o3|6aEipVr@e^xLJdTldS$HN2QTU78=;crJ3Zxpcs?NxYy#R8Od(bG1`t z*pAbm*9Gizt_-aZh+DY4>C^6m%E#w1g#K$}XyIoFP+*!H7VV!1w1mOa)z4*}Q$iB} DSaVQ; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_blue_green_front.png new file mode 100644 index 0000000000000000000000000000000000000000..49a137b22ff286fbdc398bb46e80c5c208e5ff7f GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`{+=$5Ar-fh9oVP+pYs3lVV)lh zimoiYjNU>FTTBl;IB7CN#m=<(Cd1Un>Isv6T)A+8p|jK<#NtU~mZ@cm4U3Xozg3GxeO*bfASzyDeR1>!wj978H@`JQBD zVlm`!4itK|_kUqH$70F9>zDNwOTOCc-g#H4p!`wWEh*1C3xXE!Wn8+)F}A`n{iIvH z!fbILh1s9mlq#7^{KO69Bg^<%=3dm z(Upal(OZaNi|GT-U|}Dj`Lhn@98kQr*1)qSDT;-9U=9B*-tAVLuQQ{{CwP6bScpaSW-r<$J1~ zm&K98`6BZk;otASpODi2r~W@j`FUdP`-XK#9b9He?X#RYQ)F}4PS hnV&dZD-5L=7+z=BY3@(jq5w3S!PC{xWt~$(695stF2Dc) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_back.png new file mode 100644 index 0000000000000000000000000000000000000000..e675c6350df3df15aef19f1c4017b9edcc16b5bd GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-D~OhmFf%g?3=C9LQ&aiR zV6Z|4C}_Pf^Ei-VED7=pW^j0RBMr!j@^ob}#QN%egZlBM8*7Xn9usFZnZDH_q^>bP0l+XkKuna$) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_rezar_front.png new file mode 100644 index 0000000000000000000000000000000000000000..fdac05b2990c9dc249d16dbe0ede480fe66898f5 GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`9-c0aAr-fh53q&&GycP#$YWR6 z5a81$^N!s`3Ck0d50ZrQS>x3^b!iRU4p1Y=2%UoeBivm0qZPOhhmV@Sm9qz8+JX}o=@u*+=kF8AQb*{@ber~H2+dE_?( WN30yH9IFM$c?_PeelF{r5}E+EjZy;u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_1_front.png new file mode 100644 index 0000000000000000000000000000000000000000..269612516d9fb25ac78d1d1855f09aade1afd44e GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C_NtaLIqR#sNl)6+9E zGjn%$@9phPOibi3cUcaUW-JNv3ubV5b|VeQiS%@F45_%4+t0{#z<`64_n8 pwMg<{g2?QP=B%d!IW}~!|Hr+ph*>k+qZDKbgQu&X%Q~loCICUeKZ5`O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_back.png new file mode 100644 index 0000000000000000000000000000000000000000..21dc8aa0875f9f114d4d14917351321996aabce4 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE09j9ZFMp>4sv#m_xCSN zO9F}<-q>^N!s`3CkNBqMF4%dfa?&jReddxt3C5BjzhDN3XE)M-oLo;A$B>F!Hho7K zSrvI)l2>1-UmEYfS@Mlyp$tg z=zr1|zuf(UyrhE2gmbpyyW5@bW@%oHNe>nc(|G$*VVBw7UGBk=vtO-{PWk^t^2l!n Xj#xQXIaUjh^B6o`{an^LB{Ts5KtxeE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_front.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/abicase/abicase_sumsung_2_front.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8e996a76bd0b7522eab4ddabf45f880f733a74 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09j9ZFMp>mQvMJGBDM! zv^Vn(teiB$B>F!x&4e>2MjovO|#zqx8DK74X1+PGr%;MS`^g qR*NJLCWy?wXwG^%kYhvl`hVQpikLOCJxW2AFnGH9xvX zM(s=n5eo)}D|NGbfO3o_L4Lsu4$p3+0Xe~*E{-7;w~`h3T2wbIZF&(feM89f05&$a z)X7&2(v=w(G_2gb*eF2b#?7-gERPF+gR3!F)}Fp;qTmNC<}5AgQu&X%Q~loCID8iK-T~O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..eabe0ab0d5120223d6e895016029376b8a123d7b GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ErlBKYRCYbJxp|L^q{ z3=Cb2+PfL_Kds#Jt$E=`M*G`~giAG;94vbt0+lkB1o;IsI6S+N2IPc!x;TbZ-0JOW zfSvcbcnX!#x|Pww4PASaf?PT~;WM&wTK2g`yslzw-nBQlJeCp00i_>zopr06CdQ AEdT%j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/agarimoo/agarimoo_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..62f4e94049b94695fa3a3ba5c85019403747b919 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=62Z?)lcdusg{k%hUWL zqkX8I@oolvM}6fkMr{)nsZ0hD3kHVfiHn$kN*POn{DK)Ap4~_Taw0rk978H@B|ESl zQ)oKcc<|;C#uFaJW}XQi%tlfUhh%tsWE{B8v>NYF2;!EI5NnW#aoE$gasPb$rA2Oa{KJPVnn6<1jUxA8ff|OPXFps zbH?;>m#njyV(~fKGN5scB|(0{3=Yq3qyahAo-U3d6}NhOjxstc3b@QXx=;F6{d~b2 zJD%TlJ6b{@kzRkgF)sO`n;W*yNbEtWmOnG3?ENcwcuNhO<} za=D#y)};U5buUAauWz?l?6(kM-qL=|v4q`m5tEi^No?GmZ5t;SmvWrjnARO>t{!K> ZwD>yvo~Qt(9YAL=c)I$ztaD0e0s!;(Wy$~m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..ad98e80ff1fc0bfbdf8482f78baaf74aae36a778 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08YLV7k3XxH{b=JJP1V z)_-ANLa3|G|L^s0PP=YO5!^ZdKp#*MV@Z%-FoVOh8)-m}pQnpsNX4z*u2w+?MVVutEAT+MN=E4|K`e7E1%WRRNQ>5TQ?!_ mntRY!hK?%^Eu3Z#`o!fIFsWtDoFED`nZeW5&t;ucLK6T4Swg)4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/anita/anita_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..828ad85a6470eb5c6cdb11d93c484d644e02ba88 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=0)q68dZXyOTVs(@nA? zZL&PgLtS-3?Tj7ul}%Kn%uZxZ0V-lF3GxeOaCmkj4aiCKba4!+xRva{dQ727w^8w? z4&#Xz9%k7IFBpu}8d@wHIS$QWNNR6uKC)A71DBR)fnGvFgusad56-bpi4$c>S;J(s zf-s4p82s+&7Rh!PG;_^vOKJ3K$;m#g8YIR9G=}s19BofT^vIyZY3XJi*P^3zh&<_&{DLQ-W zz<~|Ln z>*0r*kHq-gpL0xg=oCm!-XH2DeL!!cuASG%#nFFWS}^t)GP6$#mahg{$KdJe=d#Wz Gp$Py|2SeHb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_spring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_spring.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c269bb1cf7ceec913bdcb66f9f8de2aab34a9e GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A7p6@MYP4ag`dDUnxD znm2Erv8m<%Wp_R`?W@wT+4tN`8YstD666=m;PC858jzFh>Eaktam%-to#}uA4^y|m z_5boQll;ERX7#N%-EP0uGW_@Cz#qaVqeVP>&Q&p4@C433VW4qdh*y&D(q|#v!w2Q6 zS`RvKjb?v-9E{^{5(t@$akePi_uzWSpItEWyKbLh* G2~7YB%tp5W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_summer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/atmospheric_filter/atmospheric_filter_summer.png new file mode 100644 index 0000000000000000000000000000000000000000..c072a5970505ae4d6084d1bfbd1e9a80e2ef72ab GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C67W$Jdp6v!wkDUnxD znm2Erv8m;%|9Ksc+<6-1oLjl;fpUx`L4Lsu4$p3+0XfN@E{-7;w|slqnGPuMFm(%D z|1Tdi$?v;tR^NKl?e=Re!+%c>{2_cYTEw>oscAPvHC$1{&vucqREReHPL^d{C~c z_3%T@M`C>L&pD<#bP6OV?+BRIUM}TsSB|(0{3=Yq3qyag}o-U3d6}NnQ*_jR~@Gx}? zT>md0Gs*9}Y*ycT)9vbP0 Hl+XkKJ8%*I@%5m%#qHOT8yW{rbK?yOm`Mlcd83`4xA2 zZp7Cm**~&kwGv-t*~e`>t#-M>t%J@h*bSH8oTD+nBKh)(&sq~6yX+GBGU0&ilI2mS zCa|vzH}5T-x_jGN^(7i%v5O3=!b{&;PvDaI$Hu^2#n#ZT7CQrIJAC(VzT^J@ z)X!KFB0{DK)Ap4~_Tatb_M z978H@B|9+k2JA}bYdLDH`D;%AH#91@Qo@mi4bV&>dqyUX9$90-uw^mOji zcWW7W-gL*rEStlpn~<<0DJSR6=08l#%0ZQ8V+nYnp=cURX${SybY)!fd7H<$#R jxGA1={qAl)4?Upk-zoK9EmIc-+RfnU>gTe~DWM4fx{_f` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..aaaaba375f53af8fea1c438888924200d095269f GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ErlB3P=y^yakd?M1@> zztzopr00u%tMgRZ+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat/bat_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..27c314dfb26f72f6b64699f535a2a0af90166d15 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A{7SI+V@?@savwKFzR zkup{jcQjTDan!eEEI9|1W-JNv3ubV5b|VeQ3GsAs45_%)+u_c1h=GIU<%j>`r<-QQ z1WmJYHV^z;s}!+nM~CErXVM3^+zjV$W0-Tap;%P4G<@UXu(0!MqWUsk^hq$EJC!HV l5x9|q(e>iNVwOKf^3UfnF(_ot;s=_~;OXk;vd$@?2>^*cJLUiY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..5a05b6df6ddccdb9122472fc10c00b5f57b5a8b8 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ErlBKYRC>;Lcd`T6-l zK|vN478@iajMc;)jnzUN^=~f{F4bV#QEy!dRLWQqz41;-weSy1&**#&|_iw^hrps8(U+q}B-PykGGGo0@ODEHfjAz`_ffg}%y85}S Ib4q9e0FvNJjsO4v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bat_person/bat_person_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..39ce511568aebc32df6a31b8e40ef5186005d146 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07Lx)OR#iGgcF~u&~I_ z&kqU;+8`m(o#c__X&!24Y@#CNsIUC*u6ZX=DPu{HUoeBivm0qZPPC_sV@SoVnl4tM zBL)Hu9k2i2uYR~jRy%OU)5d%C`wjP0eV=MMwbMRD`Fi>N=Kr(nQ{D!x5a3MI&tCa- zjs(Z^1C&rLum1o4|L4!2 z?)fXyn|lM&@)j&uuwrULVT9I}ZqEnjW}Mwts?n7m160je666=m;PC858jzFd>Eakt zajUhrm664e=Wrjl-?#YhYwb372Ps~je&)2%{tv%W9;EIJiaOKhddR1E?%nefcsyc`K$S#4zkGjL_QB?fKx`jI-NH#aH>4097-V1o;IsI6S+N2IM4rx;TbZ z+-mJ+6*^+TbA;*X*MI+4%i66zzQ#-;HD+Hx^lJTk^SSQbx;kf}TCeuG6H%Y-yE!92 z9NrVCrw~-YE5G~7E5(iP_0BC1$rY44o>_K8?b(qBCaWth2Wg~ie3)Q%;D0fbT^h@; UOS~%`fYvd1y85}Sb4q9e01VJt^#A|> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/beastmaster_crest/beastmaster_crest_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..dde44ec1676bc1821c5c81677891942aa677773d GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0BJArvB&KlmGw!|MTZh z_xu&<&AkC>c`K$S>~3c$jL_QB?fKx`jI-NHgJRp%fT|fwg8YIR9G=}s19Fl*T^vIy zZnbu^3LP=vIl}bx>%af2W$jiUUt^|_8nZ7TdbR$&`CRvIU7fQ~tylZpiKx%^-JFph z4(|!nQwS>HmEV2kmEy+tdgqph@V}VJE{)~a UCEk?|Kc`K$SFy!qnjL_QB?fKx`jI-NHA1wR07pR)CB*-tA!Qt7BG$1G0)5S5Q z;#O-ntI!bxo+C_8zyABbTGnp$@ik@&sWJNkqF3wRo6mLc*3~%+)q1thorwBu-_05M z;qab7J%ykGUisZuUMX&TuXk>FNUosV@yxO#YR`^5Fj-x3IY=XA_K8?b(qBCaWth2Wg~ie3)Q%;D0fbT^h@; TOS~%`K$d&D`njxgN@xNA(?MFJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa27a2f0ee43f797c2726bce058c25d80682a5c GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AW;U(Ok}jiKj%)#3kK z+t1rDr2c=;F!l5Q|9coXCv0PoO`kvG(rlnI#*!evU%vcjNwP({|L!EuXHvNHA@CW8@jPQxh^AR%p&><4IDK){;upv?$!XTN>m@ MPgg&ebxsLQ0HNQtX#z;YXT?xixljetA0NTOe>FVdQ&MBb@ E0FWzBL;wH) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_heirloom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_heirloom.png new file mode 100644 index 0000000000000000000000000000000000000000..c9906b9f70c5dd5def1f13f337a000f413db6788 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0FF9Qax0s^?ysG4MQq} z{&LQ+ZCu;Wb57Xy|2@Oh&;S4LVem5*G*IOH6*BcFP&H#okY6x^!?PP{Ku)5ki(^Q| zt=wKmz9R-aOpR}HFaNJMTPdBhbNRWW22MtHiI-!g+>*YFJFTp1Wfyy%R=(*6^TEB} zxY89PlP)ZDQFxaupjuPfqjfdmb>G9zoj>+HothMMxWl;htjX2OCO;l9dR9n2vJm}X Q3ABvC)78&qol`;+0EORDfdBvi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..ca2b8687077a123994e7bcdac21d665f5e947529 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0C^H?U}80=t|^&8-`Q{ z{pFlt+qkx$=bW(Z|9gh1pa1{g!{8_AXTWJt6drUPsG6}P$S;_|;n|HeAScn&#WAGf zR&K8&-w^{Irp7n9m;cwBt(4B$x%}Kw11BT9#LKZ#Zb{$8omSShvWq=WE8p~k`QYAf zTFVdQ&MBb@0Ad|dCIA2c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bingo/bingo_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..8b26d848a9e4d363df6686823747b7e8068d7b84 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08u}Xycr)jbWD^!)FEt zZwH1sehgOD44Lj>|MRAP{?E1jJZIQ8zLk+$K&6Z&L4Lsu4$p3+0XZ?AE{-7;w|cr* z`IsDd4p_|o|9`KK@S`tV&f3)%tt+mR;oBVl_&ocIpC@KBy!a)cCg9ZcWYga}SMNv} z2=<1%u4%5G#<}X+`%@coR$J~m>pX4ipO46_;SAfRZ|%pRzubhOZFh*uZ=h1fk|4ie28U-i(tw;4PZ!6Kid)GJ zta=Jfdm9!W*~@TZM&u*A#zeIV8yQv3oIP-acgcYmi{^CZ&66fEerIHBV_w#F=%9_m zLE}WnRV&jQc;+Sas$6DPC_R~WHZ6fS@~qhD13l}O25KMR>FeubQ(mdKI;Vst00H(?LjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bits_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bits_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..586671160c8f6b77126f113c6e90f2adb7ed49ab GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08u(krFCy5Ip}f^6|Hd zH-Ea5JVNb^vpmghHXnA>SAO)WGZm@Dn z!K1(BcRVX!5NzyHH}5h3Oo?-jGxuyTPktS=qiFtiX7jBV4MO<01I(Nx)L)X$I wmM(pc>umr3efTJy#_sigg8grHbpu8Q+Zg6U>CyMPfL1Vgy85}Sb4q9e0P;CS&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blaze_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blaze_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..be3a4c839e9f623a014110a21d227759ca2315e8 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0F&G!~OsNmOs-Nx=k44 znHWRujJuOOvOLWl^_5Ljq%=HvjDU(5OM?7@862M7NCR@hJY5_^DsI(wSu-^la2$Ox z{oCFD2ZY#4jGU)DyUG7f;+*5Vn#BCRx%F(=L^EXJLBE5C{YZD8bP0l+XkK+B!wL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..59b2afb653dbc8ded7c71c8078be04ebde54e526 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2^(U7EdgRY^_5YA&v3 zcJ_1z1~&!BFTj6>^t8UHb50 j0(0XEnY0?qWxWi4w+k0@Xgu%&n$O_r>gTe~DWM4fk%B-w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/blood_donor/blood_donor_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6869831398fcbaaa4da4b1eca404ffef3bad9d GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0ErlA{g6$D4l_!nVo&} z`8TV%xUM|?-o5t19!JNcRaO7L*S|UKdV7&@sRmQ_4UMHh4U8p0e!&b5&u*jvInkaj zjv*Dddb^J@GAQz}bTUu;x7&8QeskJV-6rw>I!8|V%uia9taWkujE^$TKean&%~Yu4 z6i|EQ$8rA6J!`oghn0`KJ)-S$;PW+Ak(2|DDtDY#pX%QAJlZNV`;DzT)5Q-iPt<_c OFnGH9xvXfzz|l!xg4m0u_VYZn8D%MjWi%9!_&nv zq~cbx18b&2)8fX3x{Dc4%(ywturX0>!bV1wGiMJR;azed#-h2L**Qal`8z9H8@EsX zIo1zMtnW|h#()2!H{oD*#S*u#OdheD7X-0HG`mDaY0p^r{n>|LgXWhzVi}HXco3k# Z$T0h#l*S};K0lzH44$rjF6*2UngG%tQab~UBkx=6U^c--ne*^c}o064UH>?$_)=Q(zj12b6>7`_@$`v7E`Nc zVF|zV(swtuTB|lL^wO=l_D*E`Tb?!DlYE2kl+89axD(`Ecw3mqq`iFN?RmQsCLdmC f!n|3ti<{vDgKFpPJ=w>ARx^0I`njxgN@xNAW#3n5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..6a6ed64de730e49e991be5f2a0c3c6beea00c022 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=829UHf&-Yy0-?ccux? zoH=t-ir{XB|D|R|eGJzU^fZGsRBWUrR0IXY1Xw@wvtI*hU@Qsp3ubV5b|VeQDe!c0 z45_%4?7-;BCGhLaIuVV#8y_)E2)ljp-o>ljQ|@1ki@Uk;P~$_daQ~-s`t(HGtgXY& z%)Izi)rdC6)-~RJrvwKHQqI;bo-y0?Qg{-}C#J kXTM=vDmf!0Aclcqqqc^m_~Uu&fp#-^y85}Sb4q9e0J{2HApigX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..ecc813b4a7b5e8fa3d6241a42631f26d1dbe8a3b GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=829UHf&-Yy0-?|5q{G znI=4Q=FDq_44YB}OU;ZD^fZGsRBWUrR0IXY1XxW^e>MSXU@Qsp3ubV5b|VeQDfD!4 z45_%4?7-;DCGhLax-bpf;-{<%Yd033Iulvk_{n$Cf2|C ia*9}{q$LEo7BVsjuF;HZxWfkW0)wZkpUXO@geCw_+*ttt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_mythic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_mythic.png new file mode 100644 index 0000000000000000000000000000000000000000..884fa81566dd9ddcd980d7836392f402d5cf8762 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=829UHf&-Yy0-?ccux? zoH=t-ir{~S|0fu(m6{nP=xGLNsMttLs0a#(39xFuhz|s6U@Qsp3ubV5b|VeQDfD!4 z45_%4?7-;BCGhLaIuQ-q;-{<%Yqu5uIulvk_{ne zZeF%Lt=aI<@5`FW%g?j08>DpaT5BhqQ`OU$nmoa4!%In1wzlhw4lYZd+wkl|u8Hk$ kzMM_cQ_>QG919s4K5W!DoYt1N3TQclr>mdKI;Vst07NofTmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..127dd3096ac40a9a690043b6fc2b5d705eb7aeeb GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=829UHf&-Yy0-?ccux? zoH>(W=KoD8f(#AUO3jQC^fZGsRBWUrR0IXY1X#t7NL>bMU@Qsp3ubV5b|VeQDfD!4 z45_%4?7-;CCGhLaIw1|);-{<%Yxfo3Iulvk_{ne zZeF%Lt=aI<@5`FW%g?j08-#T4T5l(uQ#GeCHF<*9hL@71Y;D&U9bA?^x8d1`Toc>h ld^ww}r=%qWITkW9{FK$W`f}Nmr$EaYJYD@<);T3K0RZSqUGe|` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/book_of_progression/book_of_progression_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..be22c620db306c71b1689e7554cf05ee5876cc68 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=829UHf&-Yy0-?ccux? zoH>)>KTwEaQ;J}znNfnCW{`%8jkJV{pn#YF>zYKq2%rYWk|4ie28U-i(tw;oPZ!6K zid)GJjJ{j~zs{@^)37am%Brw-WAUvsk;RRltd}ocdOqgmfr8X)bH2=)xj97Q-J6)m zV9V2*4G;akteL$0JPW%)Nq5y6JK>zFrpDCd30@msO7gO`U0-x?S^C_DXCHD+Y=86R iY+|31mJsAv$jHDFt?{C1q3B|ubJY5_^DsJWWItm>z z;5f{6WWs^}|98g*SFOssWbosci_6K^S!vbpmp=BcFm|2B@Q!aQX9>I73dXmW7GCKH zYd_K#W#0OyT2<-S$rgrMrz4r=b85o)ZtXl&6dd|RkN>*3efDFf2YgTF=K}3w@O1Ta JS?83{1OU@nQQ!ao literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_archfiend.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_archfiend.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7e1ab9e87dfcf3346cc652e4ffe83cd2f84049 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl!6 z2HhPDW-C^#XlZF_XHYF*kd2Rz?B9>S`PgGzdJU#YE|APgCD9my=8QxnE_Yv-Y&;LtC6{MW_pv;3JJGU@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bingo_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_bingo_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..fa128c7185e987d2c7610d4ea28f38fe6bb763ca GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBe_t zdOw5y@)avqw6wG^C{!^>rpCv|AKamK3aE~;B*-tA!Qt7BG$1Fz)5S5Q;#O|2qtFop zj>B9>S`PgGzdJU#YE|APgCD9my=8QxnE_Yv-Y&;LtC6{MW_pv;3JJGUnL=@ zfa5UNk(LAh|L=|su3D9M$>7H?7nhT-v(lc=S^C(!!q{~h!#lpMoF(jPD;VEiT6m=+ zto=x5lzHo)YE`9QCtDb5osQ&{zo`i`yS4LBQE=!NJ^t(B_67P(kK?8>DFN+b@O1Ta JS?83{1OR3JQQQCk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_brick_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_brick_red.png new file mode 100644 index 0000000000000000000000000000000000000000..368526fbe29d2517b6ade9e311df6f8e2a016342 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl!4 zGxyVuAuCp_XlZGgs%ulDVh|r6U-4pkCQuz?NswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst09dR}-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_byzantium.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_byzantium.png new file mode 100644 index 0000000000000000000000000000000000000000..f30d3f1015a237053b62c4995cbca3e5d36b7169 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhI6 zQb>Vj@`@EJT3T8HrQMxGt>WY3?}s?%1JyB>1o;IsI6S+N2IM4ox;TbZ+{*2B6gpzS zahU5!%Ypy@cgF@-t;)M(@Z*<@%gNVSY1QwSKK8CKcAduXj&Cbx3A@?~#y85}S Ib4q9e09QIq8~^|S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_carmine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_carmine.png new file mode 100644 index 0000000000000000000000000000000000000000..35e49a3ba52d8a8d5ade95bd4d6cfa2ddfa1a518 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhF? zgYYy4i4`kWw6wJ3GVn(+aK*>R=Sprl160RY666=m;PC858jzFV>EaktaVxjiQRs*P z$6>A`EeHPp-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQS^i89ne@M10NTai>FVdQ I&MBb@0NM~tO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celadon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celadon.png new file mode 100644 index 0000000000000000000000000000000000000000..4076e4d3a9995c1d6ea479423dbd8acdf07c079f GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl$4 zgVWYLT;I~tvSP)Gx}^;nU0Lz*@xK!0fDB+P3GxeOaCmkj4aiCGba4!+xRu-MD0IYt z<1p8e2?zfF-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQ*^ikX@I9HI3$%;D)78&q Iol`;+0ROI1H~;_u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celeste.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_celeste.png new file mode 100644 index 0000000000000000000000000000000000000000..5f7bdf491aad12e922876056b1e216249562cbb0 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl#1 z+qXCU|G#3zik6m^ragOd=FW|ekJl`k7zk9ySQ6wH%;50sMjDWl;OXKRQgJJ{*HP$* z0moskBP|F1|KA-OT(v6ilEIH(E-oiuXQfrYU;5a)!q{~h!#lpMoF(jPD;VEiT6m=+ zto=w|lzHo)YE`9QCtDb5osMLdLHyS4LBQE=!NJ^t(B_F4W+51I78T>#p};OXk; Jvd$@?2>@TBQa=Cy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_chocolate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_chocolate.png new file mode 100644 index 0000000000000000000000000000000000000000..bf16bd4723648bddbec963b3273742d86ee32e62 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhH* zDMPhA!-^FvT3T8nbr?LA8RFyP3npFD1FB;z3GxeOaCmkj4aiCGba4!+xRu-MD0IYt z<1p8emIMF)?~V^hC%9p6^Y5_Yu}jBhV3ywVZY zexxtTy!B7Ds?x8MEey3zM>5Oj)P(Wf+IgrbIP{Ai|8;TuEPtklO#0t00PSM%boFyt I=akR{0P>nla{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_copper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_copper.png new file mode 100644 index 0000000000000000000000000000000000000000..a6cab854e681c18ceaef6b4abc2d743b0bd3fc6b GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl#n zB&{9A#w%8=XlZF_4^}R4k&cg#kD7S>I#3;BNswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst0CM?H5dZ)H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_cyclamen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_cyclamen.png new file mode 100644 index 0000000000000000000000000000000000000000..7116796f8da88b0cdbeee4fe887913312284f578 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl#Q zxUR4H3szopr0Fa_k?f?J) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dark_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dark_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..09ce67facc71799f49a35545ea322f52b7431b93 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjeG zh_->G$%+*#T3T8Z`BfyjW#Z%GAFKBG0o5^<1o;IsI6S+N2IM4ox;TbZ+{*2B6gpzS zahU5!%Ypy@cgF@-t;)M(@Z*<@%gNVSY1QwSKK8CKcAduXj&Cbx3A@?~#y85}S Ib4q9e0AtQeegFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dung.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_dung.png new file mode 100644 index 0000000000000000000000000000000000000000..da4b987e712f5e337c387c57145bf32bf49496d6 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjez zva-LH)`}G?T3T8xWMp*3#Ny-Q<0O7O2dZN%3GxeOaCmkj4aiCGba4!+xRu-MD0IYt z<1p8emIMF)?~V^hC%9p6^Y5_Yu}jBhV3ywVZY zexxtTy!B7Ds?x8MEey3zM>5Oj)P(Wf+IgrbIP{Ai|8;TuEPtklO#0t00PSM%boFyt I=akR{0O+_(ZU6uP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_emerald.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_emerald.png new file mode 100644 index 0000000000000000000000000000000000000000..dadef6c7ffcc84805ff0f5d7edd57293d39c35ea GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjfe z>a>6p6)RS(XlZG&oE)xKEaktaVxjiQRs*P z$6>A`EeHPp-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQS^i89ne@M10NTai>FVdQ I&MBb@0N%(=>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_flame.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_flame.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0d5cffa811808cae18ae21d9f5e14a8ec42e60 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBlz$ zFPTRXN-I{ZXlZF#W-r!lEEpdjFa2PrHc%a7NswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst01l2$Q2+n{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..721da6e265b8ab82c5ca7962bb1bf4047e556247 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&5fH@j zwdD(~Sh1p|r6nwS9zhDN3XE)M-oCHr7$B>F!xxJ1;M+`U) za~)|p@c;kr*x;&Fd6x`+{Bm(Q`8q4D`u)UawfOqNSyUb^coBmI?9k@i~ifUjfxImIV0)GdMiEkp|=>c)B=-RNTt#brd>c zz;T%CNXvo$|98g*SFOssWbosci_6K^S!vbpmp=BcFm|2B@Q!aQX9>I73dXmW7GCKH zYd_K#W#0OyT2<-S$rgrMrz4r=b85o)ZtXl&6dd|RkN>*3eU?AdLni%i7l3v#c)I$z JtaD0e0sto@P(}a% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_holly.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_holly.png new file mode 100644 index 0000000000000000000000000000000000000000..72dc2cc11a64a53253f9b31db2c724277e092bda GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjdm zxV25X+lmz{T3TAPybKj>)Z^phyW5{B0@X2=1o;IsI6S+N2IM4ox;TbZ+{*2B6gpzS zahU5!%Ypy@cgF@-t;)M(@Z*<@%gNVSY1QwSKK8CKcAduXj&Cbx3A@?~#y85}S Ib4q9e08T_r6951J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_iceberg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_iceberg.png new file mode 100644 index 0000000000000000000000000000000000000000..c390fe46236feba5b8c5d4732743ee1f6b05e1be GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhGs z-bJY5_^DsJWWItm>z z;5f{6q~*Z>|GQ&@t5)S*GWhY!#pUGdthDO)OCNhz7`skmc*nPuvxHr31>@UG3$Jv9 zwIAt=GH?A;t*Z3vWD7&B(~->bIW=K?w{{*X3J(3E$A4YiKFgo!A(Q^M3qZRVJYD@< J);T3K0RXVHQ9J+u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_jade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_jade.png new file mode 100644 index 0000000000000000000000000000000000000000..4555dd4eb1f214b42c85293230dcea79272edc1b GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBe`Y zglL8p*(+A8XlZF-sP<(@vyYFD&tzO>1ysja666=m;PC858jzFV>EaktaVxjiQRs*P z$6>A`EeHPp-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQS^i89ne@M10NTai>FVdQ I&MBb@0620?-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png new file mode 100644 index 0000000000000000000000000000000000000000..9c978ffdbfb2be5bd7a66c53d52f3249c97b317d GIT binary patch literal 334 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}ludw7h%1nekB`5-n)Uw)_Li2G zPzIJ12G+S%OjZm`dnU7ZFfdQiWT;kPIAzVS){tSviWNmgMboBD3keA^H8t&*(9Hqr zXDkWw3ubV5b|VeQIpFEy7*cWT=!EvZ0}4Dx^-M~p|NQ^IYGXj&`=2Jcp{zBZA64b| z-Ys0c_1PTnV!gTfvu4Lt^?bHD9u_O1yr?_Out47F&GI!T1+vd*9aSrAP3>LvSY6LV z>OS{XS+_SFeg_Xc7U}VInRB-1;QIH!ZG(2L)4uz?!FS1TIf)-r<(m*PU}wY*V~Ps{_z444$rjF6*2UngEJsgc|?= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png.mcmeta new file mode 100644 index 000000000..11433dd34 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_lava.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,2,1],"frametime":20,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_livid.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_livid.png new file mode 100644 index 0000000000000000000000000000000000000000..2d7aed7d9d9099b65bd9d5b57f9da88aaffcd37a GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl#x zxf9QAU)9pmGQF*4#flYm`RVcT@sl|%ZvoXYmIV0)GdMiEkp|=>c)B=-RNTt#brd>c zz;T%C$b7H?7nhT-v(lc=S^C(!!q{~h!#lpMoF(jPD;VEiT6m=+ zto=x5lzHo)YE`9QCtDb5osQ&{zo`i`yS4LBQE=!NJ^t(B_Ia0?9r zba4!+xHWe|`l4nB4mR-(-39+Qs};_dKeYb3@iocUdB25}_)c}YrpO#`Jk8!!z3PHP z+VMgO@7B|TYnZsX=Dd5L!}wdaO!{g&_jcKLyH`H*Hd@gd9&q;o$L)FXj*Z4!b;RHC zou9Nt{zszSk20k{RUSXI{g%v6XQ}M9_@@4qr^osA+o_EnQmxI73dXmW7GCKH zYd_K%W#0OyT2<-S$rgrMrz3ggZ)(EKZtXl&6dd|RkN>*3ecolJhwCQ=#{lhO@O1Ta JS?83{1OS_dP!0e9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_matcha.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_matcha.png new file mode 100644 index 0000000000000000000000000000000000000000..487f0b13ee4cfb6a5af0a2a5a30a946cf7a76117 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhHH zms-g}y%j4~w6wH@l*+p%O2o&YaSW-rmD}qmbi{z; zFxQcm1ONZ;jt#C_m3PVD$1fL`ldrSVs^2et>|J5(I*s8S-&W2NcC{6ZZ!ayp(h=5v zq%X?6^-r~`(yx;(47E;2GRx=Ggz??ld8jBj^ot(bP0 Hl+XkKn4(R7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_midnight.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_midnight.png new file mode 100644 index 0000000000000000000000000000000000000000..8b0a4acfd23f01b9a18d682018c212b5618c4584 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjez zbWDI^&WaT)T3T8xMg8;y9OC2SJ@0NT1gc{!3GxeOaCmkj4aiCGba4!+xRu-MD0IYt z<1p8emIMF)?~V^hC%9p6^Y5_Yu}jBhV3ywVZY zexxtTy!B7Ds?x8MEey3zM>5Oj)P(Wf+IgrbIP{Ai|8;TuEPtklO#0t00PSM%boFyt I=akR{08org9RL6T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mocha.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_mocha.png new file mode 100644 index 0000000000000000000000000000000000000000..09cfebf06b9dc918c09a694d0b78f27e5ff5df1d GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBhGt zdgQdq%oQtEw6wJ3hI>bO*u}@k%d4*X3{=Nh666=m;PC858jzFV>EaktaVxjiQRs*P z$6>A`EeHPp-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQS^i89ne@M10NTai>FVdQ I&MBb@06>*atN;K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nadeshiko.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_nadeshiko.png new file mode 100644 index 0000000000000000000000000000000000000000..756e038612ded52fd2005fa0a6233f940ca0846e GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl$5 zDXYG%J=W6FvSP)Gt#uQpXI93?$3I)T?-fuTV@Z%-FoVOh8)-mJf~SjPNX4z(UPqxL z1{{aEj!Zc4|NrjT;Hp)5mkfUVa&bBNIxDUE{nE$Y6~?a97~b)1vSZud`?Xm->sd8ih@JG=<#0{x6gje^nmZl{9K@244$rj JF6*2UngG$5Q?&p9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_necron.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_necron.png new file mode 100644 index 0000000000000000000000000000000000000000..173fdc80f7de208ca5eae403f79ccaf1739a80b0 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBlz` zGo$B@HY--FXlZF#rK{Daq8J|^Z}wO{9H@@5B*-tA!Qt7BG$1Fz)5S5Q;#O|2qtFop zj>B9>S`PgGzdJU#YE|APgCD9my=8QxnE_Yv-Y&;LtC6{MW_pv;3JJGUqEn~=XJdGoTJNqc4m&i&o~|3>lc6)RR06%|dJHZ3G1#MIQ(_GaL9 zpnk@ZAirP+hi5m^fSd!KE{-7;w~kI|?>nHtb5zfyWcttl|Eo3z|d|l?8?K!yq{cl^R8Ot>9d~fh=`7I~$W2&6@2f4(?R8EMN z9Se^0DVMP7Yddo+L}phRJ34a duHSfE_v{6+O*ffx-va%@;OXk;vd$@?2>`bpk){9u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png.mcmeta new file mode 100644 index 000000000..1563594da --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pastel_sky.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":20,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pearlescent.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pearlescent.png new file mode 100644 index 0000000000000000000000000000000000000000..93d6740a76ba3aca092473e10842275aaf300623 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBe`E zhlgNj=!z99T3T8-ZEV;K4ddhEzvtYV1ysja666=m;PC858jzFV>EaktaVxjiQRs*P z$6>A`EeHPp-yIuVwJPtD!H-`qE+=1SrB%OQ`q;a|*mWAiJHD-)CG2V|7~fu6c%>t( z{YYPwdF!8QRi$4iTNrAcj%1e4sR`q|wewI>aOf93{_EoQS^i89ne@M10NTai>FVdQ I&MBb@09txYJOBUy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pelt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pelt.png new file mode 100644 index 0000000000000000000000000000000000000000..e64b858e308a2527048a085ad7a40e416f7241c1 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjez znL~i1&x#c*T3T8xbnf$A7bg8YIR9G=}s19B2PT^vIyZsqnm3LP=v zILvjV<-q^{yJLf^R^?qX`0>ld<>c$EwCeXuAA46AyG~YL?Xw>YvXKNn~hgQu&X J%Q~loCICc)Qk(z) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_portal.png new file mode 100644 index 0000000000000000000000000000000000000000..233e02a83c8100c2277719d691ef8dfb864236bf GIT binary patch literal 300 zcmV+{0n`48P)i&1&uQUc7g|!goK1y3BgMSrC(oPir2zI00001 zbW%=J06^y0W&i*Hs!2paRCwB*kY}QUKnMmGu#0g2vnFw$AHuKKGu9dFZu=4<4$6r| zWE{tV%Lj^ks?b1Y$8i`-h077F0t*V9?%*r|`yDnL)rSkW4epz%=1VfDg;!8r;Rx%N zUqOL0wJaCz4$qRbANXND_;w=vdPw*yPNbh_1bK}(_9yiWj6>_~m4Qeah4=pDeC$)r y$F#$JpH!#$Vyd81cm>r3j3F?DG3_ zx!E-0@YRIrb7sumIb-@8@6Cy9yXE}PyLrSs+&ptOU+d#}aSPUWy}!|MOTCFxDa1KB zUC~Q1ijDi~Ov`KO|2c9FJunng`_t5-lrjB*w$B04cBVxaBu;hSJ;%MR_TcviTbccU P_A+?7`njxgN@xNAj9@@$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..39c083416f3bb0faebbc00fc15e174c8c6193078 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBe^C z|7`~0|0`CkXlZF-;NHW)J~uu-zVMuG2v8kkNswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst0C5~mO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_white.png new file mode 100644 index 0000000000000000000000000000000000000000..4f48f097e4b9f9b7676b63cba4fba4cac8a7b6b8 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>O5T>Ln?0d_HPt)QRHCF?eaVG z@}Sh3hepNS8-%+bRuq|kR+)76&eQYDZTe?Ks7`A8BlB!wq0p|G4L8nr%Iuvxqxb#N z29u__OgS!2Q5FFzE~ZZtew^F#uK#WOuhT!+vp9A+*H2{fxTJaDos#T9rvu>yOtrCs io(mdGRL!53?#uf7t1@IG`v;&)7(8A5T-G@yGywpc(o3=c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_pure_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..534811fb1ed38ee18a5d2aa8b0eab8848e798481 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl$D zD-8d?Gwj*M(9+VfV#SKNGZ^CI<0X^UnF7@@mIV0)GdMiEkp|=>c)B=-RNTt#brd>c zz;T%CNXvo$|98g*SFOssWbosci_6K^S!vJbEPd=}-_(Se-P(DmC^+UpKxc`8w~nkP_diPS+HfBiXWm9DTEhckA9B2&7Vp?-yj4g1 z9pCv$TjYNv+Wja~`cvicL)&l3{B)MeUW;$)UwL|*U%#E&=pohm{om7?H^FC*Z#i5$ wKVkO`3z5P0A0=C>FVdQ&MBb@0RO3VZ2$lO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_rose.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_sangria.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_sangria.png new file mode 100644 index 0000000000000000000000000000000000000000..49f890854d9bba2e0fd3cbe192e4f1e94c9a4680 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl!0 zHnuAq94l6=XlZGg!@|NswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst0DcxtY5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_secret.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_secret.png new file mode 100644 index 0000000000000000000000000000000000000000..144c192ae322cff6236c5a6db9f4d4dae98fc5a7 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>OEZ?Ln?0d_HX2Eao}OuuW9b+ z!7`M^2_!`$#Q iDU(_=y=A`K`pq1*?QV7)n|B}3DGZ*jelF{r5}E*ncu1xI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_tentacle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_tentacle.png new file mode 100644 index 0000000000000000000000000000000000000000..e3aa161f6dcceb5f4ae16a0b99104a59a0d4e77f GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBjem zV~mk+&WaT)T3T9^%>1Nv9OC2SSs3Sl3}7q?@(X5gcy=QV$Vu>YaSW-rmD}qmbi{z; zFxQcm1ONZ;jt#C_m3PVD$1fL`ldrSVs^2et>|J5(I*s8S-&W2NcC{6ZZ!ayp(h=5v zq%X?6^-r~`(yx;(47E;2GRx=Ggz??ld8jBj^ot(bP0 Hl+XkKwQ)=J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_treasure.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_treasure.png new file mode 100644 index 0000000000000000000000000000000000000000..22f398e7a12dc48d27f857c6ccd0ba347a5a1f64 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl#2 z&B}i+YPGbqtXQ#P*G!q&4Px=}@hhzMqyyD4mIV0)GdMiEkp|=>c)B=-RNTt#brd>c zz;T%C$b7H?7nhT-v(l>HFMaG?VeC4M;T_*r&JuRD6^w5$ExghZ z)_$Zf%DnYYwW`vulPwIjPDe7!=hTGp-P(DmC^+@D>Q566H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png new file mode 100644 index 0000000000000000000000000000000000000000..1548f6586638bf979f5f1cae54f0c57b11198094 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DT4r?5LX~=YHAu15;AStw4$P- z6)RRS)Ydahn#z!s!=!7;sG`RZ5!KSt!t5BpWab3kcwM#C!{ZGcHm$W-_Tv~f3sTQeECD`uNz;Je4Y1ONQv)Mr)!GL@y65aUDc~D zIHVmfl<;mnEx3k>n`_Ry2Re+uWzD3owsUXieK&jMGjF36t>FQ&4>?{>i+5}^-l`-1 zj_>@WE%HAS?S7Og{i*W!q3yS1emYBKuf;d@uRJ}@uis8>^pI-({_knco8Ys@w;ZmW wAF}*s(y9f)6|7fT`!>9>tP=S#`}0RexkyRte1<1CfUainboFyt=akR{0RP5ySpWb4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_warden.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_wild_strawberry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/bucket_of_dye/bucket_of_dye_wild_strawberry.png new file mode 100644 index 0000000000000000000000000000000000000000..785ddd491c89fcb346b699bc75f6b92bb657a674 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udH4O;~nKo@&QBl!t zi=O|^OIEB{(bCegN55jOYI1yhd@*N07f>BzNswPKgTu2MX+Tbbr;B4q#jV_4N1-DI z9EZ7%v>f>Ve|Kzf)vCNp20wnexSV{Ql~(0|E-W7la6@A$TImawa>V0?RN;gycC z_9J~!=BmdK II;Vst0LvUthX4Qo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..0953923486ab7979d303033ef5be78b36db77773 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`xt=bLAr-f_20L;cFyQ#ScJDX$ zeW&D0O9ccpXXI(H+_@sbGj&_QMA1Uq9O>*Hakfe84>PzLl}~mS{;>Z}oaTd&C2LQt z*UN7_5aF&M+dJ=h{(DW?3x|1=dW#;oG+5OhvFWLr&)qRIHY4Q2e_flVjVH@PcxTxH PEoSg^^>bP0l+XkKpd>v) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/burststopper/burststopper_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..1c13684cd10e9862c94025cff01f5893d25cb65d GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A{7R}Qr^1~NQ7J@xeT z&Ro0OJaN_q28L_~hFJ^@|C5q_|Ni~{`=7Nt_ID?FWO_!@pljP~*7*cU7=>Ri>ZwEWmAqA16U-ZB2`k(rgf9rbINo&3?-TO7lJ6^VdOCqwO zn!lyJx^uz=jVBS3O|RT<>Kzf+irT^dT;@q@cHY&y+-ff$y_+p1Q`_V7qu|h_=t`C& cMbG~**5794j2BR-2inHq>FVdQ&MBb@049V~IsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a28e8a8d00754a111b3d8dc3bb8360167f3346 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8=&hTUHzeKLo+JIQ0Z zuWpv7xs^wJsGYHnsk5WLvWbe6q_o`sm2Yc+N*POn{DK)Ap4~_Ta>6}b978H@B|EU{ zDKzOeDjwBkJn_P#FgxJ|gOON6%gzRlLlF!~#tlbzDk@1!NSHN9+;P}5o6)7gGT8Ls zp*z;R-s#Oxzx(vr@LoF^Z1zP_q9P?P-nbX2nz1CvFPOpM*^M+HC&tsoF{I*F z(g9|M+^$A021O3%omV!k`Tzg!?z2q|(gyeC++=16i#B#oX$tfZ;kTYx%K2$)v5wT~ zy%*MGb-sBY(ae||zc=(yU0|{KQ)j7*h9O19mv(mv^b5Y*zej2=laBUpZGE6U44$rj JF6*2UngHtvNLT;> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_3.png new file mode 100644 index 0000000000000000000000000000000000000000..95ad7510292dcc431d46287ad1b64d0bce4c3b15 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08u(kvf^fe1DPj`?Fy` zU$6f6@Ar-=@$*}JCl)%zdudBb%juXpTY1E9v}fo}^2qWu54AIP)K^x#$)W?)%vciS z7tG-B>_!@p6YuHb7*cU7=>RiBu9qtllOsdXuFwC^f5|!+AuaRbn%%ncfb4(-o)*XB zNt5iun#|5_6v%mUipeJ^hefz>% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_4.png new file mode 100644 index 0000000000000000000000000000000000000000..f59de601bbcfda2e6ee9cf50dc36d5b3a71ed5fb GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E08u(k=kg_a59Ja{vzr3 zXTyHJUj6Ui?;TU(=ePJyEOd(Z()O`cvrrMyF?F8qtJ|IAk>zO~YG>@Iue|LK{{*0Z z#*!evUFVcu=-w{E{M6lt};a7V{D{^X~G``1cuf0Ml* l@3%O+-^SpY)Y_-&qF*Z5RxiA@*&b*egQu&X%Q~loCIFHPS~vgz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/campfire_talisman_5.png new file mode 100644 index 0000000000000000000000000000000000000000..7721605321b32d9cca563ff2c95943c876279974 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08u(kvf^fe1DO&kFDB9 zdxrOC!+ySA{qNuJk|?uyFYO&u;^(*c9-5mpvCt{h&bT|tBg@m=QD50(!*hM0X2y~r zzhDN3XE)M-oODkY$B>F!H78w}SR6T+50riXZ(my8vPDLnU4iwtNA~YmbKSDHXl@N! zxr2eZcz#l8VM?P2y9IBeLi6NH6RvsmPM))Wa`DgO-Hcl{oXcovu=u~|agO?tC$(J< m8^TvjS@4H(>nEPo^BEPVGrw*z)@B4+$>8bg=d#Wzp$Pyu6IuEI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_1.png new file mode 100644 index 0000000000000000000000000000000000000000..fca5d7da96a8da0dbcce5d6cca20976bf5a85b9f GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2O2zPeqyA-sNbcajH3 z|D-HW^JrI#P&;E!a~(&0Wm8Qh6BVfdw&x(Fj3q&S!3+-1ZlnP@;hrvzAr-fh9a!}g znsgf#kLog>c;Qi)o$!LeNUWh{X9LHf2!boNXL)k4*!5wFnGH9xvX9EV@SoV zqyx+hxm}H142m4iJFje7^Z)U{G)qM0!_esAcZy1-)dr_NFr4MU2IFYWFU=ofsqe~;8$CLQhH+WJ6y7(8A5 KT-G@yGywqQR!RZ@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6e666534b1225288d952a7775f51ba8e49ac65 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08u(krH0N+3nJenonP^ z{QLj!-|rn$;^(*cPAqha_tG}iRPr>}iFUQ%=%3V`F!Ne7r2a=l!cm>e03c76VT{!7-u2x*xY*X-7n2V@5%@U%D{ zPnu*O)?{{eqd?A+Q%pWVIV|E`0zz#^neTE>4g0KV5LXz{anJI-b4xsbZT*99&RVL= cODvBH-!EoQ*D>Fm1+zRbsIS~HL)RFnnXx3u zFPOpM*^M+HC&|;rF{I*FZO2hYW&?r4MTyJ)rt98Fy>eLLYrAEBw(gNR83t_U9xS?X z=Ju5i@nX?miY>=7>Kv7}G#}hEEkjqVx#N-=+j32lUOTz-V*i`YFMaanZ|s&=d)IGW hX?^n6mEFHiaaylnIrT|cLJ?>igQu&X%Q~loCIF5kTekoJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/campfire_talisman/soul_campfire_talisman_5.png new file mode 100644 index 0000000000000000000000000000000000000000..7bc31fe50f81cc1621c075d68780f3791fb27b76 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08u(krH0N+3nH|A6qq! z{z)~TzFztF9|%gK%;LSYcT9<&-{N~{Zqmd;r%*fN?j(;aPjg3oWmo%m1whS=B|(0{ z3=Yq3qyahUo-U3d6}M_mx-zjiaxfn#`~Kg)w7g}Dj5@ml>u->GnWpB~k8nki; z19S2Gq|(BaMiF)k-b97w$(JTv^XQ#CXaD5lpU1lyw`@3<(a>P=f6?O{^&?MeyB;=# kubQ&p598KPJget3Do$s9-D0fG2(*&H)78&qol`;+02^>yF#rGn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..d84dadc1f482fe53e87cf25873c3af78c8fbab70 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9b4;2Fb-GnfDG0&*Dk zct2)1#IRQOF+=`_PLU%y+zS{ys;$_PWEor-cHN8tYG5o0@(X5gcy=QV$SL-8aSW-r zm3)A$V*T|vhRflHozv|YjPm5y&Z*kOud!iq_4AK?cljkMtan-ODsPm~%*&MB9mXuF zo24n&z0@&CRyV6x;n<{UeSM*a6xt@YAJ=ncX1f=A&ns%XnKT1$%-)QvZ>trw-@S|a i`;PI(wet53EDY**4B4Xf54!=aXYh3Ob6Mw<&;$Sv7g+BA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/candy/candy_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..fd7495fbf55b8f90d7bba3da74058886e18ed1dc GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C6!RnXNpv9xw_cJ=$e zi{bw>hJc{x4u=1k3`ZIMGcX)t`2YX^i8GglghfT)ZF&XNz*rLG7tG-B>_!@pQ|amA z7*cU7NkNFgOW^R_21f(7IQt6+466S>pYw5kK<>3AFJqT(T_PT=X4HPZ-Nkgh=`mCH z{qgVjW}TUOa`8X^%&ju4zP~bbRZhG)Ah=8I0;BYjTWkWWHXTay@@MpLlDH}I;LcdQH}in zpE3O3#Zb9SYT8+iO%H=K9T{#f5-!zX^0|7Z45*Z`B*-tA!Qt7BG$1F`)5S5Q;#P0Z zRz?N|o&zhA|L^aHDm^nVw_w6hwO z%cQ!KJfa%;vpmg1?Tj7ul{Fn1OjM-yY`J?EsFblJ$S;_|;n|HeAScPw#WAGfRBu8!s(Z8;66& zNBy*(r8n@*a}rMf$gEHrE#tcQpj1n&6YoJDxAZ{94$0l+%GL}Fy$gl=_)b5x2inHq M>FVdQ&MBb@0KZ8`u>b%7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/carnival_mask_bag/carnival_mask_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf5a147a3fbd43e5c92f8dbce1aa5aa5a1d4c58 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0E4I*)T^Sal(WN`xqEL z1@d|pnifutmXeZM!N&IAfZ+)%D+dF^{S}kVb#&eyc7C$XdfD<2pTdni{NgIQF5;Lcd=bk^` zb?5Gz)2`EwpSZn9c*gYU#YM%NQUqgSVqKhFN;Q~F%}n3(?z{%n!&nmJ7tG-B>_!@p z6Yc5Z7*cU7`2css92waIJx=1Hg#u?owU&tNV>lAE&tw&sOYwiptmdKI;Vst0D;J$1uAW$v zZzN%&B6Y4?>iB0{DK)Ap4~_Ta$-GQ z978H@^_~diJD|YP{7|V&L;Cyvw{8j5-%rms(L9&4d99$`uIpl*|J+MnPRdy1GuOy? zisGhCjfZL@B<4=kOLJ0qwz}`$gsAn+QH%3!;~v!YOtRH@S6+1dyzsd__TO10s}$VX QfEF=$y85}Sb4q9e0C_}IegFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/century/century_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/century/century_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..e22bd88b286f71a851d5b26404ac3da494a91b34 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(kqWglKG!Yv|0LV@ z|B3lV5?`Mk`~Tz7)e~!`drJNP`){76=20!J?j(;aPjg3o*JzX3_DsI(wvGTD5@;EIw)BFD~JT~{F`ZlMj;%)X;{&m+wU)y|kT9qmy?{N6p z>bsK-3}k=1DC}HTdH=cUUXim~b8g%CSL{9E{cio8r;44WJm=LuTo5=}rWO;cdfUpt i+|Wc=sY`C(OJ2L5Y&q*bx|#tkW$<+Mb6Mw<&;$Um4q5~N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/ganache_chocolate_slab.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/ganache_chocolate_slab.png new file mode 100644 index 0000000000000000000000000000000000000000..21a41b5a0e5642bf3133b17cef3c1ab0e4e00bc0 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ErE?9`R}PyYY^U*MuT zIni!Qg@1yjtdF*^ffSd#0NaeEE8hqRtYk3nWC+e-aP(l%ww@=`1JuS?666=m;PC85 z8jzFd>EaktaVz&^E8_tL9u|i?4>$kca&)ERmqY*NhrQxFHly8gZHc-0!E2jWJ^RCw zD;@D%{R7*zw{tl)EAR3b1bP;{KYW9GRlyU9n@ur6yipBoQyqjm0;Cq|c5_H__iemi Z&Uhf4g*RGm{Q{t644$rjF6*2UngH8+QS|@- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/nibble_chocolate_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/nibble_chocolate_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..4d3c93a5eabe8f3683cb1ae50b6a4414138ee8e1 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A{c4@$_&t7`4sbL`ZV z1xv2nfAatT{~1eH8c1;!xTsD}wDZvxPOy~qzjIjvsG6}P$S;_|;n|HeASc4p#WAGf zR_+OQE@lG`hrsk@_x|tN+8f05bItkY@^^KIZ7(dm#U`S$dQ$=;D@V7Gnu1V$=cDdJQ~m|8owu`H%3Kw3t?VJt4hBzGKbLh* G2~7YX=Sxxm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/prestige_chocolate_realm.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/prestige_chocolate_realm.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2a927c4bd42f755ce9fdb69de0af57826451ac GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Ffl7WQD!&S7vgkmBlO z2wurx{zgFH=^C;BrupY-mJe_&icyMkbgpb#@fF=O%^_J0gg-=mtq=r{h#uz zso~deS0BwupIQaVxsE;gyuE7jf>_N*Z0Uc)Ua{>x>=qTfV9GY@mw$I=7%wmXF?+@_ ZuIgOoFP~=pTQpNxP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/rich_chocolate_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/rich_chocolate_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..7320896548fa7907f644aa9e6c092af972eaa0dc GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08vj;<6UY3DcNdXufZz z|AYN8&u1)MDKEhG|Ns9h_n+)JcB;Td)kj-6!BV#S`1Dqw2F8*gzhDN3XE)M-oH$Px z$B>F!xhGl~4;b(;A2e|P-5*?+g~=3LA8w@puXh5U;b6ZS1^@~w%Q zIw$jm{uL*!(AOnfH&4l`?Rmxco~gg`0M~>yI}b{{Zdr50*Cb#5hfnTx#*|CUXA~{3 R@d0gO@O1TaS?83{1OO~rQ!@Yn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/smooth_chocolate_bar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chocolate_bar/smooth_chocolate_bar.png new file mode 100644 index 0000000000000000000000000000000000000000..13e75758b8d566676157e54ef6dd5c47ba895284 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)D~JXvbCF`mVq}=k#Bhq) z=a2uMW2dg%fAatTe|Z768B14gsqmkiXjkB(>Z2_zBV`c_)WcX3wwSaTdl)`uYIbN4abQ$%S>zzExU@rTn`@Ffffh0_c)I$ztaD0e0svDJPD}s* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chumming_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/chumming_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..19128083538a5115dee8922ec6bafe93051e06dc GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4#mo4S)crh6u~*#~5K znwOf|huRrC>MMK6s+g!q9c+<)3sl5d666=m;PC858jus=>EaktaVyz@)k~qtv_a9s zl;MO1e~@m12D_1z!yy?5mP8YVn+Xj^9x!<=RV~m-NQgKvEluMXt4Pe$42?NExlSa^ uR?ErQ#&BeY<}@SWHHx`Rw@uh|7#M602;{o&Jh>KV2ZN`ppUXO@geCw;2s_IF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/artifact_of_coins.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/coin/artifact_of_coins.png new file mode 100644 index 0000000000000000000000000000000000000000..af36698b8de0a80dd1f2c1f82f71ab90b31e638f GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ErlB6w$-@ZYcTzpi<` z+$j3z$J*cDx0h-#srufG0!lNM1o;IsI6S+N2ING0x;TbZ+)7dqVwg2)I&;TDftE#% zM=sPK{ajF&Sk8aq&x_w`k^i<|33_tdcalBh{?|3Hmm5Vl zr3iK>d1QH-cRR9&+8LK>FgfZgo2W=RBrl!}RLWQqVY zCAek3Lox5HRZ8Cu#GGk%eao6A8fI$V-_)_8u-qyzY)$j;Lcdzpi=x z{Tlyrqv-GN+q)gv?@SZEy-2uJgDK{#wHr_!V@Z%-FoVOh8)-mJw5N+>NX4zB1AGj< zJy#iz8t^b@^JM(5l-KxilY5@$iKk0lT26mFQDQIH`K9B;0iFZO^*i1>6f0>fWCYc7 z8{OqO;*;hezesz5)@N4c3F|&N|DMHF!eqr*dG8~u+cKusM)$o9Kx-I0UHx3vIVCg! E0AK@5Pyhe` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/cropie_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/cropie_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..e771c035b7ccc593cd9cd0ca5d484319bbe9cf95 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A{7S2h)72(>eAv13>j zu6?Q5B}0X2cdF_ADRD9u%!w+89fM{DK)Ap4~_T za#B5A978H@)pjs)F)Q-0EPnS&HuUTNc-_`nHxwLp3O;&sf_d-m-i6D{|4yA!qGHT_ z@ZH4+2k(}z-EUZ)xqjQXkgLsMx36W$f8fm5xq0T$??-1JIeI-i+N0#>64xK-r`WN1 dtIiYqc-ttJ>`g2WjDQw0c)I$ztaD0e0sw{(Ql0<+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/fermento_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/cropie/fermento_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..831a8d8dd21d45192ab410d25e2b140f185a3b35 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9Z?H@@AU`Tr!_!c)H2 zx}48-OSP=9$!RcLkS6#-!Z#pOXPdB17lZk|2`AqIRWp_Z`2{mLJiCzwA?^jGx2rM(uvZFk@o~_n94~&x79F-0E;_(bnbH?p$IrdUwaR_}RNi zh2-k*b2nSBYV7IJt-J86SIPv<>hWqR-hurk|4ie28U-i(twXLPxL&g6nED)V+NTgCbI7^^YYifZFr5!r|{nu^MP vip=bKM^ZO9ZP;<>wT$kLC5t(Oz8lNmvSM6gzWv}mpcM?Bu6{1-oD!MYs^*d*<~^qf01*R@YQ~Qvr*zs?EAPqw;57$c#{)6df5zx zBqVM)^yJ=jn8TbhNALDt>stN^2aEUY+4GEnxuf(M&xB(v3_2VNdy?na+5xR$@O1Ta JS?83{1OVyMLs9?$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_3.png new file mode 100644 index 0000000000000000000000000000000000000000..af29f489280e70a1f8abeede710dcc64ed625941 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE09)DvkXe;1Tq+$m^q?& zT7P$OpB0fX^-Ur=zC sbl*+W`%E1n&irmHic@&&+8XwkGS+Qn&z!Bh;WWtgp00i_>zopr0R5s=vH$=8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a71a96960cdc86b7dcff3747feb53e35a88fcaf GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E07kE(lWO3Pl{t`YhYk- zV*dZLarI(`8|N4}qIkH^iU`gUZ~fh+W9pYsSkED=Ct>P)qlDrAkwzyKpjL(?Q-+{~ zP6ai~Mejow0Qrn1L4Lsu4$p3+0XcP^E{-7;w@Q0i7aexsaAEJ?b>(s zAX~i0!O3^F^}b&?VWE)m-7S&{$2#>Gx82N%x@37_WtYz9EgdV~37-ADDJ%D7`wtC~ zbMHiE&waqx;IhgpyRB5lg@ea_P5u6YrnJ`w1ux`HU%R0Dv|J)ro|Tedm(d|vt`9Sn YMPG?zB*(Vd0A0f1>FVdQ&MBb@0PPiJ@c;k- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_5.png new file mode 100644 index 0000000000000000000000000000000000000000..d072987d9220c52e30e2c71c2ec1392e530d9351 GIT binary patch literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}cz{ocE07kE(rRm9NQwh8891VN zIArxCOnv|VY+SvV;l?=z!CB%7h4tKLMHrlzTYq=`Kho%=!f>O6fx$P4VfBs1r~et+ zSFes?NHS$$FmVb>=rp$RS5ULuAffXaXdGinkY6x^!?PP{Ku(vZi(^Q|t)v5t47pub z6OS4&FsD`}s$Kp!d#iIx=&|2IF)H?1AM9#;C!W0}(DdWYHNEbwhF#wee#yP9&wsYj zL(@07^zNh#w{Iqnum-;}Q!^GwC~(4$M2I yF`HDEGER7NUOe^?1BXB(!voGY@*GY7cQU?qlvp`a`w-C03=E#GelF{r5}E)w{%QdL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_6.png new file mode 100644 index 0000000000000000000000000000000000000000..205e0423f0264d5f1edd8cebac0f34844164f92b GIT binary patch literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}a)3{WE09)DvkXe;v}It;X5eHn zacXDa{=gubWXiBQhJm4db>q|j46AQ2_$J*bVQ^Am_-J86EpW&k%Yo}!CB%r z&M~ZB%<%tbqlBq1hpZk)6c5nMq&SAQ1_omre-SCI1vxecfkKQWL4Lsu4$p3+0XZ`~ zT^vIyZiV(cH!(Q!xYjSsmHuvjE$8^@Z9lsTo0!jiX!3rvaN%p$S6|n0@^LJUnI^gP z$rSC#Fp=%%W`LX%?gjsh@3X_apbf~Pfm;P$vGJ1^Z!J<;NOT#nREK0WDO>| zYIG@mE;;P+x8~=&ubUmNn(CgsUiV|xw`OOD?^mZE2%KKvn2@rzDkDp;DD3)<#Onpq bpG`^kNRjwbrIPvt=tc%lS3j3^P6iJ^UUk}1RL7={lFqS*|b?F`%ut8Xy)Cfz7u_bL;P}#;5-i z3hO0IeK}MOMH_kC|MDg&Lr2wsHYhd6~v^KW!7m?CBbaQnw zP>8W4$S;_|;n|HeAZMPZi(^Q|t=vZ~Is3E5;%nhcLnM=AvuyNx x?@q~jQrP-4bz_3T(X=!3ev}=!*v$Qx;bfrk#?wmji9nY!c)I$ztaD0e0svnZg1-O& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7_maxed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/crux_talisman/crux_talisman_7_maxed.png new file mode 100644 index 0000000000000000000000000000000000000000..327c1e9e8badf6f30fa247faac00a7b3405bb15e GIT binary patch literal 351 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}QGic~E0Erkr}gQs_k+2bwhXL5 zE=Lp(hpe82sc%AIz2GeIYzEE`45CS<469=p+8MaH&x$ZOF}MEix>3U5q{8t3NF&4Q z8w|cljZgnGw6A82-fwc~JAd8L)r%Sa|7^T*j)B3%sjY#5$1H_Q(K;!Pp~-+Jub_K5 z&>F^)AirP+hi5m^fSlQ$E{-7;w^F;0COQZ5u%!Qg{NUu7EA`HeY&CrDT#Ma#POBfE zXfHE=PJQ04?J5U9SO1IfaJ*D_;a#%gO3zKpPTyUw@+4}KoYmfXk3;gY9J_B_+^FiZ z<^KIku6C+7qJ?h!cABhyDd9q*@x4ghPZw9%%Um;wt@o(8q3>9F<9qqTQ!!!lIJVE# vj(06MACtUh=hNP|W!$^N6E@#0IKXYMuK02G)oHJR&Sda(^>bP0l+XkKjP{6m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dante/dante_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dante/dante_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..2aef7dfc4fd9640c38d9883922229b34fa375792 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08YLV7k3XczM3l{mtoH zt9>;Mm37TEK3=I+(UzBx6;)7|`TxDXBTQ>fs^y#0uA5Q>Ta@!ffZ7;Kg8YIR9G=}s z19Fl*T^vIyZuRyYWjtWO!O(oH@$dAtw>OL1>ik`@VZ(*vtDnvJ+F7u6)76Z<%1g`d z?lIl19i=Sx>Mx(beB+#Xavo=toP;0q@TeHgZhOqNNN(q*`_-d1QH-JL)UDEG*vz)W%p6$DY~NeRA#esO1cuvMrGx8P2@jvg01ZrEBN+%NBC8U3N=mdKI;Vst04l0dVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/crooked_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dark_auction/crooked_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..06499e404cf7fe83d6498a7023af629bbb5a4ee3 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ErlBKYRC>#KL+vHgd- z*Iw9s{>_!A-)}DxF4bUiIby;MRKZvhb2*EKPjKd?^R$j{qQ;PWYxWU_uVa0)OKuhn6#5oh35tT lgtLF9vTECZTC4Y);h8aW3;RsVoG!8jJpZTe zw{_O3oI|fZpWFZN-CfsC?Yph>MZ%PN+TQ4$kV+^EzrpR}&Y+**@?)Kzjpw`T43oBb uzU20Z*6=(Zxs$hxIek}o+I+-Dob^A~NJyH~6zOyrx@l5^kA(kj4b1&-N7x`$e?kUcsn%}xj2jnhKS3j3^P6^5kt~ zXyxHU=YfKf;%ct%FRcc$7)yfuf*Bm1-ADs+;yhg(Ln>~So@y06V8FwCamL>NN2WTb zioV~!Wqztl+@y;We05Y$PFa1{rKOTnQtiyFKMyvOg{6RoUeUUL_1pL?Tb%bZ&`&(%JERK41x v)8(Pos$C1i72mPFlgxO$;LcdQWEOw zYPNy`Vix9s5&n~JFA^@*U~)J)@dr>5V@Z%-FoVOh8)-m}pQnpsNX4z*4t601MUEp& zwEp}*xP9~WdG&vHa)XuBEM@J(`B5baUN=2PV8LEYC^VG&ZgdX>4rNtYP$sT%pkM#3U`0OT=K_ zfde&CM+8g~66_BPX}wU0V3?9rTHayUHx3vIVCg!07gw#IRF3v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/day_crystal/night_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/day_crystal/night_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a7504a3c0622a5d0179036ee44bfb656921ca2 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E5Qjq0o}-o1PG#fule ze*LN{HCILCqLZod-7CiqY+os(TQ&)(h_NKdFPOpM*^M+HC(hHwF{I*FYJV#uvmpmV z;qCedZVSGNA7z{uB6v?e=xUhDy5qHfjkYxzO>4jTsbk682n)s6+`TikY7*;Am37+} z2V|B{(B))Jq-IOBeYWYSLsFblJ$S;_|;n|HeAScYz#WAGfR&R$R z6N4bn5rzvt|5ul1HO_XJJtN#^r^$r5Uf-o^Bo(XVov+rnh|!B+0}MJ3-^6wbYf>JxvRBeInV|MPgg&ebxsLQ00(10 A!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..d84d211473e3d8fbdfd11b9578d9d887a16ced5e GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07iu5!TkyIOu(Mk?Cc3 zSBHlg&&3^5vVandB|(0{3=Yq3qyagho-U3d6}OTOurlO!9c6T86ls3o`R)FWcYo(7 z`Ka&jey_=!`#Sli(6QH-wp*>tE-zqs-K5NMn0M8-L(*&RzA9h8OZWG`qgv)4l1*!( iUOqbhF+0HW0nhA*j4YGfpCVDNPHb6Mw<&;$S*ibJ^o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..250771567275453bc7e585750e7f6688e65292e1 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9b&*S|UKdV7)Z!;I$# zz3*;H5nNEakt zaVz-%*SR^37mh2Z%duaSQFmT`B!&XBUzopr0QR^^p8x;= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/draconic/draconic_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..a47f0eed4b4090f32a689a8fe1dfa97e900ce123 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=0^Qo*(qS+nwaG$nd0onLP3(acnc~d{sJCrdngk6+W&C$y* Q0$Ro3>FVdQ&MBb@0Ai9#bpQYW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dwarven_metal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/dwarven_metal.png new file mode 100644 index 0000000000000000000000000000000000000000..0b54442f2934ebe825a5b4c5cb3c3395b2c17df9 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4F*&6qm5rK~ioJISLt z#knoeJj>JE*VnbeL?hJB*xK4GLRZaEU)e-O3aGgI%A6lSim@cfFPOpM*^M+HC&AOj zF{I*FvIDE0Let)cg-7->oQMd0w67sibV4Dc%9+y#j&LtI5M$B&p2^wWocTR7TN`^~ zlb7_5hNkyMXVtRzGkd=GIQxcu^=+GUzLt-NKe?#QICy_!HQ$k*|Nke-GBEUSmGbK5 SNH+x9#o+1c=d#Wzp$PzC3xE z4yu;2H3mPsZJ!s&N_jl@yYYolushgNaZWHp>4hnr>krDi hKGLk5;dh<6=FU+eru&<=CP;zY?dj_0vd$@?2>|?zT5tdW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emerald/emerald_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emerald/emerald_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..0bdcb8129f1879460320d904c74097b3c408f862 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0ErlBKYRC>;Lcd48aUd z-`1}Gdsh5z62nwYhH43hRXVr-zjplGa(j_*sRmO`{~m3i2F8*gzhDN3XE)M-oCr@B z$B>F!y`4uH85DUAtl-}Cf7|mzlNWfNR;m=59Dem$luw@ezi9%Yg2mO$-fk5wAA}pu z+Fq8BQ-8#*RKavlxQ1ED=KYRC4SfX-vTi$1zYu@?&3f(>)3Qlc%&hNU@Gl11!QkoY K=d#Wzp$Pyj%1zb) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..a4a2a9f262359aa44af4f046107311aa8811464a GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F&CHU8H%ua_G|MPHUP zZ^+)1BFNC>SE|8eWns(Ur*EWdCM&71x$%`AP$^?ckY6x^!?PP{Ku)Tsi(^Q|tt15@ zhFcQCB5jKV*tV@(dH(nO?UnIdOuVmo`ab4t?CQwUsq2qq_fBD3kfLC8@|j40(V^aD zIwdWKy51anuqeR7ciQ=IUVSm23Z{wCcTyIyRW%(CsXu2K`{e$t>c98JYoeJmpKSd< Q8)zYer>mdKI;Vst0BW91s{jB1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..a33285977136ce4ea8662021e548f7540bb16851 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ErlB6xd|@SD@F|G(G& z{Tl!4n%B#XqNN&4Z+-I&fzpg6L4Lsu4$p3+0XZR_E{-7;w|dVya=9q-uw2{{xcgoG zBhI9@{a*wptn2-F>Zx^PcK$z4>8#|t4c8YeQhMBwjf3k50nJwF+Bo-j%ONK4}dn$O_r>gTe~DWM4f{g_D3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/emperor/emperor_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..0060e9133e12344e7664647d130e3975eb96c0de GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{7S1#3Hdbv^b*EO$A zDT05$#)sM&cPDvdd77K3NKL%*%@L@Gu_VYZn8D%MjWi%9(bL5-q~cc60cHl@Zcd>F z2cAP)bgTdVKPZ&%7CC8VpW|f9m4+3b?;Y%~YnF8xtlXbaUvqeoQSgUDyEbh-bl~08 z)WppKGkQ$g#au)tN-lgW8Y=iNUht7i$MGKu56{n$w`BNM%6LMGM==Lz8H1;*pUXO@ GgeCxcS4x2Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/experience_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/experience_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..57d9ccbfb77004d21c0bcaa43dc112220aea350a GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F&Bzdz81Syz!sz0^8# zL%8JxAMsH2(kOwVYRL(+lsE0Qy744xOK&6Z&L4Lsu4$p3+0XZq2E{-7;w?a=I zWn?fEaJtAaQ{(UU-RtiBQ?_;f#jEh|q}Luxx84&+KHuty-nJ%CO|CJkFStl-Z(~K* z(uY%gehO@T*2(LVqjdI|r=8JTLk-K=M<*{nU8}Enb-j&i)u$=u=lAYpntqEpLvvN< Q44{1sp00i_>zopr0NI66^8f$< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/farming_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/farming_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..5a679be7350b7afae529822fd35c9fc951f10ece GIT binary patch literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0A{7R}Qr^KE2Ig^(58( zs|^c`q?UT>Olgpt)NHA}u#$&Dd+2&L&sg$p7v> zugmvW=>6lO^A$g7TW_DIrFcTOwny*3=(VS3T)ZV@a|CpI%%XZGGp4d|eDl9_BnD_L NgQu&X%Q~loCIG#QTLAz7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/feather/feather_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/feather/feather_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..38d951929e4229b12b4ef1063ed3cd6430c6e4bc GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ErlB3P=y^yakd?M1@> zzt?~G@Ztae|CcXc-mzncrFhd4pbEy4AirP+hi5m^fSf>27srr_TfJSaf(HzEj%3xn zw=XzcAj7)!^LH+#g3Kz0hn0J>e0MV>GesyKcUk9ff-hs&%q`((GFsm4J)_|C`KjED nkQGW^wpR|_dic<`be}nwvk(&x|I2n6py3Rju6{1-oD!M)vb-lRvg0`t-#!FOweeTsHi_C13jQ{txk)w|mp_zb~vc>64hdgSqq9 z^J?XnTO7WtZQZRT6{6*Mp5gqKH{BvjkFbTtHJ9kz+4%Pmb5S|lW$q6LnSd5Dc)I$z JtaD0e0su?rQd0l` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fire_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fire_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..48f916124d5b40c31748b2d797d7574516202fed GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0CUQ%#h`2-ks#J!js|u z|Gd?945xZH|Nr0m{{h4Q(+p?B7|y0L{9nxQ|DWNhGKT-Jd|!1j{J-J!yN4mv&e&03 z*+fMuzpiWt&>+T=AirP+hi5m^fSeRh7srr_TeZHbAk8KR;epJo0M`xg15?%sTZq{azv we*ZtZ@WAhYi(#x~O%)%CB1M;NPk+InYsqrz`S#1KK>HXxUHx3vIVCg!04WX zNX4yW2UcT8mhWtBb2pnaNT!#avpZ10c47yE(6iKpN31~!dUFnzHy*q(qwzZ<^I_&R zS4C#K1rMy19Rr`1^Z4*^ojG>q*nEdqLHl;3HJa+=^R8wx-f`-ZxWk!?ZMtJS?c?V2Z@SlB z5U-tM1~i4SB*-tA!Qt7BG$5zJ)5S5Q;+E;zR>lSc9+!)51?_kKtuETyZ?CnIMQu`* zLv2~tlzaVq|6Ens7bM^Lk(;e1>UqmTzd~&RsYIW%?S`ix3ue83#U`s2@nT#4Z00Bj z%PMt^2a+25&ipphf3cg#Zq4gW2ebo1+^0=nBda7LI#bH$xJu5vXIGx?dH;LWeS2Xy Wwr7?*mb?PGg~8L+&t;ucLK6U`#A>nt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_bowl/medium_fish_bowl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/fish_bowl/medium_fish_bowl.png new file mode 100644 index 0000000000000000000000000000000000000000..688fd201536f86f68255ca5cbbf7d98eb7c10461 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0FG9d%fg&36b*N{`lW4scVS}Oq=Z+gjfaJ29o4XT#3+>Qz!H@=>(Scs q&k~&bC3hQY?p_!5I^D18HNQv>%Z}2%IZ8mA89ZJ6T-G@yGywp(6NefE z^7OlY6N6#|1ApuW;jE*#mdU-}t)r%$B>F!y(hLZG8pn44ft;``TP8@5<$;Og>(-!R%Y$0ai1`W z-StP`o$I+v^6x)giYuUtIEa7UeTy4@GQ`S+rP cr(S!Lcb++B=F9gxfR-?Ly85}Sb4q9e0P@3JAOHXW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/general_medallion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/general_medallion.png new file mode 100644 index 0000000000000000000000000000000000000000..91aa9fa4df56ae8c5db9b82294f6c2cd34ae1c77 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08u(kqWgl=I7@(F)>+J zW?SK;{Ag>&m+N)MCWl4x@|H?SG|9=$F)-LA=%@FN;`#b pev6&$$nRs!|kVRuljL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/blue_gift_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/blue_gift_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..e51ffe20460f5366327910cf6532c4c72155ea9b GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u(k^0ZTa1F>RJI65P zKSSi)*$fP!cE;UF9$B8|j{3@(*Ihuej3q&S!3+-1ZlnP@5uPrNAr-f3I*u|P3E*%M zj`{Vz+;~ITuM;PB^G*Kg89KqoLXAmPjrYaH_&4%5{#@UFr(fXhcivwdi;W&J2$bL3 y;xfe}^_P&a(#Dt8i_U0WXPmKf_TIL;=Nb448BeF}e`X1^gTd3)&t;ucLK6U(L`S~> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/gold_gift_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/gold_gift_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..b7fd0cc5185537ac6d1a5acbf975177055a04033 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u(k^0ZTaE*cC+-!#b z*BItzGR$UR2(>frPV&g|GEaktajT}|DC3a; z4j18=U+>F}H$Sz={l&4^=n;cJ z`MoVJQ#?|C2?;B0d}+PtjMjC=89Qh1ZM%D(fv=G9blU!BmOwigJYD@<);T3K0RU}l BM@j$y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/green_gift_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/green_gift_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7f9a4048ec6b99296293ebc52fa7d752c2c500 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u(k^0ZTaE*b1^Be=; ze+JgM46_*+LhX#ZlRUCK%^mfXFR*gz1JyB>1o;IsI6S+N2INF|x;TbZ+^Xp~%6KGz z!$mme*ZXqg4Q0PhoY>7b`KM>-1Ro1ECRH`w7Z>B-$lv&Lefyn$fw$jze{n1}dc+`5 zes7D*6pz$jLc&TLUs^9ZqjjBe#?IM$+wPuc;45T2owom(CD0BAPgg&ebxsLQ05^?A AD*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/purple_gift_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gift_talisman/purple_gift_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..a7ae000110b25c5a0e767835d293fe8a8bf03597 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u(k^0ZTaE*asHUmQ< z!`udja|;;$huRr;CwXLfnmg(%OQ!F72vo;d666=m;PC858jus=>EaktajT}|DC3a; z4j18=U+>F}H$Sz={l&4^=n;c} z;JqzJ=A6j=C1k2}`K9%hEO}>?j(;aPjg3oWi#ub44^v3k|4ie28U-i(tw-@PZ!6Kid!`uM;VU< zaJUG^{CZz*yrJyZi4(i|Cjaydo#11k#-yso`{H8!8~Gc5u5Z87FYxv|?=OzUMvoW- z%I|G)nc|W9OGsF0<4fyBXSA*}&e%D7Z`=s4 BN*MqE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..836816c5467ca29537994f67fc5db01de6993cac GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ErlBKYRC>;LcdX4C)g z`|zRg@TEInzyAOKKl8+YhM51i7YUbYFm)$Rkq0VeED7=pW^j0RBMrz2_jGX#skqhK z#VW+0$iuu+{OAAb^^=W{MV4IN60CE`tn~B=lloZQQ>z!}-{*bz&2&rj+5K!U8NB+t z3$!Cz<}HvpDQ$51vmQ&gTJXWiS`M4kA__J*SU+Ym=4Q&CuwvS7pcM?Bu6{1-oD!M< D`Djm~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/glacial/glacial_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..5600dfe2fc8e665463ccc7e8b165939da746d27e GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A{7R}Qr^W{CN3HvNC* ziU0dPd?-A8>Hq)#cfNk@PV&g|G&fO^ny~*BJ5VWONswPKgTu2MX+Tblr;B4q#jT_R z%nYGkt&A>;97_-0sK3Mgp?%W&s{I!wDyz=Vcb(G0HMOBMzGHVodcwq=>S_0E^3u42 zZ2t>wR9!#oveKcNdrUrM*{8b0J6Clwyy^OIuF=(>@y9d!{9jBj_vf@11MOk(boFyt I=akR{0NT$|82|tP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gravity_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/gravity_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..717f994fd745a0176fca64c3ab6853ff5c279f1f GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=35_t;?#a>Q3^=@-z>% zGdA_`xW>THDK74)uWX_s#U(DjDsI^&_7R z+Q=xIq0Yv}W+KCi;NV~}F)>{Rb6H`Ldo3EaDk?I9f(PP6=X&tIs9rn|sFSfI$S;_| z;n|HeAZN0ti(^Q|t+f+EnVKDVSf}rKAh7el=kKeFX7765Et!yd>GtDy(=+ZFv)_Jk z$K+~C(`vPz{>cxrg8m*_WMm}~&R`HnUmAe9@IZ>vomV!BXjC$2|jVSL#(YIDDNeS8}&mulhnL d|F7_V;frnDb36ZKCIOwt;OXk;vd$@?2>{(JW(NQO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_artifact_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..0bbfd1c78d03bcd2326d511e56dda297b65c9445 GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DYF2d5LX~wW6ZxPMNov7H<? zwUN=wjiPlX48N{QJc-supiah;AirP+ zhi5m^fShTbE{-7;x7JQzWjbuY!yJ6`>9xLp|1W+FlldIxv4}gq;BY=6xE;@J~t*U#2=Uv9O> h{kotn|4Uz<-HL?GJrEezadFRe zrHILk5|fOCPTXSAi4j_m|EECibG_W;BiV1izuoG`SujPsYW{m!j^u52Gw&^9ky_ly eIGyE%bp6>*j>`r?zEwbnF?hQAxvXG@ zpRpv!FPOpM*^M+Hr`OZPF{I+w(Fx{Eu8JH7Hhe$z_x&%&Kf7;tn@Tpi3w(E*vOi3! z;Bi!mEaTEIaWdDgc^%|@(Y?IayrJk``-A3Sm7axC@Ri(1Z7sAvAg?!9$`ODX4iS&FRZ-E<&~Ov*cM)cg5fs#AV4mf2AQ-5h zu_VYZn8D%MjWi%)m_EIZf~uqID3A>u6Gy3 n3l>+eIWG5l>+xUPZS5FV|KL*HRQ$98=tKrjS3j3^P6GcgZwc9>hZZKACuMiszQ^EDVz%y@*gI#I zpfd-z_x#jpP|MqMe2Fwm%MLL;Cf0L1AG}`i^=VPss;N^0x!RTdxYXBN%l!CZ*8GFk qcMn%SaQptD-}X;7|Ns2z8iormx$fLq*S8MnMg~t;KbLh*2~7Zl`g3&v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/great_spook/great_spook_talisman_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/handy_blood_chalice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/handy_blood_chalice.png new file mode 100644 index 0000000000000000000000000000000000000000..18e4574fca3972f3bac5cbad4d86355858042cdd GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C6ukhWrC3S?%^W@qo? z=TA+|c5rY}R8-;T7kn&QxCp3%u_VYZn8D%MjWi%9%+tj&q~ccXS#B;?MG>Y8@0M@* zoBt#6Lr-Jklh>L%AFKGa3C|3jT3CJFQdcUaw7iW`&`IiA6vOQenuUaGT q{rjKo!A=2>KkGPEzUv(LzS&-HH`6j{KX+-M4Gf;HelF{r5}E+r0zDl7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..636cbfc351e96e87a914191b08e0ecee8b021983 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63O!vMLn?07^d00qV8Fq=H)PsL z5uZzj5ynqnt>~H%^@s7d$A!q^*rhwKoL2m((P+Yh;fVIR7Yo zzkl5WcB4lX)|?KDW549SJ6;tXfAsu*hl2mMx3n0lrZy-mHa1@u-?8R^qzMnh5&PL2 UH_QJm23pSG>FVdQ&MBb@01@Fs1ONa4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/haste/haste_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..f7e5c72488c601b86dac20b58fdacffa3e0e3be4 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F&Gz5dN<*JaC=-CiWz z*VnfxMX;ctASx;FU yc{u;`ml9ZdoqtEp6rSxOQ-0W0{#}@L_bXF`I8$$=Y1eO{4Gf;HelF{r5}E*E&r3Q0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..8e5dcdb00131947c39410a99033ba3fee9060664 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0ErlBKYRC>;LcdZG2%X zMe-b()$htp{H(O#_9Ed@4W^4ai@Sh|7)yfuf*Bm1-ADs+{5)M8Ln?0dcCZUEC~_QG zqV?zh!R?!`FPGw0NuJJNKlg#JU%c@jPRDv@CCATvk33`a%r7%u@sVgbSHv2+GtGF* m6s`+GY*X|um0U`BQ^>$;!z3nhR6GS}GJ~h9pUXO@geCwH%06EJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/healing/healing_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..7d07936fccbc18dbc0fb13e7e93a4729e6932861 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08X9VE=!T?OeCi_y37^ zfL@-%nUS2j_R3On#N6sV4|B*-tA!Qt7BG$1F^)5S5Q;#O@pBNwv* z&yg+5!><4TU+&8&BEcj^Ui;LcdJmzh} z?kkza9cAM0DrA1Xy-2uJgGu&}=|!L-#*!evU1o;IsI6S+N2INF~x;TbZ+^X$nzopr0E9P2 A4gdfE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..34603437da066b8ddc1c269b853cc6c42d7ad211 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0As|WZ1b(Dlv@V?g=A? z3k(c<7#Nl?>}6wE#>&ve!f?BlL0wV%>ox`kp&1OOZy8eG{<+3rrsxdRcxSTgF(AcQ z666=m;PC858jzFi>EaktajV3;nUNuo2h2B(nIHZETFc<+>gTe~DWM4fOafF> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..81f04594591469113f508fbe7dc8164d47f42430 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE06{Pd3pIQ3_td=F)U+c z=we|I7Z?9?jp6GyhTE+SdtLZ%wCFJi&0sKn%aHn(VF?4n9tMUB3`GoUJQ#952CdNr z>Srto@(X5gcy=QV$VvBfaSW-rRodOk%izelaNA3HK7Df_jng=}V0)wDyc<#~Kt#SY$#$>I1s>GP}LLc1Nayklz* qS-#I&S-SP>r`z?@E^puTbGG1~xh&iK7hekjdBD@v&t;ucLK6VR7+EX; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..21ea1a4bab626da610aa28b67ff5da5b1cf1c0d1 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9b&*Z;Z3@aDAZ?M1>n zmq{&|z_2Mru%VEFVF|-tHil9SCI*?ep$z$24CZsrP7nlYU@Qsp3ubV5b|VeQiScxC z45_%4e1PqSle6%Fo-0$04?CFTU%NCTS=^z=Om!}g!DH8`DEW?qb?@))-p=aaw$OmN zd7(u|;(-GPc#=eBGjBAVu<`EBJ$IH!op^BX(W6Iu8ySz>+AHmm%*3D}D;a%K(XI_> O4}+(xpUXO@geCxV5>K`O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/intimidation/intimidation_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..968e212bfbb678e7e427bb22f15b90f446a1dfae GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4@6G3;C>wPXTAcald# zAp^q_hAdC>P&?zjYz&V2$_z4ZO;n^p8S=Fl%ui2K4*+UlED7=pW^j0RBMrz&_H=O! zskoKwz^bRvw6|g5k-ZEjUT75NC%j-V5^HGLDKTS5gUAf-^ba}-JF2HQzGh%P%owNq zl-tJPpz-wdWjE(B8dd1|23@vg2r7@faf@%w!<7%-Sr|0y-}u6Kq^JD-1X%_K6&DFF Ujj6uNfz~m2y85}Sb4q9e06U*cO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jacobus_register.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jacobus_register.png new file mode 100644 index 0000000000000000000000000000000000000000..c407e23c449db74f9732e07f5b9a39f28e0bf2f2 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Fe-WXRWJcs1W-mN)02 zR0(BHh9Wa78=wSZNswPKgTu2MX+Tbbr;B4q#jVmVb|Dr;hC?h@{{R23WpJH4&v0gs zeeyT2OI-@x-d&F)j-1$8dv2FZJA3t7PK%cchdj>CF5D<^YUPZ~D@mJ_e0e*$wi&*Q sbzIi?QO!Ynk&GZ~)Ppwj^j~|m|5dP5muJ=~0qtV&boFyt=akR{01Np+t^fc4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jake_plushie.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jake_plushie.png new file mode 100644 index 0000000000000000000000000000000000000000..55953ddafe463dd5b6f029f4c280d7c573520c19 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0BKp;O^et8yC!**4|c= zk{oGfW+o;kX3u;)3@FD~666=m;PC858jzFW>EaktaVxi%k&D@YgSpr9&Hs9v(#5P1 z8ocEVoqe+Ft(MuS{yN^dDfYzrLM7LryV_m?=Plo?i+H^GQAGuBctK_BiL}s|;7P9v zBQ`%duEKEX{jrYn!@NG*N`l=K8ZOlAQ2w^3tNtg0yBU+pokaFVpq&h!u6{1-oD!M< DEb>Z& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..5bc81d5ace6fc6d75a45efe29a9835f109cd8a7a GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08u(k&+2s!K#v6GX0fF z++iVy?%vg(qM9E4{r#>x$s^RxILp)AQD1qQg8pBiYQ~ZvzhDN3XE)M-oCHr7$B>F! zwOx!{&Wb!o?&t;ucLK6TO8BIt4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_golden.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_golden.png new file mode 100644 index 0000000000000000000000000000000000000000..983d50b3ef51a35f2e225a6973ec8d6b0711460c GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(k=m3ZSgOIquuA9G zHLp9>oi|NsB{`<>(GmhL2vP&?x+Pjg3osdAc};RNP8Bz|7#=)hfth$iXo2hUMSuzuYGL)Y*5q^yxR7&9T#cpYD5JcstE$ z&HwPo)*Y%{Tf{{Yl;*KE8Ssic3ts(#YYo%FY5HO{&J9<14w=*xti7dhvG{&=?2(M> j{AAIs-)9}_Nqo)Un$7a|)az#;k1%+;`njxgN@xNANsV5% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_green.png new file mode 100644 index 0000000000000000000000000000000000000000..272004a5aaf19c2b18edfaaf52903d103e4a07dd GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08u(kz%NpUEIc)I$ztaD0e0syVvQgHwP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/jerry/jerry_talisman_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..3a7f90a3f4b0e42b5a29ffc223f436fd8f4df0db GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08u(k*ZZFJ>$7^ug#WJ z(YPf#bM7RcnxNYL_xHQ*B#%%#<19~ee_l^VedTkRS55&nFqQ=Q1v5B2yO9RuBzU?w zhE&|D?Og_d)cQtz4?t# zCuz>^UAOD`f1c_5 z*~_4rW2_lztm$j)ESIWjs;V#MrpRaX*~Fw9sFblJ$S;_|;n|HeAScn&#WAGfR&bi4+2e=r@{3Y(QcrR4}TE^h% L>gTe~DWM4f+44!o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/junk/junk_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..15d1018d84f55c0139c11a6bea44986692177489 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0A6}v+Um0gT_jd?d73y z1*(y&4cx;dPq*8yj5p}>)%$;^;s2q4yrc7drnIE3EO%%rHA@M+oNBegMzP3RJJeE1 z&D+Lu*=29N#mbC(>td=hF v&pz0CL9=zjrz5vhjS@~-%+OuK^MipwQGsPnov+g}poI*cu6{1-oD!M;LcdYTh^ydTA@m9a>6_l_Y(pwB#L~|Nl_H%6Nm*?Y2eM+U{YJk*f{j3RFWam2NK*F4bUS zt>ga*G=;Gw$S;_|;n|HeASc1o#WAGfR_}?Uj7JniTm$zVYyKYpieuMPw+FJDBXrKb zJ@ng7%k|Z^u+WN*|Bb27df9&z?7zLWoa3JT@15MvcOC3x*o}o9n-jclFbdw9$(`cC nvERV4asHE#Q>EfsGq>(*Jj-(Mt#(E|&@Ki~S3j3^P6X1woS}Zec9KIfc7wWy85}Sb4q9e0EatK#{d8T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/king_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/king_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..7b2d67f42b50f9aec300f67305405d854467d76c GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cjKKS`F^W{cS@w-Wz zQUtq`JhD8^8LA~h?Tkw`m>l($O;n`91nvm|l`@tD`2{mLJiCzwle6Rweggv;4qg%7r;J?l zIC+9ZZJAR(=mZ9RvSJ9@9Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/burning_kuudra_core.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/burning_kuudra_core.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b2af755023e0ab52fbfb4d9f24633c5c3bf468 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FHg*N>Bx)njAhV_-Pr zrg5Xdw5{agI-mq&NswPKgTu2MX+TbZr;B4q#jVm42YC-Ta4;V{eC$hnk%OhT&7{9) z=gn6+S~ivGMjCt0?;9Nr{c+ztn{1t)NSsJH$03xQX3o6i!Zlg;gjJ{ZrEhw!veV{x c**ACo$I}_t&1?Ak2xvBgr>mdKI;Vst0M`pX%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/fiery_kuudra_core.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/fiery_kuudra_core.png new file mode 100644 index 0000000000000000000000000000000000000000..c97e189dc17258b5002c3516f6b1ef35b4b26ab0 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FHg*N>Bx)njAhV_;uGao4y~?{hoq4(ZQ8|JALEqHkJXhR*=b@&$;Bd~_NTF@pmz+Oi x!0oYi?b@r)jE>)XG%32r`Um^XR-YUHKe1-d6ufS2u@>Y?22WQ%mvv4FO#pu@NQ3|Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/infernal_kuudra_core.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_core/infernal_kuudra_core.png new file mode 100644 index 0000000000000000000000000000000000000000..da0442b770638c0d9d013a502e1f2517fa815fcc GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B(pmE~h#&|_meg#v8J~slYU@Qsp3ubV5b|VeQDe!c045_%4+a1buOo69)GS`LQ z^54om)$@O=2^P)E(hhU+CC3F-ov0XZb=tj_Jwo*2+3XxCBbEdquBq<^K0Anf3LK TmN|()yBR!P{an^LB{Ts56lqPa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_follower/kuudra_follower_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/kuudra_follower/kuudra_follower_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..8d818dd9349fb71d5489f66fa50808867843d30e GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2GX6%EaktaVyz@jj1Of z%0uu_P@#Sy)5V;3PoD-0HSjDGauoDsRcO8&7;qtzX~ID%l_!s+7*cfj0)zCoG8u*G ztjbvbipgl3UjDWfU2H~S?z+8EySPte+_)>aadtDK%9do)00xyKTN{{9ax$#1k<5Nx SpL7*yErX}4pUXO@geCw+M@xnP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lava_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lava_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..345b389060182b29a5bfe8bbf7389973d2638d31 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08u(kqRo+Ja#Ai%S*p! zr}g(bNW5CEezjF$i-gs`fB%lgN_4Ms47D@vPV&g|G*6U}a@1G8y{o+gsFSfI$S;_| z;n|HeAScb!#WAGfR?-3HA3qXw>gog-Gn{q!B-)ZRzV#;Fs=p|gJyp@@)mm-wX{?cX z@y*Swd)D+f%>Tlxq@!D)IJL-p_Ed3~D{kf8u^e4ocYd9a-5#y9la9?Xb(- z9u{h6+@0i+4F7oT&3}<6w`}vPH4nc$vUiwRX|plh#m+ykJ;J!* z0MoTk+kG!{xmJZTpLO4rpVM3DY8Y*lweass`AkRdU?Un2!M(Ux2`yF?fe+Y5t2RXbun)B{Z!$VJw6V`KIiIiTkX6jJS=3v~_ heP;jFZ;|%zxlcW1GMM_`+zn_tgQu&X%Q~loCIG%WK+^yK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/lucky_hoof.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lucky_hoof/lucky_hoof.png new file mode 100644 index 0000000000000000000000000000000000000000..0fce3da07f96d68deebe48cb0f4e258dbfa97d72 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?MD~J{qRaaMcb90M`i0JL= zvaql)+!D43D8X0~ljz0Y_jma6q`eAYXP9^Y zUu>x7mF9?32Y7ZWE4@G9r_k16e8RQE@(9ltM=OVYLD#(ER_5^?h<>BTVo_UnW&0_) b-+RROt!0ukvfHKtG@QZH)z4*}Q$iB}OA0#c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..970a4dd6d1b99a7ee88af703d3fe979548f6d346 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Ow@VAF2svCDjI=&F3( zoU9=A_H1(>3vvBSHF+P&>%#vFfQlGPg8YIR9G=}s19I{_T^vIyZsqncaGGnNGT1v5B2yO9Ru#Cy6phE&{2 zKEM_s<0NySXTmkzwF!-D<&5_*H}p*V#u=M!+rV>8cAd42bpy|~3DYLrV^L5JJkoeL zkmpE1LP7$Q;iM}K5$q={(xyyXHitRogN&KkHp>GHNpmfkml!fK`1XqRF`J$G2egX8 M)78&qol`;+0QcEROaK4? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/lush/lush_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..62b4ef55fbfde0aae7894590524a13fa504789c9 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=1e7%-4plYR@+BPV%s6 zH_QrB&+;_aNL0wz%?Y(L_OTFm)K@l9k&3ALsR2~YSQ6wH%;50sMjDWl=;`7ZQgJKU zfmKhTX>Y^ABYPQ6M1(%t*N`YWp^!o4%;5t^n3o)gv1k@oDs60h$kcI=`$)N{1k;Rn zOp-m5Bdje%8+r~r=y?zmsL-6b>VnC}fC)}V9gb#f5bR-E!{ouoz`*uGaGDXP)LNir N44$rjF6*2UngHX_NBRH& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/magnetic_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/magnetic_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d25ee157c76d7eb767ae9e5f27295eec305246a9 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08u(kuotd)KphnZ(?GS zyFS#;xI4)s%hTLZUzt5LX%bKcV@Z%-FoVOh8)-m}ucwP+NX4z1u12;40X)ptTfe>i zUth8Jm`22eIRAC?LuyO-LXWD>w6QdKw9z~$`oQb&!qtK%rR6<#Qa2yCc=RwmR5&tY huDNg2BUw)dhC{84qBENXm4F5_c)I$ztaD0e0szYoIo$vN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_1.png new file mode 100644 index 0000000000000000000000000000000000000000..c4435e9971ff13c13cbfa775778559440dd42727 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{P1$ot-Qc|yMZ2l)D z&73*2v9Zy_$Yt88_U%A9#*!evU`Qi=soPzLImifBi#ODq{$v*z36hGdy3&HmVyn z+9+Evy<0nlMTbYjtFQQzgyOfpGX~~mF$NFKcl>=dQ3XgXbt{mO>6SP*`S-Vf$+GKg%&lw9 zZXQ>iWw+0DLtgAwk?lNhvhE9gem|jgM}?#x14G(RrTF$4xw$|K89ZJ6T-G@yGywp= C(MMGP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_2.png new file mode 100644 index 0000000000000000000000000000000000000000..695e5f3735e75ba43b99af4f0017ac4ecf383b3d GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{P1$ot-Qc|yMZ2l)D z&73*2v9Zy_$Yt88_U%A9#*!evU}75Yoxrt)GuFOQSGx2} zC)1K}%|-`7SIubKNTn@%XWyN)`E6O#?P;anv);!r2wY)PSatREQ;_34UHx3vIVCg! E0G9_z%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_3.png new file mode 100644 index 0000000000000000000000000000000000000000..17156d02e9f36bcad76ee95423c981eac6194dde GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{P1$ot1Ha0t@r2Z!* z&73*2v9Zy_$YoB`iPJzi#*!evU?p+FuC2Kx%1$M3#AIK%g?d$UTKw{zQ2YsTARr)=VZ4E$X%YUelF{r5}E*G-$qOT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7c4c7ba3f0210a609182735a01d4e9a276ec24 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06|)S2i{Z@~S(fr2Z!* zH8wWRoH^6P$R)LUmOoIAu_VYZn8D%MjWi%9&C|s(q~ccT8E!5oLmrol=hVNxt=}JI zEXCree_@jFiC>qm);bq9Y~Fj`K6>ZneY_LaX;r;vOznHY8qOTRYO>`?i(=4+-y9y3 zPi!}5YH(WC&^AG5_xzro4;#-#ewpR4>U3+P|7&;uOFnGM%M@1eg52im>gTe~DWM4f DlaWfK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_5.png new file mode 100644 index 0000000000000000000000000000000000000000..1e065004c62fdc55c8cbb4fffe3833352118a43f GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06|)S2i{Z@~S(fr2Z!* zH8wWRoH^6P$R)LUmOoIAu_VYZn8D%MjWi%9)zif>q~ccT8AdKAM-JD(`?Xeo|GwW| z$0fv4Dk;!!@NxO--)%{ad+o~KUA;Los$q?mkeJQy4(Y1=39FX0WiRlMTw~ME=-8At zXEEbR=gy^#YRfmzPfu+Lzf(S8Bj=s7{M_>&x#ypVViWECqo@gTny0Iu%Q~loCIIC} BNIn1n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_6.png new file mode 100644 index 0000000000000000000000000000000000000000..d301283d95ed10eaa6474294db2f8f7ecd05536b GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06|)S2i~Plah8yNh!#y zHa0fSoH^6P$R*pvt^p{=SQ6wH%;50sMjDWl=;`7ZQgN&FTq7H^qX6>--?T%2|Fg%> z&X{tkJM{_cH=8F#b%_xP*TeI}*DCup-kJGu66;d;lmc@GiJivu|5BN;h+-GG6qjqKbLh*2~7aAj7U8I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_7.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_7.png new file mode 100644 index 0000000000000000000000000000000000000000..b80d89bcfb5e94c12d8cfb1aeb87bc97217ef110 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME06|)S2i~Plah8yNh!#y zni#osE}hE<6lE+4@(X5gcy=QV$cgoIaSW-rReFYzi`kIF<>Hy^C;#T(;p=7L+AZ%` z(e!%h+D-PpdbP0l+XkKnlwPH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_8.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_8.png new file mode 100644 index 0000000000000000000000000000000000000000..2465b3e97b63e4036278fe88f348e18ca6092537 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06|)S2i{Z@~S(fr2Z!* zy;>yj|7N6#kxQw>agb`pk|4ie28U-i(tw;qPZ!6Kid&^8TN#@Jcw7VLv3{GsecF^= zF+a*S{mFcNPjL@p{^iGS_xL{bJHzXtzVM`U#y#a-hpsWGI2=B)ZJJ_`fpLS@WCqLQ x3<_2AnAm2e?5ux#zHRFjL;e-AKN{Rm_v=Y5XEyX%yyF|lS)Q(bF6*2UngFFCNWK67 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_9.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/master_skull/master_skull_tier_9.png new file mode 100644 index 0000000000000000000000000000000000000000..f519f132c813a11432d43e8503f54f6df99b0294 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{P1$ot1Ha0t@r2Z!* z{l6LcYLS46k<0e0j{HD5#*!evUPdsK7 zzoy77Z-t6ye_oc|7l?YWZvEf#rPf+vD()>hx&`k9?FytDI2JtQOOc$y5ze>Zl#s$s zE@pYm>tD^1LQDIS3j3^P6~ocWTRkjB4uGE%B(7+Y0S%_%*LSWAUy%7l(8hpFPOpM*^M+HC(+ZzF{I*FazcPe zQUgQU*#M4a&j1sKLjne~qy)HfPer4=~EsJ22w&=>J3+Q zG*;YUxVCixqt4-!4GB;4Hi)uum&r32`qcQnZ;V)2)5a*t!0=aDY8$I)~!a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mine_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mine_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..0170d4d378e93d5c9cb286735c00c6521b01fb5b GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(kqWglmXnp$(b3V@ z*Ecma4Gatn4-YpsHcn1Xo<4oLl9H0RxOjJxN0z6#qrS4D_BtP+HpY@5zhDN3XE)M- zoJ>y_$B>F!Ne7r2a($Z_nH>erto`_E|CJwa4;Ni9@xHpvIb)V0KYKz(!kS}_=Es({ zD9Wf^ca&sOzUCa?mMQOXxaFA8?}!}-7JuLtOL8>t_R&1ea`x=uf~#V_>tiyDo%=%W g{Z{5v+y0#Y-dEFVdQ&MBb@01+Kc`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mineral/glossy_mineral_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/mineral/glossy_mineral_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..f300b9a307d24216733bfa3199ac460a433417ea GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6qT|6hpvzrp-}caleo z?ujf<^H4kEbg}J@`pQA~1>yOCN$i>2fYi$;+d-021W2`^qGJh*e~VL|wH10B+KvWlR~_KdyWGbtV0>ow1|7vbMgBiHela3YpVD)r=)Ue!&b5&u*jvIZ2)_jv*Dd zk{wu|Dl{!_T)1};~u%zpp@F~rNDpHhr!EM;x9!kvrx)v9FMF@J>zT4dO oAjYn9#i|#YKOBx9VAyTXm@CN2TsFz031~5cr>mdKI;Vst05us`lK=n! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/moonglade/moonglade_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..4357c9bf5eb1aa2a5312a4e355e622239b703fdc GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0ErlBKYRC>;LcdvXTl$ zx@J}uwr&n~Gmbd4tgtDVq#KZ_b9<3+sRk3P(T2r9)r=)Ue!&b5&u*jvInkajjv*Dd zdOMFYG8l3kXxO#k{}%NVFW0YBJD_yhdX{WDUAJ zI#(#oesJTdH^=XX2V=TfE+`n+-(>5V9I&91C$2*3%{$LVQ$OW``|O&9@`U}t4v>!`16q-$oPA|)%Suy3l(TA&8Tk|4ie28U-i(tw;~PZ!6K zid)GJta=Jfx{ZoQbs0~*@F>hqc)?&~*3hz3a>kBEkr~|SAMz47cvBzjJ8+<&@oIo& zgSbY8dBg>euX+;>N{gh3lrt`QclODO;soCHTIbg=8~?aAr;5Sw@m=c_b_Rwm$0baD T`>f&xTF2n&>gTe~DWM4foRdnB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/netherrack_looking_sunshade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/netherrack_looking_sunshade.png new file mode 100644 index 0000000000000000000000000000000000000000..028a61e6907b974de855812938187a08a650c82a GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0EUW;fZHryja1|ZNm6x zllcE1?g7%$txis<8X84LMvh`)-QuBVf$A7bg8YIR9G=}s19DP5T^vIyZk2YiiZMHK z98KW)`F(%>#H!trzH%k*D(|OvS~V*p6kM}QD^P*YIMF|aMUx5}f Nc)I$ztaD0e0s#3vNhJUP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/new_year_cake_bag/new_year_cake_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..1e3817b068036fcd06084396842959728ac77474 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08V_(3~Y@b5JGlO4H&u zn@{eHYx@6u$(?D!|Ns7bVQTvI*|Do9*8D&3Wf0za2B?~`B*-tA!Qt7BG$5zc)5S5Q z;#O&IDAQ2|9+q|QYS_g$ z`FIL5$!(Z3DMolrBe#N>#jFcHa>8e%IM%(mpt{EK%-t*RmZ_g*1V0rbswmcu_VYZ zn8D%MjWi&q#M8wwq~ccYiK~na20RQG-Lf2%fAe=+-?_i{!~ESdcgL^3_I25|?(UV} zpRIai&6D*`Ym;-H5znS81wXr5awl9f2#!)vbUpIZ;xm`1MbM%%{0%Ki@BKPSR~^iwF3^H9W9za@AI|1$}-RLR!=|Beg;ohKbLh*2~7Z$gK0Vd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/night_vision_charm.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/night_vision_charm.png new file mode 100644 index 0000000000000000000000000000000000000000..f6585672e8d859444c881e966da56bd892f61ec2 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08u(k&+h+(Y2qaEmsnq za{AhK_jeBh{(tFg>HVZ<(-~@K+@0i+nV?>af>@{S8$}L@Z8u_`tn4e$>p01rw@_}K73-O}MW0_7iYFNP Z%C}}QeK}jcc?Zx!22WQ%mvv4FO#uAeQc?f_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_bronze_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_bronze_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..c845363cc250dafdb05364bf7bee094edb94ca94 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{7SI#w2JQ!s*$5r!r zP1v8AO}`Is3$-)uPV&g|G&fO^YWUH18mNx3B*-tA!Qt7BG$1F=)5S5Q;#SfDW(MD` zKrv=T4rWuv@N2*4Z#Vt&u}i+tNM+HBT2aAYU%!Rj^wdmyCZ8_8IcNTyeHN#rmoWOY z@bt=0IJ3Lu=jSy~!;%_K-(6WcGrC&d?ZB=8M{(yz?(s=Gnby2s^XW3sCI(MeKbLh* G2~7ZOXH16x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_diamond_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_diamond_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..935b76365955758158b0fe3d495546429e30b292 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{7R~E`GP&m3(a?T8| zw>KC5e)0eR|L!D@P&?x+PjeF$sjAbzcLLQhmIV0)GdMiEkp|?%dAc};RNP8Bz|7#= z6)486$iZyND1QC-{OzV+K6c3$8mTOLQ7bC=>+83$o1U6!&*am^H|NZsv(Ms`^b$s& z7M@=D31@b<{QSJ;X;@Oj>ANdSXGT}cyB*jS;3)3=$UQ!>g=uy8qpb^pHZgd*`njxg HN@xNAleSHI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_gold_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_gold_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..81284f7fefead677962723594a72bb90a914380f GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{7SDxa=^>U-=xh~;f z*S!9IjsO4ue|M5csGV_^r@4uWR7=?gkU@+kL4Lsu4$p3+0XcD=E{-7;w~`JpGx&A| ziZLs4Fq<-pU;jOSyXlvYUGjxSDvMs!iVFVv`Yr6Hr)JtS`E>EkIrHc2vp6Nagwdyk zr&oT$ncXcvKd*Tjmeg?i?#j}c(be*92X+NGiaS4Yk56o2S{?pq>q4MS44$rjF6*2U FngH=$Of&!h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_silver_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/odgers_tooth/odgers_silver_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..a2515cdebbd1b1a2fc14210d30b2d6ffbd219455 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{7R}Kmanl^1(X=&-f zg9jfzeE9$W|L!D@P&?x+PjeF$sgj#}W&qVOmIV0)GdMiEkp|?%dAc};RNP8Bz|7#= z6)486$iZyND1QC-{OzV+K6c3$8mTOLQ7bC=>+83$o1U6!&*am^H|NZsv(Ms`^b$s& z7M@=D31@b<{QSJ;X;@Oj>ANdSXGT}cyB*jS;3)3=$UQ!>g=uy8qpb^pHZgd*`njxg HN@xNA!g5Wu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_4000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_4000.png new file mode 100644 index 0000000000000000000000000000000000000000..401f77961e876f168f05b30f6b280c4bd6be10a3 GIT binary patch literal 826 zcmV-A1I7G_P)2ycr{^0n|B4l@To+fkeRY8tvnbGVPRSG&gNZ#(zRTd(`o%tM;huH zxGGll)d>lD*}Q*&n)RJA_%1gmvKuheOPUS@Uf8@VASADUuJ@V{kz{E~$&hKp%zZNt z*YzxA0a%cpzjRUnpaJ<(myo!p)%3v&2GG|7MuHthnr9`5-e<0C-v0}-esH_-Lsk@m z@jT1ZVkR);gHIq-^zqDxq5x4q5kP=+K3=$AL1BNYzkVu629&2yro}}5H3ERuek@Q& zM1R2F1Qs>}96GxKR1pM_1HbXF3X}x)mL?#_1t%CqY9P6NvGYJ-LZN+SzXx`cDymSH zuzFJIo8_wLybi)T3m1;|0RKFn&)+WJJT%=*D;HG`Rl=or&I_*#<7f{mZ?=KAkRX=_ z8BmQRPNM{wY3vFT-Y5Y4Mo6@{qAbHyARY|fw^bm!0yP5#7%Zu!lWM(6iKJd~UPMAN z4)(wepfG?E7iGXv)wEQd7YIcA7tjW_p{hWlL1}oI9Fh|79W-+^Y5ea2H4uQ}@~}1F z`T6Oo<&K1OFlmf}0t}!qfK;z8OG+Y(E88fDT|tUl0bp*HQo|z!R1HarH6U>O4Morm zsH&SvkW$((kg|Y8aJ|z%=sDPf-U46>@WQlf2vTI3djJ4IhkI~xq__{-P!=BDK>$Q# zzXweta>7W=Fg)6s4#C*`GeTe#jDk@x3P!;w7zLvM0NkDFoz!lk*#H0l07*qoM6N<$ Ef@Iog?*IS* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_5000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_5000.png new file mode 100644 index 0000000000000000000000000000000000000000..876dedd79e4e81ce4d066ccc1223a2752a0c1dcd GIT binary patch literal 827 zcmV-B1H}A^P)EHPbo!ckUff=Nc*a@pE83z}bowAz%{tL5FL4J290YVZ8BI z<9i*hE#e4sq)tc+4svdi+WG^>U-AAGv^Y1z8D zR>(mYF7L=XCZ>y#4g=YCX?7|!yqfq5fl%F*Q9YR*g7nk6OYfCgJUyOnZ_kelI$fM} zRoYtC7VplxG&_!QlLP?uI2lr>B4tC){gDcWuUk*9ErjIf2I@1$1Wto48?tra<(`+r z*6b|aXd0l=n>TL_n*rp_CE;b=sI}QCGJ!e+WImGJf6p;cPiL^;rW>_wlRdJ zH}<73W3J84s6pY|7)K*CL%;}-wFlqsdA;Xopqpz;4&Mpd1af%e@ZA_<;?_s`B%dLy zy`u{fe}X>1EC_P1w3K zCYSyO0uae5{I7ce2w6K^`*Y}E6pVsVFbYP&C>RB!008bk13t;Tvl##Y002ovPDHLk FV1gArYfu0H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_6000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_compactor/personal_compactor_6000.png new file mode 100644 index 0000000000000000000000000000000000000000..502c94a82ee34b412e4199c91be88494216f5911 GIT binary patch literal 776 zcmV+j1NZ!iP)J-#4;O7j>G^2@A_Jd1*)0 z$u|Qbwtd}!JT|z9JKz=u8dQ_l_NqF0GD7UJ#J1(Jhih^WHXJ|>ZeOpelP7nuJ$jV- zW1|So0%r6uv%z0qud0*p2H1KWuhbEJg9=EvfA#M34-wk?CgCms&y^Hoo`s}5?4{pm*)r;>VWPi>ea^%M&RMPNA#p`lZ^*;D+5Iw&* zQa$ohlT(k=rMTY2o|V^44B9h0)8w>xw&K&{m!p>k-walO1fS0*31I!^)ST}Izw0Vm zOZPX=4gSspDNq%i=K*AGZPmO~a^LUV)>6g7JP+t8qt(7AN07Bn#WVve5F*c69#G{d zi8@sg7BO7Hz~qX7>s`Ps4_uDV&(Csjh|CWNY6z#_uj%?6YB*+|UtAdb=)gOubjM4T>z%`C1=nB_sRdP_8w zNRd|k$%^6dlS-2j%3#cpa#f9#0alI4kBotSjEy3TXG_10T&z4g{xZ~X&$V=pHQdGNmg0000bMp};aw#G zH^=$U@aD|J=hR!+op9&=&9};74?vQUBM2x7{7pBv}ZZ-5&$Iq zuNcCMiPex|Jm+$_?#tQ>wgPuVd>S2ep1!@>jK@5Sm`8w`N;io1IB;^c|Q{fGD5{ zVD0cNd=Du6-pt`bkeWaaXAT!dAxgA1%0ux8!nJqgiHIJ+4+0BY1N>n(w|;w^Q3w8} zn_H7#DXjJ#1q9&_$R{Wh7gCQizw1Kb8h>~nSac7`k%L>JH4|rUt+u1f#plboTo60c zrLLC%yw8lO*&gYEX<(Y4{64dS@1s){n3@lhT*mJ_mL{=v+ z35k|=l%*O6(nX=HBkWkCNf$z)C5=qtF>NK1rqy|^Z6$V`9u%q`1eCOK10C7dmOOdQ zI)xoG3J*tJ4H5&a>cxhVlt90Qbz#o}M0tdP3jrwYu5J|^kB7s^TdkX7$CObB!vci@ z;_0cDlte9p*NHvHyqBDg^uDFIx?;dCNlL3AYzsRk=)HUxzJ3I;GOB^N1tfxeC*Mfe z)0iUwje%accDn>IS$J|0tDqdd6t`wvkEU5- z=VW4Hp{r~3W$I0!I0I8jkYDhBhNs&Nynwt+PZ!6Kid(iloI=cw984#*e*BkbKXI|T z=dH+rGiQ?11j+=BMDA$*;h!*NhnhO)`58@(+Zl}P*1f&-CgSx@uK!1p;~Tmo9JGSA zeEp(-XqLxT*Oc%zsvaxjH@&?eYN&YXpO!ke->&;gpQRTaWcHk~YT9m)8$4b8T-G@y GGywo5hDq-L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_5000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_5000.png new file mode 100644 index 0000000000000000000000000000000000000000..a38564e53e2c2bf27107e00a589e028188e79e62 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@tG~ZLkoo`r|A!ABu3fvf zxVShyF)=bC!qdaU-pcAz4rk|4j}{|ryJ8+ZYEg`O^sAr-f5&jj+Z zDDp4`xE)`(_WS<#PP5VcLsc)I$ztaD0e0syqiS$qHh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_6000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/personal_deletor/personal_deletor_6000.png new file mode 100644 index 0000000000000000000000000000000000000000..b991a156d92be0daf8c09c049ccaf269bb409abb GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@tG~ZLkoo`r|A!ABu3fvf zxVShyF)=bC!qdaU-pcAz4rk|4j}{|ryJ8+ZYEd7dtgAr-em&$Tih zG2n5&c%O~uX8rxiwST;(c{!fR>6Sby`*LBS-?a0s9Vd9iV?{6YnDT6O=#8HLHt3Fs z_2t$GXIqOkmd9d`#bh&Doey8!^++gA;CKDe4gbS=vO1SvZBh*SnWZlJZuaY@u*-iL YzHDVxT77FcAz4rk|4j}{|ryJ8+ZYEg`O^sAr-em&#^Kw z8*;c@lz;6|^#6C+ig){VFsZ#v6jEi{Z18waY#sB=o#kznUzpBMOnWc{rPE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..24314e6590642dd02d7faf9a57c657303655d1b4 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b4;A!}SgOdAai~dgt zo081G&s=}LntYrfKT!6boF*@jVk`;r3ubV5b|VeQiScxC45_%4e1PkQ^n#uwZjHqp zrxMJKG8qCFKJ+^F_9-vV9KTa>-aR2|1_nNcQ=&B9a87w#GC67nlL!OX(xsJ68GRz# xMa(ytO+S;Vm(cc{<(#Gh8+(9aI`g44hV^kGva7CiZv)!H;OXk;vd$@?2>|T|MG^o2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_badge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_badge.png new file mode 100644 index 0000000000000000000000000000000000000000..c2944bb4e65492ebca72fa3e9e8e5e042ca8bd59 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08u(k%|-K&+;@6wKMKc z@|cp$|NsAgp!kD>lKW?i&R3In)K~71{aFYUVk`;r3ubV5b|VeQiS~4H45_$P+i{f9 zK~dyzLFI=3J3M~J7O!ym`{3`kHLex?Z08FVdQ&MBb@ E00VJE`2YX_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pesthunter/pesthunter_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..cf591d33aa51f6ce2be3ef6afeed6130630ddefe GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08YLV7k3Xc)pr^oFM;$ zgOdAai%v=A|Ns9#Q0o8p`ZuRtH>C&)^XKdV@)=8l{DK)Ap4~_Ta>6`a978H@^`3BL zI-tPg5~woo&i_5Bue|G6pKaZ{jBE3YKl$J1`QTmfZ+TC>fh1X9+J=I`X(!aUyuRvC{Y}E~>4I2t4@&IjM@O1TaS?83{1OOB| BOVF!$p`pu2syY&F-Hr{ zSU4$QNf1NI2J6%fn51|l;^YTz>PL*rSEg{C`H_B1L+E?v0z>J6q9N7gnrGUo)a&pOJ`wn%JJZM=>?&_V`JS3j3^ HP6W12ToNB*-tA!Qt7BG$1F%)5S5Q;#Tqj_8YsxriwR6 zc%FKhnVHJNGsiD&nct~{oIGo~Lv6aaKF?IG^o0HrUCtmg&xC~el9#M@ zs>rN3w!}o~(v6(iuXf_tVH#=n8NuYfUp00i_ I>zopr0KukDRR910 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/piggy_bank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/piggy_bank/piggy_bank.png new file mode 100644 index 0000000000000000000000000000000000000000..ebcfb9c0a4cfb4a22998ad1446a9181ff02d0103 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|Np&j-^Y0~p0zfg z&q+I$7}e?SmSbYV#K5Sw^1~jW3dWKkzhDN3XE)M-oJ3C-$B>F!$p_ePSfx)BZ;r@?2sd4hWS*W=7pz1@1 zHqT6#6&od)nRjPzthTUoeBi zvm0qZPNAoZV@SoV+*5`^%?3O!7xz!v!0G$o-*X?%E}OKrw(D=_Kb?A4# zs$4Qy;;${uo$V^<_GpKO8r#|S=q;u!FASRwZ~tE6%^52&CBEsxNng8_@7XtePkpgg twz{>U>}RLoOcCcxOPM^TJU%$v{*?^h-LA@-H9*T5JYD@<);T3K0RTuDVfp|7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/artifact_potion_affinity.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/artifact_potion_affinity.png new file mode 100644 index 0000000000000000000000000000000000000000..6c1235f4ff29a62b72d2b422400057345f76460d GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E08ucGzF!b30tcm<@THpH@^%lBoJWd)n7c`ZdiA^-2fo0@#!y zzI~S$spP${u|;EBE7OO(RZUH^?|l?n;MU5~YI3?DT2tqej%^QmdKI;Vst0NaRILjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/potion_affinity_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/potion_affinity_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..6652a60ae7d64efe3aef47bd5e11d34d4947b702 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(kuqu8Q?T%XWLWd0 zo&SzANC#iKU9a#U=1<@@t53$aBdyjS=}z(pwKLB0GB*-tA!Qt7B zG$1F+)5S5Q;#O_PQAQR;0hXH^k1GDp=$AXUR!&#+--TPby^R^Xyj90v?u+p`e_Q29 z_fHY_Ch;HaI!z&&{!659y-vH~x2slS+nzJO%q^D9(y&qJYgMt4p7{L#8P+TbCUdWO R4?wmsc)I$ztaD0e0stPYQ3n73 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/ring_potion_affinity.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/potion_affinity/ring_potion_affinity.png new file mode 100644 index 0000000000000000000000000000000000000000..49891aee59f6bccbef332f613352ae442525abbf GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08YLV7k3XxM1Of;7hlS zZ%10KKN9mNaGTYq;|$WhoYM6Q4&~-%hPW3V*aB2-W&(TU(CGLQ+VIdHzHF}*SA50 zYybP+=`F_Bit=L5J0wjBI_G>?@yMU!0t-qX*zUJ}*D0~^Z)cKcr@QC=^b_xjR{!*s hzL+nN8^E}TfkC!}FPO)2syon922WQ%mvv4FO#mwUSa<*c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_artifact_full_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_artifact_full_old.png new file mode 100644 index 0000000000000000000000000000000000000000..e55d7eed4a42ffa9fe98725d897e1f151bba6dfe GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0CVy%y2wM>c>unw-dR3 zTs3iA`|awd|Kj!MJ}qPTUlF!5km3KcHFtf@|LNqbbFQ@!x>H&ZlJl0B|(0{3=Yq3qyahko-U3d6}L)Hw+cEt zia1^5E-b(M@AMyUwRg`slRvcUel(HWVy*jq7X#aFLkFG4f^LOZUymC$=6GiP-Z9l%bBR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_full_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_full_old.png new file mode 100644 index 0000000000000000000000000000000000000000..9e4eccc36a47dc76627083f2db8cf55e7f10529f GIT binary patch literal 361 zcmV-v0ha!WP)i>QJ=B&&AfBwtnt@7;u)|ZU(?*G55?8}Gv)iko-ulTtjp21s=sQvP$ z08-1mvyStOxPRV~Rqc@q|9DnGt@hw>aE)rrsCPogY#J+^c->7mcXes3!N0_1G6RC0~U2j3FHqm4i~;n00000NkvXX Hu0mjfLm;B0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_relic_old.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad902d4911e8a9333dd4d081858b6bcaf7e661c GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2sRn*7+Q@OC2C@f@ic z&J0;{451PX76J_YlV8sON;8%O`2{mLJiCzw+@qQ&_CD*mTia*_0$VPZ!A>T-zpWVChI*;~>SzknAKrv0Kes1ZXpZ Mr>mdKI;Vst0Qx#edH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_full_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_full_old.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8c61026c2782804ab7638d1d4f97ae27366879 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0BIWk!yxCLzW!FrWC<9 zr(JI^5~t84oD%uw3Ylxm)_*^L1;y zoRF*1P5q{X+peMCbkCWGUebow_pYfAR!{E{p{h;p^qM_ersQbP0l+XkKc{gU+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_ring_old.png new file mode 100644 index 0000000000000000000000000000000000000000..40a09f7739eee6364f0b6d56778c6d483151159b GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ErlBKYRC>;LcdS#k_B zoEhFud3U-|e`^rAh#>)IB!uRre4pt!G+MP{yfgU`FpBW&_UyYdCfzw9{uF3l>= zbTaQ={hJH4e(MT%rA(DOYn0$|(s=2XgL6;uvbp>cX3%M1^7__o-~+UW!PC{xWt~$( F69820O;-Q_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_talisman_full_old.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/old/power_talisman_full_old.png new file mode 100644 index 0000000000000000000000000000000000000000..b90364028bbbc8d3eb4e88aec2fd9e6f890f7118 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CVy%y2wM>g`0XA3GI( zTs65OXa1m|pp!vxXCTA>XKOw!W5|+Ycz)`p4^Sy%NswPKgTu2MX+Tbtr;B4q#jV;C zt&J{*B2Iw{dVjC)?timmuKrF&`zJMPr~Em6bGhff7a~0yvQO<_{q58^>!lHkDUrX zuA0nnW|$rNE&?dQSQ6wH%;50sMjDV4>FMGaQgN%M<2WO;0S}X|!yEe|gO%$SRF(g8 zsj7bx8d6c)I$ztaD0e0sye7Kbiml literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..738715b177c2106eb930b7811dcd97a6cb12a8ce GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2sRn*7+Q@OC2C@f@ic z&J0;{451PX76J_YlV8sON;8%O`2{mLJiCzwR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..a5651b675385202c7aab359285446f351dfe778f GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`N}eu`Ar-fhC2Ai0-)#EdUN`xN o|29U2v)0U>rU@cFO@Ryy{ux{+yg#KQy;{an^LB{Ts5qf8ze literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_jasper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_jasper.png new file mode 100644 index 0000000000000000000000000000000000000000..274aa5762bc4da3fa973dfd3a4292523cbdf9188 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhC5|PC^fdkd9sd7+ qyx_O_Im`~T-v65QUtaMcD}%rt?!*V#eKUZ{89ZJ6T-G@yGywp6!X4NE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_ruby.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_ruby.png new file mode 100644 index 0000000000000000000000000000000000000000..1b0c059c455e5bdbb7bb58d04198ccc80e2c9a91 GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`N}eu`Ar-fhB^(n(dYaf-S^uv; oG4sFrZH5WY{MZiuKWtLNuz{6hWnRT844$rjF6*2UngDFy9FG71 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_topaz.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_artifact_topaz.png new file mode 100644 index 0000000000000000000000000000000000000000..104c7411a9541e1ba9fa561d4ed151798b66b33e GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhCEg^6{HZDZ^MCf` pxBpL?F)XQc-6`zI>~>Itf#IYePs?q^liWb%44$rjF6*2UngC#(8~y+Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad902d4911e8a9333dd4d081858b6bcaf7e661c GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2sRn*7+Q@OC2C@f@ic z&J0;{451PX76J_YlV8sON;8%O`2{mLJiCzw+@qQ&_CD*mTia*_0$VPZ!A>T-zpWVChI*;~>SzknAKrv0Kes1ZXpZ Mr>mdKI;Vst0Qx#edH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..a5651b675385202c7aab359285446f351dfe778f GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`N}eu`Ar-fhC2Ai0-)#EdUN`xN o|29U2v)0U>rU@cFO@Ryy{ux{+yg#{+j0|TTfFU1H+mop6elQ^;dz)89ZJ6T-G@yGywp0vmJT> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_aquamarine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_aquamarine.png new file mode 100644 index 0000000000000000000000000000000000000000..9c0b93c65ed84f5f99a5ad97b80482d86da4eb6e GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhC1xdv^fYaqfA0^! p)!yg!H`y9Yvd^z{FiH?%V7UI4yRvtoV;xXAgQu&X%Q~loCIB*C8;Jk_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_citrine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_citrine.png new file mode 100644 index 0000000000000000000000000000000000000000..72dada65fd2eb156d9e2275a2bc4f3f72faf425e GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhB^(n(dYb-UU-o~$ px#k!9n`{jx{$CCL*!vu2XJB{ZX6!E&-UU?7;OXk;vd$@?2>>Pl8k7J4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jade.png new file mode 100644 index 0000000000000000000000000000000000000000..7da0b0f562f3627b6a5f7f05b5fd9d8ed140270e GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`N}eu`Ar-fhB~~SfGV0jQe6)78&qol`;+02oyo&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jasper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_jasper.png new file mode 100644 index 0000000000000000000000000000000000000000..fa7c62c1d8144ca0e2ae32a53cb64d86bb82ef70 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fh53so%)cCQ#{_Fq$ rqKW@cnlUW-xo-W>{|leI3}j$<@r66_v3=kqpn3*RS3j3^P6 o?b-j6W(-Rry@MNhnB5o|4m-1J99mXy22{=9>FVdQ&MBb@01c}eSO5S3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_opal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_opal.png new file mode 100644 index 0000000000000000000000000000000000000000..d68a2c476809300a1c85be44e6e5ee2d496a9400 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`YMw5RAr-fh7g$QLE`IR-zwUqk t|LgzzZ)3EbfA8=6=#Ss+d+%CuG3@`&J2j>L$$6j-22WQ%mvv4FO#mRLA;kay literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_peridot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_peridot.png new file mode 100644 index 0000000000000000000000000000000000000000..b2b31d83934a2e6d1123c952088c921646b084db GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhC5|PC^fZP4&;Ebj pTH^2g9A<}E%v?+V^-uV~#E^N6Yg1F1i#$*{gQu&X%Q~loCIB}|8<+q9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_ruby.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_ruby.png new file mode 100644 index 0000000000000000000000000000000000000000..65fa57b6af5b6d8bf9831a50e0041e1e08ea29e2 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fh6&t?(hQgGoK*NxZ%~yd!oZ+T844$rjF6*2UngDFy9FG71 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_topaz.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_relic_topaz.png new file mode 100644 index 0000000000000000000000000000000000000000..9db8af4da29ee9529f3485e20f4a438744373d8e GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fh7Z^&g+Q-ZO|NpGy qcl{<_hRnFYcVFf|)01Ug%)s!ik*CG;K>HS;dInEdKbLh*2~7Y`e;i@} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..40a09f7739eee6364f0b6d56778c6d483151159b GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ErlBKYRC>;LcdS#k_B zoEhFud3U-|e`^rAh#>)IB!uRre4pt!G+MP{yfgU`FpBW&_UyYdCfzw9{uF3l>= zbTaQ={hJH4e(MT%rA(DOYn0$|(s=2XgL6;uvbp>cX3%M1^7__o-~+UW!PC{xWt~$( F69820O;-Q_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..c3baf36435b3e0b3ebe4d6e06e2d3a83508975ed GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`N}eu`Ar-fhCE5~1dYb;9zxL<< omY#?9H`y9Y-t(|X8Ej%;xZ%fj;-JIP$3WE#p00i_>zopr07l~+w*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amethyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_amethyst.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d43c1f94bd6fa9b151f26182f8d4f4a8310549 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhB^nb%dYbB&&;NV> p&i9}8H`y9YzNgLoX@BMrD??lu&-K#Jc|}0w44$rjF6*2UngE5A9%ujn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_jade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_ring_jade.png new file mode 100644 index 0000000000000000000000000000000000000000..84d317610bfe5ba8ebce1f8a0956459b5b468b8e GIT binary patch literal 102 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`x}GkMAr-fh71(>40yn(;_v^o{ z^{fAra~V7~`*xcCWXtgq{1dq58^>!lHkDUrX zuA0nnW|$rNE&?dQSQ6wH%;50sMjDV4>FMGaQgN%M<2WO;0S}X|!yEe|gO%$SRF(g8 zsj7bx8d6c)I$ztaD0e0sye7Kbiml literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1ded5be04393bcf0b72459786cd285675aca5e GIT binary patch literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`+MX_sAr-fhC882UdYb;9zxL<< ymY#?9H`y9Y-t#Ou&>(q^=l|v>4QxF23=DP;_%!#(a!mwkWAJqKb6Mw<&;$T{ARqbw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_ruby.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/power/power_talisman_ruby.png new file mode 100644 index 0000000000000000000000000000000000000000..dac016e968b2768dac151404305efa165d55437a GIT binary patch literal 101 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`I-V|$Ar-fhCFUfE^fa-vvi@Ix zV&;GK+YA$)`LQ{E;yp1b`G@`CnGgSSaFsA@FX!QkNc1oV>SOS9^>bP0l+XkKMNA(C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..5616f341d5dc0b344b973f86795658eb2d589dc7 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0BJ3+V%D#VcUW$aVx(3 ze;WROV|e6Ct83S;{r~@8TwFXRCT8WzmH(^5bzRqPN)i13y?$Rqkp)m2V@Z%-FoVOh z8)-mJoTrOpNX4z*K2s)UM;>NYKjAO`?^k}+ZL1Ws2~+*!`K)GpLz2+X4X_v0!7olS1Y7M>i_6oE{`!cGt4E W=AU>jeX;LcdLIGTg zC1MWCjs91MN4~VWcJ12Al`H=P!NzcLaq<68!((D%ZZ8rp)nICscbW^-$ygHP7tG-B z>_!@p6YuHb7*cVox92FMt0K>V6_2+4-w^+crH{q;tn8vyN}DQIubrZ_zFi`_|DwGh zr{VWm;SH)wzopr0BWOEPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pressure/pressure_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..14a05af2c95deffff9ca2e999981f43d3465a5c6 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9b4;A!}^YuEm743B(i zwQ}Xk|JC6|MMd379x*X7S)S&hcE*nS$|fpO;^N{AmYh$3dKgQB{DK)Ap4~_Ta*{n= z978H@B|EShJFNv|F_I&q&3D*uD_}$R> zka6}TZ)W*`53!RLZa8kO(5xRCaN#whN9^jW&$ZYLlajtSn~gWhUY&RmTZ!VopS=Hg0UpXFPOpM*^M+HC(_f!F{I*F@2OTn2Spy1i+AES z{QLcP-D8`Y_8CuDe*QlvvS+E}7W3`u368Ur3)bvXTAQt^*K@Hv`A%by`x`giI}4Am wv{(H7b@B3Z3U`jLlRoPC$+N57&oG^NrvuAuOSg~vftE0My85}Sb4q9e0Gw4x2LJ#7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..6dba8cd3c0a4c186024e6163941cc51014456fdb GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AX6RZ=jB7m&90OPa-y zRV?}czg56QhUY&RmTZzYf3_W{g0UpXFPOpM*^M+HC(_f!F{I*FZ&x@It04!IvPT}3SWTW5=}x^s7hHitKFT%sU@hP-2Rea^hfW#NYE{TKX7 uT(ixuY;+O$B;UAkwP1uxkGIY->$(?4Odmtd>ka`eVeoYIb6Mw<&;$V3YC)&~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..4dec87e611be94b688d1f2763314162977ddf56a GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0AX6RZ=jB7m&8L3Yh4Z zH0%HW{|v{jt^kr*#gahs`45IAoA`L=Cjyl+mIV0)GdMiEkp|?%dAc};RNP8Z5Mq!L zUCqLkB*9{KKx^m!)cIlm%U3lve*1gi$2ab$(i@Y%nrG>Aem8m~yHHD4**E0H97f~V zlTYSsUmaeVJEzh8vFM4z8y2xUT4=K+uMm9UGR3vzl<_~0>#VG^lM}gtHZgd*`njxg HN@xNAo1{yp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/pulse_ring/pulse_ring_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..7c2bdd319b37fefb7b51536c27327c972f38b36e GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AX6RZ=jB7m&8L3YaMQ z|G!_-EQVuO8M2BQp8sH2vPp2GfHzPPV@Z%-FoVOh8)-mJyr+v}NX4z*Gl6^!3OvmZ zx6MAZ<9}-H0gqMtKC23R+RQV1%G%Ps{_%&F#Jsui>%5OF!=dzLN%x-cN{dD>qQpuC`CvD?GI%Va2f^u0tM@o$|cZa#N>qEJ{CrtO#fogQu&X%Q~lo FCIAVTOGy9# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cat_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cat_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..0accdb39c676b670851be35977f5bad297e7e0f5 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6oxy;{G1!@lC;sJTMj zNgiRr@mZecp?1cO`pPCMQYtEjG7{>`S)^ltN*POn{DK)Ap4~_Ta$-GQ978H@B|ES# zRA}1Uu+U@=!-*Ffy!i<)7>v{!S}Y}JSTu^v;7%`aTq0&*pp$Uxz}f?>Pu4uL-2421 zmO^v(*>`uBi#0rPbP0 Hl+XkKjGRTy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cheetah_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/cheetah_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d19372638533229f138d8be505edb707fbf78789 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A{7R}Qr^ez+p>WWUGN zEjM_(`a?GRG?s*f$?0zIA7A11&$zdJfwYF{^QbfZGS&S*-*<3!Je$fN^Pg$c U>u>&oK#LeWUHx3vIVCg!0JPpysQ>@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/fried_frozen_chicken.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/fried_frozen_chicken.png new file mode 100644 index 0000000000000000000000000000000000000000..234e4097c01f4e9765757726a94c649f82299b8f GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(kuqu8Gim3)-ty`B z1yj#I_`h$`{H0AZ56xY6dfA4Hdyn2Yda^soBh=0~%hTLZUzvBY_%Wb1#*!evU70CPQHZEv&8NpgU&8IX|1}+ywb&cc)^=}V-3!(V k@AQkSr_7Q%xvie@e+l!USsL}0KuZ}sUHx3vIVCg!07md&)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/frozen_chicken.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/frozen_chicken.png new file mode 100644 index 0000000000000000000000000000000000000000..ebbd2ec1be2d7f190f1b2e5c3da8d34535231c31 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE08u(k;?Kk?@scN3~O#! z`+L&Pe+v))KY8xXJO8p7Z4KLJG&_Y>6fF5;>0kEo>;HG3{=NV5-=t|zsGYH+zA~fB zZbhIGj3q&S!3+-1ZlnP@sh%#5Ar-f3x|x|+9C=ud+ui>kzssxY+A0a%ybD#YraW3= z8v5b)#}Cf!N98NCu2vm;wqrte=aVxpy|08V+_CR{)M?`hm!=8K3-dC}jZw3C*5%zI r%x!l>LMN*APE=Ri8iOMS9NY|!(wxy3eP{9jEoAU?^>bP0l+XkK#Ykd0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/grizzly_paw.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/grizzly_paw.png new file mode 100644 index 0000000000000000000000000000000000000000..33c1951b953a1af474f73a9d62e4c9f533638167 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08u(k!osc^7ZvKGd32K zlh#y`@^Umv40G;I^2qWu54AIP)K_Mi=ll?;l(8hpFPOpM*^M+HC&AOjF{I*F(g9|M zR3CPs0}33gH^uy~&*v;Le?GDDTiq(df+}|A;zMTw1lR0XzQ$tx6L}GtW5w|kekmF$ zb9F|qI{cOMOV+;)oEtPYcW})YPE}I5_-woB%ckvGn`|5WgWswhWD?n*?#lzTi^0>? K&t;ucLK6TALPbyj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/lynx_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/lynx_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..e16b918f3f7dbf893e906d50ac3e5f62ac111e82 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F&4=gMNV5NJ(j%IUUw|4AjP0666=m;PC85 z8jzFV>EaktajUlDC?kU+!{ILL)c>jHV^1s=D%nsLuXrZ$?GjW^14zvQO+CsdqsEA- X;}g?Q2Eo!Cpj`}}u6{1-oD!M<`0!Bo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/pigs_foot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/pigs_foot.png new file mode 100644 index 0000000000000000000000000000000000000000..017e01df650a3780b18c628371215b0f60dfb13c GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0FGVcRQ9C^{ln|~~?RDfjV8CI$F0dKMZP~SZhVTu8U_t}lAqYMvChtE(g5hCPETW`fY&lR)zr NJYD@<);T3K0RSDmI)DHG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/wolf_paw.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/race_rewards/wolf_paw.png new file mode 100644 index 0000000000000000000000000000000000000000..47254187f1e487f470ffcb8bfdf59b20a9e69258 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{7S2j_R%JMW1wKMKc z@>sEAg`%EzTwI*Hi%U~e(@}$;{Xj*GB|(0{3=Yq3qyagJo-U3d6}OTOFf;i2vI`wh z;3-o7@SlDAg@rpJ#Gn6(c)#n}7405H!!tP{_h($S;_|;n|HeAjiei#WAGfR`LP;LcdZ43-6 z85kTH816DKd}d&{y-2uJgXz^$qYzPGw^Lv308tu`{agYMlM+0LPLR*(+1rl>9m_ z7@TZta+sL8HYE4OGRxGxZmb_&%>(ZFdfv+4r=i05>FCwpHb6@lJYD@<);T3K0RUU7 BMV$Zu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..f36efbbdf8d2af2f5d14215495dac3dc2817c551 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4R$yP6#Oe!E9lZRvwe zDT4fUM;W8{mufKan5A$jTECRw1DV2D666=m;PC858j$1b>EaktaVz-%{|$8qN!O_X zjZ4083bX}F%?ONpHYvgCm>V=o zcxE}Q;Y{%{_VNxs$6{omE-fAHm%y+w?HtRc84L{en?%2-hzouJ+QZ=K>gTe~DWM4f D7H>lV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/respiration/respiration_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d0bfc645a78fbc29e0b3f3c6a47d3fcb33055f12 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u(kqWgl<}piQjNZ>* zca%%fT5ahAlSALTlRUCK%^mfX`6`Xtfa(}ag8YIR9G=}s19Do>i2;v7)yfuf*Bm1-ADs+B0OCjLn?07b~SP_C~`O#ue$pG z|A&_^Jot7vX1{;jms#qL{;dF>v3V1AgvSkk(uZw1f}22WQ%mvv4FO#oXyMfCsx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluertooth_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluertooth_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1766572eeb703017cadfdc5fc368e1c22db54f GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AXJI?17?CT8!b;g@2S ze57RhtG3_&Ioj^o9{$85JHdnLzb{Y?V@Z%-FoVOh8)-mJjHioZNX4zB1AGjv-50r- z4LF!PularcFTZDt*Y_RF6RibbRK_W6{!y&<U BOj!T` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluetooth_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/bluetooth_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..a8892474e3753d58215a30aa7fe27e6d8a8714e7 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07kmcPyFys#Jq%Q;Oj2 zMZ#}RyZ--Pui=+sm3)LlO|5cXXcJHoV@Z%-FoVOh8)-mJw5N+>NX4z*?nW*bMGltF znb+R^um2GGx|D%^594IXm4A=>6#r%9<*)Zku&lVt^L*iL zQ7+}ulYxrHS-&~uY?CM2ip;9E-w~5}`QAsyDKnY2miY#M0b0Z0>FVdQ&MBb@0OKY{ Ap8x;= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/combo_mania_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/combo_mania_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..5d08598407d5f3764fd14e717ec25e2e6cf74528 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4>%|NVLU+p8&04oaSw z!M35AZG#`n92>^scgG%<0i_vBg8YIR9G=}s19BofT^vIyZY3Y!a&lHI*|5o5sv}L* zq|jHF!Dt3+tkY$O9)-z5*EbbR5E2*fFDh41R$X#*?H#5Q9=xR|H5d(VTt0QWTiT&# q!xtf8f#!uaM|LnLm9TakV_~pP6JE3@TTcaO2ZN`ppUXO@geCy*nnZd4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/defective_monitor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/defective_monitor.png new file mode 100644 index 0000000000000000000000000000000000000000..92dc3747570ba1521dc77e9fa7ac195d4efee448 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VD~L8W4h;>ht*t$L`0(`U z)Bpef&*1VOD9)_b2BiLjAp=nKKSMRcCTVHuvwh!9fYOX5L4Lsu4$p3+0XeCjE{-7; zw|dTOXJS$iV7~BVL++3N@h7uR&%EL8Tz}x<{444O9pAM|z6-y)aPIA`Wd|NezgYS~ z+E3z(-7*&jo7YjFHl}iXT68MUuOUHEtNgN2!itovAC3(**SF{>Jd%0O%$&4`i(%3( Wy~QUd+`9y{kipZ{&t;ucLK6VnH(b2{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/future_calories.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/future_calories.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf14960e23f93bbbac472e9be55cecf6e9689c6 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A{7SI+V@?@savwKFdA zQVBMba?}>~G!(na@ce_-|HaH3Dj1tgRHV+_`#&3~nz1CvFPOpM*^M+HC&|;rF{I*F zZRb@+W<#E%x4370i{C!2|KG2qNuPdBzV`05g~Zy8p6?yjuRgNY59d)o}nt8B2ovf*Bm1-ADs+yggkULn>}1DF`v#n!_y8kSNf$=*jFm|4%iGbtG%^ zE_mVma*3%&nRO!DoIaQ4O+5@Lvy1gTe~DWM4f8%a0Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/harmonious_surgery_toolkit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/harmonious_surgery_toolkit.png new file mode 100644 index 0000000000000000000000000000000000000000..f07bd7a586870c2c29505ca3ae942b7388280342 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F&G|NomeZw?QW5|F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/iq_point.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/iq_point.png new file mode 100644 index 0000000000000000000000000000000000000000..5b5df1698ebb8becbadc24fd17b5c4c359f57e7e GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9bIO!~iR)Bj16uFT4K zTUmJ_K7O&Yv)se$SAcSiB|(0{3=Yq3qyageo-U3d6}OTPFwKzUQQ$HAoDybm*v8Y8 z=Zr^~z8-_|jkDd(id~a^FDv$3a$*0*G(jZ0)1%Ph2#dS%ikU|<4cMxgS`MCT;ALRo XO66+Q{3m-FXefiHtDnm{r-UW|6&E~- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/miniaturized_tubulator.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/miniaturized_tubulator.png new file mode 100644 index 0000000000000000000000000000000000000000..2817c5212737359ec8b26e0897ac446c2387610d GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Er>W&gEXkN^Mw9~Bjq znVDHyTB^VA;sKxpV@Z%-FoVOh8)-mJjHioZNX4z#^G6vE81OJ3;Cl1dJ#WUB%dCIT zKG@A9VUfK|Sxj@2;|%7I6HAMjG^b|yGjLxu7S0KHF8lS|GUgeoN}Z)km=gR2-j-=v pHE3zxjfhu&nl5!#JuU4o;}2%W6OGdh%z*YVc)I$ztaD0e0sxokL*D=Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/punchcard_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/punchcard_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..6396831ba55484796a00f9dbe40800fd8231ae85 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07Lg$TMfK{iOMJGsE!) zhS~4lz1y~J+m$O<>g(%WpOgv$RWOzW`2{mLJiCzwZ_NQ^kNZpk3LJA-L>U$Ss3e`A z683t=Hmj8@T+ew}M@q%!ACcP_SS@`>Py5Gw`7KpkF>IS9s)05!c)I$ztaD0e0sy*6 BM|%JO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/rift_prism.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/rift_prism.png new file mode 100644 index 0000000000000000000000000000000000000000..c842d88372f3b4c1fc6f6567e92668b78d3090a4 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0B&9m<=T5fB2=FwmJZlY9!B`UH7tG-B>_!@p6XNOO7*cU7`2e?tl!f$xo@+gs zf(ggAoY=r)ko@Y*%!vxKTsM~-!UL9#oJR_R7?VmB79Tlr)b*z9 pi3EK!Gc)}JhK;9AH=3w1Fid_e@YtCp>oU-M22WQ%mvv4FO#n}}LvsKC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/ring_of_eternal_love.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/ring_of_eternal_love.png new file mode 100644 index 0000000000000000000000000000000000000000..15c32d612d26b34ece77a0f12a7e9bfca2647f02 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b4;Cua>)2{y;8#kp0 z9#gXZ&&F1&!L*Q%D@TB5NqI^fP!VHEkY6x^!?PP{Ku(CKi(^Q|t>gpT5zG?l9ad)UmpuXX;Di^l4|A qjCM?0x-?Zcfnj6VTBb`g7#KV~gu~1{PJRTM&*16m=d#Wzp$Py}tV3u3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/satelite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/satelite.png new file mode 100644 index 0000000000000000000000000000000000000000..55111eadd05618418f14fba37ae63a08acd1e4a8 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0BKwtL4$fkVz{(oS0yh zR(x$kvc7BJ&Q4oN9mljBJppk|3%i$QEI@UPB|(0{3=Yq3qyagpo-U3d6}L)z9fgh< za2$@A=4AN)|NExpmSM&*B1#`Tv$)#-ss7UAD4)La+_a9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/test_bucket_please_ignore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/rift/test_bucket_please_ignore.png new file mode 100644 index 0000000000000000000000000000000000000000..f22964460aa6079eabad1d4f5f73053bc8bc0c85 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08udHU0np|Fmh-ii(QP zxM@7@v43(Yrru6xetpHZp6V4VRxJ8jvI3}%u_VYZn8D%MjWi%9%hSa%q~ccY`Bp|} zMG@z~cg8vYYo%XJ(?4+V_Wy#j(VL$|&E!u?dmp;D=x$4hv&v3p=OuytmK8jz+J72m z?%cOG|EZwC7t0-u4A&WYJ;Y<&TMpjKlPh;9J};yYpuiCBXuUvS9ZS95cXe?;VuYLiqNAgK9+&I}YG5o0@(X5gcy=QV$jR_@ zaSW-r<$I!)vBiPM<)Vhz%l&sw8{SaZ{a^6d^X`Q+_bd4wd-ADCNb=c)B=-RNRW~W#l?)AaZEYzH7hl|JeMA zeKBKzl7jvt?-u>Z(G_pEOY3B>U%SXyi|w0N>9sRkCfqVSq8z!jPUu3g*L)dvnca>VO1LYV?g8YIR9G=}s19DmdKI;Vst0EV|i!2kdN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runeblade/runeblade_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runeblade/runeblade_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..ae0cafce8d5f9b777f45dfd35d9b6c719647cdeb GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE07Mz)X8Zu%nWqvN%yad z^@#IuoLdpIx-Bt0C)d)?e`;Ys_u_S%uRLzsbnMxuZ$({GJEaktam%$ol<9y0hckQ2GOPXnL!VDtzbAa@?&OBMZy!pW zJikVL@gsxRswJv{(W>FK+g$o`SMjE-${(rB3bJ}%Nir~Vq+)ki= z#*!evU&-(6SBL13dgx^N4v8PDc41_wF_&PSa;m8xwoEMs+TEg#rI38o2~xI zQsrfjFKH+qkzlH3UihO`RYKx@dRN>oXb` zq&Iw+GTEJ%Db{HF={L4-ZZoaA8j_n7YJNzmV43kk&W=3()zzndvgtHcv2*@nJ|J`F p%=-hcMVj~VHEdY*;PSiQ46~F4uGF-zi2yo*!PC{xWt~$(69A4MV{iZf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..1c459ff7c450c7e6601dbd10241fd4041d2a2efb GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E07iw6Z`+l}(o}TXS@9*g3YG!6;X)Oa%%~%rT7tG-B>_!@pQ|{^F7*cU7 zx2IK<#gM~={iei{|3T-IpSKxk;hshm;DI8877Q$m3sKed;HhPE!>-=P%|1GI!3r oKk!pCcE=8#Tsot{l@mqZKhRMLvoWs%?~LREHhrn*^$S;y86^lHl3y_cFteS2W0M? pd4J%wNb^3vh7GG8Tz>bPVV1JMm74Z75kMy}c)I$ztaD0e0swj_Vc-A& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..70160f33677acc3dd460418fe2f655b30978fa18 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E07iw6Z`+lxPfz#v_jh!1H8V4_E;6bFs%9(+@(X5gcy=QV$SL=9aSW-r zmD|%Q%3{dj!hTa?$^W49$zopr0I}_0qW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/runebook/runebook_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..45d372c542b6a52a4d0a57061402fb7c85eea44d GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E07iw6Z`+lFb-`#UpCcE=8#Tsot{l@mqZKhRMLvoWs%?~LREHhrn*^$S;y86^lHl3y_cFteS2W0M? pd4J%wNb^3vh7GG8Tz>bPVV1JMm74Z75kMy}c)I$ztaD0e0st4ZVN?JB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_grimoire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_grimoire.png new file mode 100644 index 0000000000000000000000000000000000000000..c3bf1963e41860513f8d0d339c0f8b7eb8c11ea5 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07iwU=7j}2(c56XArDn zl2g~zo+fIX>MahG`v3p`;Y&B7qoc1~yEb#?%&(Cvs1r$r>7q7ipHlbDH_N;gN9=iJ7 z;AQxBs7mm}+?gNeG%7P(Y8CPlQ~Ju{qv5znFQ#6`k>%O9rEco>rgp69PP+Otf$m}O MboFyt=akR{0E^;Za{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_studies.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scarf/scarf_studies.png new file mode 100644 index 0000000000000000000000000000000000000000..88ab70fb38d14b0f6f515719642c1d56879c63d8 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=829UE98W`^=d$qobo! zy~RW9gr|ub2k8m8sB%>?$r&oL#4`wr39vS}saXP5GnNGT1v5B2yO9RuBzn3yhE&{2 zKESo3-1$ZC?89OWJ9C4chAOy47gUD6U{g?DUb8YI!)(IDQXLbMl4ope_tuE6oM;@| z(3PkAdQQ#~o|F$d-eE!WEE^jWe{M`UJ+oZjU_SQbl@(X5g zcy=QV$Vu^ZaSW-rm82lWAT^U)nxRplV^O5#_kXif#nex^+_zU;w0_QpeMf{Qe@{2e z(lPD6AZYQx;NYPW7G9pj;;6_qUEvpUc-;b1&7Vu`?SFiG!I{O)J5s{r1$?q~Z&V+( fpT2J9zdYu-Ma=t~Z(NQA+Q;DO>gTe~DWM4fzN%5Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..cb584a987be6de4e64188edfd136622dc74c1b3d GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Df3P594`wST|Hr+G5= zr80f_$gri8;lgr;2Y+~eUGsXmQFJvISE&Y5Gdp`a1H+~i!CWUL7oaxAk|4ie28U-i z(tw;YPZ!6Kid#tvYz()gxLG(H6j*NQzWEFVdQ&MBb@03k15ZvX%Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..8c032021e58e19a3b921f67b228084a99dab75ce GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08YLV7k3XIL(u>FO})b zM}{q(3>TI&Jov-2nu{x)fuWh5{mp6DO(}xnC62a0)r=)Ue!&b5&u*jvInkajjv*Dd zk`%-?Ffc9%H1uGSU}=mHWM%#Fzg*iO+15NU)rl5Kj+kl%RKaX+~OxvC)Q-^ zsCj+qq}uwd4QuqaWj)H8w_Y=aA^(|lwwxl@7M4@mtmp0H{C+bv9NBFb0JMg|)78&q Iol`;+0F=!`>i_@% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/scavenger/scavenger_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7948137294032c0e50e340ef006cca5f851c61 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=0`x@O=5maA7&amQIH5 zB#*vSrYukMG*8A*J7Y(EWfK*tYxAxz0jgsx3GxeOaCmkj4aiCIba4!+xRva{x=^8M zZ^J^9Jq#yiL`vB;CaO)?$e?oO=z$}wOAf?XG*>e^N3k;Lcd3_Euk zU%A3iUvK~a|K0!pZ!Z!q)nJ;EpjZo3#8?vK7tG-B>_!@p;7Vd*m6TXMUOSijPFgxgyrkooU8f nrf^*lVw<9OspL}1n?eR&8zwQ4qv9z*lNmf+{an^LB{Ts5r@TRF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/sea_creature/sea_creature_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/sea_creature/sea_creature_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..358da18a3dc826e44b16148c070f018e3740a373 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08X9VE=!T?OeCi_y38; zSFUuvc+s8Y5o%|g<4TU+&8&BEcj^Uiv=1GpN0zKr=wSY+W;+L@O1TaS?83{1OV3< BNGJdR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..ec0539ae0c7a0e4d63ae39272465ec69befeedc6 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ErlBKYRC>;Lcd+}!*c z8irG+FFAAJo~vs>U47@SeP=>Kq8E6C6y#SVBxc=SBwVV&bnxaME1)*Uk|4ie28U-i z(tw-_*hSAhTk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/seal/seal_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..9c819449e37fb32ea6bff241116c632a57f3aca1 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u(kqWglPDsqs&@klY z=67`ssH^XsI(^BR3-=20D?&n|ckMf~z$2tP$s^0t+)-b7s@d*UKy8dAL4Lsu4$p3+ z0XdnTE{-7;w~`Jp|M-!hQ&%T&@Hl&hv(5&I21kvsqm}Ew+rRxb(_3poLX)Aw;%!{Z z|6Q-T$NX*j{iTm*UzWWmed=oNEWvABwVP&e2D>}VtTtTl`yuJA@4oL@=NIhS{z`jG ifMD;pwiK`5=UJy_GClscC*uRqQU*^~KbLh*2~7YM>|2Kb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/dull_shark_tooth_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/dull_shark_tooth_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..59fc8e81f2f1aba550d4c9e0f260157be0215d39 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=81!Z#lAM!TR}~v${$f ziW2gZ0>#rA_+1z{wHPj_J52|wU@Qsp3ubV5b|VeQN$_-W45_%4?7(ntrmU>7I>Spo zf%VBu&gw2TY|iX6*n$M#D(qS`)lqfv-iE!4&UQN9=vCa?qj+?}!IM2_uc#_Uwklq1 zbiHZW=-SiR%BXSTzypR$k5;g4Wzpbc6DagyU`T2bV&8aG>@CnP22WQ%mvv4FO#rL( BMf3mw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/honed_shark_tooth_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/honed_shark_tooth_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..f4345007c18beec7457173eb09190dfc53659715 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=81!Z#lAM!TR}~v${$f ziW2gZ0vXKW8Pr`E#MHO(Hh{D-mIV0)GdMiEkp|=>c)B=-RNP8-U^q8ZR@PXZ;U%BI z`eY_&b(b18XZ9IvL4t1;b}gFfsJeJ>!`?+_I~{NID(>x3JUZdv$)2-UR23sz6)!fr z-n49V?P+Xf)HreA0mG$7E7-QOXz;NK6#6hQBsB@KZ@en@7HAiPr>mdKI;Vst0ErGo AumAu6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/raggedy_shark_tooth_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/raggedy_shark_tooth_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..0331dbdbcade2583989d507fdf007f8627a17911 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=81!Z#lAM!TR}~v${$f ziW2gZ0+W-IU0hsLR8$r;EPM)7!B`UH7tG-B>_!@pli=y%7*cU7*@5BQOj%iDb%vLG z0_&5RoYh@w*qqsCumuUeRoJy?s-x=Sy$yR8o$YkI(W|((NAc){gC~2=UQtzyY*oD2 z=z7z#(Y2?sl~Lowfd>qi9<5;8%A&!?CQ#_Zz>w4=#J=&W*ju1o44$rjF6*2UngHKL BNGAXQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/razor_sharp_shark_tooth_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/razor_sharp_shark_tooth_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..41eee56504343a0a9bd6a187bb5484ccc6a08d4a GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=81!Z#lAM!TR}~v${$f ziW2gZ0w;Mh7I>Spo zf%VBu&gw2TY|iX6*n$M#D(qS`)lqfv-iE!4&UQN9=vCa?qj+?}!IM2_uc#_Uwklq1 zbiHZW=-SiR%BXSTzypR$k5;g4Wzpbc6DagyU`T2bV&8aG>@CnP22WQ%mvv4FO#l+? BMydb+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/sharp_shark_tooth_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shark_tooth_necklace/sharp_shark_tooth_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..ed97bd350f6ee359bc6fd441f2cadb944d3a7214 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=81!Z#lAM!TR}~v${$f ziW2gZ0-fbj^~Ky2`HT`Xo5X-B7)yfuf*Bm1-ADs+5}1J20G^DJyHN&hU~? zV0|)^v${(Sn=|_iwjjZ`3cD6fbyQuvw_)$1vz?ANdKLHfC?1_~@MO=~E2@f-t%?^L zU2j@8y7n}-GHRSS@POgcqZMphSv2_A1PXl^7?PTV*f(AkdkeIS!PC{xWt~$(69CdM BMl=8b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/artifact_of_control.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/artifact_of_control.png new file mode 100644 index 0000000000000000000000000000000000000000..74f0572a10b12b6f8062c27e2e9b5936d22b9aed GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ES}IPQJmzU78o&Ghe7gRYb6cU9 z#QZ~1jPs`KOuP2Ti%~QBn#{^hZS6~~cf-~x%nI&1q8M|}Wp=lUrYl`dRQ%r}&+;F!@Y&A`Af#P};x$Nx9bLIzJ)KbLh*2~7YZYDlX9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box.png new file mode 100644 index 0000000000000000000000000000000000000000..1cb256933a89cd2581ac67edab99bbca71598f20 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|37`{*6hWrr$k%S zx@#7g$VSKudhv5>v#gpT7FJeL2TGzd zqF6hw&XSUvCdZhvWyjK~(^HuwjiX|mjMJGUFKby@rI#>Co<6iHtmF)n(GDl|tS}u0 s!yxs@(k2O>)mq`}nk4pexg;|&yvvaCdTV)REzk-EPgg&ebxsLQ0E#g^yZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..d119e732843465074c47fa527c76e93a4870c5cb GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3TZEo$90S1|l9Fp+I# zxRt`NIznF1i=SJYg#{=Z=w8$dq!>$r{DK)Ap4~_Ta>6}b978H@B_H6nu(FamP|`ig zo3-QWlO;Dn=6dIgiDu@vi6n{+10U@a@F^b#gX?~qktC1;q7c1%%o57S{V soU<&gv`K_!@p6YlBa7*cU7`2e?tm6gIiv3FMe)q78aoF)QLf|K#H*>$S;_|;n|HeASc|@#WAGfR`LOE3o9$B10}1y zGgv#W3O#xx^^P&cWM$j5>26Gt#CddIE~D>=htv?E3>DolsL s&`B-5v`KFVdQ&MBb@02**Q2><{9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..4b25a5d7419e4db2974a1673262d0c1bc31f245d GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3TZEf_NY*Sc#mgx)GJ zk!5gL9U(91#m}wH!UB~2tN-sdkYX$e@(X5gcy=QV$O-p!aSW-rm3)BP!pchOK*{RD z4AzdTGC4U?d5kG0U2W5*yD>=`OR@GUr!z?gYg<{RmoQ0s`>qZvIm2YMqes0mOozd+ rX?aR%lLXIdt?+eC5_`E^l9?DXm?h4N{J&iaw1UCY)z4*}Q$iB}crQ6^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/shens_auction/pandoras_box_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..cf53112cff7cfb92fcd37d49973683003d557b75 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=0-v85k}xOo_H&Sj~#m}wH!UB}ED_rIVq!>$r{DK)Ap4~_Ta>6}b978H@B_H6nu(FamP!gRH z#oBRomXy>qImQ%|*-NKRPi2xcp4IDYoX#Y9SKmS3OKThq|~!o0qikNV>?hIvo~qm5~f_ z={a<1itJp88Li^0RU;*(3<|Pz4THW#nKU*gPMh2{`IOg=#scjJ)07w(R6j}?OrN4E Q0<@RG)78&qol`;+0J|$m1^@s6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/skeleton_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/skeleton_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..26ba2ca2b6db180490086829a3abfb9e23a61685 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{7R}KtzJAG{Fi>H?+ zOsM?-|8IAaN2r}~mZ!Oiij>=mi?@M_7)yfuf*Bm1-ADs+5}19bjhg?P(P} zV8C-E#yR7E<8Q5FI#2cX?!P{#=ibdD5(f;LcdObh~I zv%9=FUu0f8WzM>ljltpeBH>aEruB7q{sPr8mIV0)GdMiEkp|?1d%8G=RNU(6Jj&Q$ zAaKB9``_oTul$32-~ICLII%J@O>5&Fd-JQ26+1rjD6O~t%%gDVkiNkjj{OZT229^L z&oyv7UMt2W^pI7!YR9TgfnRyvh2$A1T$;^bn93A>!^G_j&+{b<5H|7m;on|~C?u9%K?=NQvO0MnI tYaSW-rReFw{>u>-M^M#CxJO7WU zuDdPppj*}U$78GZnynn2*&@mb-me;`G0d#nRy%vMm=DL4N8I5z64d?$X(~?MkRLHK zSWKMf%vJ6==7Q&^y;>&!pBFK#H*>$S;_|;n|HeAScw*#WAGfR!{eKQD;VhLk--&^K;^hH1=D4WRW}c z@VrUQ_D==;Lcd3=Hu= z?#qp$78Wc2evQ}AsJgvKxKxA5D`4_Bpaf${kY6x^!?PP{Ku(aSi(^Q|t=#d>>a*x%lbPusUJE!}r8+~^bcwvcz<*n*tB*e7z#?{$5_YVCaQ tfY17J2IsR|3NJIINb#nbytwm~!77j`cB;(hi9pjCJYD@<);T3K0RVTrMOOd- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/space/talisman_of_space.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/space/talisman_of_space.png new file mode 100644 index 0000000000000000000000000000000000000000..6ac78371bdd493be202070d1c878669ce1b8ea2c GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4@N#=qPs+MVQ)MT&tT9;o2F$Z;Pa#aI&L7tG-B>_!@pljP~*7*cU7*@5+#LetU4 zgEx;bp71C(^GxtyHsW$P^oGahjRV)2R$~ipiLkXv3G)veFlf}?kj$taQ1I;1g#+tm zIx&QzG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..7e75cfe20e103d3aec22c5a453ef689a82a5e22b GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Er~^R$)^uXVD7dy`zv z8PkLX8q>eJgoI?Ywaxnf|Nqsi_ouzxQ3X`TSQ6wH%;50sMjDV4=jq}YQgJKk03SoB zPb(vXqCnH;)c>{r-(FJ=&Hf#rMd`F_r}R1v5B2yO9Ru1bMnRhE&|@J>kg5Y{=n! zk+C}H&|m(T4FQ)^{~h~Oou_>8e|M-X)9-q*kIY|=H;Su77$;PS=G3)(uWI3av7Kkf r?HsO4+oGS|W>MW4`f7E^`Plf+=8S(bP0l+XkKas)?4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/speed/speed_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d286775adedec716e0b5b47d6438e85de0063cd9 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0CW4)urZ)X~F`H?j(;a zPjl;JiBLOZEgxP-ePt6BDJe<&LZBkXk|4ie28U-i(tw;8PZ!6Kid(f^j(iOU94v_o zLw^2GwwO-;beYVUuaUc1@`XtPQgd0BvLN MboFyt=akR{0F>=a_y7O^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..239124ba339f3599142bf2a574b58cf2a2475752 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9b4;Cua(moJZ;yY%L? z>+MCtn^FW5LOlFkZQSilSMc$bYB1TF=o)FOsVPX`k~nq?sE4s6$S;_|;n|HeAScPw z#WAGfR-Q5K05AH6HVNz)Od;j-*)&olBRR@)r{#mEhGpI~~Mc>k;Ph}DqHlCZqcxeU$!@sH0 VFRy!XIst8C@O1TaS?83{1OT_`Qe*%C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/spider/spider_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea5ff2f6162ed7d8d68aa84c171f1f1e92b589d GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8I~9tj~HS)S(pt~Q}| z#_o2eEBN?qO>`agm5sF3OjM-Q6r^8An6v|xGL{7S1v5B2yO9Ru#Cp0ohE&{2c3^E% zXu8>OFyIEm2@X>cz61_dBejMW%SMhvGZ<2u8HJjwnfT8)GS88gkT6qO6Ls_$ugIOV z#fzRF$Wv&xUg+7J%j_ZRKk+x?hPD=Fn;aeiu?cPr41JnHmskC`UJSH|!PC{xWt~$( F69DAaKFMc)B=-RNP8Fz;(-L z!Iq6eGmcK3b1`ij!;y^OpmPkyWm{9%uo>P6e}8Z9YK9XUB8dqFBJ74T5)u&(JwoLQ z-&l;6wNIJ8JB&$kPO!7HvbsS-gmF4krVj&y@DDNPmRro5fp#!>y85}Sb4q9e0K9HT AH2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/tarantula/tarantula_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/tarantula/tarantula_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d63db3f72d1c4535be11f14d1bad32bc751a0b GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5eM-*|TT_?+y*?j(;a zPxDYa<7qNlj{3?~yy_+@QYma&$6ilx2dZN%3GxeOaCmkj4akZ2ba4!+xRva{s;AIo z+MsyEl;MO2ccE{B2eXls!yy?S9~lR(Gp)uuq$JADr9Fr^a9~5j<{LFk;sFI$%TyP> z3Uy$+p7Pb{G^;}C2c@=YbA>ibDjZE<^RN~Iy77o`p0Z6xD$pthPgg&ebxsLQ E03wV;S^xk5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/technoblade/blood_god_crest.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/technoblade/blood_god_crest.png new file mode 100644 index 0000000000000000000000000000000000000000..8127032e399c758377d0364f90d6122e14b4a708 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E08u(k=m3Z`0JWir@Pz7 zc{851Hb0x#U8=$K|Nnm`2F7QV#lo8e|9*`Z%-s|->tv{%ad(nOmZ!O+zVgchQ$WTs zmIV0)GdMiEkp|>sd%8G=RNSiRYUE;8-@^XDF3&iHfLh`DRm`B t3c0qtblSN}|C)*xf0m5fANDjRhEwruzZ$PRtbtieu3T4RhG!L~i&NXLr)K@l9kqVRHGzV&6ED7=pW^j0RBMrz&_H=O! zskoKwz$&ZIl+Ad!YaOe@v3H`e(h_CNlHv}B_VD=Zao{@BYWzdb;LMzp2Yxp+K4e@z z@e+&Of(N@byPT%IZ{XQ?vg^<^eur0mERx3?Ol7zYKQbCucpc_*IAc-Fc9W6e^8!h> UzVpo8KL543*+DaMi@zhDN3XE)M-oLo;A$B>F!Ne5UO<~@JF)}X+$P@}=?zij@Q z8Gnz9>veo}*Y&uQCuYasSim@cfFPOpM*^M+HC&SalF{I*_Z!aqogCfu2OQje7@Ba~_F-zfb z=UJ)mg6kuK_P#n~@OjmyBuBR=OiModd01a6T`c6S_i)z{mahR7EeTn7PHXBs+hFo+ z%RH@j6J8aD7fzL(a9(!8oK*f-WlZaTeF)Xx_p^XqMvckJ|9PQ1&`t(VS3j3^P6m(?U*?`EGD+7 zzA>w$6e#%rd;Oc!uD2HnmufI=N)dcxWY-E5Wh@Eu3ubV5b|VeQ3GsAs45_%)d#aV! zRguRb@YSyWyW)SDoI98wF*{+;Jtupn^RpwT{?v0@WA9VOx}@=XKbuRM%Ztx%`3~&L3&}C+Te1JU9M`r`@rK(}H!n-RI0NaGB2yDs wHnuD|&@?evX@{-L)EX{5mxZ-jhxQsXO3Y_s)A(Cs1GIv{)78&qol`;+09!gfuK)l5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/trapper_crest/trapper_crest.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/trapper_crest/trapper_crest.png new file mode 100644 index 0000000000000000000000000000000000000000..77cfb2ca53a7d3b1d5d8fc3d330541dcb09062e6 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09hyQaD@fcInckSFc_z zSg_##|NqOvb)4iFEnZH`2TC)R1o;IsI6S+N2IPc!x;TbZ+)6sY#t_@n%E(~I!?aNB zTl|i9A9ss?y8TVAWb$##<@^WF7Z*mgiCnN?aZpL|{UOE3+xFq&b*ZG8X9ZX{9JBeo qX!XLA4Nq2BnN|~FnGH9xvXR)BTGF`M6u pRxdo+@MMLRN#+07Pj7o%*ZZZ*6dCKOa2{v_gQu&X%Q~loCIIk^M(6+l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..86151421011ec4dc435eedc9dbf532bc1a8ab89f GIT binary patch literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A{7SAKKa_4Xp+O(}w< z8chGc*8>HuCD{J||G$6#{`vFgi^K(cy}c>5YI#$%bC#!hsGYHiij?!LiuFKsj3q&S z!3+-1ZlnP@J)SO(Ar-fD&xa-*QxITy7`gVJ=YxOYYj%tO-cT8n;bqykSY#p>$CUl{ zZd*&c57n+euitX6kzJ$1=!<&ryw>*L)5X;`c6a-PuGW#7D7jGQdfu%W@y2uf5)*Te zzjWC?cbi52B36qV{PpvT^_CmHUwl1Es+eWE_P=W{&eu$QweoYZvLXLxtDYr+sS@w) YEAmCF^~&C{0o}#m>FVdQ&MBb@07BGj+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..091efeba9ead3683250259b5d0c24d2dd0acbab2 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08YLV7k3XIMmMAQD50a zMJmhFygSLGDcX7d{Q3L$@Bjb*|C`gU|G(F7N)bG=XxRav2F8*gzhDN3XE)M-oD5GF z$B>F!Hm5oHSR7ee6Q3@ee&}z%_1Z&!BA?W9u3|}R;3!S{zW4rlw~)ra46Cjv{;ak5 zcweTvnx+4Q`c_xAHUC@+w#f$JJRo$Ca6}|S*AOld~|u0ZOFy^ aBa93pN13a|6gPuh&fw|l=d#Wzp$P!%bytM| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/treasure/treasure_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..d7a628c161687d973110b177ed1fa93b5bc8f11b GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9b4;Cua>)2{pX@4vlB zc>etPn^FY3lRTQDowGd6L+y+m^_5Ljq*%_K-Un38SQ6wH%;50sMjDWl;pyTSQgJKU zfmK$aDVyJmT-- zPVPO;J!RkN;1yL5^(Gvw4zb+vjmhKqxt-g;HJr6KExsyc@c7HCy8;t;J2X6DVCald V?OJNUF#%{NgQu&X%Q~loCIE23RLKAU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_artifact.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_artifact.png new file mode 100644 index 0000000000000000000000000000000000000000..7304e1c40a94e11e4e81786ad07108acb681b7bd GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ErM?09i?&HlR^KYn|! z-@s|Rjn#Y}J5b!p*3LU1aL%&j(LXkv1@ak7g8YIR9G=}s19Ch(T^vIyZpEB+WMVL6 zVLq^h^~eAE>xIhZ%nTwHyZxRhWM7fceQLc$#Q%wYW8EQR<@}STo6`zEtFGGh)L?=B i=_j9-=PNY0vM?NXW%QDJB=8StCWEJ|pUXO@geCyd9Y7)g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..1229828fd6b04a5360d74a76f9524c95693ef5e0 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ErlBKYRC>;LcdAHTiV z@|DzY;M{+AqwO|UX;c2&i-b!xm}G-j$pY0emIV0)GdMiEkp|>Mc)B=-RNU%4ah36a z0*`CpBh8!j_a1#Zx%z@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/vaccine/vaccine_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..aa464bb41c2b1d190eff5db51b7cd3dd7769a5a0 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ET2;M{+AqwO}eBgxVQrd77K3NIB{&xBatS4phfj666=m;PC858jzFV>EaktajT}|DB}SG zo+CaF|9;PX@@Vz3$xoI??Y=BA=h}~u_YUW$Bt5Nt{EO?;X>lLF7A+fA=Inz9e*5uX z-E`Jxp^@$t@6uMochBNhTf3~3JoZ+ssAr;}2Ge6@k%u3Q88rJCe>WYQbP#A4gQu&X J%Q~loCIDL)PtpJY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/village_talisman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/village_talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..26b3aea0b051e5b61d8944f5919ba32d829603bd GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5#xlpS1=wSIc^tY**d zB#+WaqbyJJXlKPxJ7Y(EWd}V`6BVg-x*~gkN*POn{DK)Ap4~_TauPjV978H@B|ES# zRA}1Uu+U@=!-*M@Qg)4rY7;gxsGMPS5je&qFq={5+~$Ubi(4CCGcX@!>@!Jams{{) z<~9?>$;J+B{<9M%ePf(p)$g)2Z$q1`Yyew%`zGciJ-T`)_!t;&xQKej98^3Fw2Z;i L)z4*}Q$iB}Lx)Bf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_common.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_common.png new file mode 100644 index 0000000000000000000000000000000000000000..1bcd5ffbb994808431131958bdadd0834f342e45 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cjKKT1J{^dr|JJWuCAe+aG)Z!X uU{cm2w!p`eW-$cL6=J)3Y?{N8pA0n}tR3d3A9@3|GI+ZBxvXlHiiz^-*w}pe4{Ovel}!ZIugyq>Qefo*XZa gLYO=IgkvlWUh8;YUZ@oC0-DX>>FVdQ&MBb@0AwFHsQ>@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..d0063054119cba7210b3d336f7d564079b7e1977 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08YLV0v@f_5b(!|NsBr zUL?FJMewOh;0B-sV@Z%-FoVOh8)-m}x2KC^NX4zW-50qIDDWJ46Z-l8e4FZ$FQqyP zlP*NpGwv@`T{2@rb^5cGfSpNV3yUu16)tIh_v+qjUZKD3&IK$Bnw{s$3qPHE=GQUi Yc}EznbDZY-0F7nvboFyt=akR{0NLC^WdHyG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wedding_ring/wedding_ring_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..266cdbf72353a7066ce3ebde7402e49e876d548b GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b4;Cua>)2{zdvi)yt zyuC=o3&8V@Z%-FoVOh8)-mJh^LEVNX4z>1Kbws1%3?1 z%R>FmvluU%Jw3ch^7N_Gn;lG6hgIEN#Gs%YkP$g;kw(YD16vz7k8lLBCh;mPzN%>w sqRMpQK}KQW$BYDqjaF6-CTa`}mzN7^Miv)L0GiL>>FVdQ&MBb@08I@;C;$Ke literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wolf/wolf_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/accessories/wolf/wolf_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4d050236e22b7e52c11b352c1686804be3ed6e GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0ErlBKYRC>;Lcd(}aa% zSy&G4+jsZY?aSxSFYm7t5)pg<_TBA8!lfEaa~5*d097-V1o;IsI6S+N2IQoBx;TbZ z+{!t@&U7e%gZY9=$@k*_n|B@Ev9+IfTkqo6xwG05XYCP6{jei}-yu}?*Mvpx&mTWK zaNy;mtNq^PR!o7c$=9RZC6rqhaoEWt;4IZx+ItCYR-a!FVdQ&MBb@0D;0 z$B>F!wVkbkEDAg;LcdthG#> zb6FT|82Qh!3q9t%y-2uJgK3MvHYuPY#*!evUA9BeQ>soxGaTH{YOhm5$Z%DTh~Fd6+QOy1qqo^W4nLGun2?Opd&`(P(fv kFyCVS^Lu+GkN-c(X=%wHwb*TuKhQb`Pgg&ebxsLQ0L-3NH2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..320175c4e6b966041c6133f2d53bf4a2c6779b00 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B)0Q{XcU5^*WwkTsA9 z>^MEwdv=9WbG)g$zIX+D$2p)1#*!evUN1ps;nXb4q>wPVYKy6NE1<$%43$I+d^UutqO-*(McUF`9(wTOuY5^6h o3Og@PaI^Tbq3_vF}1OZX*R{Ga?^{O|hz z{E5yL8C-IViY|_}9la|bNNi&2;C%5wBIcl>g6$p#h9eC649lBtKL+Y%@O1TaS?83{ F1OOZtAxZ!M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a5715ba9e6ffbd90b245fa20ed0e14f2fdd380 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08`t*L!w_Q**p&tet|p zzWAoe79~JY#*!evU1V0+Z!83n7`Nza9%eP6!H0^k#n%IJ2?TK`bx3?B{Xu bPg8^^xbkc;^<8ldXg!0ctDnm{r-UW|y$?;k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ba8f9a86978cf41f85dff8aacf9dde60f94cf8a0 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUv|;Ln>}1OXwwB{GaU5p~oc@ z-J%o4|4^Y~#xn($*NRn!x>YQ#$2VwKv^3lhVfflC!)?qwo6|t`#XENk9zEVtgJnW2 cDvA<}+^>_JLmMM@0u5#GboFyt=akR{0O-0V0{{R3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..82097741a48e38de66441506b94bd5021724d43d GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08Ym)tX)56lft>nDd5G=!s={Hh2EpyqGfcPaDhcRlA&W)ICnJFM0b- n_|B2N*MzUVlGw-iidFuI2xFr0mg7f(Rxo(F`njxgN@xNAawbD7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e86a1e08845881d85aae40c6ade9a15759d08b GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{A7ccPDnqA@49B&$H zr*L|%w?trvh)WTlVGxI`!TnP@H-U;6OM?7@862M7NCR?$JY5_^DsJ_jbY)~v5MXdT zx3oS!W}lATl>HMzIyvr3&y@UK$S`wCN1z$U$U@OJ^R0KOHRzTzhM2_otMd#$$i!ZH;_XaJYD@<);T3K0RXF?JeU9g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2deb163565708eeb531f94ac9d7dfe9c4a8ae2e5 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1JFqTJxcEQ$|LgyU zBf9@3Ppo4J|G=?E!uO!^3?>$7whN_Km3^EWsury6ZfGhnTgJrUk{Ha%!0`T&H+S#M RAYGtI44$rjF6*2UngCZ}CnW#? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/abyssal/abyssal_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..08f71bf197fabce455cea2e8cefe321fa85c8efd GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=6SIde5$KYK}K8@YRa7 zQ*hT850u(;11P~*666=m;PC858jxe*>EaktaVz-%+Z>juAr2$TM)J6OSQ>2(B&A%HMZ228`AX$|m!c62f$AtCGK(iS4No~qDV(#aapw|{LzOUV{J s4~B&svFVdQ&MBb@03mTb%K!iX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..165947d6157e1ae7797385c7887e5097a47fc293 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0VJ>|&gASl87Al$9R zo}V-9(cF{(-|37D=?u5O+e$k<{CmH7zsuj{WeMU5`3~0uR^&5qAK+~`qu43SkvnI> z`GxAA>?dtClbtb@BQSe9^KqvOjx`&u_fF7iW>;qT?_X~It#ILIpluAEu6{1-oD!M< Dr$9F% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_healer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_healer.png new file mode 100644 index 0000000000000000000000000000000000000000..2e466b22317cbb60fa72c80f37291b1d56550cf7 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0DIewSDyH(V8`D`uqDQ zO`3H5`t@xSZBH-txw;`*R#sM~XO<;U5o1Y^UoeBivm0qZPJpM2V@SoVxhELe4m*gr zUi_T4%Jbhp@#v8H(-I;I;(EvTPWpe^IJ=cG|C-qhS2gKFx7hB^Ioq_vbZz|62`3r^ q?JEV6&1`EOURm*5oLhaWcVFWbzBy_0dS?L5X7F_Nb6Mw<&;$V6zej5T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_mage.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_mage.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9c6ac67bce7c88dd78272cdf36f531103e02dd GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E@8ka1_JG+~O?X7tfw z^m1k?F1Ov*>2rEo^i^gCF4pSwWk5xYB|(0{3=Yq3qyaf0o-U3d6}RT}9%W=!6mhx# z;LpEm-)ph!yNyq6SKOOFWlKDpMT6Y8*DM@tTrme`7HS{kJXN8!q?0wGZ~xkcmXa-c s9t;aNXdMbvTdm6cB}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_boots_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5ff7ec795d58617e2fa72ab759425b1b94ed68 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AW8k!GnZWr_}G^zmf$ za%U;dv)!`I=j7?=%U2n=xP*&rg@I}qOM?7@862M7NCR?0JY5_^DsIi`J<7EYv>6d8$HdNhfPW-~P1?EhSs@ rJQx;k&^i>Twpx|>NzmD66CWEgGzsy|blYD16XYUKS3j3^P6;YR&ChOI%SHgv-4)b z|F?lgFqQ=Q1v5B2yO9Ru6nnZjhE&|@J=@B7SV4gG!huQ~ncwH5mb{a%zwyDn=^c0vOuE(Nd04 zPn^*~i8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_berserker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_berserker.png new file mode 100644 index 0000000000000000000000000000000000000000..1ea6b4f80411c307e1a9edf559c2feb994af4b68 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0AVoVAy7BciP8CjhRi3 ziA9^4!<9qmYIL*-E4K(EQvkPE5RZ5$kAywDfDsF~AR|-Xe%<##ZHy&Be!&b5&u*jv zIr*M0jv*DddQY@6GCOj(1lIU9{_F1D{e1nW7yZ93{9Rr=*WX}$WsBGKd;4ESs%r$k zHk)d7FeFKGqME5}qc`*ErVB~SoYx%Qm4D%|27BPGOLf|FlP@zk_3A5hajdv=VB`7o n1p@Mo7yUnb-k3Y{-ZthbGudnoUhnt=w3@-w)z4*}Q$iB}IFeFE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f7a3971db49cabc131eb52ea9bc27baf6400bd39 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6W_!9ghE&{I)4OqPi-CYky|G?n z1Cxxkax2%IK*mX`SqrwlP5pOyo!_^UEzdn|KF`}yzrUi}t}=c_==OE`50h5L-q4IZ zCU7@n>Q?S2iF#2U6EA)XjEL1(b;~2PF!8O^BB>W4%IfyXo-8u@hMwgu^Lq_idUsmp z3FQiT$#gPr@vNB9s3-Z>^~3^?d8{JO4u4!|^EhCF4BwCX7Dk5Gw+=YRZRM;1I+MZE L)z4*}Q$iB}DaTU; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_healer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_healer.png new file mode 100644 index 0000000000000000000000000000000000000000..c8b8e795b10b8f06a5f4d82d1499f88f5809611b GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0C6zm5qss**4Mk^irRK zf`Z!G+TFW%U)>NrY0{*%Yu8@Ce%;N@?e^{4j~+c*vt~_yf4{A*tyKWWZ=g=bk|4ie z28U-i(tw--PZ!6Kid#tvObn-HaVv8t2yiTDKF<8tyn5pAeaUaS1+3pYp9$2zV#xo) zCC=HvZ~ucMLW(|h3oShZb)D|VUSwm09dZv)!R;OXk;vd$@?2>|+{U*7-# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_mage.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_mage.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ace8e506619a7f5f07fd3f1058709e861cead3 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0AVp;3~J>*6DLvp3zc* zQBRrC!IC+7TJ%+IMjrtNMQ4^`SC&$DmP!+*Xe~xBUIv*@&b~1~ZHy&Be!&b5&u*jv zIr*M0jv*DddQY@6GCOj(1lIU9{_F1D{e1nW7yZ93{9Rr=*WX}$WsBGKd;4ESs%r$k zHk)d7FeFKGqME5}qc`*ErVB~SoYx%Qm4D%|27BPGOLf|FlP@zk_3A5hajdv=VB`7o n1p@Mo7yUnb-k3Y{-ZthbGudnoUhnt=w3@-w)z4*}Q$iB}2n$r+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_chestplate_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..e19bcea06918153cb1533a1f0bdd9e7812c0f06a GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AX3; zJsm~|Tju2W=*w4`q9Yi6JQ)<_S&H*mN()&kOPQj>8NJ*YWTfT04y^)eWGo5t3ubV5 zb|VeQDe!c045_%)d!m)`umO)t;Kx?w_xrO?q`otMby0rm;@|!=mp^1VY!ZIr=GHgs zf6Y<%2-H3r@`c80hZ2*P qdBK~XoU1C>OX_C%A9{D@%QoIE#%$>xC#On*yx{5T=d#Wzp$Py%8&wkk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..afadad52f2c93ee05328f02c8b891a97a52b90c9 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0AVZR$jSj)9(HIA3cA5 z_0AplU)+wQvy@g6y7Vi_dCGoo1XsUZN8h#85S8pmylVD`8yA2+Wuy~x2xImviz>Iy&A{wERgk)KgQ=--Doe~D)ejX8<9;w P+Za4u{an^LB{Ts5|F2Rx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_archer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_archer.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8e37d663a46a5c5db1211bc9af5914ad8243b5 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AX3V)i**&lGLUoNU2T z>B>^<$mpZVs3#tMwTD55N6hZ_BA^<^k|4ie28U-i(tw;ePZ!6Kid#tvdyu9qN(aF{S zZ=CwIU~Nmmx><(rCtLnv6BRFXnra;TvT^!1`9BOh7V|#8;W}j&$ZejkelF{r5}E+h Cxkt$W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_berserker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_berserker.png new file mode 100644 index 0000000000000000000000000000000000000000..9b73aec43fc80e1cdd8b17abffd5ca6aa5c8b082 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AVoU^wmLW6v(&${`fW zBN4zYX2QxX$Ha0qI$DsCN$gOyu9qN(aF{S zZ=CwIU~Nmmx><(rCtLnv6BRFXnra;TvT^!1`9BOh7V|#8;W}j&&?W{?S3j3^P6~qJ@3eSz<`7G!c0de z)hq6z1FyNKP0y4;MPBfPdr!kUSE9q1Mk8))-1o=E*M89*q@dCZ4|~T%ydui z3>U|v^jnGdHJN)aZAfFtm~yr}J UZ^3Ff7ic+yr>mdKI;Vst0Ej0*umAu6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_healer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_healer.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4047fe0fc9cc32c7a5dc754650398a6373231e GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C6zm0i1b?e5*XA3b_> z{rdHon3zeECSBbSeR`>nt*xz`=+=2aMT{jue!&b5&u*jvInkajjv*DddV3n#m>GGT zC(C91{$FpqId=0L4TkR%UMxOne6P`9&-?qO)BDyd#mz6`zWlr^ndREnCe}!SYb$t8 z?hv?GsbY2Lj2lb)Ipe9k2TznIn9hxjNi>uH!0!B6wys*%aT?GX22WQ%mvv4FO#oQs BOcDS9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_mage.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_mage.png new file mode 100644 index 0000000000000000000000000000000000000000..854d2b1121c59d5bfaff6fdc3c1276783e38ea3c GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AVp;Og`_ZNe07$(-!Y zQt8Z6tj*{n!KgPa`YJDjjE76<7N8==k|4ie28U-i(tw;ePZ!6Kid#tvdyu9qN(aF{S zZ=CwIU~Nmmx><(rCtLnv6BRFXnra;TvT^!1`9BOh7V|#8;W}j&&?W{?S3j3^P6}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/adaptive_leggings_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..62d06f2e315c13a8c7e4826e2d194855c52a2f3a GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AX3;_^9pnkhPhIXRxC zvXrGbkI~1IQBNoO@>K>I>2I?affO;81o;IsI6S+N2IRzfx;TbZ+)7g5D`1q8TrAq= zq|s&?b@1>1^L%<0W!-bWKUKW4ATD73_Uql{rzU)<73feu$Tdf~P3jHj4nAgOW#+C{f1n=5k|4ie28U-i(tw;W zPZ!6Kid)GC*e&=C3_kcU82xx=U@)hKA*En$O2UlKj7K^u50s0X5vV;N&XJ~JYM|XH z!QE=MLGu(dD@&-^220L5hEo;s3I2ghMs;se6ErseZ#eG7VE9DbQu4BZ9nb~_Pgg&e IbxsLQ03jMgf&c&j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f0ac007379ba542efe5b89a9413c94aadf89b012 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qC8z3Ln>}1NjNcFI4vW_AaF22 z!f!Lj^mdll8+lf}{KVAopZ&wzhmZYQxOXTQ*c>o>v_U-M-IWPdV(Y%Q31v%MtP)?h vY5oC!qy70$1DYL_cQqW);b#guAg{}q{3Ui_Sa(+&&=v+yS3j3^P6=F`c8yJ6Di8(YKZ)l8QU|73} VSkTG*Yk(ZpD!BAV6$@5ruiBL`*-N|Oq*7ts-GY(@5I5^I%P_JK9hTL zGPAPs=P#+5K!X@dg8YIR9G=}s19ECTT^vIyZuOopO*&v8;Bs-lw$bL2|H{j}lD8e6 zbDie{e^I42S60hx3DyZ0kHk21Ww<%Md@0AN)VO!C`^{~0?^>msf6Hb5weI|0?t?!c zt%(VWyB!>?;=mZjBOw;Y7h5*5_Tu%!1+pOw)4acKaNhY@>FBkcW@`85i6nc~ykQEn};{nty2*2;LY;g`=(dW-NL%xBVmg*bKKY4&)YI~mHgpk@4b7-Poqoc zgrm`|GiUq?UU_Z(#MZg)akWgst%%1(4-6QytZp6?UA!T{Gkl#(lnICQ*PDjxJthZC zo&SWrRBVpa2{XNVAuf&WXPCIYE>FH^^f+V}i_f33eW4-iUPov&%L5(A;OXk;vd$@? F2>_IAPO$(0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5067fdea287358c5d4f29c10b16e06f5eddb24f6 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`2A(dCAr-fh7YIqP`pMM%*Sr+G zc-4P<$C!Wi5fe7JZHSs6w?n~)!R7IV_VBkF608jA-D2XuzQ^AJ>SgeB^>bP0l+XkK DyD%W= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c842226f8788724228343ecef35e167a00f7dc61 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0AVZR$jSj)9(HIA3cA5 z_0FC7^F@26P20aiPu1CZzD7Yke|U|mz7q#ug1Gz#`!$<@8W>B0{DK)Ap4~_TauPjV z978H@_4b4^9d_VwkyM#?=l`;=OM?~f|1Own*Z1~x;MaZc*%Mc=mi8B1kBT()x$49& z=2o4RX7tE)xs!sY#6O*PXVSl~G+Q$Dx9J6kde`jd{UVc|^S|Ku6}Xx?XkW8=otjYh UpVd#ZftE3Ny85}Sb4q9e0CWaaqyPW_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7af9a4a6a5c021ccfe6163ae81f0df55769ec661 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn>~aIUC4%z(9cc!pxN| zKUX&W@pasP?s4VGA|Ae3Qa6~6d&qtHb(y_w)06;**^@7PdEr$4@|j=Tt6A+zi+I>C zramliaGP%K{E+hkgStmjHIom!mNbX;iXyWat+F*A|Ce83V9?oHHgTEC$$da889ZJ6 KT-G@yGywqA!9AG( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/adaptive/starred_adaptive_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9d19bb5869903a7180e4874e026eed17783e93 GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``kpS1Ar-fhC2ABLWB%3muCfc` znRIyd&Ccfc_9D$9ixW~T_iPh>?9}#<-R+-A89ZJ6T-G@yGywp! CHz3OZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0a4a502905d31f8959eaebff44aa11782ea94f GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=4@N#=qPsYGJWbL!*j; zAs#3)@dQf(kYX$e@(X5gcy=QV$no=ZaSW-rm3)9(gjJ%|!DRAgrpcX56Ao(4IgmAj zAxT1=L2v@&6DC$i9&tuDaRKEE0S$o>JWE_O8$&r)bcCwvH0oaEJmJB7YBM9}9R`Li X(OiE&$~GqfO=j?P^>bP0l+XkKhBz~< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1858a6710e02459085f6aa4e35c5d1dcaba1d842 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aZFaLn>~a?QP^dU?9L`eRchm zuXRg(k|utUQ`ZnwX#e4?@PI5-hj!j?s9%u!Fr>mdKI;Vst0L-g6od5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..513a846e3f43021ad9825759e246ce14b26ba7dd GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`PM$7~Ar-fhCE6Z5b-Vb#e*dv% zLm!@F>?Z}U_?SowE94y3c292D(3y1mBJ)HQ-yKPer_^MG6@1oMFfV+exTZ{mf#Fq3 VsHSp@(+r?#44$rjF6*2UngEK&CglJC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e656b16901193cd9a80128c3d84c09af7f5030ef GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0BJU+RZjHK#H*>$S;_|;n|HeAScb!#WAGfR+0h}!!41;GHioS{o%T*4R=TxyPrIVo)Yct9a6p}?v|Qr~z}(PmeMUCO<_=04N+ulk}r`)17g x#*@kwt~dURE6@MF*MjlmV%5N`JI@;2?OuKn*5ppv`y6N^gQu&X%Q~loCIExGM4A8q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..187457807f450404ba583a98d2e69c3d7550e1ab GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay(reLn>~q>A%R!pvd8zuNA)Q zYec8#j_kM#YJakXmERsdQ2cq1X3mJCh|7ReJ9=c~9VGPIoE9Nri>@eI&j N22WQ%mvv4FO#nSQIVS)B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..17f1e03299459a31e91fcf5560ab38e011ae1546 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`PM$7~Ar-fhC1f7Fzy9OD!k?nW z8WN9#*eAEIbf2hj(yc|#XZnSsyHzw?Hn3kyn-ZX|zQwasm21(oB4@#_7g?_lFf*(v W_O_J&z-paDdcAH@ObjLFfyoJ;=1~ExoI5GGzL#s KKbLh*2~7Z^CNP2k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5b3cd0cecb3e6cd20b504a9b6edab0facae26ad9 GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5@S9Ln>~a?Y+o(K!Jxff7O~P zUpGyfyhm!vwh0%`Ke85h==bFMPPr&qDPak&nO%Mx8&-7Q=el;2W#fOdpG!D{a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0d17f9c4ec366e381aaa224742d5e6118cf6ad GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`W}YsNAr-fh6?ohZ-e3RmzvhJo z0p-(a61>U#?`U}KaWvpn$v(89v#57Q)(M`%7O5t)32NqC3_JStKXQsHEdZLp;OXk; Jvd$@?2>_mqB0T^A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..0594c30e5d82e52e5e7acd1e7a13b71bcbce4c44 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME06|*_?H_+H8iUJevP-V zSb21h{VAX*V@Z%-FoVOh8)-m}x2KC^NX4z*E>|W71p%hJ4gdGw$n)>p$^4N2a@$!+ zzb3w;I#V__MP4+sR0y_+J#uDxM*K(JTj6)(7Diw3`63Y2>KnNE?hN(b-_1PyZOl67 StCeCvHha4IxvX~q?P=s>P~>5@4h=8b zyXJ|?_w&=0G9ECRFesLr=IuM!buejP=Zp@H#UgKJycfUJKG|15c%q0v`-WpK5(|&N w60|>bfTMOQkN%a2TZ&&o%aud6)jhSHySwK4sh!TkKwB6*UHx3vIVCg!0A77Hg#Z8m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/star_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..da5b528dca552c5ed3ae1148cd02809a7cdc8ff3 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`)}AhoAr-fhC2Af#b-Vaq<&@%q z`|CgcH~h(A)^jY~+RxRXaD~(%hS_Hoe9Cq-7+manDei2twX?6SkBQ;^T8p`>I_+G5 P#xQug`njxgN@xNABrPc3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..0ea068ef852023eee6b77184eadb0bc9c7ed5275 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F$m&C6egxm1H`Q;Oi7 zX~KWM#xJ>k zBeL&4{S72I+IymL%vHF)*kK WGv9DcU&#wJmBG{1&t;ucLK6VnnL0WE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..86738a95633429717e956b521df50add00275890 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OZYta_5bz%z#A_T zIJ=ruZ-^+cOrNlXfpLQ9gF>aI{xq9ShaGH0vZo!`@j|H?sGr}%Hn83!*B596gQu&X J%Q~loCIBf6Bgg;% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8049c0fc25273b458f6bb320a9f08a4d511fa749 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`L7py-Ar-fhCE5~#yB^d_98+@( zFgDD&C0UR@>qEWL4HJ_G*G<>|SKvuj?p}N%naPK@<%fl7a+lz=^dG-XRtjgox#)9&t;ucLK6UYz%PdY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..fb94ada8382d7e3f13c598d96ed3d4ec0396a434 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ErlB3P=yEED7=pW^j0RBMrz2@^oGcoj>XLLCx(fbT&I)kUHpUXO@geCyL+duFC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6143ea00593519c1f3fcdefb74d2f72b882db800 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FA(1GPoCvthtAJ_ z0S6C#$1sNQrU}Oa7}_Pc1iBPzSqst!1Ez01ZWmdK II;Vst0JNDkO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..d56e6b0631bf7ef2d16dcb9ef733023b2ff6bdff GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`p`I>|Ar-fhC2A6ayB^fn%vg|C zFPT;&v0t%#8KIj7z0_ZWsizC1|)APpM#b$WbZ$CD|Yp!E(g#;QH*if>s4H pzK;iU4%}b=@&80azmJZr4B<}1FHny7BriH?@dGQS wq+kZYHtnP97>=p=Gu}w#FpCwrz|X+&U_V!Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/admin/titan_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4756aa12cd7e6d395a0d94789fd32035e300ccd2 GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`_MR?|Ar-fhC2A6ayB^fn%vg}7 z;JR;?_2rhtNk6V!ILg2x-*VD`VY00Y&yUixuk8ij9LzazfBnb*6Ak@7IzRtVfb(HZlaN%Q34s&yF2Cg6Yf`0mTw1I!QkoY=d#Wzp$Py!@I1i) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bc7e5feb05e856353846c9a100e0e44a2dd69735 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>}v^>t-DU?4Di_pcT6 zB33TBTx4R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e462c88d0c067ce2499a3b742aea961cafe9ea6a GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=4)`{tNd#5zcuc?s3&h zcf)7t@CcwNV@Z%-FoVOh8)-m}nWu|mNX4yW1t9}z2T3lUfKx|VPnjgRg+69djcAc+ wXj#O}+`TD_A$x-01VO0-2M$QRYB(;(pd!Lrto*<25YPk$Pgg&ebxsLQ06hgQxBvhE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..f46d0c66714ddd73da67dc6dfa8a335b471778f8 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E@9@Yj@?ZKb;*!0C!` z-xJ}SCt}gTe~DWM4fY=A?k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa44b7328461078859a44e19d3b59bba63dc971 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn?0V>1UN>P~>S{FKc^Z zvzE&uu6_USh|aM6nRi!ze&=qE)?S_$4aLe^r`Gu7>=f_{X*zxU`C~1Qw+bRtd+W+_ zN~P?Pgg&e IbxsLQ0E*cKATBm`hyJx2Ha$mO0RWmG$f3XNG7CM#iA|+wQ dNe2-I2BQf=r77q46a!6V@O1TaS?83{1OS|&If(!O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..493bc4b2f79be9dc14b3902a55ca0e221e3e92ed GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>|^?K{ZZz`((LcU`ps z|7wFto3D5@Em@i0%KtLfso!5+WBTK&M@k`#??2?E>Q5Bo+4lZu%9o~_UIEf3v$l#I l6j8j-vSYz1w}3ytW7e3(v`)95u^MPLgQu&X%Q~loCIGZxGEM*h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c72d203f9398a6f6f7beefb7f1af6b3f8eb10532 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&YmugAr-fhC5}1lcz?2fU+w>c z5=Ye5D6%i&IOs0X;LF#(R)WjWU1m~fKD?vh?hZzkq^JXOF%3FL t=iNFW$d<(5sUUqKK`4YlNvDjNVfrGWGh9orZ3kMz;OXk;vd$@?2>^EHLgxSg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/angler/angler_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b441f35db6b0bd3871307a25e73232464a5509f3 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0V^%(NiH!zBX2X^aBX$J6Q8A-n~(4Fq-m$3B<<2xzf)Puna%2Up>csb%bn?Ed)-?a zZS!6EMdTa;qYWe8NG{AR-LhK!*5urV`AZ(j{OjhD+ScE0zVDY4&^887S3j3^P6Jg{7HSszcn!j%gOJZ=XSyw4q~72rvFEFvGmz+myv% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..9c5cc0a7ac2499b8bada697bbaa099aa0dec8319 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5#ibsUM$_II_JE2ryj zXKHJrTg|I(q^*|9rmdzR9m=HiitpiNpgP8qAirP+hi5m^fSe#t7srr_TgeBwt)wih z98BCZm<1XoPV&m6DX?9?#@6?ORiW(@lb*7{;cCX~VgkvFPBH1Jd$O_lseWgTQS}m* ru<%}GUXWit|GmtOO;gX=?b>o lk}Z8d5@uYCd?R(1fuVrg?kI~#?;D`u44$rjF6*2UngFt2FmeC@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0e1ad59d805c04b8f2da5cb104bdc24a184cf425 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`fu1goAr-fhCE5;nM8CD?NfuUK zar5puksimKm`4@78%!_$eg8hIIgi1EN2UEfgDGp~1{FPVhpPf+3@Oqry#nlAg1HQd kW_1n`!j)_n_3CZM9T3Z8ZhyP$nf;R>fxTG$EjB#*!evUa_9dpVY5!&zg>scm3I{Mx4q-#5w;dmddFO{QFP;xIlK(I zXHq(aEdsVqex!CR*0f%0vS+%V%z^jJpP0S`udrjVZL9VF_T=7!Z9E@K6>l)=;0&t;ucLK6TF(@1#$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..40c88c615c8eb8eed0f10fc6225c663d829865f2 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn?0F?R8~5V8G+5t#MtV zqxrq^CatWzdow=nar)r=^R(cj!aNB-8Hc{a*JnByjSeTpu4A|uAgHv1p<~G;=X2Q& uCpgvqoH}&<>zV?_ol)y2e4X}wIqTwvXdeI4hABWh7(8A5T-G@yGywphA2%fc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bc03441a9c0a0e4035fe4f493a697b3fd3d96052 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0y29{#R2?slfOCb~x2 zYHAA7=hBZZ1xhfM1o;IsI6S+N2ISazx;TbZ+)6&cl9QRq!;_iG>GS{o-Sh;8#BB*r z8NyVjv#7B-wk@{n@lkMHcC1T_GvTS0Tbe*Gr=|lV7bC-cQ69zDmQDIVlNdZ*{an^L HB{Ts5DjF?f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..b8f82c6000520ebe6b4144887030f36dce150cdb GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2_2vlBu*{9SG4%IUh> zncAA@R`aSGX{)8OX{#wnhcYQ`XWv^7RL58n(5$^B+f`%6#61n%N}EapwRD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ed918d8ba1dbd8f66f93ea12e013e0a4eea17167 GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^)r^Ln>}1JFqT3@Woz>-`VQ9 zeT=|CXNKkfy$>`6WGbBJ^kob%5Lm`=;*?_;gD_7EmsR7&t;ucLK6UT!XqC5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/arachne/arachne_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f577e9470e7d37423ca49b1b4af90b7a2173f3 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0y29{#R2?slfOCb~x2 zYHAA7=hBZZ1xhfM1o;IsI6S+N2IN?Ix;TbZ+)6&c=G4gGve`;oay3hX#4)F?Q=AHI zlQ%Bn>NuDtGcAiJ%|dm9qst888$3b>ehJ@@IKj#w(a16J#a)kwKvNhzUHx3vIVCg! E0GHA)9RL6T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..9f6bcf85c1f81bdb7fb08fad2a34d4e7099adbe7 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAD@5W>q3q=#-c#0W7reNP z85o{UHPK{XkYQl>ymQ(cpbEy4AirP+hi5m^fE*uB7srr_TXVgSG9EDC(Bb>7e<$XT z?3~H(4OeCL{Y+=*h~aq1;=`T5{(z@}@rZ)n(G3P?mV37NVgSB9a3 eBRiJ=Bl8<3#_7G=u6h8?W$<+Mb6Mw<&;$UDL^z}X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5268bf11b8f346f62c545dd6e947dfa929be063e GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OT;|*U(dq5+(b^* z{D1NX16B@=gW7vP*mER*5MT;EC~&O(!-Odz|Jj{b#1)M^7#P?b^<|3#S55*N!QkoY K=d#Wzp$PzUbs%*B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4956f2270410eea9b26ef9387b7d6d9383de7bf5 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VV*9IAr-fhCE6U?8Xwy8BnvCA zh!kGMu~6dRHIP70Ig&! z3GxeOaCmkj4alkTba4!+xRs>9v_eCB^$Lbt6S!Ge8zk5ouB%k<*zNrPzsIH>SFNWn zj=NWR#)UP-Xs^G!pjg0_lME|eg`I@78qOY@*QTK5vf$7AZL=G4*d})s?adP3AKuV1 zqih%di(t`eehD6RjxPQO88-1PkKZfK(hX<-ufOQSf9-RVJy@6JglpUex`M&e)z4*} HQ$iB}i(+zr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b921d9820e9dbd0a4080433c5ea2571dba4a84eb GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097}1FJSw@&u-z8_m4eM zfs@_9E+j{B!XbtkM#c>?dmh~V|MdTA#jXPB9Z&vqw*(6^TrHIUfByG=uKkN{{^w6L ze*U}u%7%kdG1ecYYoFKu2C9*FlJyd+wL>!yYYUU1GIp_)78&qol`;+0ASQQF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..0f5567bf5fa32652e69715f473920514946fcd68 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`S)MMAAr-fhC6+m~H9oXA^VyQ- ztFbRwgZtR50A`kk85*}1OVm7g_J8*OLa%@9 zOcK4$`dpoS=l;1rp2)N8-|=(FO@{LtJz4TS7#Y@v%ezY-d+P+$%HZkh=d#Wzp$Py8 C^C7BK9bkixOccUDGCQ=5XenVTWULA6s1$tL@`752E?U`XDf=9A;IM!Z1MVT(A+ k3B!f}5AFvg|1=mFxFQ{QulT0m4>X*?)78&qol`;+01SXBY5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_magma/armor_of_magma_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..f661e3bee84dade38a3d00506594bafda6369709 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eD?~z*fx(!8;ptS9<0hDxgxvk|4ie28U-i(tw;0PZ!6Kid(&>yoHzz zIG8SQ{girFe{WW1sjOJfzK5U1{s!CMJm9vB<73R0mc`C4q8_JnJXs~W_}1FEIY`U*74_WVa0l zOC2Q+Djn~d{eNP_j0bP(-`J>0Jm#9=^5MdPL;qP^SN&i7(ZKOyy^5GEBZKu0)vo~x SY@2`vF?hQAxvX7Fi*Ar-gIPCUwZ#DM33Q4{+P z)=%I5t&Wup37OBhd99OI_3Lo2?`l?ax_b&+_dk2D$PmJJhv6{8mYqx!gAZur$hDfX ze&{@LTHQnW;Cu$o16EVG7@n{xglo(f_{Monf8D#5|H;s3)4pGabbwYec)I$z JtaD0e0svk7IB);} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c882cbea500256f1e8ed73cef9b4f10d1bc577b4 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F%b%H#iqy#KEcdTF{E zDjH{+Bx)y3V6czfG<#=$+4{#-OxsTu$N<$bmIV0)GdMiEkp|=hdAc};RNR_-qMec1 zkb~LbB(K2l_p^8KeJJ6RcQ!h(}1OB5!Ys(<}o;nuJJ vQ~pa#>ijSKUs;>sqoL?Qkp`7^Nd^W>N70wxCARee^)Pt4`njxgN@xNAD8?Te literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b319d559aa19e7c9296cf6113e2eeec8b51e708d GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0BI%#gt#RUOQ<5gMI9# z**pJV$ov2L;Qv(~S&t0f0HqmAg8YIR9G=}s19JR5T^vIyZp}U6D0akvgDK#MO40w{ z&-QjEzg;zZ8tbFuzdyv695^ZcJjL9r{E%Dvh2xpeGd}D(*&pcA%Mts3663PaMXHfa jFVC=?HZN}bplJWRnpsii?eBj;qZvG1{an^LB{Ts52%|}k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..68d776ca5829676560de9e469e439bac9646d4bc GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+H1^VT%`{1TT*Z`} zoYB(KzJ2=+M@RSnt33W+$ov2L;M}?MH_hIuoiri8Y(0a0?BB;1mI1XfmIV0)GdMiE zkp|=xdb&76FxzH$GhKE5^`#LzE|E0HV9lW zVUdT=nlovqERW5({3pAwh9Sb7Us)0GEjrc};s-1CJ0m^Vw&MzQyAftE9Py85}Sb4q9e01Pu^&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..de1ce2aeeb5ffbeb46879d6ee0da1ba2b9b5d494 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1OXw+l{6FRYjU&td z__uUK|KIKw&LF;gy>nrw!NI#cAGw=)Up{kDVDW0q==g0o)j^^29y0^W4YlB)u=SUK P#xQug`njxgN@xNAGZQG8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1fddbcb3b3bd810927e008ee7dc80467100cdeaa GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0AWek9}Oll$@N=($cRye!ikpkl_7AirP+hi5m^fSe>x7srr_ zTS*E`A3lBfVALehaPH}$j)e*=OfMeuU8>)0c%o*dg7qf3_DN}Xc3d?)arRttk?!WK z_p5C7HSQI;_v^IV*%>dl?N>Q-xZ}qGCy|~mZHsfV#U0i!!ZRLS<=9bN|A@VkTTbZE S*14BK4)t{Pb6Mw<&;$TAj9QZb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..60424e87fd64f1432474bc52a37682ace9c3c4f1 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A_{bobJ9%`aQ8oiu^L zKDMQ$eeT@(+qdu7G<)a&*9S9A5)BoN|6j;^T*dT%l}B=NhV|~VPk`DOOM?7@862M7 zNCR@BJzX3_DsJ_jIx6a-D8hW9FVdQ&MBb@0Iy9`nE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_the_resistance/armor_of_the_resistance_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7ab268b8154992e9394d03f0516a293c6853f3 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6R6JcALn>}1D{%HS9r-^)Wmc1> qLk6$d7Pie7MIDwbPzg!7z`$_ysFlH{XRwcr4%W~Bs%9(+@(X5gcy=QV$no=ZaSW-r zm3)9LY;9C2n@jQ5ojX!w7z~4AV(uL1>Fe3XC(xY!Y*w(bBhR@L+zu=$AI{xla8by$ vcI05?XcQ1I(3WNpoNzENhQTFb4I6{iXVJIE*uUljO=j?P^>bP0l+XkKZ9_#A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..52e0ac6e7da8cdb807126b77b63d801c54f98511 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7z>>tAhEI2tRFmzTHK zK_Vg|!rRAxi-eVVJLn>}1FHq+A!{1~u?PfjC z%m4rHH@6Drgs?g+barsGm|X&7O!eRjOVXObA=aWfk0WU@^Na+A08PI2heQl`Oc@yZ X=lO;`5jPP58pz=3>gTe~DWM4fshA~V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f571d6b8a3b022019a53542773f45edc94d83d2f GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4wWc@Ys2-ah`0j*b@Q z=DNDNDk>_+X1Y29fG;7&+LC{0dCFbPUZFbMKX sND@f!O)yUoNJ#M32TEz{A6P8Ou*Huh#9~>c4NxnCr>mdKI;Vst0KFI}I{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..6b6c290f0788c50c52f00a75d3a904b77aced4f3 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A{M;XN8FakW(;A|k@u z$N$-B{k;wnj*gBN=H^=@taNpCRa8_GC8T7h3lsxYGnNGT1v5B2yO9Ruq~a?Q3K`5WwT|Kcv3D zXPV(IH?dP3>zm$Ncm;l8y>r+3nmEgIxmgUeCOz==3HXwhG*L%+V#4Mrf^|o>xliup pbY(spQz(0I>a2_Dn!CQvlU`(-e(QVFUOu4t44$rjF6*2UngFH`G)Djc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..effa16e951d77dce352c96dfa12ca2346dbec8e4 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0}_5#B!jj*gBN=H|M( zx+*Fvzg@UmfD())L4Lsu4$p3+0XYtyE{-7;w~`fvST;DlNZ6bbEO1upRgRF>tAhEI2tRFmzTHK zK_Vg|!rRAxi-eV}1FVN=r)87!WH2h!v z|NjC4>sXvN2>HDH@4(Yyp!$Mg1xp&6nYP-$<4+V1XfQB*{A|K{%*5v=P(OpGtDnm{ Hr-UW|k;fw_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b385f4d189451b999c5df2562d6d01397afa6514 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k)AG&Ar-fhC2|r(o;-c}x4fj} zPrvuQ+sFU!@9H{LzlW{iMMp=+|6RLw8Sq?UF_&1*Xwd5roiNM5z+>J5MzLqlcJMHq ud}z+FLNJY6QqMu6DO50kr~O$V1H&^p&!VJFH%oz*FnGH9xvX>tAhEI2tRl*Fhp8 zBEs9pe~W~bqobpRxp|_5l&-F>ii(OG5AVjLTnV6R#*!evUK29$2c@QjBP|AP u>CYGyn2aiX^%w*_yd+v2dNLDQI2rV71(vHWmM;Jr&EV}1O9U!>`2YX^`~U3! z+|!js7+U!nSp{a0nFvo{gpySXoAqEESCb#FJ_8a#A&0+9# L^>bP0l+XkKVp}6X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/armor_of_yog/armor_of_yog_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa625e56730c98b997d84a2bda6c24d6f4c8351 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0}_5#B!jj*gBN=H|M( zx+*Fvzg@UmfD())L4Lsu4$p3+0XZg~E{-7;w~`OAO<`f3>R=Kam60`zX~Mx*NjYyO x9XP;}!llW?so*TYA@PCPY&wfVk^(0K!+k4O!?!ozngI1Pc)I$ztaD0e0st3*DVYEO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c4375a6d8cd6416ad55c0cb6c185bb65b53fc5eb GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6}}|1;J9XZKpoq>{p; z;>js(CLkuuAm+dzq|eSP!NMizGSNv1sE)BD$S;_|;n|HeAScYz#WAGfR`LP%8N3QJ z8eL~J9=yPK;z5B?LRcn)(T-^r8!B`e3|C26Oly{WD!t>hBaiY|-aD?R9Oin3N$(KX wmNeMVx>S6_^rdPB1%CPo2?^`xG#vM0P~sA}&y&}1OE@XKv0uhf`Ru_Z aYc7WNGS*PzmJ9Vj1q`09elF{r5}E*}))c+~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fb9cf07a2accaca38e493917e640f4ade011099f GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AXQTFq4dpHte5K}cVB z?SCE>PZlmg0Wn#2UI`|Zl=E}GJO?UbED7=pW^j0RBMr#$_jGX#skk-w#8E~ELk{K( zODulB{~f#jXypvumKT>b9%DxlE}p00i_>zopr01i$<5BU{UHhM@{y)3dY9TDa$o9w{r#hSDF+(-10LdgCY(tB`J2fu;qX+}d9_QW?W>u)_?gAUw7SKC PRx)_H`njxgN@xNA;kZTR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae78e66c13f333b446405f4f14d7cc4d632f998 GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j6Gc(Ln>}1FJQCy@&Cd9N&jCg zQvL7vC_&9f%9+!NF>kYHF(-#|#FHPaQ`;{KtzbRO!@$rRrt14eCiDeRJAJU zHsew8)Lr|Zss29`3w!(IW)`3d#*!evUheY6M`R2n^X$}3TP99r>mdKI;Vst0Gdul AMF0Q* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..36c42457f6af6a13c8e71cd52e5ea35e3f09c988 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AX466BONV-V685R+x+ zmEckFWDs*;_gc+V|39W?^(>$Y#*!evUyVr@~iz9(nIb+gTe~DWM4fjQ>2U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b30d411ff241edda7333abec4bfa5f829553ea49 GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Bs^UlLn>}1OZX|gslQRrW4DUI dOo-8qks+3YYo)PrW+YGzgQu&X%Q~loCIG2o61M;V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/aurora/aurora_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2e6ca874252a24f131c46546de62ef7365b9d2b4 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AX466BONV-V685R+x+ zmEckFWcOOlRR90HbGsoVV*Q#J=^B`x@pvSJu a*yTPuGfuv9dX_uTPzFy|KbLh*2~7Zx6*vq4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..cb844139c35adf34d300e2acab404b092fe790bc GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=50#{_C#&&s6`P-D@?g zc?Xk93a7N0fS4?Um;-~5K0B`j3zs0v6wbXsrHmy(e!&b5&u*jvIU$}djv*Ddk`J)Y z;8mE>=sKhE;04AL3B^VUVV(?zK{63{4)AQ}oTHi0cACXcT;Q-p3e)n{h5^ebd}o}e x+r`GCqb15K^VW}#Cq`RJLc(H~*n^Ei42`$>E?D3AaRF#PgQu&X%Q~loCIA!pJFNf! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f3b4f6c2ec105c84254ba6ffd5274f3bf6c5eef6 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j67W&Ln>}1OE@ifV!w<-N?fnu z!D22M7OvJt*2DjrD`#-=9TI7{DKYJwQ=kF&2`N7Y2I&^9so&2mvIgpA@O1TaS?83{ F1OT#yA5{PV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc614189fc2352379e70e40f69c7a7782756fa6 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=50#{_C#&&s6`P-D@?c zw3&dIEQ63fJFf%_mteqD*jg5`BJv=-snVBaDu8~UNN^`lh_cmABm6$8Gd`TbT<1$izGp3x3 mSHAo^;r5UJ|Nl3nSTg9=Dzuyb+NlS$ox#)9&t;ucLK6VD3Qs-& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a8f5ffb74811eed87488ae9ea2c189174b5f0424 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yqm)Ln>~a?LR7cKtZJ0T6J>C zteBZCN3|OF>rL1Crt>NA?#7_kvEQp-Sm?(x)IDYrDCTQm6u7>~IOvL)a;mZ-pFBrh z)7%c7Bj>CRK8;jQn0RaltIoci%oi3ZGW?H_4LuND`8c^`E6^$iPgg&ebxsLQ0H}2~ Ay#N3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..683c767ec2c5fb4e0549b9e749d9567ee2d4dd7f GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AVlVQ1%+V9C72!X?Nc zq|YgB#_qLRKulKf(SO~w|C#FlufB5qB2XP;NswPKgTu2MX+Tbxr;B4q#jQCf-Ij y$@TEkBL^eOcmiuzXt%9ic4-2TMxk_?>3nWWY^>V*SsVDNPHb6Mw<&;$T(J3!|E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..6335257a48b6b7a4b07cca5f2d28dc6a63b19100 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ES*`=6=)KfBjz7A`?f zX*0n`{~3hz1;k`|R6JSDJD5~b7{naRX9QjYDrGDQ@(X5gcy=QV$O-jyaSW-r)!Q4$ z*Py`Tyxowc@Vou0`HNP6nLqu5(`>dB{@5pXC+Ih*_4is{ynlZGgfk^V_iYr!R&6}v z&$qO3r4(;h}1FVN=r-QN(g)cfE0 zrb9wGUJ92uR3pAjZzxrY$l%&A@e5ybq(<2}Cd;A=3=EG|Ete+Dkx>U~XYh3Ob6Mw< G&;$TqUm@fG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/burning/burning_aurora_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fab38000dc0a8788dd9c11f25ffa24612f82edff GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ES*`=5nNkW<=B@X>z; zA$=YdPXRGmcCXb;_5Z)#nYj+Ag0UpXFPOpM*^M+H$I;WpF{I*F?@33o1_d7Gi_1h6 zzuRxHTfKSOehH2v`V)^IU3~v?&6j7BHo7i)g8YIR9G=}s19Ad9T^vIyZq4mG%E)ZM!(4jouejdIKWACb zUXtAXfBlQCclXE~ykl#9tQEw-19^G^Bn gKW*T7^Qu95i7_j$*+IsiK(iS}1OE@ifV!w<-N?fnu z!D22M7OvJt*2DjrD`#-=9TI7{DKYJwQ=kF&8K-cjV1`L@Q49=DItGPS(l)<|U!= zdbd>qg&0eM{DK)Ap4~_Ta%?x7$qK z*)3-5yKZDZm=(&fS>g1W)z!7Pf_J^yna}a_AcysLhQ`lpMXv+RVeoYIb6Mw<&;$UG CJvKoA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd95a048ab79da7bff98c319abe5428fb90ec6b GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVVNnthbVE0sh&h<}@ZJEbU@Qsp3ubV5b|VeQiSu-E45_%)dtxIavm%32AmfGN z|EG%7ZWHhg_erVw~NzaJeuqoll;fzF}3n!IM5~rPgg&ebxsLQ0EIV3 A!T~q^rNMaz>_2Umu@L+x&3v zCwr$G)lCsmM=IW%C~&IXDVGxHWBhq5cfudP<|vD@Q#mu!cG_3PZ>zt0r1h#H&{76Z LS3j3^P6bP0l+XkK24*!5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..46c361733cf08041455fdcc41dfeb4fbd7253eea GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ES*`=3F~fvNsKlS&G! zc?Y}KYQabUd38G2fO3o_L4Lsu4$p3+0Xd$YE{-7;w|Y-F@-Zm#I9+5~_1%7>vFfJp zs((FKn(z4JZ1Q!{zQb*YgOC0ajNPEuXZRw8VTRO(iL)4%Zd)={>Um1mlo?WH6YPF4 Y>~v>-o0rVK5NIfar>mdKI;Vst0K(Bag8%>k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e5986b5150ce5f245a2463bda409259c3b8b891a GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j6Gc(Ln>}1FVN=r-QN(g)cfE0 zrb9wGUJ92uR3pAjZzxrY$l%&Av4oF#!|lWW4&Q7(HIZT6VwbD41Nv_QwKI6S`njxg HN@xNAv(6>} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/fiery/fiery_aurora_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2c491859c6fc4ef7429b12588299a709becc2d34 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AWY|IhBVTJX_--L?O} z%xzx?6k;q1@(X5gcy=QV$g%KraSW-r)q8BA=m7_w!xt=;|5ex1xWM|&RQ|-ecnMq8 wM{Pke{@1yDSlgpni&pzp{ZgFS#eBI{Tt=O-nVsR+MxYrCp00i_>zopr06pn1DF6Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..e3a4f7d3228dc7284f92fef21edbca6dceb68d60 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=50#{_C#&&s6`P-D@?g zc?Xk93Xh5>r?i=Xm@I>s1A~x0JFf%_m!NBYN+(b?V@Z%-FoVOh8)-mJsHcl#NX4z> z1MD++6=pQL&S*S%f$>B_u~9;pCxc;-OvIf7J(=7)j1Kn96t75ck~lU|ykfZ&b1B!) zm{iXp{QVp!56_&<<_|UsF<7??8EebuUIALb;OXk;vd$@?2>_>X BKdJx# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e5360853550ef7370d731bd8fe1b12df9db23d GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1OE@ifV!w<-N?fnu v!D6n40*MF%9-YpG4GWfT{yZ*OGZrj1So!O8Lz|?4;Q^P|C+r*Rrn%oVPZZr>{7A`# lVPZ`T!>Z&N9-`uV7|$3pmRoIooDDRY!PC{xWt~$(699O(JWBuo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0589ca1a8d0be97b0323d8697cb7942a08ba7f31 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=50#{_C#&&s6`PCG!@$ z*J@VlURLuCCY2OUX)^&aSq3o&1|fZRUI`X1K_(XV%`=rXfqEEAg8YIR9G=}s19A#I zT^vIyZY3XJS+h`{ZvXiI|9?Y@CByP^<@rwMf4&D=&fw|l=d#Wzp$PzCSW$-n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1a22f3d0b1d37838c4cef94fba5024a870260734 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1Enu_wA%k-g=~WCWjKNF~&;Q~N?nt|+v%z(1o;IsI6S+N2IRzgx;TbZ+?vzf&CBe- z;bgm4|IPmVmB;ulOmCT>ek=Y%*>0VS&y0?i{M(kT)y`DZ(&wDi{*aSF%zAozg@8@i zoH?)8w#vn>*z(~6`_b@mH>-_tw4(yJYD@<);T3K F0RXVDL>T}8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..aa47b5074df712c9ee5a5e6578e73f7668da2145 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ES*`=3F~fvNsKlS&G! zd57Sm|2!(5oYH12T!I2(vJ67{mrq!Ov@wOFCgm)U^B zIq}vR+o~CKCc5BGY<||t!$oq9qWMs*# rt!VK-U1)!~Na@^`H}CIVX1D+RmF3{qSrTSIvl%>H{an^LB{Ts5`ME(! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6e81136a388d6ec383d6b1ec39689caca5981f0f GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1FVN=r-QN(g)cfE0 zrb9w1sy+s7GR;ywoGB+0FUK=o>r7avdB9ESfCd9Y2$%ZxQr-R~K+O!Eu6{1-oD!M< D?4%$; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/hot/hot_aurora_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e403ce2fc3395b10ec28bc95721217c186d79c6a GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=50#{_C#&&s6`PN5zv< z+Dt%9mO)6Lg-dXEWn&Rgnz1CvFPOpM*^M+H$Ia8lF{I*F@&UFf4Gb>Ek_H9_+6D}q z0_PhVIaensFlmQ{Fept(TFO+W%B;}5)`qd8fv0Z^n*vj&IE$h}LMbnUlFl+lhUF6M VJIl-a9Dyb>c)I$ztaD0e0s#HlEu8=W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..7674b8eebe3b7c5deb5674b291205555e2e139a2 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AWY|IcdP!K9MH?zLLz z&ws&3|8>{?*S64L1IjU$1o;IsI6S+N2IK^Ix;TbZ+?v~Wl#$thhq?6FUva&af6lU= zy(GE&|N0kO@9vQ~c*oZI$ZbIdM;n>4I8MzSr}(PxO_#l`Ir;rF-@CDqTWl{I=biHD gf7-zF=2e6A5@S|gvxAI3fo3y!y85}Sb4q9e0EPfSj{pDw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f577e49764f295c9e7d7a6a1cf92591a71bcc43f GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EIeHtLn>}1OE@j~Y`=^{N?fnu z!D6mGY+O$pSwH`4uAIRYcUYw1ro=Qo$G{CNXPm;Bf*B^sMKLf`h8r)9TzG8@&@&60UbckO?{ zNB@QX{Aa5F&!m!aN;R(?D9u-qV=;qNBaeR7!*N)9KbcATA2a%#JP@^Wvc=QCr|^J<>+ wo|u@V+aN2JG4DdmhCb5`LfQ4H*Zyyn|MG>2FC<1`7SJXJPgg&ebxsLQ0EMhYUjP6A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c13da5412ba2806bc96c3c03850c4a9b093557a5 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCf@!Ln>~q?Q7(0FyLXaF8uyN zE_S)G>-_VIhnShvZp=DgSn?-u`IXmsLVvAu9iG=Q?!J-nh4s)Z-o_RulgPS)b9}ju zdKFR*Zbw0NS*OE#PUTFT(* L>gTe~DWM4fKIA;* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9b023db095ccd1eef46dfa28cc579d063ba921ff GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1<`;03qJalJzX3_DsCkoVE1uoF&2=vHZa&A!7O=3L6BMCV9J3t z49i4VTc;fGQC3t<-C&l+s>U4BJVR2HX8{lMiYXH{!?YPK&$1-VV|4Wf8ph!1>gTe~ HDWM4fr}HnJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e7adbe35caee9b33d37f3cc95adf5b64874ddc GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07j^^q)y3MR)CgR`U*a zuhmTT|Aqeiw}0H11(ahf3GxeOaCmkj4ao8Iba4!+xYc{Yk&i)<$LS)|s_*t2ja4^& zSN-d`(tO7!XOpjs_8o3J9DMYbVC)9HKEoF&3^SxQOq|8AblZ}tQqNPerp%Bsn_%~Y ZVW&Iu+q`7}1FVH^myT2h~sr7&T z#zTHNUJ92uR3pBWHYmSi;A=;r8c$hi^8Yn#gc%uSfA3^Q==q?F^o-elF{r G5}E+S`X&Yd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/aurora/infernal/infernal_aurora_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..71ad9e77750c504ffe5f9f742808006b7f9b2bcc GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0ES*`=6=)ztErmf{*^s z`X785D8yJ2;RJ_Cxs$w?bGeHE8`9NeDyr_gaVgzJG7LldE12Ui<%77$ygHP7tG-B z>_!@plj!N<7*cU-&WWRq%!WLy7t$rvcK^2$KRl;;$$7iodPiKk7CP@KRrkyDcFB0} zEZtz>=dIv#`d7rU%s6?kmIrGm{`oJg@TVqS!*_P@GbP{XfNeopORp7mu9$Ak?{P39 bg@IuuD_8by>wm|AmN9s``njxgN@xNAOOH?c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..75ce56640800c25aee8e3dbaf5cb7098e335ad64 GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EIeHtLn>}1OZX`~{lDn{)BlM! z0@1JS+nV?mD9q_yxqw-%BSD!VfZ>F0yCy>vgRpZT%Q22?0Za@$4TkKt&Ij)S&0z3! L^>bP0l+XkK)d?X> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2e42aa8dd6c7b6c505171009a748c933c9ac1bbd GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0*vfq6&gr>!gxT+$u6 z+Q6Zu)T=`gpj zJG`YW4w*AZT1PWSD5o(??w%&L!F?^85tjtl4aplDUkT+TBs>sENk|BuCXkR5;+K$6 peA@Crv5snE8hfCt|MX~__7k}S3ol$dlwazEAfcjsGjGt}J zr?edjJ@B`|dcku)llz(*4VJO@`0(79?#P!>VEpgC;w|q{HkECw__P_f#e`(9-TQk} z$*sklrPDSh*EIYqO3UKkGN)LxRn9=m<$9|5lGKf7uI=q#qfz^o^(Q0iu^F8V{XnNM Nc)I$ztaD0e0syBQVhaEO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..00f381478fdf075173f384b34646bd79c51007fd GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn>~a>2YT~z`((Lv02aN z2$R)^pxEnspKm^?efb|t;Rgxsj+Q8uH>gTe~DWM4f*4{Gw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e4246120255af5e96123946ebfc6c5a733f33f39 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=0*vfsv~X99l|SQk=ay z1mg-+tD>#415C_P0)3*TlbjSnEtS-~ZRW|i-2^ITDhcunW?1Cs&Ho3;OYwAZ45_%4 ze1Iiq)kPkj=w=}aiz(*}4CVx8B|Nx!MHAD>=#h{@x=p? zga>;jUyR%L>J7_;ltY(TRz$8baAsvaaD|02&D-GdvX5tWCa}G~vs-+E4m-pD38Gsw S?_W3wa;vASpUXO@geCxJ2v0u% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..02fdb3de2c7e43013e3f7d2352a33f849c9e7d23 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0E4AbT>;0j4M!$Ty2o# zq>vq85^AZ`lHyzyZROP=xH8^A&D+MIr8I42dEU|aflIpkeD#W~wKr-nZ~FnnjA< zX)H>=7qxna4g1O^ZJYS7UN6&Hu=GN(<2lQ@TtR*xLk@WHEN=?Sww`KW6j=4DpYi5D W<_*6}R&@g{VeoYIb6Mw<&;$UCZcl3f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/backwater/backwater_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..07dcbc04b69a49ca355c2cd24c8c30497a39d08e GIT binary patch literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^`xMLn>}1O9U?XQ-A#br~jJ& yFW%s|@KK)IGkwCR{W7l%SfqU!Sr%!gxT+$u6 z+Q6Zuv?ayat3xoZK(#8`Dm%c$EG00>Ng>oyNzL2F`*NBOPzzH@kY6yvB0q2bKR}+h zr;B4q#jWH6Y-w-q$#O2TR6ccjIU9rIo{dkhMyoSO*6c1{d#jT1$d20gZ|||6m?aU* x(!g;dA;^e9NufE?lCh(KM{Ya6!x0A_28IVZB5GmDSs<4)c)I$ztaD0e0st{{K-d5P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..aeec09baa188be77dc040d4bb2d82d427aba2fda GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4A85iz0u{vJ+l4wjC_ zYWDhaRyy*gnlhGZVg{-b>N5QHM_2sB=wOl@eR~;I^s4%B(-Negt$2(Le mV$LEngAEea1`V8d7#Lb=gq{7lH{Asq%;4$j=d#Wzp$P!W2snEH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a0ceb22b53c353e1457060473dcce026e841db1 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>}1FHr9I&)>u$)>dLI z(9|NBW5TN4C~%BBC^2@D>eWC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0e5b26bfd16a5dba99232dd271a41ec4e85ed2 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&YmugAr-fh7br@w{*&|jKk?=l za|Ke_i)=Bm0@{C%%Rux+9Oe()(kC^r>y=Bw5Wn+NL zyaN`Z#ogrzQpOVnt{o8F_-6Ot|34a^|Ci-}1Ens5^aT8-_Xf_Z@ zz05Z$Ik#cX&Tu1c?Tg{%hksVe`#zepUUZq1vrc)#!WUdEil;RUrUyng3LWn`ljt0~ z-C>L4mlS1d_19v_hYT(A^DbFu-MYP+>){*DfNd3Q9KY2MFl)>_X&c0}=U?aV*;ea( WCd(!tV%`O`pTX1B&t;ucLK6U$c|L^z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bat_person/bat_person_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..918513a5c7e969ec4b23b0fb8df2ee2a567168fe GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2}>7#N=YsV^@`i;EEG zVTcL!XDF-zin%#h+E|$OFfbJRsQdz|V=M{s3ubV5b|VeQG4^zE45_%4ynvyA$?&$1 zf^BXZQ$)h7(@Y&c$Hg?1Z%UjJ;Au7rGFr&Q*}PmTF=KsuJol{JgB;6M?E3OM?7@862M7NCR?wJzX3_DsCko zU|VJ}yP_$>FWpsfGN(e@#03kCW;|Sz!y@Q;a?Ufhqz}{L8I%N+zc2|b>}1O9U$X`!A)?^S}R$ zTW|p%hhr0m*+;blEYA;#o;kW~!LNF5AI1rxy=xfMEF_mPoX9$u#N;F1B!20{r0a;<7E(T9mKbLh*2~7Y_xG2p4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a0444e2265efaa4343f96477e65bd00d241cd914 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cDXr5l4w|`c``mUh= zc?>g3Y}?a}`#n4|eU*!hj8Zi;CJQqJNJ~44iPa=b(+6r`ED7=pW^j0RBMr!j@N{tu zskoJVfcuirjY|$Dvx^va2Qp1K7+2T0eGkKl2d{S=xcw1G$Np`|zs@RgTe~ HDWM4fiRnqd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..06fd27d67be616c311b813c5ab0754e5cb2d1f71 GIT binary patch literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ogvp2Ln>}1OB5-*wx4o@CGbB# zgJKBd4B4;pzVE;M*L860cqFEv&+W??A#jXYi%nC)lYwE?85Q1Z9wr}v`WZZ3{an^L HB{Ts5+oB$R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fdbad6f7f4ae836a9dfbdf48a5f3fff6cf4c5734 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cDXr5l4w|`c``mUh= zc?>g3Y}?a}GkujO3o~eaV*d|R!B`UH7tG-B>_!@pFVdQ&MBb@08J}9V*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..267523068664f6480cadc19a8bd8097586f4f774 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cDXr5l4w|`c``mUh= zc?>g3Y}?a}`#n4|eU*!hj8Zi;CJQqJNJ~44iRtt4y}3M98K{S`B*-tA!Qt7BG$1G6 z)5S5Q;#TqjmOaMlMh0i*R5mu6@14|`SS2}O}1EnqvrWMapr#=xw| zbLX7moaNR#`erX>dwE%Cq1}YzPg*+Wr!XGrVAB{OcF2lAIlGoRGe`9 z)GU?{Op|iG+#9yL9A9e3cz4dJ%S+98kF6ClPqO&`?`~sB^6BHu&ohA5F?hQAxvXg3Y}?a}GkujO3o~eaV*d|R!B`UH7tG-B>_!@pAic9$1Hs^O9x|SCXWS!cC!P+jDsg7 g3>dXomIyL1go^XLRTg;W4K$a*)78&qol`;+03hl-w*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..96a744f34c2b8e496236b7ffd2d4d051f875aeeb GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cDXr5l4w|`c``mUh= zc?>g3Y}?a}GkukdjEqt>G$so(1V~FeiisJj@2df-W-JNv3ubV5b|VeQiS~4H45_%4 ze1PrL>C@T{Cc8IwcNa2u1STzc!}1O9U#swht3xT-0#q z<^M*N8Mc4zJ6uc|HEw*8U$&j~gtHN&T1SpWfZ;CD87eFL&M-O65aBrFvp|M{;gGn+ V)0nFz9YDhvJYD@<);T3K0RS^`CY1mH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/berserker/berserker_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d66806e745395e199d7603c7605d356088b21ffa GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cDXr5l4w|`c``mUh= zc?>g3Y}?a}GkujO3o~eaV*d|R!B`UH7tG-B>_!@p)^pUXO@geCyt-8?h^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce785645ecd4da342da9a7b40528851e5c18727 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C^}5x?)_G&fIR|7_6* z2PHpTw)meAHeXGCpSgaVAb(MwS^`iJV@Z%-FoVOh8)-m}pQnpsNX4zW-Hv<=iX6>=~HL??BtdmamJ9gYyY#U&pWePoW_ckubWIjn&t503&AfPN_3~bz$qb&ZelF{r5}E*u}1OZX)m{D0UX;-mb` z-enK81e#a{b5a66)-!f-axcgUaW!C7sG7mZ5c)^AIwmdKI;Vst0B+tM AYXATM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..94fb2ab692c2887e0ec5e1a983fb4fbbe5f8c2e9 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9Z$!tVPx?K9V(uO?q7 zBOWKnuQRE9El`57B*-tA!Qt7BG$6;u)5S5Q;#Tqj_8HE?4ID=Vycm=eny;!dc1V0^ zQeb6cQ!`x<hjL7V@N!~sduw1G#+RUgQu&X%Q~lo FCIA$$EkghR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..9462f8d4d1c805a941f6cbed26f5c01403bcfb3c GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0CU>ClDvdKVMCLpSgaW zjQIbj;U6wrJUA%1f3_%p@A^=n3dWKkzhDN3XE)M-oM2BE$B>F!y*-XX%nBULoDrP= z>+`c+)yuzcn0(XuO|KQh-srmJYrh&xmmmFh-DToV#f1}e7R(5kVLMTnYvzQnj6WM* paZYn`*-`VO=iw*bcY5|8*w?LK-|=FC>jM4}1FOZA)AkV1XAfV(G z%FW08FqDI3<3-&_2BEfF`xusp1Rpfsk-$3PD^E9P04s;tGU)`a4LccgjL&eb$d+j1 aV_@jBPxfS-YkLuBB!j1`pUXO@geCwT)g$Bp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6d133674e477e9789291f156c834d30da1cdb785 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Zk{fVAr-fhCDIi9Cj9?jWBT*| z?=xRFCT@`N;EiKW*x~0U!>W9m_f>!d>w*flq>370f#WO(ezd7dZE#|GG=m|$N%9US aCxd;m&%sAuWETNVWbkzLb6Mw<&;$TX87Yte literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit.png new file mode 100644 index 0000000000000000000000000000000000000000..d6c276c8c41e0cbaef932aae1ed893280fe99e01 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0CU>C-C5) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0682c62e7cb471cf3e5132182b1e64fe2a743527 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn>~q?Qi5fpuoc-yZdp9 zczQwWx{Fmy+#OiBe(+D&Bc61N^Jw$>OyO5P_79G2%TBUhX3UY*$kpMXq^)ycpWRvK zstcd>8PBBHZSh(eT7IiLY~wPqBYX^n)&~kJ*RbbJEc(4(yk^(V^w*cq*8r_#@O1Ta JS?83{1OQv@JK+ET literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/biohazard/biohazard_suit_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..075c5159ada8d6e813fec9183cfb17fe7777528c GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9b4AR+9&kJCPL{rPJ0 zbu!{{g8V@78EaRb1X7G8L4Lsu4$p3+0Xe3gE{-7;w~`kyCFHOO>8L3z+sw?IZP5`Z zb>Kh>R}zc1!G_!@pyTXw>mUV-K^JO s!2EsYR`H7buMCpqji2^7Fqtzj{8%o1?ZKqRMxeP2p00i_>zopr00G}ZO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e884d73cd8dec7b467ba423a4f1ec561bc710302 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696eneLn>}1OZYta{6GGG;+uGn z9JZDR=_;(-|0Nqf6jNlC{-=E7?+h-p1ssVQ8Gqz|$T#~lUHH4cd*MAvJ+luC3{U*D V|2Vk%}1FHoNFo4?6JCxk)p z!QcK<%l0!p{%^o~?Egb9flDvA9K0S}l5$W?R^SwIdanG1d1nBlz}m)~Hkk;ntATqA c467Iz7IC;3)(M#>0?lObboFyt=akR{0JRb+F#rGn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..d3440f7092c82e51512496eb180863e7ffeb1d17 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0F&GzvcfA_y1Ql{!C-I zSi!Kml(E}{F~^X>*w|P@LqkqZE}n^zmzVcAyXO?3YQ~ZvzhDN3XE)M-oJ>y_$B>F! zJ*TcSG8=L*Utq}dc>ec#ug|OJI}bVcOLwRL6))K?KBKykbwQIugk#zvkLIqXV2!uw z1qtsR+*&lZZ+Ccdb5XV1R{axpCHpT-NLH&eXk2Ms=dgx*4y)>uT_^JOSALZ#+t0)h YxSM5$W9WgqKuZ}sUHx3vIVCg!03Yd4yZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe5a907efc08f152956298c1501fd6e99a706b1 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097DkE3V93E-e^kDc zbJMBwhoxR#`cb;baaxA6%3_J%^Sn22Exj^VdCxcBO3jr&rlhhnn{Q$Cu4Hb%xBN;| z04x6j@4(y4TP|L(X0=$bHJR&A@xS%lfgNYn3s^(g7+7ZeU6{qTY#q=#22WQ%mvv4F FO#u4=Ib8q% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0c99a6ff7b9186ceb75c4a3dd0026f1b9d1fe1ed GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCf@!Ln>}1Ens7~;3&t=a9Dw7 zj)L}wYxcj_KhtX2{qoerw8(D(5h47ptdjc@cYfvmVE$SupF5ms!UFdnO%3|>cV;o9 zTrZ8XW)3M~QaDt_D8LZM@a16n0VV@R?M3moUlq_!@p6X@yU7*cU7 z`2brPGh@fIIF%I|TN@iY8y{L}1FVOz+=fAjslZT8~ z-QWGJVNUZ{74~v`)Ab4dHL>SjgRkS`|8**?e`jzp{Wn+A%s8@4K|t?De}Zy@UVy;C ivSZ5*NQN^0Wnf6Ew_Omr$>}H1WCl-HKbLh*2~7Y5J}!&^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/blaze/blaze_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4d4348f5969b236443bf665523e0786f276fae7a GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>}1FOZw?yPwN&iD^KK zNrIOES5KqBG3HH%q8SZSGY(|Nm9Pp-66a9NS;JMKsG`Uk;rn3eDyBFiQ3nOC*RJJcSe4_u! zf9Fhs^}{=Ec>*OEOM?7@862M7NCTYSX(x!M>cNsZZ)eH{xG>$y7#tKq?X7zHO7R(OCCwr|BGK_wT+cyILX53 R^BQO*gQu&X%Q~loCIE<1JAeQH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6ac2ad700bd7e3f06f9fe2af3ea72c8ffd72fee1 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qC8z3Ln?0V?K{ZZ;K0G6`yp#1 z*R6#;+9$XIjQEW@Z~Q4-*+vT!ozOoKxloS?lTQ=d#Wzp$Pyn<3}1Ens8VV9Mso&|)B9 z+#yzHv10Bi2LY~c%jUjWZT?&7QX*x1G zYwfh^zHNQp)05^bDvDZ+b~CO!pVB`e Q4z!uU)78&qol`;+04WqX_W%F@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..fe70ad9fcaacb7177d667bf2023824a2463c8be1 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|3CTfT+j8UvVFPX z6a51kJl(6DOoH`gj3k|eK3@TC@Z?dW4dv zb8Ki>ys0yrxg&AO8>U2w>ESI+lJAVuw=FbMN;{XsYAB&4Az>xa!Nf3OjeyX$qFvEI PV;DSL{an^LB{Ts5*yK3e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..49382311346872de25e149ca8d4ad5d12719b557 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FVH^myT2h~>Ggm1 zTrJs+8=mezU$1lN|Nr_UYgPC)J_@c$(9L6YSNz7jG-`up1oxCntqu!PG+%N#v?+-s jd}nt$!G1)}g@M6Ut0-o6>a$xwlNmf+{an^LB{Ts5#KJHo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..74007c889b84cd3a1e1e68a9beff95d6745071d2 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|3CTfT+j8UvVFPX z6a51kJl(6DOoH`u({AhmN;8%O`2{mLJiCzwhx)C2b0~KH*U^m zW)@~XyqjPCo^gXjj{`?y$1m;%NhZ0qJOL~J3$!sz;0@MkP&)KuVq>GcPSTMB3wq9G ZF?~qJ?+ZKV93LAKzK*g zr`63{g(cNjaGm1WpOo=yZ}g*MyxV)P{>{wZ71Pzopr0F1#k ARR910 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/bouncy/bouncy_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..40f1c9377321759970ee909303f8ff6194e61fbc GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=73rPfeL&6y2j8RIBEc zs$dx*1r(XTJQqz+&6d9*K{FeufxRTiFBnLJKxoRV2q2Z{>EaktaVz-%^NpVOao6^) z7CLYs&HC@ecW>1>d2)7T%fFPX*I`I`Q@f)2m!Zp%Zz3Iuw?E$~e=fY>(d=xwpY!I3 zA2_hP_^9&j*{kIZKD>+ie&SuK`Gk+}W=<@+vzxu*4GV+&P0drEYV_1WmU_DSxvX}1El~FO!T+L^FN>kg zQKMm%GoM*N14B*7i6?&?xBYV{yRo)FqtV^@>569-1&$nRUUAyomewd_zIO0G|36l4 zuLKUJc`tZ1np&j$TtDc1=wq6vnZNj+$GwI(iq1Ez1fYZH%Lx!Re2k*H}`gH%BpNEro=EX<> zCC56};xwl40}~#9-*6{LI?C}1Ens6Xv0D}@&}P6B z($3HGL7p`T-Qn<2~o*++<4&nQyt7=TJkJ!P>Bpd$|W3 aco-PUdL?JvwrrjWGS}19&t;ucLK6T7E}1FVOb*(cciUwD|w_ zzwrz$*BiNF{wI6*GjchLY-x;m;U%=-(C&#M39}fCq*xliS1JD@t2k|4ieAkDCOa@s5)72xUO7*cU7`2f?5u(eTJqZm#+ zSe50^f1e?#Vq5AO2IEx;J?q}d22AX|b^2h>Ip46;2YOERhIt?8xzu}0V4{{r^X{z0 kUrY>=zq`G>>%hjwz@VG2DA2=bSOc=d)78&qol`;+05xAlnE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cactus/cactus_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..07de1eeb34b6fb252e0063be206da110b4cfdb1b GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097}1FOc*2(a#h6KiR{d zk!w5SNmhqF(j5!E1i04yKhLTa!O)VMu#|(9L->PM1NZJnhKyP-e#xIWoaUq#An}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c5a9f9d1d8ab15e9ed675ef14fb8d5b13b92c2 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0ETd=2Mxo#6d-}+(oa$ z-*k4Ajpl}(oQ`gi#Z|KX;pSotnOY2i3JfV0>Y6(XBOG+xjg_smWQ>ZrG=Q2JOM?7@ z862M7NCR?WJzX3_DsIi`I?Bjwz{8wse&*u8!`l|JR`Ex-*eh0^|5|)v_w1;wecyFY zl#96}Vt3Q|{`U}1D=_vnE%~48(4oWh zNd0fS_j=|-t{PlojYkr^CN)gD;S<3UobXGYX<^Zdq%RB%hmLByFOI(50yKcZ)78&q Iol`;+0Du}JE&u=k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3b9d43c80b58e70c7f1c5c641b9602d738d06d8b GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5-uc53b{RGG6xwm)35 zxGKUyCsT{T-B_8^(alOrCQyMvQ<~3QjG?PD;~h{nV@Z%-FoVOh8)-m}m#2$kNX4z> z1KeS{529EX?YzauAUNS*Y%ODlgHkMa1ILLArz{RkE$nFQbnIODKwVgvdBV}u1A7`A p88wbe9MEDgYp-Nl&d40dz~Gn1|F_2W<^`as44$rjF6*2UngD8%JJSFF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..6f4de302895e3310f4ca6ba3df20959e41ccab02 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE08XC(d+OxO|ej)9cAO7 zA}N|;t1@Sa=7yb;#Z{b+ZV?VToNgMj{oyK0QZ#oKx*IE7X~{?la?0~CXiD>O{rmeC zXar+PkY6x^!?PP{Ku*1m*0B-@0A@4KMr^7nDSadRh{WT zYl6({11%4tpD*M~xN=~-e~`1Tu=+lpOv@(`VtUCv6`hhi0ZB?e!W%s`a;{}gj8>FA zo+vQY%VeGNiNn_u?^I?OhR3&Ue6ILZqNem(#+?a4y}1WUJ-5Cr{(pnV|2W6`DL=(u Q0G-0%>FVdQ&MBb@04Wb&r2qf` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e47448277ac30b3273ae67cfda3a70bcc3fb394b GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln?0F?cXTaU?AcYd$Dvz ztK&bFbKMq&N-JLJ%Pt-}gFi=fN2!5M1!D!|!jl<~^XDyrc qGev~gXD|C6y=lgF^Q!B`Pjjl>j6W*k_c<770fVQjpUXO@geCx3Gc{HK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..89fb11003dc2fdf774f1a8d222ba97785b376f82 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=5-uc53b{RGG6xWl4%` zf4F3Em1v4>goBQ|u`;Kl8>gFwm6nXAG@q0pr#uhCw5cMqfO;59g8YIR9G=}s19HMW zT^vIyZY3-5z1ex7TFPVN6)^*Y4e{j(30*9mexV5ozqpg`geN3CU^ld5F#OMYj(JbQ zv1QWfOC5OjEf6j~>cAs*Rd%@$uLIZoEV(nxv(G&L{DX0lD}xcY`1ih9$^U^?FnGH9 KxvXG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..00d62d70ae195bdf3f763d8a8c2cb31b4197c444 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09jHP%n4U>+m<79c3fW z!=SPxMYca&b7vu^n+B(&n^01Q%A6&V#Z^KXb`C0%R$4Ne(tQ7%DusYL8B2ovf*Bm1 z-ADs+GCW-zLn?0doH{DnU?AXnQQyL4*?+s6k2X9z`kwP&XhrD0?X!(vPrdVX)6{7{ z8}~`?j+&n7$?vkR)@4<(O~6r$8LRkbh$vjL=t~wbP0l+XkKCGAp~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/canopy/canopy_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..002ce0ba33c478480972a611c5d2a33aa3709bc2 GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5@S9Ln>}`W}DnE3AE j8)D5#-)23Y`H-3Ou5W;BeMa*npwSGTu6{1-oD!MFCDkreUQeqbbcN&%?0qT;p$`QpS=XzhDN3XE)M-9CuF_$B>F!$qHN> zW*Zo=s4__EObhFt#niy_PV4>J(`F2kF+9>cB*hZ09z9&Z(9yv2ELM6)xHN-g&pqiK j+c_E}9OO1Lh}kkkY~vMvH2Y35&`1VPS3j3^P6qQw$x|8v@M_42Jqsyy)PiBhz{&aNFNd^>&!HdwAGl~E9r aWMEh|moYt<;p2UvnGBw;elF{r5}E+NpFUmy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..39b079fa6baf07fde21c76b63ae70b7f81569991 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>}1FHm0bpTCJitnG`l z0t=_|jSQ}B%!w!JP0SJTTU22WQ%mvv4F FO#qL$B!K_` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..89e476cf66a059f152f63a52f89e5d9dda87f547 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0CV*yL;c%E9W=e-F)Nj z&%gg3v8iuoRhYB)V7z**jpUMpKoyK7L4Lsu4$p3+0Xd1DE{-7;w|Y)H^0_E-Fb8-G zKKUmuC#5{|>3g;c&DYKg{^%>bZJH>4M&-rD1nyM=9-_+}i}oMmG?}#8ea=!52 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d34ce5b3526682cd7818f38d6035ca2f533e76 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCf@!Ln>}1Ens6Xu@hrqIG`Y) z<0+q1%cFGmd-3(>2BoEPBBf$#Yz%>~87%}Zeo|&IU-G(chH}Il$2m$JlUpQeKkL8Z zQ8RgdJ0qrXP7+(mpLJb3Zh7y!dXlSQlF`wg4ZgG7Rs7rjOUp%{nJG}e$@VwUQU*^~ KKbLh*2~7YyJ2;#G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7714664790f4555256dbabfe1cfc379783f3eb GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=2tN{@Z-x?wq{`AF-)# zXH}TNcJnY$l(8hpFPOpM*^M+H$JEosF{I*FvI4ILm!^R>m*b6|07G$ij^V0gwJTGtr25jxa7**SHxj91!w?+r>mdKI;Vst05D)LBLDyZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..15875cad022fec4427e1dd6c5a26e9d2e82e53d0 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2tN{=0Mh+2$K}&u_ZB zZ|aq)zPlf>smH6=Zf8|+5DU9j7AFo=#8?vK7tG-B>_!@pW9#YS7*cU7`2hEgOF_a1 zdZwH@nU}z*F6us=O`-W}KtO;6qspU6*BHeTi=(%$VmFgm#~GRzAX V$e8@0pdV-ugQu&X%Q~loCIC|xKR*Bf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..67d15a70696019a5451c80c38cb7e11e80d41aed GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>}1FVJ4`pTF^Tqr~bj zl{-FEP7v~W+3rvww}!{1ZGqO!fAW`Ic!bY2#|kjDMEI;=_rC3v$g!+RU_)F>Q`I6- h1%?xOBHt9482(8lsAfJj>;)Rk;OXk;vd$@?2>|p9Em;5n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6d57b957fc767527110e72c1f6942e93edbc5835 GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``kpS1Ar-fh5AeDjR5tti|8}J4 zfr`()yZ>t%y?K7W{)jZgCf*f{(rr6h#1ce$m>7-;YR|Vb+WY{hmBG{1&t;ucLK6T2 C4k5k( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3e718fb81c22e7b70eb97f2d8c7728ec52550e GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B&?uibp(?$5vf9!wY3<$qwrhObuJF kRZkXw@V|&vDgFav!W1U+U-SO20~*ZW>FVdQ&MBb@0EE*=t^fc4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7cafbc9078ab113ef73a0c19eedeb9372d7b779c GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn>~q?Q7(0Fc4s_Kk?>q zMBhha3(qyYty35jzAzU}n7rlO-J`aF_m$74FHvt+{G#*KH}R^srz4{x*TFKybDisj u!b`b+UAJJJKjFjk1pRU|$D2Pc?7j85{iV+5=tDp|7(8A5T-G@yGywpVqBq?D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/celeste/celeste_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c3266c5f9b28f0f6ee1dae0bdae40269f5d7998f GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`#-1*YAr-fh53sr&)TlVJ?4NwQ zMB;|Ip%3jj9t)|TESnU&@#nF-|Ly<(V@?*3o^Qd_!^Dtds>>_1bE^eVJA$r{DK)Ap4~_Ta>6`a978H@B_Cj)!K*N%(QroN z!4QTM2}LCdf`JU4maH3AH7vQ&Bpcx)?4Y!cPe)Nf(0L+5n0w-ah6Tr1&Z#*vvz1L= r#Ts*ZF1Lh5x?V!UgISi0{Zkq4Pve>YCbT#iXaj?%tDnm{r-UW|Kc6`U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..cb97f2d356b7661070e6dc4135a477368c53b9d4 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1OZY5!Y%j$x`{pnI zF%Ge1Of&ZJ+05gM&s_s?gOq0bx PV;DSL{an^LB{Ts5|EVIM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..60ac4d7089e140951115ede4d09720536b86a8b5 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0Dfw$MCh{2wzFHx<0q z{8^(a(CT#Lv($>m$tLwv^gToaM7@-1H&&@g7(Pomr^uYWmh+79tqYvB-*a3)z4*}Q$iB}abYxy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..364cde84ae330d9fb29afa76350a827bceb5b0a9 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9bkS^kGHT(x7^&A>2| zfgzoN!IObOR#-rplfi_6L4t=}kevmnOk&foM?i|PB*-tA!Qt7BG$5zQ)5S5Q;#Tqj zmNUonczE=VvGJVo(&FLq^KxkG+RWVDIhm1p`=$k*n-^SUV|(Y>bf~Rqmb65LzV<2$ z&YN)w2?^$9-iCS%ub%InClyxBc*G!7gp18^#~fBxU$F)kqn_T|4oW=Rt<&GI-ac0S e{0*zhX~vn~C1idH&zcLgox#)9&t;ucLK6VJM@Xdr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d575d85758a55b0c0b50d525a2acb75484fb1846 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696eneLn>}1FOaMF@&94Hh?$y0 zSi@xz4$l)xw;Fg>9F+ZU{qL}gfheQucc#SS|9RfLyYXB8;GtJ_b8Ke3&9M2!$Y3R_ VV{Y-c@f*-E22WQ%mvv4FO#lp4EA#*W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..00bccf218402d488d41b86c43b3c5d0053dc3812 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE06{P2_AM?VF6`M1``Gb zL3Wni3=IFPS^kGHT(x7cFMeJHRKZvh#zY2^IDa) zx_|#4+^mtt!*->?LRPU$T>YiE>!+8z{U<^sj4~raLYpU_ezalM)q}~59Y@dbF@COg zds3cjW8id9tIaJY?!zTh{Uq;8c@mqySyuaQKUmBB@w?sbTTH*dW<+&>+~?`)=d#Wz Gp$P!DKSk95 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..3dfe07f5c258e4f5817d9130d0b1f76aacda0840 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F#l#_+$IMVXU9pBKnu zklEaktajUo2m5ITS zhv~J`kN@S{PtCJ#uQ;&x;o(ES_ov?v5PtoD<*o^X`Gp3D{I$$i6j-$KrZqn*{km+& tLP^o}87I#@W#Ub;X_k1ea8*Q9USjEDre|fsg)>0z@O1TaS?83{1OS9JK1%=q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..fede1791b79602f2d8259828b1c4006dd6340fd7 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1FHpYm+n$;8-QWI& z3XkjA10;AF*YNnT3S_nj@o-xm`1PkzAVti>au$=0%FzZB?F)B#%bqM?WcXL**{NZm R;RrN|!PC{xWt~$(69AqwBvt?b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/burning/burning_crimson_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..31ca05bb18ac4e2439cd89b59fb10d2f4eac3e34 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F#l#&Fe+L4t=J$X4cL z(C1|^6XpD0&5|ZCaTidCu_VYZn8D%MjWi&~&eO#)q~ca@=T=4rM**h9z5m zi3Bd51kq3iqZ!RyH$r(Ec={eOgnee4@aO}>wV(+}%2%1bDWonCQr*n-Ek%`?Eo}P< r&N;!sOcFOvs~Z>;OcQ^wQHY^#KA$Mdxeek#I~Y7&{an^LB{Ts578W@v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7a7acb4734380d096a5c403493845b17243c55dc GIT binary patch literal 78 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6L_J*`Ln>}1OZX+cueVX+P`oo~ aF#`i%3ERhzU3qpu1q`09elF{r5}E*xr4zRR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4e16bbdc380f2dce47fdf911b248dc905ec3c694 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b+7_Qne%w%BD=Vg!; z7EtD7kl zi3Bd51kq52ldPf}RySqzH8F&JW1H~k1H-kT2}#OVnZ7BcvazM9Zf5$HqRPw`w*3U> poZw(4i5sWY4GapVi9gsV#1PNRyWW6t##5jb44$rjF6*2UngH7`IFkSX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..55f2366597acc34146356f017220b3c0c9eda279 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9bkS^kGHT(x7^&A>2| zfgzoN!Az9XlYv2>mqAuoK$(+4f`?s@odu}!@!=hbK#H*>$S;_|;n|HeAg9>V#WAGf zR`LOsGivD)66Y+W4GealPfW0gWJ);`Roak#)r*;J-pMAjc2-?}gAX}EB4#32><%3G z9uaud^TazwX6E*d(Orei0rvO1uWZ=Iu5e6F`RV0^W3Q4v$0i(Gdw2KsCJCPWu=iH% j+j`%>-OKJVjhTUYyYk%+ucVWJ)-!mz`njxgN@xNAsA*3b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b44cf354d78f321c76f6c22e119b46c79585c39e GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)ID7sLn>}1JFqQQcx>PD?#KO) t@}Vt)krSDkH7D4e{m_ue_V@$P1QsvOd+USQp8~Zoc)I$ztaD0e0sz2?9YO#A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c797b9fa70eaadf42b2ffb7a32bffc7893670d GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9bkS^kGHT(x7^&A?zL z%Bj!GAS*1O%*i0Z!!F3q0#tBS{`FcQ#aI&L7tG-B>_!@pljG^)7*cU7`2foqHDgJM zG%INXgWYLH20q-3Mwd>j7fhQjX;7fX9pxuxGW)=Rn<^SP8Y>JN8>=@j>Y6;^E87CQ zWOlLS33cyy6L?gtdZ(l}NQxd@_BP?zr@lTdf#$??*WWp88(zh(Hdlz`V^|(1Wy5tf REf{DogQu&X%Q~loCIGv=L{9(! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..157fd3223738d22ae2845d23cebb5568d42a2cc3 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0Dfw$Dq&4pv=i&Cdw%* zEFi(dF38RT6i;Vh_+QO36G(EaktajU0$D*u{xZ;!;s=O z)4|=~+zn&%dr|ezE-X)4d-pNN);B3DYiFbhFf$}taSHeDtKSc_g~8L+&t;ucLK6VS C8AELV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..70d9e8ea32e9abca7b5e1ab12fc9b4b0c2e75b86 GIT binary patch literal 89 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf66g*uVLn>}1FHpYmTYjoLGq+U$ m&)XmUX`CJ1o=OKa7#Q?-3cUXz)>H;m%i!ti=d#Wzp$P!L)fp}T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/crimson/crimson_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c9bd445d9409dcad3d63d6bb4b1cd6ed707dfe05 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0F#l#-Pv3pv=i&Cdw(n z!!9cb z%}1OZY5!Y%j$x`{pnI zF%Ge1Of&ZJhEKv-KsA<@6Q=Y?7M}Swj`4zKc j{SLbhr4EhQMGOo_SzRO7e0Tf~G@8NF)z4*}Q$iB}EZZu% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf027272f387d3111845521e410beb11104e766 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Z;KHOv1nhO2fA4-UWQ z1o9b6g8YIR9G=}s19B`pT^vIyZY4V~pJ8v9@bJ*{XrCVbItv3st_>Cj1`;0_R3#+% t3_eHLiX>dpcu;%zz}W*I8W_1582(yt2UxdDBmvD}@O1TaS?83{1OQ>6EIR-I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..1b261232f426b686c996a6d8098dfc1557651d37 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0EsJz;M-$;eQyz|7sRb z28Njo4CxFECJYQG=VX@yr5Q_t{DK)Ap4~_Taxy(#978H@^>haIu>^83EiAeB_#gYd zNMEbJwo@YixGwb~LbKgPrD$jSm|Jv`aXHep1nId%X&J>`f44$rj JF6*2Ung9c2O*{Yq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..507e50e84227016f56213ee8ed59991ff0a96fa0 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>}1Es(4D@n3PldqV?8 zfwsm69g&9v>sFroCN=T+mm@4s{=`K+>RmZu!IN$aoBs+mebczPK0S7foafn+R~fr@ zw)sN+=+0SPhjcik8e@(fdCe)4t{eI6*8Wl^v!ek&4?len2egU7)78&qol`;+00Oi; A}1FHpYm+n$;8-QWI& z3XkjA10;AF*YNnT3S_nj@o-xm`1PkzAVti>au$=0%F%`mqBHuwuyg-9EYrz1LDb-a bFayKoYaw^vrypAnG?Ky7)z4*}Q$iB}E%zz@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/fiery/fiery_crimson_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4aaf583c920480aa62f760beeb9d08ed9e241b93 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Z;KHOv1nhO2fA4-UWQ z1o9b6g8YIR9G=}s19D6}T^vIyZY4V~1uvG6m?0q{B{4%%g3p12gCij|A)!YgHzDCv nAahskgZ3_C`2;%#!DeQL0CmocaOZcKK>ZA!u6{1-oD!M<$POjz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..9d375a4d4f93284fe1e3ac6432b53d6653de6a78 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9bkS^kGHT(x7E$-t1# zz~ITipwG)7D=eVQ$sobQ4pgwEX;TuAVk`;r3ubV5b|VeQiS%@F45_%4e1LrhufmK* z!x@bSLl{mZ6qO_h1~PbBvTj(_u;hlA^@a#l21%V*UKwqf2A=e8)|j(u4vfj?S!05G xWF;)LcAFQxpK}1OZY5!Y+oiP+>^+4 yq`L8tg3uXf4Tpxy213Fq4quf{@Q7%;Gcqh};JY~g=8AZrJ_b)$KbLh*2~7a?cpUox literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..369b748bade577a78d0ead66f70654a522bdfbe4 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C7pVV4yK$trU)=<_oC z4`cXW%`%gL;i?_OGC`S3Kncc@AirP+hi5m^fSf>27srr_TXRnv@*OeYVLqt(ROQis z`q0RIcV^Pv-y2up@#ob!p)%6`zopr0JbGRE&u=k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..04d946771205600c8a1f9c16d6242fac94ac44f3 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9bkS^kGHT(x7^&A>2| zfgzoN!Az9XlYv2>mqAuoK$(+4f`?s@odu}!@!=hbK#H*>$S;_|;n|HeAg9>V#WAGf zR`LOsGspCJc=V33@tpC};^Fc0a%k(?%-r2MnUVQ?ilcD4<7s9do7pU_ysTUK4L;b0 zg%k>Hsy=YwK;oNeNp~2ood2$5y5>D&$He3%H9SWWKI@s?pTr<^^48vJNspF?XJ5rW jKd|lN-o4)$P8Kng&XGCvLYC1TXg!0ctDnm{r-UW|G#F12 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bb63556fa6645a6fcf3c48be3503b9e2c82c887e GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696eneLn>}1FOaMF@&94Hh?$y0 zSi@xz4$l)xw;Fg>9F+ZU{qL}gfheQucc#SS^(LM(;zHzhnap}E&vaHXh3PK?!{#4) Vw_kadoCO-j;OXk;vd$@?2>_c-DM0`L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0a354a7e2fdab1a7f91be97b306ab3f0239783 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9bkS^kGHT(x7^&A?zL z%Bj!GAS*1O%*i0Z!!F3q0#tBS{`FcQ#aI&L7tG-B>_!@plkVx_7*cU7`2fqAV+xmU zG&DwfHa0eTa-Ik%OiM5*G)j2jBW98yW-|N0ftxBCIT|Yr8yl-PFY1~+;Vat&K6bGU ze(!h_cvLKUr>Hkb@W>oo#+#t|t*?)1!-;cU-){0GER0=kt`Nz`5SS$F+`nXNF3?H_ MPgg&ebxsLQ0LjZmjsO4v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ed557ed7620c1ae73916b5e0e0aecc589e707e GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0F$Q&7#c7AS*1O&&wde z!wwWN6Xi5vVDMyMn90D94pb1vaMg}s@7yXqpd4dKkY6x^!?PP{Ku(yai(^Q|t=?1a zOf3N%%mII7h2GWQ(aiX^kJa=W-+KEX>%-nJCiVSjT+Y|QB+K-nScXIPM1by|8LL!h zp3O0s`eJQqXm;t#zk2=Go*6}NHr?H8JL?s9{FAfH@&yVJ(||TGc)I$ztaD0e0st$8 BKidER literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0959205e9f30dff6eb965f5c21d7bdfd256f4ced GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EInNuLn>}1FHpYm+n$;8-QWI& z3XkjA10;AF*YNnT3S_nj@o-xm_*K&=kRs+`Ig80>Qc=7ik1_+psx!8yZ${Q!1scNO M>FVdQ&MBb@0L9NDEdT%j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/hot/hot_crimson_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5b63022a332b22b94bffaf01ba72627a272909d0 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9bkS^kGHT(x5`6Xn$B zWsnsXQ08Qi;9&R=+=5x|g? zCUBVHpaYx3RDq*TYz{0zi(?L~;t@*J_GeHMSe(q1&fak_&aiRwUWOA1rMe7CI$_KV Y7v^yud2=q~63|EnPgg&ebxsLQ04rZHIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..ecc2249ccd165a84311a1d49e36f5c29b7518b3c GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F#l#_)du`~PZ|bOr`b z28OG43^N%R0(#jrfpUx`L4Lsu4$p3+0Xc!5E{-7;x8`^sWn^*WY2x^D|HI1{)sG!N z=$yzt{$60?HHLd43*JYGEoEFT79huUJ?Mn}0q=txe|5SPj?MqWc&1TfW!{2lAI1%L h58vKquY5e2;X5m{<0ZKT{6NDQJYD@<);T3K0RX$wJ?#Jh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..82321c652a79298266eb5f1513b2e3de8d8435d5 GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>}1N%$}v*cJhlK5TF% zZ|R*YTb}wP`}LOWW;6aig&{g!GT_GZUa|g$jg7Xd9`Aq8y}{O06sGv=%I|%;vE{W^ fhU-g9I++-B3jBIA{5U58&1LX(^>bP0l+XkKyo)Yt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..616df26b02b83ada0ba79cda876f29f26b98afb6 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Z<#0`~vaEdRq8mP|aj z6v$^R3GxeOaCmkj4al+Zba4!+xRva{e1^SY!ox$)qkVe#>nscmxi(lB7)X3zP?eD2 tGx!`~E0SXkg@KVEAjn9bnxqkpwh@!PC{xWt~$(69AgQEY1J` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..151487f0d8a127d963bd348ffdc86db1d54c487b GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0EsJz;M-$;eQyz|7w>1 z3)s^c7-ljscrq~LWUo~KN;8%O`2{mLJiCzwhV3w$n3z;eTVV4zR&Di zyLYJla8{Y9>ES7mVEuRfg^4~5*EXMd`f;zCFn?i#s=|>Sp0(v0cXMtR)QrBnNjsJ; z)VJ(vxxurY-!BMX@(Ejb^^x-A{}0aOJKcP={d~%<^bZnY3=AR#yuCl-uK}F{bd9T@ J%Q~loCIDHpOrih) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2c090f4cc7a7689ce87ef828e39f2a540d491865 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0XIkLn>~qop6x1!9c`Gc6wk; zSE3c?vSTwYET6YT+$((*1vKVk25lZ+!_4WH%TIzosL+{ozM|In} zXX_j+IMQ~m_Lei-?4)%yo+=B?Jg6J^?7$CLrkIpY~SkB*U T)nCyAG?~HE)z4*}Q$iB}laV>M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..bca0ac4e4649547145a541922e3077455f90f27e GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F#l#&Fe+VI~7ZIs=0z zkh_5We>KZZKfZ@RImVJ8zhDN3XE)M-oFGpZ$B>F!y=NKOSPgmD9-drs>vw#`Z=I=9G&~IWF=gQ4R h^0$iboA3L+e5v9s^Bh@O1TaS?83{1OSjbLLLAB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crimson/infernal/infernal_crimson_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..534d3fe11b4253cd8758eac79a7280aa66e19670 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln?0V?F(f*5WvH%y*(&N z>sDURPnkQ-Mpyb9{MeNoXYeleF-Z5}F>o{KO_R;z{CR!1!@r#>w$|3uV=UCK%;#}8 WjXxgoGY}+=PTv ofy`aC58Ato-DqP#9 zh_A(tK_`MWLxssykije^Ru-s&u_VYZn8D%MjWi%9(9^{+q~ccc0d6ZP3o8ec_S-Dy zrmzV(r!Xy7o{?zL7%Xw7VAg?^Old289+WT{O1Uyc$f`ClomzmX( k2e(Q_X6EWjW;tobX*z;J-3R%Cfrc}9y85}Sb4q9e0OP4OumAu6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b97890815f9c1d99b6807ccd452115d19ca59310 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vy%5fLKtX^xfaf8* z_KMDS;bJuy!&39xbSD)gLF hU%}bd8Dw0;z_4wbO=wJ;rxMU)22WQ%mvv4FO#qD8D|Y|@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e518d348685d11d43a90c5ee6199bbce01bea1 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08u7WXMoqYO!Nj6|Q}$ z+2#I}xZSCyHbs0o5v*Io&KUt!FqQ=Q1v5B2yO9RuBzn3yhE&|@^=4;s3gmdj`0vX< zalTu-E1V;D+h4G4)|v70+nj|GjgNeIyrgZ+J3AQCdVO3N-oE91E|I9~u4J)c8mqUC zWdM&Yr`FGVEsG*Iu5+@G*H)Qv%9k}1El^`HF=AI^Xf_aV zRWF*qW>V%R=k`L*_8nCp9J?4-DR{n{c_DP}WUZyQ&fROiG^u`9e9`>f>@y5RZhU0S z;=8nUn3ltY-By&vv@w}4J YI%Kbf*U!rmKnE~*y85}Sb4q9e0D)pZ-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..af8fc2fdc4669468abbd1ca25d2c17e8937a1249 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`0iG_7Ar-fhC1egP>v(U^@!DlW zlc8RzLFJ4p9!{oj0_*?%|5(4T<;aIDHP^n*NgI@}bGO8P`0^v!DXHb)=-c3QXqG!8Lv5>7xz1Y4Wa%uSSZ{ud;QbEYUIz$WO?)5mM1?u*l=VcP76z-gEE4WY zLh1{rUhw94ZMV(-%%88hX|K)i`YkGc$Nz`%K{RVa$O((tKx-I0UHx3vIVCg!085TW A4gdfE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..eba2c79ff65389f25b95238bcf910e7f22dad0d0 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097~q?Yk)0pupoC+ff^# zdU=C$d*a*`FJpVfX!5L^BgQu&X%Q~lo FCIFkgJMjPj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/cropie/cropie_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9decc736f703b0887167f197f939abed3c63959b GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VV*9IAr-fhC29^V>v(V9S;R46 zhtp4cpNo_CweM4qn#ntfdF8^jj8=kc{!cVjmUgwc qD|8$*R8-7AG;E7IAl-3Tn1Ml%-?J#WDmVdX1B0ilpUXO@geCwNSS}L) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..29a0ec60f31e5f23bced4e2e4f3aa666ea959559 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0F&G|Nr;@R~~$y{NU~G zMH{oj>NofnElA9Ec1Y^9j&9I)OBdI57g4h%QkjQP+<%~ok&Z#FPnt#~W)-hRGGv>0Lwm4*=$MEb}(o_Dk zUff55+$O1etYdldkKr==6zc|C$4RVOtOD_Jl5zzM?n^h+EP2I|pj*InKr^hTrKGoK pwF}d-RLT9#J0|)EOqk!u!@v;UEVWub+1w1|B2QO8mvv4FO#lt2Y7PJZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6d704588b73c947a429e1ca3f143ea4c843af314 GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5@S9Ln>~a?eP_5P~bRr=EYr` zGQ$R2p2WWM&;Mr}@H6R-KycDtd78&yzOEPA4T)R6i%avp8Ow kW-wWU#dxFqa&A8f%O`fmx%d3;1C3_zboFyt=akR{0IoSO{Qv*} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..42142f0cc68fd0236d861bee6f8dfd57245946b1 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F&G|No+m*@@ZC557lA@rHkvji>TQG1%XoE|6h6Vee$A>*@@ZCzC{aw%HUj}dY}lh7NFv_!7FTlh6JPZ!6Kid#tvObn|;_+N84X>?>Bu$)}^<^KI$&8ClQ{^*1h zMV&q!r75m(JuG#>-V}wew`Mu4y*e-Fnq3w5!nc9b&)P-3DNL7+b(qjAk*o1w`ZKlP z^G^OR|NdgieYpcyB`0vGA2Ty6^Kvt*`55}AA^9hZEW>*J13?^73BSIbJNlc!ZkeRq Tl9j7GKu+^?^>bP0l+XkK3#EP+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9091b887b88a8473ba9504335e22b704088a2ac0 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6vOHZJLn?0V={YEPK!JlLcyayf zh2mTr_`5drb$2{bOP-Wo@nFO5#~&}7NJ!ar9BPa`uq=$Nj-y0X?D}7J$xZw>uABKA zop7<86|~aQbkb7o(msVr7dEk%K45yM>oN1avqR*zhLgMP+|3vmK M)78&qol`;+0G`%7qW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..12ca3f53aa52c39f7a30f9a0832c64ec0bbb4a6a GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F&F|H^~!lNW8wPRw@x z|NsAkx4WfdpOgY67)yfuf*Bm1-ADs+Ts&PILn?0d9$zTx9LV8vkkRf-d=bwh*^p~* zWb5Co?rG>)!{6E%`6Nk)sbsUnc{baAX_b2cel>nmgkQSZY`46-dEalwNC$?wEUm7; Qf#xxIy85}Sb4q9e03awltN;K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f3c2a07161f6f79309a0796460df4e2b02f8991d GIT binary patch literal 267 zcmV+m0rdWfP)j6eym|frOd|lM98LpXzI)E__vbe-Eh!_2j8Ww90$AJ=5=Veh008&0#q7Fm RvsM5A002ovPDHLkV1hm)Y1se( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4d58fb430e3e96eed0a0922f124efd7a76eb9f GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^)r^Ln>}1OT;{Q^gs8%{=fDK z5lh1V=KtUS>c5!+%VvYA46KT34pS2h6~*){c*tF=G$XRjx>OUs!#lWyC)OhZl TnL&;~qZmA0{an^LB{Ts5Y@;T_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f029d2aeec73d59f31498eb01dba42abe972dd GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|Ns8~%7gEdAH3bY zXk&I_wzGGziIKUoM$z((KxxL3AirP+hi5m^fE;^I7srr_TgeBwXUMpU9N=MQV@ne_ z%caEBFoXAq2Sc}nX0z*znbuZ3JQ5KS|ClZ19WLqUJblW?r!Y-{Ly(o>ZXLVe--xI+ QK%*EuUHx3vIVCg!0Iqa3mjD0& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..db20279df0abe2e8e35098eace9a588545141504 GIT binary patch literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0A8aF*`Ba`N7-WVf7pS z|NsB}{}pYwba7pG>*$6D-zPgHbpjRm7A*j(5mB=RssXZrfE%a(rWVQk!x~p zq|Z9}I=O+VR-NI}*XZOr^IeNCZe~v{3cl67NvOiu;4|ZX1BM4llCwR}EM5w--qY33 JWt~$(69D9PaSQ+e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e43f2a4dfe0768ddcfe57ef91588750105784b67 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln?0V?b#@JK!JzZcyaal z!+LTJwh~Ik8Y?b7J-13jpx5vJkDaqRTg&&ia&~ivbez^~b#&PgUE27#VU}=EvX!ER qS6?&t&)=exW}11u^U4qZ#CUn3?@E=E>d`<87(8A5T-G@yGywpUv@;3- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crypt_witherlord/crypt_witherlord_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..60f5cb7911b437e8962db7df734db78225140975 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0BKhee(DJS023G{r~^} z#BAq98?%qDo_!Z6!B`UH7tG-B>_!@pF=7*cVo_cSLLgCdXfMV+g^}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdc467ef9c374ee6598ef9148eb4f36ece14fd7 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Erlx9alzvyb=Q|Mcj? z9M?&iY_WZ>H<$q>7)yfuf*Bm1-ADs+96eneLn>~~?O^0$FyLU?yz$@v$7flp9oSdI z>74Xw-L~J`_+HBqWk0T&o`sFCa|-%gzW?dcn9WqrEfvCj=u^}OM&|u|XJ@)C_XQfp N;OXk;vd$@?2>`(HIw=4E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0d36e35a250eed52c042725d0f6ddba8fbb14c GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0B&53)qymYL4rqHl6BB zw%8R>^H264`t<0-_!@plj7;(7*cVor{gGNg9Fcj zAm?5GH`VxERJY6&uAA_Cp5^q73j?xK3-qe;xT?yY3M2&IWv~pGz$f@TWyiaf?`G|u z$Ld-9+T8!`!qc0+yyx8K^M^C>ugTe~DWM4fh?`Ub literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..4de75b5e6c047254ecdfbbf773cdddb0f5ca41bf GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=61$eR#b0{^j{+H|4FG z<2tELr#eC`K%ZGt=dtQvpfqDikY6x^!?PP{K#q&2i(^Q|t>gpTGkSY@5AY~EI;IMo zU8JF*@q{5sLR(X^S@N0dv!e=Zv#U3|dooQpI4|m=U>HNvlF*VRjS@Uh6mEPNl>wT^;OXk;vd$@?2>{<5Ih+6h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/crystal/crystal_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e429a02aa057422174ee2e894e17275eba661e GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Erlx9alzvyb=Q|Mcj? z9M?$^Vgd6F18ad2j3q&S!3+-1ZlnP@UY;(FAr-fJP6cuuFyLXjaMR^|{gc$Dm+xD= zK7aTrF2nwP-MlGJBR0%+o%>$VpguEYp>$?DBb$v|r~^Ygqi(?EJq}ub`7S56Ff#PL WV3cj%+g%PcmBG{1&t;ucLK6T$x;|q7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c383c2ecd40ba919736c29be42fe1bbc8318667b GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=0`pXW!c7w`ZF3jb^9i z_2xU$jQbMQ<_BwBkuz^Fmo&8u-p(MIt0vINAgG{Z_i4wgy+A#TB|(0{3=Yq3qyae* zo-U3d6}OTPutzXA>|i*N5T={JYs6r*V;0X0Q@sWWIq@A)2YOP)cWiRtxwnRU&uNDq zhqe5Fx{owkP2FVwAwO6v;lbG(-y7bS-ezUnXUQ%hQQ>EIAX$~+rHq74XnbTV&<+Mq LS3j3^P6}1OE@if^?%X-6MtO) zPyV-9v*NqF3PRw8#tmYlt@f az`zh?Z_V%56(R~Wk-^i|&t;ucLK6TQvMa&> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5a98c61a626cc4f3dcbcea8bd4de72aca2dbc1f9 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=0`pXW!c7w`ZF3@_O^W z1hp%2=BAdx+ZiM~83YxS>;l&=Hv=kSED7=pW^j0RBMr!L@N{tuskoJVfIUK{!GhsL zLKtU4p%DY8p`?Mf!2|X_F76#OTpF#W-ViSk)oA<@?)P90-x3RBDG3RSTWSw3@-W=4 W=E(EWZ%_l8#o+1c=d#Wzp$PyX4mAq^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..c66354d1a872b1b2812e4680b2dbca0b15c9b44d GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A7ZZ@y=mb6d+ zW85V<_kdvp<1)b-Mzz&5jV>SIr*L;;3ya0ED#jOUOCK~}%*tKc t%dZyop7(RB2qS~w?*^Y896kM<3`YA|cA12lZUH)g!PC{xWt~$(6979jRMh|g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/divan/divan_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d1439edf595dfff1c3a90ef8085670d706de8083 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn>}1Ezo8tu@htAVKLzO z5+ylNSo@M$I$UHg6HEU3B%{v?~G<-Oo<^JYlKzYQqA7csoIH&B<(MJtKdZ t&fxP;V=Y(a9jVok6m} zT=I&X`HnQ>J=2_@o~XaI$!~eRd0&E>rdI6@pi;(?AirP+hi5m^fShDc7srr_TfNWQk^)``5WvP|_B?}HTZmnLTp?rLfbVBbk(Rpr6ud`ZT9F~c&H(+7@ z^?GBUe{=t5x#@*(?bLW?zOfVgX?Hp$F#Xy#wNPV8?)uhz?FnzC|1dU1%1k=fIok?o O9fPN}1O9U=>^J6*5ma zD5s*45_RCfkpl`UD^_q!TUEfDneT9w)yd(2k_dx~!_gim1s0}-3N9iH42Q}%7&bY% R7y?aW@O1TaS?83{1OWJsG`;`; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..e07356cc0246e4e2494efc9a91247930aac9b978 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09jGmkvmd>73DF@1!4F zoU|fezdb^=z)RlKK*U%@r19nd>p(?}B|(0{3=Yq3qyaf$o-U3d6}RS|WaMfv;Bme< zKXLiDf9;_SS_?NY>ui{?chgKmx9QvGrxcja*_{75r{Vn!f#b)Um_oSa7?&+~3=|7d uY-ZZq79Me-R8!b!Z-ez;*5G?NPuQzp@;u+Lx$`N|1_n=8KbLh*2~7ZJ<3wlx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0d8a440c0cf4d7d127510bd73ab17246e4130ffa GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)ID7sLn>}1FHoNGL!L!Yhv(&G thZnqJ-`F+^dI=<`#vJrg@Xa;gVo(*4QS|;J6ARSB;OXk;vd$@?2>?5N7~TK? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c35d79ab28a9ba5152f36707c2aae38439889a00 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1_>_1hy<3%ukL?4>;o zM2uBLdf8dEfD())L4Lsu4$p3+0Xc4-E{-7;w~`fjH?TDr3Ns(R%o1kLCh%C7`Elh0 zk?ugI*_)UrJk*$TAWefwL?Fa7p;)LSAt@jzi6Qyg78W+PZCe;@#26TSGC5sKKZ%q8 PO=R$N^>bP0l+XkK=EN=l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0f186794b1a6a58fb0bb4697a94e75d3e909abe9 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E09jGmoD&u>#jt%=9%w`G%^#`rfDUweV(E!JIPykqx+;ndHzH8 eHVF-P*E2M4WS&sGLFF#cZU#?RKbLh*2~7a1U{NXn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4b08d1772fad440d0e996d6a6517c0b72d4f4c90 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn>}1Nyso?ok77O`k{igzxb`E-aYOJ%@A6@g3Pr+ZXSZKyadV&fS-V{<-*cPpd4dKkY6x^!?PP{Ku(~ii(^Q|t+{<$85s3bT87^{eE^PCn2RL58n= z4kqp^3oDK?2`Jw%*;2zCp|WQW(~$?SBKEFkKJ((%fxSRZ*qj4uEJ+(U{TP%4oHLka vE6rGF(iqHn}1JFqT(@a2E||God4 zBZM2*T>d|C$%3W;Rt~earppDa%QtFT@P V$+a8vt$~Iyc)I$ztaD0e0s!D7Cwc$? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/diver/diver_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8a0cf8bbf3a99ea2e432c4fbd0aa0a947396cce0 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1_>_1hy<3%ukL?4>;o zM2uBLdf8dEfD())L4Lsu4$p3+0XgQLE{-7;w~`OA#q{{bIGS`%T(HTLp<|)Ol9V|N zVu5C6jD``hhk{}c@LXrvCLqwvyM+0~0v-m2P1)?RT+_w(0F7YqboFyt=akR{0E|5< AaR2}S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_cap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..a5e64462cc9abd5c573bdb30a1e59836243907e6 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=5esFx=e5aA7&amQIFU zm6m;}Ox?jUX(o&w>TGvRW!3;yFqQ=Q1v5B2yO9Ru_<6cGhE&{2KENH(6DxFpN8Mf2 zbVI{}&dmxQ9lntlPjH+m5Hb;IGng`WiX%^7N^<&EP6fBhs3`Usf>9R(`H~E_v`q_d i;(ap5vY5$CnsIUh|CRZ|`vQR`GkCiCxvX}v?LEkQz<`5!bLF!{ z(S1A@0$0fXm$^6fl&8qcb*FxnED~n9Vf(77>fAc(My6l(mDQVeD|Ag<|(^3h(= zRPI&I|Bq4^WObO2-FV_KV*%rCEnP>691b7hNe2sWlA$)^iXH(4wl(f zX?bBe!_8d`TRIu0{oAJqlx8dm@(X5gcy=QV$no@aaSW-rHTSeTBZC14v%{fp`8%xH zs`$-5Ef+s_Ib3xH--3e`C1MgknU68Qo>>_D{a$m~^~>%@)?Eo-SpFbQDeWKIw%cdV bgxLAKGGUxQV@~D`prH(&u6{1-oD!M<$D=+j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_slippers_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_slippers_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5df8f77125e5c7d93ae0948bd63655c05b7b67ff GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn?0F?Q3LZa1>x(|M|+~ zFtG&gS@m*?tTuT}o5fE4}1FR(KRN=QfuN=rx(6ER8%6ER^h3XzGJ@% g&c-Gt&TKP_u`Qk1kb5~JP!|J(r>mdKI;Vst08_sp3IG5A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers.png new file mode 100644 index 0000000000000000000000000000000000000000..791237072dc177f5e43feb98728bd7d74a56e06e GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=5esFx=e5aA7&amQIFU zm6m;}Ox?jUX(o&w>TGvRW!3;yFqQ=Q1v5B2yO9Ru1bVtShE&{2KEM_e6LZPI#62^k zqLO*S!Dl)e8Iu@NHfU&aX*NoB-J+A-& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_trousers_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f8a65c54a2700c3ebd6d1abb155a28705fc88efc GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn?0V?PFv+5WwSH{&~*w zaLogJ7Z#UXoNCZ$_`3P|>HOjv^NUPR-qwGJFVnS*mSaD+@Wc%6D{=g@I7N2KD}HbM r(5RBJ^W_At9ei1QJK3VN|7Yv1+&Xb5Lv7_}pbZS3u6{1-oD!M9`?L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic.png new file mode 100644 index 0000000000000000000000000000000000000000..0eb48807418eece8bdefba4c32fd869aa2cebfac GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0EsO$E-Yv0OJ!R5{w5Dl1!GB&UoeBivm0qZPO7JiV@SoVBn2jhTN2#N90>w! zVi}${>L2>w<9$A1!yfU=XALFFc1xJ}v}y5#FvM_&7_B(-K~P}k)85Vxf>ud;6h-b% zX}^8E`ovGBjG#A+WufzmH+^I72w7FnaKGWp(a8~a{!iqdzL!~gt>K+7Knoc>UHx3v IIVCg!08~q^}i{4K!M}+vonXa z{unv9FMKxj!f(5)GP7>{{h0B=HbLdrw5AOG0dHYtwq3QkNKa3?UJ11+K+~5aV O%i!ti=d#Wzp$Pz3Cqlyj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/eleanor/eleanor_tunic_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..024650979edcab9326d2016ede6a96074cad7b9f GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ww^AIAr-fhC3F%*mdrHx_nvPW zW3p3L;wy)$4IceW{H10E4-PPuhA&m+In2zrgl#=zfwKUcVs@K^!5#*NWlQyRu6+Mh Q2{eeo)78&qol`;+03YKcHUIzs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d672a0c028f5f8ef9ccbc54cc7c43ad83c88bb75 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08weV)U0}NLFL0GG+La z!SKI<;i!p#iwML25QfSV{rx}{j3q&S!3+-1ZlnP@{+=$5Ar-gg`W$9tFyQIg`2T?E zKg}j#5&yJ#MP+GB3eUPHs4*pI$sX{{JoJoz1LqC)E6a|4VNl#;?DFW1kFdf$j}JH0 k4Fu*f^cmlp%e9>OT0djGi|p1ZK%*HvUHx3vIVCg!02=Z--v9sr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e25ea75178486eacc71675ddbde1f5dee760b9b7 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln>}1OZYta@&ECE@xSaF z#en$Y62&0b03pSubv&+JJggkr7Y;7@pWi4D$=G54(teZ44SoYwg?a_enJiD5mOkWC o@aj7(BGS0@f!X4&i_8oR3GbpFSN`W$0$RY}>FVdQ&MBb@0AlYj`2YX_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5456da9745114c1e7914cc6590d070844cc24d4b GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`zMd|QAr-fhCE6a;a~!UhIHuLc z?;skm?3q8?88x3?2g^UR`e$+c`G3D5RxyA_hds#o1cSh_5=Z8VYzK0jrZ?~8No07~ ha7aXYNrDIiL;VLYZ|$E3PC$bhJYD@<);T3K0RR_2Dx?4a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..15fc8898ec4744c89f0cb1f32ce229bf9db1fbba GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9Z;82)51{10I`Y9df& z%8;za;4jJGBEn!H#$dq3$f{#1160IV666=m;PC858jzFg>EaktaVz-%OU}zPu2MdqC-8*j9lv0_P&~IMQZp4Ru^HY4fz%%@RD5d0TZ4ZY!L&)Zbx~3`6rX@!$7c SUWWlKX7F_Nb6Mw<&;$T)B}w-H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d5fe98c7aaa92b2e6046cb24e814635e464c85cf GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay(reLn>~q4RGXZP~iD|*7`Ts zybI?)NZkv#%yYt|_hW+i*=uF01%DdP`F%Lq^eCSt{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0671ac8e93a6c9429293530b1248c0ffd0199e GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0F#l!f@0?;7F!y*;gr4Guia_L<+}B`xpl+_kOVqg%Z##amxP zQbx)wFVdQ I&MBb@0PTk|`~Uy| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..58958b50ca3fb06a88c70ad5fbf58a8ed41d835e GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Fe=WJp$Ha1mjsGG#E} zV*KC0@IQp%sENQ?p0bHRX~vQuzhDN3XE)M-96wJN$B>F!y=M%Cju`Mb1u_RM`aQp5 zuTR0-@IR7)8Fwdc@O;h|>8j*?eYx?5o^*yQx(bJX+ibq}CT+#6D-kYP3KMQ=|E=G_ gCbaVGw74IPX9^knO+V{h0h-L<>FVdQ&MBb@0J6|MVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/ember/ember_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..554939aefec3098849179dff2b467ea0ab5c7546 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qCH(4Ln>~qnGni&z<|ePxn+=+ zV%nl*VyFJ>b1QE)i2Z-iRebB_69wYSQ-7WL6yE0XWr4u~zU_t%Rrx1NT=f|F1G${< w1*&Om4xV=*>C}=Q=RmjCN$! zCM|(8ALQFUb|^OdxU1q&nw-O8z;VQ2{b5;q-?U`TX+8y3@>&^%?GwKmmQDK-x>VuU zi8qP{E==XGB{7oLH@Pc)hzZ#3uz5Z=gHogQpT{3FW*?CCc;wW>{Nw(?h6N(d dK8)q{b{;nKmhpG&-UD<7gQu&X%Q~loCIBnrM1%kU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..506f5723efb5852c2a2a8392fc9ac5b4c0673dc5 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn>}1El_6oqNk_E&>X-s z=UAxKbn6`#q7PLD$u$;q1nlc=_*i83s=4gkrE3De72h0q=h}E-Z=O>v_iH^C$B2r= rd4g)9|3Bnh*zVc#P*5__{t0UoOKr{e&zB{EHZXX)`njxgN@xNA`+79# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..5aad6767a81d939631cce854a028f0b0641b7df6 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Gd*1#Ln>}1NvJ5ycxZ2>=E>W^ z%+xnO`d{~bU#2T=Y!W;yjskPux7^A8w5>*IzR$9N(>HQi%uP1M#`du|Cg|vT)Xro2 zwukqaobCZFjs-%;%VsZls8zQ|zNv22Oy?sTxPEPXwMu`Xhcol$igmqDKh8Lo#=F;y zk1;^#!_VChLT4+eaIDj0;Cieu!{~o+@e7eZx}A>|ET8rLW_)8V?DFuro&?a544$rj JF6*2UngCPHP#6FJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..520d0bc9cb2af54eb6fab01d7d50a5ae4c440025 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6vOHZJLn>~q?P=sZpdi2;dn|O$ z>+%y$`(2)U^6t6PFonsK;m_T~-;a6M$#(jEN{UKIc`?Je(Xr!=W0tVi#A~UJ9Iv9+ zsz_+Rc*8R}Dj;T`()FDuxh^ryX{zB*_$9!yQP<|fk*%udZ+$Ok7IeOn-p9bq544rR M)78&qol`;+0M~3i8vpbXK`M>GLuR|818V_uL(T-ZlCuUq zcNrG2Y+_XCc~d??ZNl3fybNAS(hOHy8aGNYT=wW;tY8WfPh&VE#>Do3x!|^;?!kqX bA`A=}@7oRkpFYD2bOeK^tDnm{r-UW|xzIlC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e18feb41dc957dec9b8f230b3323ee244a3e66b5 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>}1FVHUd-QN(gRQLK!ACIUeFNxXW;`PqEX@D_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/emerald_armor/emerald_armor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..7777c94883a3779347e9de11cbd048740e1aff97 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`eV#6kAr-fhBw7?^Jhb;)!+k`; zK|FNxV#``S19GPE%<=x5w#IMT(ypB=8oe_^#%g525W*b~eqN(>xM+g*>DHXLDf_|8*y x<)~q?P}yaV8Fq$yJxk< z_4f~)B9%TzoOYh@g*)I8}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..2f62d08e8871c9cbc6ad1c6de9e0eed13b4c0133 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0FGDyZj^QKajDDF!b2|h1ToeTkv0bS6FT8ufu9LsF zcIryL7M$cR?X_p!*C`wRwg0eApCYq>Z}(}v%7q4#JOBEd9Sl`2mYQ^|;QEP!7Ui}d Zn4_gw9^B5+v@$YJS+eJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..535a52a442f3344b635d3c4cbbf2e895547460d5 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OZX(b{J->n;Efj# z?7N!&-w?Ue#C`A3vIk-jj7_~S*-}^)UY}q%(RXA5lVgk$Ge5(vSVPAB{Kt5KMlg7~ L`njxgN@xNAn$9K= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..43e58978d0bb844f8d00fc08e28aab945231c507 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`A)YRdAr-fhCE6aiU-O;q%9?@bG6&(9M|TkW^49Aiq8>X4@kZmCj7gDa{X> o4a)4Cc$}GI6txbl&8uKwIFd8py6M(-U7-04p00i_>zopr0C4~@NB{r; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..7400c3364dbf920a345b1526f66dde703ee591ec GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0EsB@d-%E%E}rW8+Wl? zPGVZ}Bk2EEkJF!y&a5f&4wb!CawRo_kZj6Yj$gS z4>xsuU@!hGYkcy_5m~`Al6{6kzF{XERFYbnbfzyz__{*M+G3(#cH(=veLmCPO}L^| m!4~@B+f&caA1rz8E1BP(ll}MDva%g$2ZN`ppUXO@geCw>Wkh!X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1af52b9bffff886d74434226d8a6a0dec3352b GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn?0V?Pp|TaO7eB{lET8 z@b{VX1UGsyWUI@Z-LdwXa+ODpjaFe>KF8Fpvy8MDIL~BjZf$kYUvkbors+c6|NRcL o{Pcfh8Wpl?#V6c&f5o*f_ta9~$B`CKfW|X;y85}Sb4q9e0NwpE7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..41c4170a7015d506d04b6067c32702ae92c561f5 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`A)YRdAr-fhC1f7BU-1QR*DOQ(%$M;U(MTcK=T{8V@SoV-VR5u0|q>Yt+X@${eN8g@{C_I zm(GS`lGjg1oVedAd*!@}pp7@XquL8@uiY~RFaP5-c)QF+cX82#Q}+@RoV53 TzINgTn#kbk>gTe~DWM4fEiE`v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..490a2bea2776085a88a1d0d55b400bca66f52e23 GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&=~YLn>}1FHny7B`=y3Sn%4O z=gy&J55z*aypl~BwQ9I`bDsE?RLXoJLB*_-E5YpW%^fnF$->V)elarqTbJ1B!nofJ PXbyv?tDnm{r-UW|V38!P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/end/end_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ff5787d541995f92443888f91af951acd2eab18c GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`E}kxqAr-fhC2AhHU-f&O`emMvnh5yXf{~MCXn`+DK=;Nf8m32XV_E>b$|M^%s$4ZkUZy6Gtl_{ X)%EE~>~r=3&13L%^>bP0l+XkK8fhtE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..153012f761775a062cda30d0c2d92a373d4deb73 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OE@LG`oH_X`Tz6( z`p>upe~{PU5oy`z88(5}~C5dzC9jCYy1Fm;-4VPN1{=6HQ7>$+s15e%NL KelF{r5}E)mIwUFp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d9a58fe52b9cbaada083ddba1f542a81f1e3a2e8 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=0zpez?znyej&Jd->xk z|1JAA6y*R#8B2ovf*Bm1-ADs+%spKkLn>}1A7Gyo!W1zjrm<(j1%|Ne0c?*NxThot x7I7q`29_iwgc~q?Pcd>FyuMXm;X`3 z^8?H2y??6n%Tpq|{w1TYxQp}FWly=-4M3xqub2Bcb6HK@g1?3i0?}WTE^h%>gTe~DWM4f D`Nliy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..86b9bc50076272a3872b24c6505931a278f3a671 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0T5B)DQRhkKM~3*N9lL z0r`w2L4Lsu4$p3+0XZt3E{-7;w~`&0xOX%hVKGxEbd~X#ae{$Uj+u?EmaR>m$AyXE Y(n;p~Z{I)O0#wi7>FVdQ&MBb@0I!Q99smFU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..516f6f8968b9435d0f0ab2b9745fefb08f0a8fa3 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn?0V?FnaOP~c#Fn=LnK zLc7lMdv%YeS;rN~HZ7=}_Pg8hH_JoqhNmavFZ9h?X7e{J?QrTmNx^v@9XU<0TsMTK nZ93LE`_d9N@qJ6#YTcQ(ey`iQXu5SL&~ye*S3j3^P6Ar-fh53so%)L8N9{-^tU w|9q_f{FVdQ&MBb@0DpBL?*IS* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fairy/fairy_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..bb723152b272d55955b07b117bc27be2b2cc86db GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>~q^<`ybP~cho{?mjO zoAXV(Z^xQ{^WSksbW`NyGp(>ru6{1-oD!MmdKI;Vst0J-%T&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..cdc82fafb35caf0c39f6bdec04863b1b19eca44e GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09j{VrVy&Sv^U0N`u_~ z)rP0H88l=u2zoEo1IjU$1o;IsI6S+N2ITm8x;TbZ+?wNaoRLA1$BW_YKk4~%-sXER zJopBmG8)$ME$H!(WthRRLG-Tjh4oEg0ymiY+jI+em92}1OZX`~{lDk`i9eP9 rgB5B@9A_kb@>$U|JAidbyEp?wvw-+cgM<3%Kn)C@u6{1-oD!M1_t9 zC#g1MG1#o~JpzxU#jOvGKG3M}rA- zdU|x!Z5D;*(}1FA$sYT|T(Qgf&z_ z&u*d!536R2ufiGz{R3MzzOv^y&+KS0*Xah!u1H5q1_n7@1H~O>w_X6XGkCiCxvXP`ecva?1LYV?g8YIR9G=}s19Cz=T^vIyZY3XJ$>Gf8;mOS5}1OZX++s~1?qbXY`z m?W2deBI`PJ)}%uoObpvjOH5|}c_sp=mci52&t;ucLK6UpyBE&@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9122a241e8d5a897e0709ea1cb2f16dc24b2e958 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6Rt8SGzexO$T6lm@x3 zVugk*h7>P`ecva?1LYV?g8YIR9G=}s19B`qT^vIyZY3Y!zH#Z2(1D&1_2mT{90C$1 zWHWXN9bTfM+~HAa>2hSvo;@2Fj&SJf>$7?*?YcQgJK!0Nbfkr!PC2 zRL|JxnZ?+#P)%bBOIn1*>@9i>-5I)GY{pLF1+7gIIhnk3aybdi=67s}nh(S4QSxs;ggagL8NK!X`PUHx3vIVCg!014?kUH||9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ccaa4f7ebecea925294d78bbe25f147268095291 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1FHoEDUH;&riA}5i w7lorF)78&qol`;+02YTH`2YX_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_armor/farm_armor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0d7b4a7e0265706b3463c49e87d5aa02181428cc GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6Rt8SGzexO$T6lm@x3 zVugk*h7>P`ecva?1LYV?g8YIR9G=}s19Ch)T^vIyZY3XJ6S{QihJ#6T!$!_*CT3yg z!>!fd|24Vt%<+xjc2JU^cjGT}cZ=ADb}@z5X~sGXN(-di90i=%-Y6VRcel zWHGdx%A|NPSV?x>0Ln3z1o;IsI6S+N2ITmAx;TbZ+?wOV%6Qm;XU~TE!_m?r7upX9 z+Q}Ke-em2~bf~O>O(2Rv{S*7TmwnvJn~r5~iM_*Eo_Wm0JmjcQz(o&*dkY&*n4Y)3 eVO;cwmEp%dR@<+|>T`fbGkCiCxvX}1JFqQQc=~_O{}X>I p{|Em|)>y^F1_u4 zR~x2yG4N)j?*U3MmIV0)GdMiEkp|>=dAc};RNR`|)5ytS$isC0$?Jd8-v#F^V0W=q zuu)pcuJ&8Fm*W!uoHJeAy&c!)8L{!Z-Vb^HTH$VNbNPCfjC9$Db3$-V@Z%-FoVOh8)-mJvZsq}u`3Jffc z6$gLmTV&iRDAW667^S`Tu6>kNrlZ!Z2RU2n7Tbpfx^7`xHml6hF!GsJ(iy)g)=wp@ zONye3Yx!UBX`EWdw&1;z_mU7l#$L}ak2pF$#|s_j$Un}yL5peo`r_>tK}1FA$sYT|T(Qgf&z_ z&u*d!536R2ufm#!a|%!Euht99V{b~3df45_&QQ5TQ8Knb=rvF)gQu&X%Q~loCICGK B9ghG2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6c2d50dbbb8dd55a523f6312b215c34453b0ebca GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0Au;Vpu&%_4GD_{i_Y9 zG{|)oE2MZaoPR0187RkC666=m;PC858jut3>EaktaVtrIiQ$zLvk04m1e@B*tN-h7 z=uLBE+?GA%nSjdNNEY{umIh~$&rJJPt?ku1snc{{JkY>gFY#QX(sZZSZ`a0D#a*rG vU*>Ai@%nTB=IgWXq@Ouw`*$Xr{ZEFIMLgQ3tIyd1tzz(W^>bP0l+XkKoNz^I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..60c9e119054c496a4bc8ff7540c6d871f57aa5e6 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6Rt8SGzexO$T6lm@x3 zVudAv+6`F@lN^=XO=VKN81B97`3zLVSQ6wH%;50sMjDXg;OXKRQgJK!0QZg4r@0UG z1gS6A*x(S5FyS?mLbLAL#hY~*Rgxk?QnoN0F^J!qrKqKxb#>KJ1vY0<=EGWSix?P! XI)&EPIc-V+n#JJh>gTe~DWM4fZ_YU> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..74b1645175500c0b37117dac29176c6159dddb6c GIT binary patch literal 83 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6q&!_5Ln>}1OZX++s~1?qbXY`z g?W2cLf(Qe{89x5VbFXHH097$~y85}Sb4q9e0QQX)V*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4325c26b2fcc9fe5af3e3b0f12f6002920eddb GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6Rt8SGzexO$T6lm@x3 zVugk*h7>P`ecva?1LYV?g8YIR9G=}s19HqgT^vIyZY3Y!zH#Z2(1D&1_2mT{90C$1 zWHWXN9bTfcm`UL9nmv02rV7Tz#c_qrId>r7oP!7h!`fp!Pj3F4RR}bK!PC{xWt~$( F69CA1HTnPm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..59456c886d1f35069e286491b674b788cc9b9acc GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6Rt8SGzexO$T6lm@x3 zVudAv+6`F@lN^=XO=VKN81B97`3zLVSQ6wH%;50sMjDXg=jq}YQgJK!0Nbfkr!PC2 zRL|JxnZ?+#P)%bBOIn1*>@9i>-5I)GY{pLF1+7hzZQKnUGY?L?cHrhThLnPxdJnjw l7?KW%6t9h9aEVyM#&EAdO!Ze?cq`Ck22WQ%mvv4FO#ty0Ki~iW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..12b4c2d207a58c5fbb2c394b836d56aef6ff2691 GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)ID7sLn>}1FHoEDUH;&riA}5i tbBHAhzu*wq)}(NxP}4!`NV0?#14BrRjH6EqvnNmsgQu&X%Q~loCIE~e8i4=+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/farm_suit/farm_suit_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c9a41a0e91397445b92deaa61c19f87570d77f90 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6Rt8SGzexO$T6lm@x3 zVugk*h7>P`ecva?1LYV?g8YIR9G=}s19IFvT^vIyZY3XJ6S{QihJ#6T!$!_*rjCUQ z8b?^tBrIlc5NmL~(mmr~&jqG$0S1RRFmwp;s2q3~bwDnJA?bj~=IP=Lf?}%~um9$2 Ucz0)!0nkJSPgg&ebxsLQ0O2V*tpET3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..5d239f88f3ea02dc44ed16fa7f80b46a18f0ed5b GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08uVV0t0p`{xmBB%Art z+X4ND?AoQHn>ScTbn+;BF+7v)d<;~?SQ6wH%;50sMjDV4;_2cTQgLhUsn)~;20SbW zs&^-3|BpS*o8HJV-)6O>g7AdvbJkx_a46??n|M%n3+uG#44wHYJ3mV2(obv{ vU5bve9Z>KU$eG5yH;>0e^GImP{QKM%EGhDVZ({v`mN0m_`njxgN@xNA!`w4- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..00886eff517128d0fc52e5138cf4f939f72f2895 GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`7M?DSAr-fh9oQBpi0qm0;V*yk zc5nCp?H>e-91KP591s7qNov(*+IVnQ2kXR~XA*i0ofl7hUd+JoPfOliQJ~upXa<9) LtDnm{r-UW|{DC9W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..80505c7dccec9f3744cfa4578f74153be2bb4784 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08uVV2bGEc_HE3E*%}o zX5N3uu6cv?pGT}qZwIIcGbnp8-0IK1160RY666=m;PC858jzFe>EaktajUnxRn$dM zfZ21?r^bK3ZJ*p>zgy|~liBB;y~j?c? Ry#iXw;OXk;vd$@?2>|?;OeX*U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9d4baa52d52421e0d455dc02173cff6732266845 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63O!vMLn>}1EnxFtGqF2n#&E=d z1-s7IY>XEfwoO>X%+n$;H&5Z?=XiO`xgBe5 T+b^yMTF&6<>gTe~DWM4fulGCf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..471b24b008f1ad1a739c9a12d542b54fc58b393d GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ex5FlAr-fhCDI$ov|0Z@1H%R5C`X&9FP1=)89ZJ6T-G@yGywo0E-pp@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..15702117e9e01d5a6301a64aeec4d012f78aff68 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08uVV2bGEY2IMnf5>j> z?SMazSR>iY+ohvlNcbvyG3@DM`wLXWSQ6wH%;50sMjDV4>FMGaQgN%d_p0Cl1pyb! z>HoOTr9JrZ?4kDIs%Ep=`&rAhil!cU-Ts-Q)!aBtRxxD9?3QF9&5Z3&RQ5$^7<2cQF+SY!)8v0W4JeJH{6u}!5}Nilo0qrbPCWC22WQ%mvv4FO#m3NMLz%l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..696c6c5c54043d2e4c761465651fe05fd1eac8ab GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>~q?QP_2Fc4tg9hLUe zv~G6a1w$DvHlBc=i!{zMPPun*doB0523LN$qz*l?&Z#FOtv8%luD~g%`eE05C&y@A o*(2)}PKp1}Jy2axSe<{1Q-m!!lOa7Y6KFnzr>mdKI;Vst0LBn6NB{r; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fermento/fermento_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a23b5ec4c7ce4d0fe409e3134d127012ddbcf90c GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0BI6;Ty?j{^t>EyL9y4 z%WLa_LX0Ire!&b5&u*jvIaZ!7jv*Dd)_5IdWH97un({Z?F89k_jW*|{oE?lj%mwaG yJGU}US1-H5VIib&eZS84n_p*^@vrEyVPH^N#o)U(Ou`Fj3WKMspUXO@geCyk*e&e< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..3430a4dc33a2fd7333e827e9eb031a97519ae10d GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=8>GZ1#uhCq}rmdKk$U z#wIzNDndWC77sUIg#%xW=%2F^PS3=3xp?fw~BvjS*1gQu&X%Q~loCIBdFK$QRh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2a29757f178c814f3b06d3c1ec670fc73cb902c0 GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EIeHtLn?0FJ>|&DV8G*a@t1js ze}zK5`6V6G4S%JdTy-{0%ex%IFvWXA!yH~|0bvaVNmh>F_)>;mZfoz4^Qt!k&0z3! L^>bP0l+XkKqv#=X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a20418e7eb2439eb1b18476d42f78e9d2844a5f2 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=8>GZ1#uhw|W>QIh!Ww zD=3Hx2@47+b25mqGVqv}P6w)BED7=pW^j0RBMr#0^>lFzskoJVfIWg)VMb%*lt#r1 z3@S%N4y#j+S3j3^P6BkLgYQiI9EowYo@ z>yxAFaRI5cndiVJLn>}1FJPLFVdQ&MBb@0O!R)od5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..aab59095aba5ddf62e0466b4ab2017fcae2a62a4 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09joS7`MxQVSqjFq-CSBmm^muIs-R6og9{{YKWbD##sk|4ie28U-i(tw-@PZ!6K zid(&Xj(mq5IGC?{&sx^-_y6;<)+g1^41|>BBi=JCV6I7?>|3-u=gRwl8*yi9yTn&{ zDXxCva7u31>~9N}y-|G5>hW@d{~A$$t0T4TwlVi#C+~m2|Njm1Os_}1OT;|5S}#%YRerh2 zG9k5=N!NL-B_tXX*e93@B>b+AQS!-P;<%^4#NeB#x?Q6pq6(;$!PC{xWt~$(6988( B9SQ&d literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/burning/burning_fervor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1bf681fb601697fb09a138908bb709d516ee8aac GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09joS7`MxQVGZ1#uhCq}rmdKf81 z`6THpNZXl9D9b5`3W-RG>+>=Q3koQ6GH`NniLf$wrlm>)^)QwM`2{mLJiCzw%Pjo z@2H-GuUEa@hxy?}2@md97c)J-b6Z}*BHb^6L3jrvL*+fO-+E=UHGt+bc)I$ztaD0e F0swmTJk9_B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..19bdd4582446d2cca45c1a47340b8735c87e164c GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)ID7sLn>}1OE@L`{=fhK#Gm#5 u^Z)lRd~vm&g?qVWz$Bf9cWiBmtPDpyg=QD)3h@KAFnGH9xvXGZ1#uhw|W>Q=_^Pm z%PEKoiAag-^D+nv3Mg|jaB^{purlmA;{Ob&l(8hpFPOpM*^M+HC(zTyF{I*F@&Wb; z8HE{*ku8k}FEXecd2(P8!=jzcJToHA8zdI;@GMMld&%~$K;ZCbP0l+XkKNb5cr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..accdb39e7a24afaf12392dfc9022afabae2df83f GIT binary patch literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E09(Y6;g`wY4tEl(pN}~ za7l7D-5;v|F3-kHl=I8#Y5L-P63TKSQsTmb0@8No`n(LvoD7^?Tq3Lts_MzsK>ds* zL4Lsu4$p3+0XdbPE{-7;w~`c?7;a7D*6wVSU|W#R)x7Y3oPV5}D)X=NhilTlseVq$ z6X?%cQIKh%zUT-8pZNhn&5E|dlNJnutBe+PWw9(cu`F}uvP_Z1zh1vED4XiITQNl; zWU+OQ;rVwP?=CFU>R+_?-GqnQl}}_9Y%l)R}1FJPxVAj)cltrfH0k1X#!y+lowTh`+_CNy|JYD@< J);T3K0RT#MB&YxY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5f96addc25cf638175eabe4b29cb2d270d3cac GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07jpWl#_mQs!jP=VcHU z6p&Ds6Oj@(6Xnzw=limH+PgfP{h|6v&ZbHF3auVSoLpQCzB1N8ZHy&Be!&b5&u*jv zIeDHgjv*Dddb$Gnngcjk62-5IvA(On<#bED-dcXb%r$@9uNKcXc~!G?DG%F%stf0j znTP#bc66=0d}o?^T~rik_%8-L?>+AkPQwfJHeX6Q>~ lx9V-KsPS4nKk>T;!+kyGSuE~a%YimCc)I$ztaD0e0su(*NwEL` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..865f9d1642c4d92d3576afde6fafb6fa095d18b5 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0BJdXR|+4ztzJ?Dat3w zRzFE!K|)#1Oq5eWR7gZhT%VUgnUjH&i%W!+A(ivNRiFmOk|4ie28U-i(tw;OPZ!6K zid(&1$3{$uA1j<4))J7&5EH0@#4eCYK<-QZ*J{Rb>N7BLq&lybP0l+XkK^%F;T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8b07d5f5488e162d3eca6e3a3292cc2e2e1a1277 GIT binary patch literal 76 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ggspxLn>}1OT<06T5lqknIOWz Yu>KMA<-&(Pr-0H7p00i_>zopr0Dn*vUH||9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fervor/fervor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..837fbd302a9d19d818bfbe3efb0699d1daa96699 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E09joS7`MxQVJ7H7 z6?#((?W*LLFRb6SU~Ti+*?&w#zVqDN%aFzopr0AK=1?*IS* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..bc1728cf667fc4440754aa5279000c7e227cfb2c GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=8>GZ1#uhCq}rmdKk$U z#wIzNDnF39Xf}hVtDnm{r-UW|EbBb` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e128e10cbd6f1b6f69d7184418b0fb19392eec94 GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&=~YLn>}vJ$I0k!GOd0;=BD5 ztW(*4+G=JNG8SL@;BbBsOXqvf4~zlfO`IW;28^~2tbbNXov<%Ty1XtXw#(i*_G`BR P&>RL&S3j3^P6GZ1#uhw|W>QIh!Ww zE7Zi)od=3CmIV0)GdMiEkp|@0db&7M&q`;Tn_DrGDQ@(X5gcy=QV$jSF~aSW-rm88JL za7(ONh9yaYZC$eU)Ej^PFRyNk>X`Ro>CB5IYz}-3#)8|l7Nxjv@qEXka#ye^Z4!6a z1dqz(xTo6HYp+M0&bl^rqfCgQ$i?W~HyvG?I~+pZy_uJ9_E|P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..701ee4a275bf8fa9ac8e8e847f2a3ef00174e57e GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>~qoxsS|V8Fxt`#=BB z<$o8tY!VW*n9!&xQM7Q!+J6@=UD~RiGU;cZS;(xqT)X=whKK*0vRl&nTr;TqWM`E8 pZy}W(#>@6Fsy78JpRrQ-?t*^-m*b3QOW@r*%v8!nO zr(L%*r!3vG_!@p6X5CM7*cVox6hG_L6L{q_l?=l|J~u- zJFOo$w9CZg-#B(~=iMi2H#Oh>;(K~7>0R(9hp7pnij6LND&!j~4yZkH{LISiH6d?; h5RZl2j+-Bu?O(GnE}d-LnGQ6Y!PC{xWt~$(698&yJcIxM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6a5ae6ce6ce32dc92739614925ad199bd952ab79 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1OT;|5S}#%YRerh2 zG9k5=N!NL-B_tXX*e93@B>b+AQPMfVG_R-N+X5zrIyN=tk`Hl7K+O!Eu6{1-oD!M< Dz2P5A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/fiery/fiery_fervor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8669b0629132a559bcf8e09ba0619f3bcfe9714f GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E09jI)!!eg|1Qs_)x#)B zU!nBA-cq0_V@Z%-FoVOh8)-m}ho_5UNX4z*K1aR-3Ia^A5&!6Xr!(L5+CSr78D&3{Inhyl^+#5I<=ZSr8{Qep Q0nKFaboFyt=akR{0DL?*RsaA1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..530fb6acad9132626175eb3b8f2cfa467fa3cbdf GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09joS7`MxlD0E{muIs- zR6jAoMMO$mLRn6}FjgtbC&}4VSWrNpmqD46fs>0%gq1--ROofNjVw?nV@Z%-FoVOh z8)-mJgr|#RNX4x=J&t^b7&utiC(Mfq`u9Jg#Mz{3>gjWSW*_d)tX<0Ov}K`kpUDQB zByj=lE0qj9LdJW}1OE@L`{=fhK#Gm#5 z^Z)lRd+`5%c)`MO2f0~H0^%wh!8|I4q6QDd9m|;yZ(w3@dZu!nxleZ*P(OpGtDnm{ Hr-UW|?v^8U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ef2cce04c1189d0a42b5906a84988688c5a83c16 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=8>GZ1#uhw|W>QIh!Ww zD@Z8IDToS*NQvw7G6)L_D04D!a&d{UGDMY{7y?x@mIV0)GdMiEkp|@Wdb&7-ver9ED7=p zW^j0RBMr!@@^oQi}UUJ(`y=^`e&k~r%T}( zp(R1WSrdh3-I>eqc*Vg5`*uj?u3N{@o?CqB(US&U(di<~Qcvu8Wf9_4n!>27k>Botd=YHPRym;ii-1Eo00!JL*MFU;I;OXk;vd$@? F2>|BeTIT=& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a41e8367b34f36f31a0149fa8f85468d635e4cbd GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696eneLn>}1FJPAw%nxqQ2inQt>FVdQ&MBb@07_Iw&j0`b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..396f81b9512fea00d286f09b729c6f7a98170f8e GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09jI)!!eg|1Qr)DauE_ zFjj<>fs>0%K~zZE&fH9tQ<;-NpO>N4!zf8#;Z&yn8=wZpk|4ie28U-i(tw;uPZ!6K zid((i?o3AlIGk7|mskHky-Ypj@BF<2$tC7yzvlf}1OT;|5S}#%YRerh2 rG9k5=N!NL-B_tXX*eAFeNw6|JR*}2==6;M1Py>UftDnm{r-UW|L3SFl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/hot/hot_fervor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f534a488bd96016b0ac123c2eef147f2cc38ddda GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09jI)!!eg|1Qr)gq4Al zi%UUN$V`+|nUg`Em!Z|eC`n)8?yVEAf$A7bg8YIR9G=}s19Ad9T^vIyZuRzDWn?hq za8_J$>fh&i%fH`lU;TFC%({uI=Q%LUc%^Z2CGT3TkGDUSWijae7Z99K|AFDGME2qd sSJzB>s0cbXZr>mdKI;Vst0Bc`D&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6cb48a8835fe2e2cc6609db68fba994c31221877 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3$uPkWbVvp-ZnF~X(Q z!$`g`Hp$skDauFM&Rk;Zr_DeWj3q&S!3+-1ZlnP@0iG_7Ar-fh53t|hR+!NkIj3>q z1%?w3O0*KfXEG$ENEmEyl*|-v;5d>o`@l@bB#COD2RVjpSwdW#38kSX2??QQ`U(1G jTnP#K`UwoeI~W<{U-R$VadXu#pxF$bu6{1-oD!M}vJ$I0k!GOd0;=BD5 ztW(*4+G=JNG8SL@;BbBsOXqvf4~zlfO`IW;28^~2tbbNXov<%Ty1XtXw#(i*_G`BR P&>RL&S3j3^P6JQyLX7FsK|6Ik1XhqDjKB zg{LLF47e>VHf+$4GT5Lon{5M|w57p@Ha3F>&N~bYxl`D9)~Gk01scTQ>FVdQ&MBb@ E0LXYR&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0329278b5320ead665cda33c68a0fbb3708a4e71 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C79GjH`UN^&;cAFBT@ z&n7X#<;&`6@`bS_epdfa9r7~KQi}4?E#Q~}RLWQq#(+qz`ysW<-oUtZl7)iLkG(wP@a*c|v6j0Lx8ElP3U;`xq6<*r~;+9d9- z2_BWnaZk0Y*Iti0opo*MMwt*pk&Dr}Z#ud(cQ}N+dowTJ@ca4-hrON8tvG`e4jMZA axNpbS&Kmr~qoxsS|V8Fxt`#=BB z<$o8tY!VW*n9!&xQM7Q!+J6@=UD~RiGU;cZS;(xqT)X=whKK*0vRl&nTr;TqWM`E8 pZy}W(#>@6Fsy78JpRrQ-?t*^-m*b3QgTe~DWM4f+zdhU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..d28203e9ecb9ffcdcee062736808d96279978709 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AvWFnX6~^JVokr6?cy z!dPiL^ZlXvNzSIg@~UVpZfhVwM~~_ji27 z{iqrB%)JsKzwRW?=70W9SJ(6RlwZ$W&wPC5`nT@VV*vA-M2rQ?78Dva$U7%gaVCc@O1TaS?83{1OWB7L3scG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6a5ae6ce6ce32dc92739614925ad199bd952ab79 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1OT;|5S}#%YRerh2 zG9k5=N!NL-B_tXX*e93@B>b+AQPMfVG_R-N+X5zrIyN=tk`Hl7K+O!Eu6{1-oD!M< Dz2P5A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fervor/infernal/infernal_fervor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fa17fc313684760c7fa0fc373abed327fc3564c1 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0AvWFnX6~^JVq4{h|6v z&ZcKNqV57k8B2ovf*Bm1-ADs+JUm?-Ln?0d_Brw$P!M2>jrjLJC3^eJFRxtGJuG&- z^9a&^ICq-P%1n+-F(1y-ygrR3hnjOAKArid*Zvvz$|(Dp%!!Wbt3R^xE8k{0+VIX$ Q4rnHWr>mdKI;Vst0A)`(N&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..ee53e88b49492e8e3f3bdf0ecccac47ed7b43a80 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=2-XnrVreF`@O1TaS?83{1OUQ)GW-Al literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6657b94e60a897ad60c3167c7d4925c01e90f3a5 GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`E}kxqAr-fh7YItQy3JDh|5SD7 zKjqJ{Iw}8!FSG@47&A<_h+}rTbH$frYC+f=AFg<&E05q^z?V9OlHjYU%uI4`D;bb13U`B@rG<#N}Ebv-P^K7Wu{bYVWzInNdLsVnxMWffh< VRTel`RUc?EgQu&X%Q~loCID(=OGN+x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..44d5099e6bc3bed672e91c2d64e3fa4cd549aed8 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1FJPPTyZ+t(zW+NN zID{EDH7Y3-8f<_3-%Wu>ZDF}MH# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf318133918b3fdaf9393504d7820ee32d0ce7c GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08wQ6mhYT4RKRT4AiZR zHkX&=%AfE-2`Ir>666=m;PC858j$1T>EaktaVu$o5W^NjHVp~q?F(mQapZA2Z(wI2 zD7g4x%ig!Wch4V~^5w(pX30P4eN&$)>+T7DFQnYHadUuJN6bQ<8)A3M7#yS79J=3Kh;?f^?uQGNc@+^w=e3m80I{an^LB{Ts5cHcMG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/fig/fig_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50d234f39f32044d9d4d0704af4d068ab04a8642 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`=AJH&Ar-fhCCU;+Br?1HsCU^` zIIh|Mq(13J#o+@-oxa&mU`v*H^n=%f=gMFCN6Xm4I)ZB|7#T$8tJZ78w_ODq!QkoY K=d#Wzp$P!@03@3L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..5c1e33cad753a6ebc08ed4fc1e35fdbd30cdb42b GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3%$9=$fbcu`<`C2zKp zqMqX-)Y;fX z*%g{?k2Kue%5Wkfq%?t(#nVtye1o)P!;(4D7CsI^c?)@E7HT^9I=$n}QFY?u(K)5Y nr*rNUA5TsuCr<*CIRnFsiQI=c#nrz6tzhtU^>bP0l+XkK-2OD9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf33f97e1d42486bd843cff38117cd8be3abbcf GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0V?K>#iV8G+FJN|j% zcAiPTRt$Da+J6M~OYz&;ahCisJ9%`K_~(V}9Zi!i>9Y1nA3IsHg!eoai-VEfTdTc+JF+ Xe2=MoMfq|Epn3*RS3j3^P67Zp%YQZ#&R zdhu)4ql*ID_s%>16)4A8666=m;PC858jzFj>EaktajU1>k?)8B4->D%@BjAq0& zHi;NXy>i|)d-f)quZ&7e4z>s88Lpmjo!#Ss<+CLWd0|tw@Gz|LQ(>Me@M@;d=kCXa z+mHWXcI{knJ>q-ep7oB4(xp>kTiMnNG_eNkPh@5I`IYhPPu**=Kr0zMUHx3vIVCg! E0OsXLf&c&j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..72e644331386a21a1fea743c324163bafc0773c6 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65}1El^`Hv13ycXf@!O zYqh&{Le3?|dk6VB+y!_PK1R+i`%$bLsArTGc}8((yUU{U=k^OK#<03|NEP1Xh($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..972444a5ac5135b200e155f240874ced4fe8964a GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0UEz(NI)CfrEj6z4JB& zAfK@$$S;_|;n|HeAjiei#WAGfR`mKzv+kT5XFu(4ZzaDnjOQ%#MD zSt88Lo4bxNvaz|bv#~9k+$}935y8@sA4AXhMWy85}Sb4q9e E0Byu700000 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..d5c256f26ea50fd467a501f8c6e312e247ba5390 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3%$9=$fbcu`<`C2zKp zqM@jO0tW+sbwqItP>!)A$S;_|;n|HeAjj9!#WAGfR`LP1DJ)Za98J6{Bdc~YPdGSF zOlnpbgAn7T%!G+0>XSDy2`F!2=y2fK&h$-0pxN_8qiY~zWQ*;Z23t{A!_Au*H&0{~ bTg}MuTrjQo{nh_KgBd(s{an^LB{Ts5*$+55 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b99204fed44262536d4193f4386cfa62be582368 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIG6|Ln>}1FOb{u>Hn$!=N&i} zl`|;LD$#UeP;8Q)knW^;qpn4Sby`AH0qYyb1qKm9hm=#8wjSimU~s;XAa_-VkwL-N VX6K=B={lfk44$rjF6*2UngDJgCI|ok literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/final_destination/final_destination_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d488b462a06912b96b9c8189977cb7a0a5639b GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0UEz(NI)CfrEj6z4JB& zAfK@$$S;_|;n|HeAV=TR#WAGfRX{bab>Z zH_yw974C zKQ7Qe_BGw;@`K%~CYkFtHk|aoC%*7i^s|;lt^)oXXKPtEF81s7oOmSjpwfv~feO!~ g7sSLp{aU@x(T+(a|H7QPK*Je4UHx3vIVCg!0QIXr3;+NC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2d00defcb63f0714f30f0bb498c5107d41e32ca1 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn?0V?LWwSz<`60+$;eqfA!_@ySR0_744$rj JF6*2UngHO@J1hVI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..305bd9af9997746d3a898dfeb938b7f79a52b051 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09)EQPI`ab#!#JFgK5g zi17CD&&$husw?v!D92b5DgX7(8A5T-G@yGywp!P(m;O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2f167e1caf32e115f7292df5dcf53eda248e0f47 GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>~a?c2zEKtX_6a-!x9 zxGOGmw{X(_&;!TUGbi3^3S^RJR-ci_+X1Y29}z|TDqa3d-J4d z#*T+Mk8*g@B$h6|^?e%0lV8FqmZK(A~ z+3Z83@E@Pz`|qdyHLSLoFZY#aN7B(UtY{}sXo9s?2KJQq_X?m9@ p(Xi$2gWzWwH*_99_51UB?|b8_r+n+CY6FdD@O1TaS?83{1OSNvHU0nq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..a40c0b1d7fc6450b81f5eff5df8a5a1c6c7df8d1 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09)EQPI`awJEaktajW+-bLnZ^I5^FMYRywLys z@`cjlc8T9}8(13krj&X7U^ATQX!&Gb=)t|46L0Bf{BKX5U)JDat*}tGk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flame_breaker/flame_breaker_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bc3db1e58ea1b20394b765860076d0c59afb2653 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ls#P>Ln>}1FOa+OtN!(W?EsFX qWDnznE*^V^kH4q>*Lbs#nSu9{{KD@|8zuvlGkCiCxvX^)r^Ln>}1AK;GZnH%e1vU$>i1(TSWg(qk(;ZSMdaa3UN z=CszK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..ba35aceb1da9023fe125837f214f86e33d8d88de GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3er6^_PA>~)av^zg8@ zwA9hjQBY726%{?b1Kd_p7FG@>?iv#=G9;;( z7nn3lKI4^1OK5XrZa1EB@ydaTEJ<59O$#_&8CZobOIh4HBQ0T}Wzuk~yOC#sWCD{p a1A}IRa3H(L><>U=89ZJ6T-G@yGywpnq%!FM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f9b160439bc2ffb1a842b9291823da890ce99d90 GIT binary patch literal 101 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6bUa-gLn>}1OC%-St@klY%w(}( y5>atHDd@wx{(m!zU=B~Fk9lHL!^)Hi3=DOlGCZvJC;bQNWAJqKb6Mw<&;$Uhy&EL} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fddd54448481dd39bef5c9c58a321437b0c51015 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E07iy6;)7Bu(q`H^zhKp z(NVe(w+|@FSQ6wH%;50sMjDXg=IP=XQgLg}+2f)NiX03VC7u53zBj&q{Y`koeBZgJ z_onkzBpEkyA7S{_$lS$kw1EGHPeaN5-Rw7x2sqD4FnDnFKU>;FMh5Hi3}t)ockcn3 O$l&Sf=d#Wzp$P!CGBj5J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..5b08bc26c95db188254bfc995df812ff83e5bde6 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3er6^_PA>~)av^zg8@ zwA9hjQBY726%{?b11vJKvOGMpvb;Pp&m?(x z&SpBeZOmkLcek1_F)i)lm4zHBEK9{#i8n8~rFA4I)>x|HmQ?WJ1||o$z=&O}GbS#( ycZV&FK~%a~@~Kv0ssfwy=4f}eGuzlyPBZ?FmZ=DmUAh5i8-u5-pUXO@geCw8Og-rU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5698ab7b420bb1468f9806e5f9cab93bd7b60b5f GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1FA$FSE+5R|%;3xs z%FVdQ&MBb@0Q0j$P5=M^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..9c01dc538ad770d9bd38e26d41b859a4a8948259 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3er6^_PA>~)av^zg8@ zwA9hjQBY726%{?b1Kbu?R#FFgu9+<4+t84d z)b7UIF;VYg-ZX}!kdhJ$b%!fuTSOZq#2msHCLEl{D8lGzSkfR6$iVR7vB0C4j-dTO Pvlu*G{an^LB{Ts53AQqU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..277db00838b302f2fc90136bffa35992a2fa6a39 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1OY}VW`d|6~MlYG4 v|9{zgNF6%1Qrc-f^Cb&LIn|c0Jjp<9=LLV3rqA5~)WqQF>gTe~DWM4fN!uTo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5cbf8ded877650cc2d9bc7bc34263327f5deb4 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`37#&FAr-fhC6+magnY3#^VyP? z?S1;cm6cUOPo9S3Spzd4V<+XN-s=n#+*nyzQ+NyP?u71O2r&%%UtLwvU@Bz7pzgMV zZ$IM?o+dVfJm!XF%{d2GO6E&E=+ZlM(SnOX`*mdZrheBOK)V<`UHx3vIVCg!03Mn# AJpcdz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/flamebreaker/flamebreaker_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..4fff8c0517887d19745a519ffcee48c978b41135 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3er6^_PA>~)aXB4Op} z;bCoQsiUK#pr9ZsDtb3{(mJ3D#*!evU7(1Tn_=>NZ z!;qvQ7M9T@`BcbQ_h3)gImxpLZqHfHB^V?hWAQ6DI9$V|?&ABA<=n{xw~H+2W+t>9 jVL4Z3kgOKLBFw-bTq)^2OU-aU&};@zS3j3^P6}1OE7%+^?&032-Utn z^?&76coQFA;azy0F>?;XvKAv&k31T1l|Tir-MAx7{byGltpx!I2nqU< O%HZkh=d#Wzp$P!V7cMdY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d24948db23adbde66cb8f13a4a01a8383ec67a9d GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7pTe5~5^GI{A!zgbU} z>hD*W{s`y%Xl!h(p`qc(Hc?JaPMalxmzVd4zuYRIYQ~ZvzhDN3XE)M-9B)q-$B>F! z$p^U0@*mveU9?kFzkoZA!LUWIfV)}pltJ4m*1S-I!;hKDwL3Q20;y`ffCRVatO98d q?2NxNy+3Q}a4dF#jsAoKybSm1r4yGj_G$o)W$<+Mb6Mw<&;$T!{6TmC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e884d73cd8dec7b467ba423a4f1ec561bc710302 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696eneLn>}1OZYta{6GGG;+uGn z9JZDR=_;(-|0Nqf6jNlC{-=E7?+h-p1ssVQ8Gqz|$T#~lUHH4cd*MAvJ+luC3{U*D V|2Vk%g&(JoOk*nyDnnFPNcWwzi)HkZ0xT;uunKEBOHTC7~Oa989F0nFRzB z49qu3Hb``y;>~H3a$roK%qEbQp#44LK?WzgkyXPd83!hF28OlOd`CZ=UT*?4g~8L+ K&t;ucLK6TES1o@4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d208820fee57b9aa21c153fcd6456be0204f24 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A7x=3~{Sm&r??`ptT( zRDZw1^hY@7M`L4S4Gj%Pwuy3ba@s5jyu7?W{N+{wRWp_Z`2{mLJiCzwX5Am@$EynW0gFt-++$lVkt?9Xqa8+dZn6=-_7hurv76zNJ0F9$Ie%P73!aGfcR` zn7m}hOvj@V)^Av*tx1^oo^?&_d-1Lt(qA1X-@5mgIXmu2*&)qudv08>KPh?HYz+g0 XjU-DUf9xY3pq&h!u6{1-oD!M<);dq= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe5a907efc08f152956298c1501fd6e99a706b1 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097DkE3V93E-e^kDc zbJMBwhoxR#`cb;baaxA6%3_J%^Sn22Exj^VdCxcBO3jr&rlhhnn{Q$Cu4Hb%xBN;| z04x6j@4(y4TP|L(X0=$bHJR&A@xS%lfgNYn3s^(g7+7ZeU6{qTY#q=#22WQ%mvv4F FO#u4=Ib8q% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..92b512c31f5105395fe15166ff76855dea80b07e GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07N7{8(Z7!`RqZLqo%n zZK9lO2+9um0D wAwAscf8_=H3ca_tuGby-dzg{!#$PT53rXhI_B)yXfEF=$y85}Sb4q9e00<932LJ#7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c934e84def0f9af7121344efc933e4afaf91aad8 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7pTe5~5^GI{A!zgbU} z>hD*W{s`y%Xl!h(p`qc(Hc?JaPMalxmzVd4zuYRIYQ~ZvzhDN3XE)M-oIp<($B>F! z$p_fVm>D~s%~M&Sv6J!03jwiL4900C=U(h#NRoKBHgTe~DWM4f&n8Ih literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6dd71f635ce30d08bac8a38318f05bd47388fe80 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FVOz+=fAjslZT8~ z-QWGJVNUZ{74~v`)Ab4dHL>SjgRkS`|8**?e`jzp{Wn+A%s8@4K|t?De}Zy@UVy;C ivSZ5*NQN^0Wnf6Ew_Omr$>}H1WCl-HKbLh*2~7Y5J}!&^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/frozen_blaze/frozen_blaze_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..00292d555033688a7f2157a1b053832761a67ae9 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E^pH%^+JzX3_DsJ_5vGXx7vapo?`~Tpz zx8B_s!dn&}xbySu8Zp819TF1-e~N71G5O~^`-5{;uIOeah}Qi}vFo_VIQ!FOSvGB# d>z(@^Fv%G+o4w$g?gTWH!PC{xWt~$(69CO}Jd^+c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a3ea4937e9cfd5734a8323f434be8030c6ecf55f GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08vF=t?TNUOnr_uKTYq ze0(=!?F&`U_wGOm#*!evUiRR!x+Nd|=3O$M8t5^SYN)*-9@LtTJ6t$=LInVej|GdeOr5E*}1OXMtgW#8k%pcdlE z!tdND)D`K)vgQEavp?;cGd|0=Glg$x(bi)PHDDE(Y|vZYs>N_I;CHtAKyKA_s%(Ft&v05&KrvNfGQYEg8YIR9G=}s19Fl*T^vIyZuOjI2<1ZHjdn=QkxZUFkK}1NysobJOA~|WFF-pOJYD@<);T3K0Ra12Gsyq| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d2914e926c6da8d14911d45039a33dfe77173a94 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CVC_Qi#d?;gB+x9Y^J zUH4y~?qEIx6lE+4@(X5gcy=QV$g%ZwaSW-rb+mgcBZH!d^Wxw6HF{f0_PiJJInaHP z!{f(1p*uH}9BwkSOpaAs`?q$@tY2QQwEfoKd7!>CS&{wNFQy4ajN(Q>gBUzr{an^L HB{Ts5UuruG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..99c2933d1a7e80af092ca15cd5fb8ce0a0b47375 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08vF=t?TNzU%($RVQ9u z`1r1R){hx$U&ORZp90D;mIV0)GdMiEkp|@0d%8G=RNPwI;mCJDf#>jw;0OQh<7T)# zv^m@EQug~)&CZy+8F75cbDFM9@8(K)+@fOCd?#_{$Eb|zS3WLp^=%fuXZShEW$k~U OQ4F50elF{r5}E)jc|dRg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ea197ca5e99c2479283d222574bfb75f82d318 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyq5(c3u0VR#iC4SszrOJCopZ?A z>RCUMO0I9@Y1svoU@Qsp3ubV5b|VeQY4CJ$45_#^r{A&9RgvfLq-j6?xzFp9>kyrt zzw$wtV*}s1SL-&#g-GA|$~S{$KeI2}ukQ!;KHBcSZ-3;r><_$ra_1V)yGc*FcXnQ% z=E29#s?lfW^_}F)o;B%T_L1%zjM9q^ObRLW<`$BE^Wwqg+yl&a8s7gpxWId#!xwX# d1d$#lhM(`4HuQDc-v_#d!PC{xWt~$(69Ay5VPXIP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4700bb183e5d3caca2cacd1d5e2c09e4ddd0067e GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1OB5}5Re$xrr9($3 zmy`2SK_w1WfxiaD1sVmc+`E#3874D1YDoJs-pFfdvQ!XaOxP88qnU$&VZk+1&W`yD R7XwXV@O1TaS?83{1OP5AB2@qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..cd04d5aaff7d14345cafc145c29f9af2153b7732 GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`{+=$5Ar-fhC6*-|yCwdAW8xyy z_q+c8`rq3Beu7~HkBa-2v=Yljyo_2+(oM@GTR5wkBL#P60 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e0dc8d3ad2ae7c7993e2362a5fa812dcf2a09c GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08vF=vsB+RrRbNNhQ}W ze0;a-{_7cQUtG&&({`)_3^`!~5 h{!_Q`e!liGyIsvYF2#_*rgEU+44$rjF6*2Ung9e)MsWZD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..da36b5894a6bd0402256532727f461314b98d077 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1N!T!4SQR6}z;M`r zAw)d*s*vSJ)3mDIF8B0@*YvKHa4)d_e!B7Srig2{ddFoBx4z!GlQo0MiqUj|`2o%Y ig-j(8j{CCzKCbw`AjT`B*KRV*)IP8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glacite/glacite_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d1052957494636dff291c4c104a1a72571f9f499 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=1HjzT0*G^{NxEW~_bj zKIWGtP>8W4$S;_|;n|HeAV=TR#WAGfR`LP1m<9%y%@Uein$``iEUbz_Jxxta37U$` mX|C)7hi5b%lsK_Kh=C#XBy-!G5)O5sRt8U3KbLh*2~7az*(@{w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6beac85f61f105b7a8893cf1ee22d9519890e6e7 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v2sBY0cvBCU*y4dy$ zasOY{{|{ncEB2_%2`I-{666=m;PC858j$1S>Eaktacge3BVU6957W}vr~mEC)Ysme zJiRD!Moadzf~|{N<-=bJmv`DI9eLQnGPj;-75CL@#W3mP_oP)A6x9SxPH<0~z$m`w Sh01rJc?_PeelF{r5}E+-3^@+~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1d30f322a36b9c8500eab76c02d5b46197138c GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn>}1FOb&wEⓈru?7% zJcryl?l5aRe)w`xRK_*XKzw$S(E^1l6**kboLB^N4sl&rI&p2orwdD(A97uo!mv{y ra|OeMwvGcL4NEV`Eaewo%+A2zy}B^7AS{9xXaj?%tDnm{r-UW|hGj7+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..07903d274f95699d1880541b81b3eab5a27b1e34 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`d7dtgAr-fhCDInSes_ry_VC0B?z;*FRW)6ds zpq;+LlMh*b;>Ije21^M%kl Ppv?@Pu6{1-oD!M<>G(NO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e37151d264700006b1887d16ccaade270e553b71 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07LiU)!R4Vw&N-3vvH9 znE!uO|36)9yD3BUWrj<+KxxL3AirP+hi5m^fSgQE7srr_TfJSZVyuQ7N1Dzo{%&tj zQ-0I8`zf#W2I2GFntzmRO2i&=S^HMbX${vn8x)u)GoSyRgZZ_`Q;wK?Q4m!RTk`2g zG9#bC@g?%o4onhvm!Gq3Ot&f)KlO5+i21Zomz$3g&wZH6d@NN$ulVSkyFg1BJYD@< J);T3K0RSQ9O%nhB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ecaf93a86f3e6999341aa2e07a443073befa95 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6nmt_{Ln>}1Ens6Xv65rqIjSJC zW^uM&US2WJoIOOU7l*1!|_htIM2d+DK6A!GOVDirReo4j6hpr!rG!NC- nb7`ot=B(c_^>*ct{}zlnCFfVZ{wZ7vbPj{3tDnm{r-UW|X_HPA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..35c77ae92d4d3e4447c37b2351f4d102044c9553 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07LiU)!R4Vw&N-3vvH9 znE!uO|36)9yD3BUWrj<+KxxjBAirRSG$?4WFnS3T%=C0|45_%)+r=uzYRGY<>CEEq z_69ZOH+{RG@>*{YKHshRN6Dr{>>-!6Z{?iUaE-G;fq63X`QJI1Uwb^|h{+cPQT4DT zpME4W@);aoA}{U0Byo57Iorl`t77p}FXxGvPYZRq`6%(+hpEiRQYG|?kIuOZw3NZq L)z4*}Q$iB}I%rS2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..8385371b42b26dd0bd77b9d7a63d05821c8e9900 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v2sBY0cvBCWRg}DFe zV%uNU{|{nc8}|CtQJ@@SNswPKgTu2MX+Vybr;B4q#jW1%ql^a>cwD9L*FRdcQJVkk z^!L2h4rkV!@)7Aeo7t#&hH-ZTLlDcNpRGz7&G+LN_xCsK(0X0wxJ^N?A;&Rj#*e=T Z7_LY##{T>_*%)XlgQu&X%Q~loCIB#JKeqq? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e8cc42fd9883966eef4a30b197867a23094973 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65~qop6!!fB^^V?umzY zbl*;C^Lr>2d6bJ?Y}McH@1HB=I4kB#^D=a9`*x#KT|2Yu8dr``#Etb1b6@DJX$eY8 zY!9BaTtCmNNPNva(IW9LqQ7L9ymOah`SC>gGsCL|lbJq?&t;ucLK6UK CH983Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/glossy_mineral/glossy_mineral_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ba400aa9b64f2b3a3e450e8a00fd374eda6df8 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v2sBY0cvBCWRg}DFe zV%uNU{|{nc8}|CtQJ@@0NswPKLmC7G*#}((ig|guIEGZ*>g_(tctC;2Rr-GYqeUB~ z`Oi*&&ui^)X3Z%dk*>3ujhbf|cQ-Huu`K%8s-)3;KaO#Kf5Q%~*JX~|6!aQ$9D`>3 c_}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..ee4bd2b6a6f0e1c43e5bc95f1001e68a84d693e4 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=4AYlH3ZNjQouBT=i6R zRld#j<_C&0mIV0)GdMiEkp|>Ad%8G=RNP8Fz#StK5#wOeoxmW_C~=I@fhCE9b%REe zq!*(@i_TMyNkXidL3{~@LOcvwhP(;9VN6C&ji1&yFqtzjY*6L0yLT@C2+%kNPgg&e IbxsLQ0Jb_RqyPW_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3f2b580640de38b080ac50c92348462fa4e4ee GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>}1FHq+A%iqKy*7ikB zVaxyiGj72G>@5n8EYgQt*mg9r<*1n~(8y4@#?`|5BJ6;!qlfbBh5)9kj1$|q8eUkW ll(#f3xge9uFT9wYfx*74sMP#NX9`;L|2MeMOQ`ae&`>dPR5cTzhDN3 zXE)M-oE%RV$B>F!J-y*lhYdKITLoXr-TA-fug0mGv-z9F{SqD(w9N@iTJgZZ-pakv zA=Ld>Yg>TtI>%)veXOL@cYAmB+}8DIee}ET*w?E4`}SLHm0PjNXw8!1t{E?OmS0)_ n>%Hs?V_sov&1paEc^DX)jtY9SIR3v2w3ort)z4*}Q$iB}^}|~q?LR2kpdi4!_Ke=2 zWz)B~G<&#|A9?s#qq2hYwe0pkh1;q!XC0ZQ#^2D-}L3VK#4>FWcukpwZ$FOM647Ab)|U!U$|=uRLWQq;3QC#u_VYZn8D%MjWi&~&(p;*q~ca@w;>;kA;*!1JAeNl^hiwIxq$bmfuY|X zU#tHMe#>2()2ES<+LX=fa7KzVrIlf6H1DaeTUIKXvAF(UI(LWjInjddzbm%=G?4%B WoX;lN+R+4PGJ~h9pUXO@geCxcq&fxw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/goblin/goblin_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a350dbcc3c62ec3e8ec53d44bde4d8b44e781e0 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qCH(4Ln>~qJr~H;;K0FhA@7;y zueUnI%k(m4@pL%LH(Ike|Gr@R?c7V-XGOKvk5;D`%RlH6aV%rpqY%;{9-+d>vSs79 wjZMinMH?FOf9z#qDQ2oKV_=Mm7K>29iS&KYH#grU8eR^!~rJXBD~u zATf{}iuk^L`%n$&@9zgIy0Br||AK;o|48CsvHw>YP{ePaJ%rs02!#j(Qag<>ya03+ zrU5Z^Iw0H7y#Nve$)Sh?#Za6N3qX)<*jxY$NVwd|MO~;0fT8-oWUxjuQGHMIa2)jA8(k50i(-MpH&4+yIaOLL&|Ukw@U-7(dEVt*4bCWd<0j cD^i|!0Ef@vVMwVGAOHXW07*qoM6N<$f)hq?n*aa+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..28fba881eaa5c03224625a46cedffa4ca74eb691 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn?0V?Pp{=5WwSHKIh(h z`HbbS6}j$R*&e}D^FmunQ0clt_rCt3ZGtntIWXljY}z_`ijL;`f~NQdA%PkNM|#6J nbZ@LpjQ1AHtxP{5{eba|x~sI%;hY6P(-}Nn{an^LB{Ts5zQZry literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c5cc8c9b153ba2f519c1d06f59b48011a5c5e95d GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=2^)o&A56VehszTb9o0 z@9!^JY?Rt*R8UY5Q>PO$fB9#i3dWKkzhDN3XE)M-97|6Z$B>F!$qIZH#s)JMaBMI# z*+V%!|0Z9fL7L$w W7k@1G_k!sl$9lT@xvX~q>22g}FyLX4UH;p0 z!i9x*6r86py|@1)lFY!Ozu?bvuWj}>9%@Rv8p^CzV`h<4XG>3=5U|~^gynel!aKTK zeg)lQIs7+>h3ooK6;n@($O8tRKb#ITCVaa3#C(PnmutP}`mIy513YH^Wq9q^`}kY0 R!Zo1P44$rjF6*2UngHYHJ?j7f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0a47f6a1f7df9c6fdd425e9170f1419937aeb806 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5dhUpsp4?Ek9_`}XbI zyKl?hZELnHozvgnU$WRJwbQ7epdhAB=Yq(#^FXDHB|(0{3=Yq3qyaguo-U3d6}OTV z*a|r2W<5v<$YLFVdQ&MBb@0IRD}1ODtQkfB%1bvz~SD zF22paVH&@q;NkyEOHcog-(AMr;+V4`!qJhjOVR!O+@q@`d-`Rq+j<<6B--BG-p;?9 z@wxfA18s&pJ8HiPEMsh+_NA#XwC8!fICH8*Tjyelg3R+;Jj@Peji%BowUv@5C@NU) zV017$+{$}7fR`cDX6Fj->5K}N2E4)iPm-k!78}Vf;h4=>U^$~oLEcy@vCdtby(_W9 xJk=#=+Jmm-KN`jdE}xoU#N3eRT)B^t;g8@o7rO^OZ9u;;c)I$ztaD0e0sv=BUD5ym literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f3fa1f25ed27d76a8960838263ebff5eba9ba4ea GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^)r^Ln>}1OXNNHUe9tw>F<~S zm;WFAZ+bxB$gwN@Q^Xpbczuk!4*nA4n#W`~tI5?taR-wC|7D(*32Ys<9SjWBypHEP TS9sX~jbiY0^>bP0l+XkKw+biv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..958fbeb7261c1b86abb18530e9938643504b17b1 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Zk{fVAr-fhC6+DNzyH6zna`GI z+~RtF;&+w&{GWY&U86wp%p*==aTEGE}18vFTY&^Gb?lTc^a<={Pq}B}~ZC_r1=9=lc%wv(;5HoUP^5F_bbq P2y%<3tDnm{r-UW|N6&H# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/golem_armor/golem_armor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2c9b90c263ee6d79e06d8131237f7ff1cfa7935d GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>}1FObvt*Uw}6Z?QKs zYh4rTf98Yd|NCE@D#F~Va4A7mfHj4YH)ZaOum%-Hl^a~A7?+tRhBesqyz}i4Ve2fg jwR3l3Q50zPRb^mco$Hslj`!PPpxF$bu6{1-oD!MSxv&ACXR3dWKkzhDN3XE)M-97j(V$B>F!$p^T(mN`qlVdYAg zb@k?r8%r3E1e7EQW-)j(PHkK|N!sGffuMK1GO7tHnI`CPgcun(_&iEUn9*?Ejp2$u W7gI;>qK!bq7(8A5T-G@yGywp{*F7Ep literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8a246062bf676545cb8485c5e077e0a378aaf4ca GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Da!z#5LX~Q*Ms-hRQ-Epvbqe+ zHOBlh3`$Kx6W25E%i*m%5GQJ9XP1(a;_dCt!^5MdrsmENYOA6mBPck*t7kJ%Gh<1R zUoeBivm0qZ&SXy)$B>F!M+2^k9ySoT92=L??(_Tn4V{3HkGpjyALtQJObaN#e(!5T zY2B-bTSI?1{ySJGwC|7$Asn}<-D8} z7>!yyB&UdIe6#xZQC>5M?XiONjRUz1lYVw`J+o6+IN$$Yf|twfZ~LTFPfm}_$Y(0b fo?M=9SY;TeNQiz=4*kInbRL7JtDnm{r-UW|cJX7m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_boots_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e145e7272710af403414934747ff3c15d28902 GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Da!z#5LX~Q*Ms-hRQ-Epvbqe+ zHOBnmvJ5XbivGIhwJAmLK%8i(62l4)hB^}lIc^4XQHD|tCR-I189_mgxBVc^j3q&S z!3+-1ZlnP@lRaG=Ln>|^4Y(?L*g)WNY+Opa&+qd$bOJ&??$()nphrA0Euj4Ry{`?W zb*~<74gKNx?_i9X&u?c1VJR`s1!SADN z?@cS@3o=#NH6JNXZ@ZAKyL4+%)?4!{aZTb*FGUaTF6j zQaUzgb1{!*>y+=7YzL>xw8YF|d+fDWM4f5NfyQawKc`;*KI6+)cHfqbVi)JQWcNy6 zQ@GoF%qbzRV9L=yujG7ov2SEMyhZPbk^^^)r5ETMHyCjF#NjaRjR@Ca--;`6u}x}{%~0aTNM=*pc)jt9S0 zr_CupvGYMuw*F=x{n-2#Z!b zUYYEHIMEtoeq9FUUsLs6gc8WC5U8KZ!+Njsg_wt*^dvr7$GKDU@V>HUyF(K($#}o@;^%>7jSbo~S z=e@Iac<4vJb#|8)GE~R^)-ab}x~67@i`Nr(3#O~@MLG&&OG<%`VDNPHb6Mw<&;$T^ COEO}${@$hAR{RFcXAj%P$y$akY6x^ z!?PP{Ku)Eni(^Q|t)mmRiZUAtu)0TCEc@48!pQb>?a$b>c@Lbe_ITNS{IE7t>hr6A zuXkm>y0yw8(^JLBx=4xd^rE?|S5>H=Zem*E%=nFOLgL|8A!GL`hh|zddM$DJH~o99 z&tm_}CciD>Yp19&zO8$!e79!FmQRLfCl)_(w_vLLEz)sWPSG6b2nJ7AKbLh*2~7Zq C##(Ox literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_helmet_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/great_spook/great_spook_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..90639fd667f189116b4bdd81fd0f9020eb7666b4 GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DVqSF5LX~ABPhtj!!y@|x5k+N z*HnF72IhNZvIpWsU4$9z?CiX~y;D+B)-&&G5}N4F5UQr8mcv^o!=PlVqH<|+nLbcI zV@Z%-FoVOh8)-mJo2QFoNX4zA6Il6<7zi9u3wieM|Kj7;sd+8wE5oimJ-~lCd1u(& z9{uUheoE;TIKHWf;883|6zNl_y%B5zdcgjiSG%>fbAq zJrF0lDMfIF2g6(s-Wp^6IunLc4W>{f23r-Ca9IWyVFq(i1{py?Ic^4B24?=4?0TSn z#*!evULnBka*mtn{81FIWe>&moj$rZ}rlQ!SF z_(Y+*mgP_Je>>!CpL6>B+9DUL$@WpALbPCSYx9NVDGGK*cMW%VE2#fJBqzCtd#BAV SmEAz+FnGH9xvXl!kDPw;xL-|yZ=^m5k}1J2V7N_$2Q%{eSy} zf~<6J|Z;o%Z41{HB!*N{vUPLKqlIb%l-RF5EN)sF%Uh)z4*}Q$iB} D8(AVV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6c3aa9bfc54c35e44f2b1d134d06fa2752b64c93 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ESy5DcEaktacgdeA`^om&*52&fB*MehBaEbx=ai0 zXSn$H`KBkPKc%%!=jGp;dgprMQQJ=qxHOl}1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..9d7d8e16ce3bbea6fbea64e56877a2c66094d2c9 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1{4!a?@xem1JiDSTd5 zDjt?9u4c;ihO*WM3QPf<#+p)$ZtTYDqM8bV(xTkfdpv#s^)QwM`2{mLJiCzw9o*hKy*(RbE@$xJ z|J+rUJAeISXJh+!@^f4mQzqNLv+wU^H%Z>U|G(Wp?A(7%)-(@KzZi}rgFl5{mi*g# g|NoiK?=g*;fy-5|N6usC5un8kp00i_>zopr05zCU)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..271660f309360a7ce5e74fe529dc83b099893070 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1FVOb**?;5^%hUgR z|2wM$HLUscKSHFXp+!)qgh9|nBTb@);qt_my`7vBn7DkBLzz@P85shU^rdg6JzfDc OhQZU-&t;ucLK6U@z9eG+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ad345cebc5ac8923a8f6914fc72a28dea739e73b GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C5J<+e6Z2(ni<)|B$I zQFS#__Oep(uvD=(lr>ft)l?9)ukTt8RL58n!KKs@BKCF{S|hTcj*^T|5IFbt^U{yBlbkI^)sLG zZZteF@1(DyDTB)S1I;gFO^g;DD`(H$^z*yRqs!kX&AOWSU7KNVJM+_B#lhM@+Za4u L{an^LB{Ts5BL+#n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f2cf7e77885eb73ffa580dd9333a4d94f8fb8eb9 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=1{4!a?@x0k&#>Hmb}i zd|p;69+oN|7Amf0%1i;A#+p)$ZtR*0g3_YgvVH$|05vd{1o;IsI6S+N2ITm7x;TbZ z+)6&cUGe_jUWT+gW~Xkji``gw#qc*{hoP%xs?`j`-|zP3D!4tkQ~rKlCzE8*ruX-3 vV>nV=j_$4gUZOeSVAYgHMYV=T2?mC5Inq`-@7`|*n#gTe~DWM4fvbsQ5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4b0175190e0bc4ba7495b4a71aba8d11e09fe277 GIT binary patch literal 102 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6bUj@hLn>}1J2V7N__Y6z{jP|g z|EK)-m?O|36r-f+pyy=k#Nv8DTCL#$uM`7=;#;}q<}Evlff^Y+UHx3vIVCg!0FLAz AKmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..687011d87def6f2fe286213220272d05060f229b GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2zG>H)TDem1IJRw^Er zDjpUpu4c-{no^nyg3_YgQy0E*2P$GL3GxeOaCmkj4al+bba4!+xRrc>+amqk9EP+r z0VS`QxVLaF3)NvT>|&kkeXyr%=H@5|p0-n=tEV}Xtc}{raOMG%p$9XAqPM`D_3Qi( Q0Zn1>boFyt=akR{00=@cVgLXD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..4465310a8302ba97d758821004fff5c0f6e1b0f2 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1{4!VxYSLH6o?Hmb}i zd>)o6UKVn$X3F-4vP=P-jBf14>Y@g!!kP+#(xTjYwSl=nJ&Ywme!&b5&u*jvISHOF zjv*Ddk`J)m+gtrz&ZYR|m6tv-3@HWf=hn{L#dsoNZlrm69>au#<)8oVpDFLa^PK;W zngZME2kdr^6GR>#VhGb@6i8mlkSx-1Q2cLWy|xE${cZMtJO+>dvnw1*GG%zbQhq^U SKz}sQE(T9mKbLh*2~7Zr4n=qX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d30f7301ba71b9ce022b32c898d43b778e1610 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>~a?cd1Tz`%3(SN!#P z6Xc8bNjhkVYCBbQ&tAClyo67hamb|%&WpPRo*S%JlF64+)-o*iE?nmBINjt{tIV{; b{|_@Z)EXJDZj9*z8p+`4>gTe~DWM4fdQmE= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/growth/growth_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d5ba5e05a4b9700674a847bbe02718c6e1213d GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=0~N8bS8zem1HemMUHr za;|2|_J*>?>Y@g!!kP+#(xTkX%{MfG>KIFc{DK)Ap4~_Tay&g<978H@B_Ci5TN|}i z>db?VNg52sH?)-%dOoc<|wD#+|PrM3k7uoWj@+R!$jp4b$D1MkNk8Og~yD7YP i@)C}{<8^3p)no|&B6LyUpr1I}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..68b4276116b68aedcd861ad4600160b72f1e97cb GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ESbvdQc1&Fs&QpZ@=~ zG6KpmmIV0)GdMiEkp|>=c)B=-RNR`|dz6tufroi=(r^Br-G3~W z+B^#A|> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8cd7cad5b10f268dee037858eb3fa24784402e GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1FOZJ-U;nqB$8OaD z{|N$W{EA=rTo1EaktajUnRUFe7b4^yhcwtxR0 z&hc3Hz4R*I5&0=Q|6dW}cU&9Wv09)p>WUu6)|ZhF^ooqqulk%@BN3-&CLC?zymQm` zHg)c@<VGc)-I`FXcOPtxqS}9ymK5Hy30zo0qtY(boFyt=akR{ E05il*8~^|S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8bc54a0a8082102060e9bfb67d6bc2423d1b783c GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6nmt_{Ln>}1Ens7qV9RDMa#(@q z?)KA9=keMwxQG4tKIcc7P>WK^RH@%97byqX?p)o@D#zfnhv90}b3V1X+?ot)-Y6|M z+ZT91Uo8Brqpnqk+J~dtD}@&|@%c`njxgN@xNAKJ!K< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..3f205aead31a094344f2b9246d191ae5dd5f26b8 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3Id|Jw5RUH0e4UT<&e zJh-8IWRp^Pu6$PFpBOQqECXXnkY6x^!?PP{K#r}ai(^Q|t>gpTH!fWgI?yAM{McYa z!{!Mavza;)b8;RrB`#U&D3K;BtC`SN>F%!Caqt~qib%tjsm%g`3=Hq~@?KkI_v{VG NSWj0!mvv4FO#t6&J<$LF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e2863306764010616413a948a274e3bb53731d84 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FVK$oFVDEqEBASm_3&%k@7Y2s*-;EF4OP44EO=j?P^>bP0l+XkKL7p#| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..4470afd6ecc5ea8c1a126b14384928ed1ea20255 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ESbvdQc1&Fs&QxBPwg z^#3oN2RD?;bE7XWn+}v?ED7=pW^j0RBMr!L^>lFzskqg9f|0AifXDfw+SzNr@895C z^V;D8gZ!sA_Y25tdRAq6u7Bg3xcmNYhAuCL VkH2GY>;@Xh;OXk;vd$@?2>{w9LZ1Kt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hardened_diamond/hardened_diamond_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..af765b7c9144d7285429f08638e467faba54e846 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn>~qJ++bdfB}cg#WSy; z&UnnW;0xEgU`zG6B9;y@Gw&-@T;I9zr|#b4du}GoRTQd@Kc&5({XN5Z9@7^-?!TG$ uG3z#pHNIZ4mo0+9=m1jyqv$u~&kV(C8~+K1pJxZ!!QkoY=d#Wzp$Py7BQ=Zw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_armor_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_armor_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..df393e823873ae97132f739f4b9b41fe0ebac18c GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3YjRhgNYQBhG|UjFv> zuBN7zdV0o+imIZb630Ud3xO&aOM?7@862M7NCR@bJY5_^DsCko;I@*ouyQbI|IO03 ziBqBNH4C4pfpQL0yJpWrwloW8$zCmCizbyuCa;IW7G6`-3<{=%`aPKQjxXg5%c)`} c&N~bY2K~azjWfv}1FHqj_pTCJitgYl% z{rvyO1Xvxy1Sa$@RA5`TK=j1n00HJ}tclZ^D=S2oByV3N6U^vTC3PikMW(|&6Au1Y z8VWs*A6>0Hc#gDJbF1)*GF(bfwJTs%&@^$EJbdH@BSZK3BEkE6MWzBRWbkzLb6Mw< G&;$U>iZgKl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..f37ad1d5b62d6f5b3f620ffd8d39b5c161451578 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07iymC(~O_VV(#w|9+- ziptE)tg5OqHMLY!RMq}_d>K#$V@Z%-FoVOh8)-mJvZsqQ z9<#obugJ47cmLC$_^T;z-UPL@`x)0+ml!ms#4>2E_R%hMVA(WBO~q>EFnE*no#+^JMlD zOlv|mKj)aIpj{FBtiMNqJxJ0%=EHlH#{T-6^K)*R^-NrEQ{S@iNH~Lgl<1jh&Sy)- zojwK~ICDMLz%ktSWNf;xS*tR?ALDPs)D;Wc>s8Kuea~TT!McIz+uREbXKyBmx*hE- vSi`jYyWE`wRUNPQg4QaY8+NIgG_BABx{JZn)z4*}Q$iB}gRM!u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac031a84cd64af60d80d5f484a88bcc825ac7d5 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3YjRhgNYQBhG|UjFv> zuBN7zdV0o+imIZb630Ud3xO&aOM?7@862M7NCR?gJzX3_DsCko;I^=`k~+{+=DyWy zgTurP(LY!OlyyvXM9*-%f1$%{Y?F3wPTQ#!b1aLkIu2eqdB9+DqXq**h^bJQcjS@f QK!X@OUHx3vIVCg!02n4TC;$Ke literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bfe149f0565550a24230a3e048bbf2cffd51c89a GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>}1FVNobzrP`3Y3;w| z|L1?(|FvFVLh2v+?h@^QU4QDW0vvgk2~{sh5b)q~OAda(y!F1s39dsS6Zj@IITndD n%xP`7@wZXHh;1XgAOnNW%;XZ)A3IBdrZafD`njxgN@xNAqI@y> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heat/heat_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..b048eff96a11e579c86dc968cacf93763e31736b GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07iymC(~O_VV(#w|9+- ziZV5|%*@QJs;W{{RCTQnj|Hk=ED7=pW^j0RBMr!j^mK6yskqhKL)-$$?V{+p~kj_?pw(ar0anr2t7U39VelmEK+0p=IJvzdMo u3|C~S690Jqchik^KWBeD*3$e^Snk_G1&2vfn&N<#FnGH9xvX~q?LElLqQJqjUY%}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..b8223f00af002fa76cf2a1fec15505d1015d6aa2 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0DIZa#vH=)i*Hr^p1bk ze|RcTh_NKdFPOpM*^M+H$KBJ#F{I+w+>S<021ky=L2v&l-`{KZfU0H0 z`KJ#zJ?vuM$8)N{@{)AWTi$gBc_Nax7~K=g0@qsoS>Alr_!hXM4*bZKm@AxdU4>nN!RS*^ sy}7#HgRVJ$+hXM%HaC2oEO3|8_K8rgS?GWM3ZNAXp00i_>zopr0Q93aoB#j- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..bf0448349568b2c30c31b15d8a907a426964a713 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F&G|NpgX*Ve3AxI2%ngYO5_7)A z?sc=saXRdDLzoFf6AJnb@%`tP{9{%T-2XBKXcvR0tDnm{r-UW|ZHq^2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9ed5b1599c42f8b8e0663423a5ebfa35d885871e GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6$~|2iLn>}1Ens7qV9Ta1z^cge zSGIC)bVBup|3P==KIb}k-nu8vsVOp2UgGJwwf}e-Gus$=_P#pK@v@q`DOhO+=Oy8D zPH_`OJI)tRcqhH&rfQPp>^H?(Kco&HiFVrJ(0S*<^wo)V;W}Z5wx!gzYx^zu=;Rc_ a#NeYlYo?#yatojn7(8A5T-G@yGywo9hCxdJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5bf167cae45cd09a164e67e2ddbcbfaf4a516454 GIT binary patch literal 94 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6R6SiBLn>}1OEf;XRWHEixaQLT rMh2(HhKycG?AiaC6*}aK5}6s69T8tD{c6!Mpaup{S3j3^P6bjDW zl7;88s)3@6B|(0{3=Yq3qyafro-U3d6}OTPaL-_w%5s25G+kI-;OvW}oHt4g$r=q) zEVwmiHc0j@T&QHw#ud>kJmuhmBL@_YIEXMXSf5~@>cq1FWF&*9tDnm{r-UW|yBI7N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..574b79aaf0f608c17a0af6a0351bfa26ac53f32d GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>}1FVHUdCC}C3_utVZ zEVEW&3xkuu+m>}IB5J(BOs1^CjC#g%94;w{H!NfgV|B=6)!bl3+ zLrj4}j3q&S!3+-1ZlnP@9-c0aAr-fh53sd}h)#7dS=_yGV>i=;gHLjDa+DfQ6@(Zz zdT<&vxk}7sozbAA(8knq@QKm^j%$1>jX505N{5!H99XfW;b<1aG6qiZWqCr|fMzmy My85}Sb4q9e07@`2DgXcg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/heavy/heavy_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a7145b0de34b55b9076904a7b8715cd878703f7c GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn>}1FOcK-`<|smLFmw- z3D?-2xH(uhUYu&-xKz-~$upcmlx=fC1mjiFuCpxxDy)71!Um!ataA$@7xHgsx;&f1 qu_fsam(xae5rIQ%8$PTM?PQ3(+iGUFV{FM zU$^~UmrO~^WT)P(YcjMoE9Qr#l`2a!NQklv^0EAW?NI>Kz*rLG7tG-B>_!@p6YlBa z7*cU7`2hP3W(kQ1?gpN9VQg(3tO^r5n7&VJLn>}1FOZ(`z5aTA%D;90 zKMT~fC^WTRWf9;^Ts)IOu;!cm&6e~VB6I%n8$UEz)}*(fPKDJWPJEfQLzBT#p2Iv0 Z3_Y_Ql-XQQ-vJuP;OXk;vd$@?2>_cjDpLRe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8899c51a53f1188db2ecfd8ab49d98e07ccc0560 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3&6^u1i;aIZ_osdwv| z3~kMd`O4A^5~A#ad@M|YG8cd<7)yfuf*Bm1-ADs+>^xl@Ln>}1D{yVFG%(np(h#A; z!^0=Ak;P1=tC>eaVn(Q>L(VNG& Rm;g;;@O1TaS?83{1ONo{FfRZA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..600acfb2712afaac74683523b4cc8edd5ef9a5da GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E07LLE1fof^{4k=?>&5S z_{7=e>$VH>u>i#-MA<#8c{MBMD@!wcIn!6tGWq2i2SIMBdtEY}0WxbcwBKD2I0#h7 zSQ6wH%;50sMjDV)>gnPbQgN&GoS`4HqeSz?=k-jTF7EH@k1Sct_*SA*H|Uer?%#j3 z-?6`LEbh7cg!BB8=so$CQ72dZlSbrMW5Hgrn+F?wj2Vm7jLto1@IQX!^6At1B|CM+_R1)^10BHN>FVdQ&MBb@ E0N(Xx;Q#;t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..226ad8a6b420a0bf321851f1afee11fa6c13676b GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>}1EzoAzV0)E?;ef%J z`m1mHTBAFVdQ&MBb@0PgTO AO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c437d1ebf6bfc84cd9e4c38efadc0430cc09c031 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A83p$#Mj`B)@G**&az zH7n*TOEY{q)Aw?XgCMumy)K!~0GXO34>_PB#*!evU2NAbGf0TC3vx>d^0Am*dbAs;fw3gWFPOpM*^M+HC&AOj zF{I*F@&PulX5Yh(CfPeDdsQ+_I4G^8@uI4+v9s~ve1^x&6GYrSpP77TQ)sr$WlE1? zoN#cZ31deCkC-c~nj-szB!Ol|m8X9j^0_^_-k)JsU^3bfp8w$9R>tnD3@g@)K8VWl RUkJ2|!PC{xWt~$(695~@P9gvR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8b9ce73fecfa04e987b0f54d028419efe47af00e GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln>}1EiktD`=2ktq2ial z-^+A?4sXr?^9U)I#|DXq|LZB-X}H_Mn~*8My(EQs*Cf3O2NPI1%-Vj>cYNEn!Edp) p1+O^E<_n@F3pwYoMH*%>FbI1jy*;{S`+A@S44$rjF6*2UngI4MFPZ=V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/burning/burning_hollow_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2d339f6d7c3b12488299561cee50ed69429ed2 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3&6^u1i;aIZ^dO@_9a z4yUp-gM=u%Ah(ntAB)EfF|zko$&Ofm%bxxlf!9EJ7UK3EsX376~yNU}E3u Tey5}lXcmK~tDnm{r-UW|Xn--I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..44e51242b9eb6710deb7ea9b9769b656aa35c37a GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08W}nY?`6cFl_UPQ6>h z(n>$Q|9beu*)M1MUaoPt*Cn$iL%TCTrhUf=JD^g=k|4ie28U-i(tw;$PZ!6Kid%EL z!ljNla5Tv-Tm0Sry`JGy%Z-QrC*EJBVBggzwyUaq(bWIBUMdnR(nKFK26t9A_p!Wq zSt}en<2L{Kt+rVJLn>}1FOZ(`z5aTA%D;90 zKMT~fC^WTRWf9;^Ts)IOu;!cm&6e~VB6I%n8$UEz)}*(fPKDJWPJEfQLzBT#p2Iv0 Z3_Y_Ql-XQQ-vJuP;OXk;vd$@?2>_cjDpLRe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..38e3bfe6b599d0e958545bbe180d1cb25b24450f GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3&6^u1i;aIZ_osdwv| z3~kMd`JDkWGtHUK0_7M>g8YIR9G=}s19I#wY$G}j%hdm*oK&%pI5`(9! KpUXO@geCwH@-Tt` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb2a7162d424d8956291648eda6ad83c2989240 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=641f4%qc$(J*Ihfkb+ zxyE7ny6w~EufEqMQ_?cosdwv|3~kMd`C)0LodGg}+)|e{F5Lj?VJr#q3ubV5b|VeQ zDe`o245_%4e1PT7|9WGCH~;rHHYzWg-uTcho0)m`q~EOfgqE@>I4}LSOSt3V6O|`R z7EL;EV5?eSfalvQOl)lTL|j$3bMrVHD-oaWCD2@*9{KAHuLE2B>oYS2`5k)xo&RX> pz|$r^|M%|$+dkU9t!_xMWQdSc?%C9P*8*regQu&X%Q~loCIBWpWHA5$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/fiery/fiery_hollow_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7029dea849544fce84c569e9e68a0435f514add2 GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65~a^>b%Dpuppz<0TNp zezCF7%7Jmh*{bq8j^DV}D{VV#_aSW-rm3)9@jqF+;9zj_~o-?P| zczDjZIWU~ikF!Jw8VnSqyl* z7O?$(U+s54yffkJ{f%3uJ$bXq@z6DXi$fK%FJc;Gn)e(qOZ(nZZuI=ks(HpMeal`w zZ)gr(-^8GB&w$C~!hI=)g^Yh>F06DA@(_F)$e_KR@vq%W=e+k_?f#;O6-r4+x@ewIPK{okWCDpu6{1-oD!M18hAaty3ILCL1z0Z)BQqkV|C-(*#K! uHXfccd^`?JO9W0R@)~GM8%QT!W@V6l&YUuMpUXO@geCx|_bM^~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..7b65a9465ce028dcaf0934c3eca574281f527214 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08W}nXFkc->G-&@^#w} zpEzr#!wD4BS7lI^X1LcSvnE4ZLX=&Qk0rc0)dwiSSQ6wH%;50sMjDV4?&;zfQgLgp zS1aQY1A(Svx&Kq+tIQlb7VKc&T%5+@f9l!g#cucJ*E5N9B}|r@V9jLU{r$Ylg5J7@ z%kIVdpNVLGoTL5c)~*|?COFppmt?A&IHljg@(OF*f~j23!mE640Igu~boFyt=akR{ E0DsX($p8QV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e00f98125cb0e5465de960a6fde92d2dae301662 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1FOZ(`z5aTA%D;90 zKMT~fC^WTRWf9;^Og4S^r9MU2@Bi_KLK>ZnZj20Rta7e3y#MC_^)h(6`njxgN@xNA DIkX|u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3bd8795d29d6ddd6afbfe74faff5d891f621529d GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07lCV*!%N(hL%!>}xW# z?{&$T>2T_+GH6!Jck11mx19GAP@1tM$S;_|;n|HeAjjL&#WAGfR?-3?h7v7NHij03 zfF(EUAB1-@&fD|pguGqQmy=DxRm{38?xx>5o54jpV hw&?9BG5r-N-*t*nbkm;Sp+I99JYD@<);T3K0RWvQI8Fcn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..64c7e39cb583ab5541cb88d17aa1ec2ae3e5a15f GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0FFCkh#|-BgifFa*cz& zD#PIuXYW0HqAbnu>HXJf^H+zZm3}$XXQsoseBE{rYhFP<770;ypsqC;+8inNkAW=4 zk|4ie28U-i(tw<5PZ!6Kid(%WjxJO@0>ht+6xp&^Kd+?x}EmU@0`;6-Q zj^*ZzA70COv1W0;+aG`dqU}^vW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e3dc4cfc8f66c525f92eeb32e7a15232992bdaa2 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn>}1OUNW#uNSEN^}p?Z zY(kj$gwkL3PHl`zwa@KcI6b7!ID05fv0?VU)98`hl>XoG1E0jB68?xH6($DHFq^Et T1-`4l`^j23(yYnm$DhIwmoIuZlz9>a&uJ(L_?sH%&1~4H%C=x@S4&{- z+i;0#24*D;ua*6`v#z@K{LQjoOdF%+(r+mQ#iTGV`S4P4%I`0-W&4>J8nv1B{&*71 Q4z!QK)78&qol`;+03d=!d;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..123e874d5111db26b7fb6dba4f632c7e2b1816af GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3&6^c_BN_T?IfY4ca# z>ylZMp&gc1YNo@fugah-%^)GlF32q<$j9Qiu#Od|nz1CvFPOpM*^M+HC&AOjF{I*F z@&UFc-d0~nlj19C^>l0;n=s71j*Vuu_Z0+9d;;IaiYxG#(=rKC5?G9oT zV3hRH61JEt(!jHBD)){wT?V6y@K^>Vf#mP33QV4*x(}i@GIU>MaD6PT^<)2|yFj}b NJYD@<);T3K0RW@1Lbm__ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hollow/hollow_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b2022f1bee7cf103adf4fc6394461228f2d1bdf0 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j67W&Ln>}1OT<0+Qg0$>b>l<* z;s1IY3a-}+NPBWARY-9xWn1w}_{IT|>PW`wD#i&1L-#Rs oIP~mdKI;Vst0LC>q4FCWD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..f84839cf80563ba7ea6a745ecea3d2aa3dce4be4 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08W}nY?`6cBkI0nicbb z+)wYnn(1&JK5TlfQgTe~DWM4f=z2^< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d23d694508a62511172159304bcfeb2b5cfbcd93 GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&~5ZLn>}1FOZ(`z5aTA%D;90 zKMT~fC^WTRWf9;^Ts)IOu;!cm&6e~RTn=|G|4&q#(>Ak>A(lhWDMf{mf&Gs5)U|gt R9|H|y@O1TaS?83{1OQz`C~N=# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..71f8f4b50b25b43145e499bb24b2575a37115d76 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=26qINa-!aq8W=CPQ1Z zV!oLUr@ktKvNVH)D7zpZ3s6CF`4wp(#aI&L7tG-B>_!@pH{W-+{enfdY;~F-Vt9Vi+0S35F~|5x-AVEal?A$k N!PC{xWt~$(695f!WL^LO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..97d02bef11d1994d63399d7ca2fdb5bb2b85aad8 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn?0F?b|4Lz<}e3js4{% zX{=!jzDddRi7Rn0*^u#JvGJOC!&<9?)X*0fB_m2N&QxAx5I6Zv!S-uLOxjLoZK)r!^A9D!ytc)I$ztaD0e0sv^`FS7su literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2d95a18bccb4b380f6fd190179ef366b1025d351 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3&6^u1i;aIZ^dO@_8+ z#r)0y84qh-GaXKSRR(2g1_@DiL2fBQJ{F+Lr3ztrK#H*>$S;_|;n|HeASd3_#WAGf zR`LNBo%B8fgCBDW6B5GA5)u;3j2t`){TU|Ck(SsY-XIYpEpfx!vF8JmfF<*)S8rFb zem}tW^X|RhM;K2e7*~DwvuteST=965Y=pY=Cr4>xgJ#{6I*cca7(DNYy4Muu_yVnB N@O1TaS?83{1OQ`&MU?;m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c404d223778c3d8b68380be24f95caa1ad2388da GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=641f4%qc$(J*Ihfkb+ zxyE7I{MGlmWY%P8hozO8>2NAbGf0TC3vx>d^0Am*dbAs;fw3gWFPOpM*^M+HC(hHw zF{I*F@&PulX5Yh(CfPeDdsQ+_I4G^8@uG_H2uF}e5UZhum(lW_<_wZ=GKDQJb2aez zE#-7zN!g&GWx#3KAmJyyBh-Os-(CI&jw2SI89Ewx-d&a6QJ#As$&}&p8S#L({z;pG PHZgd*`njxgN@xNAoM}p& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6ceb0c13f21c3a5519b1cfbde80c52581e4b0f40 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FEF-oO6f zUy>}3f|#!GPGh@h;dA4|er^u)1oK4Z2&p4Xnl~HPE#Xcvh+u5$efTduV7KC$%P+Vb jyadj%ew1wEV_;a%9I^Rb%)RqKlNmf+{an^LB{Ts5*w`*K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/hot/hot_hollow_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..53015d16290b40f49cfe3a6cdf70a7c33cdac5cf GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3&6^u1i;aIZ^dO@_9a z4yUp-gM=u%Ah(ntAB)EfF|zkW1*s0g?1uEDB79r_>n)Cma-;c3|4923K~5 X-=&;Vd@^@IhBJ7&`njxgN@xNAGFURk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a222fb9a91931cfc6826403c9709369f6be78b51 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=641fBkZ%@9>GUFV{FM zU$^~UmrO~^WT)P(YcjMoE9Qr#m39Wm{A8~G160ab666=m;PC858jus=>EaktaVz-% zdxemM#0@?M$(URo9!c&7o^KtTbJnsdw7p}1OE@Lm`ycy%;?Ldx z&j0RT_CPX#)9II_8SC=KCV_96KCH10e?7Pw_UI`{^ER*~c1gBLGB5;-8l6^{5%~pZ O41=eupUXO@geCyvqa}_2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7f4c379ec85b01e75b6d3640c68567401e24f1 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3&6^u1i;aIZ_osdwv| z3~kMd`JDkWGtHUK0_7M>g8YIR9G=}s19DtET^vIyZY3XJzriaZF@w8-$1I(VZ8FOQ z0dI!Y%q~WayzT20Cg_E-v4uHbW%{P@kb&)5!e^#$NtYSezI|e1Gia1%VEEb3F-dLv RRZ*aM44$rjF6*2UngFijH8B7H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf5de0af748edcffd2175bb45ad3ece0476b857 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0FFCkh#|-BgifFa*acJ z%4~hdX3u~LU(WP>djIv_!zYJNoSim*bxF(QSQ6wH%;50s zMjDV)(pH6&m@0$7gpMv5m&RGR~CI;NO z3VRh3k1207cwcr{Nj*R{dgaQAuUPKRTz%E+;wEVZuiysNSDc4~a?LElZ5WwR+_rBts zh0oVr5ViSlnkC1wuu5Fm<@Wck+skkM{%b14%Wz!eQnD%6j;aZ7f?Xr3#QW9C#CCX< z2Bu6nC6}kUb8El@=_rdI+ofm8F*$mMRvcIu@L_)u_!@px}m!N z{~u0Py!mU#n>aqd!#^CnyyP7g%nwM;e0P*DruyDD`NfSd)n~p_`eh~PKY?#4SH9(j fy_!@p6XogR7*cU7`2d?&v+rR? zlkA<7y($?d928a3c(IG&2uF}e5UZhum(lW_<_wZ=GKDQJb2adsyTIwdBE-p;V9MHA yFhy)byLrPBD>Vke4#ps!FyXiZaZwFNvlymq7dfT+{J$~K76wmOKbLh*2~7Ypz(vRa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e6bcab13a77e7f3e7b0625f1b22204c64b1ff909 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FEF-oO6f zUy>}3f|#!GPGh@h;dA4|er^u)1oK4Z2&p4Xnl~HPv1qh<261?7WIEJpEp%|1I0M5m XPp`!*&Mx{1G>*a3)z4*}Q$iB}tZpbt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hollow/infernal/infernal_hollow_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c7388bf2ab43a02ad33f7472228c5fbe850cddbd GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0BJ<#^KAEK0$7&H5uCX zx@0C?WHSVcGL{7S1v5B2yO9RuID5J{hE&|@?P+9lHRL(!x9!>g`k#SwkEiNbZ0dQ& zo2YBRyiH5^8^>?4Qzq9~K8yZ%|BC;`_UCOgI;I9^eQV2DG()^DPK#kX1M7nsK;sxZ MUHx3vIVCg!08*?tmjD0& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e9d6a4b76dc0c9b8d24a50127c1525eaee42b7 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C7RRo&3XaA6mN!xsPe zvjwI1+jQsH@PNBZDE&-UT=6?`!?r zuT=4?PL5%N&~FLjSM5zXnwOX?tlmv#cu}!HBwz#2-pwsV?~Ti}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b743c0ba9e6860c8ce68fde7c72ab965f40744dd GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`v7RoDAr-fhCE6U6!oS+{BnvCA zh%E2pmH6D|{pYx9-}Qzcn^|}8Fq{-LJCN9IAEP+ypn_!+TY{F0gpaYfg2>c+`OJwi xdJQL=pMJ=e_GKT;F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..47d7cf1debf9ab81c84a3bf151402afc0cc87f52 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E?5mvGqPuRF)4^nP3X z*@6qZ7&i1VC^Z{O_!@pli=y%7*cVo*Qb?{iGe5T_mFzV{8*#XRBQ@DlTI`JB_{gFsn72T*z@lrJ8eDuOcL3 z-mdX~T;dingH`Z3^E8JWZzoLSkjtBX`=7?IEOtF>#t-M!FHZ;B#o+1c=d#Wzp$P!; C!9{@p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&>bqO$?r{elF{r5}E)Oy++Xh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf2920638762f799a45e9d21076174eb9d9cf0e GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E?5m(ZPK6MweAVT*t1 z{Whg$!wr257j`j755;!cKZ5L8Jl>_OxG}%{|l>4tnZw`?s?n8z7S{!gQu&X%Q~loCIGA9L}dT~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a85f3089ec2ac1815c9cb102ade47059cefde1b3 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/holy_dragon/holy_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..81162ce38a00b356141a9f3310af9cbf408d7fbd GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6MW+v3j_IBfCPonxca zY$%bd${Q}Rq3o(VP>!)A$S;_|;n|HeAjj9!#WAGfR`LO^8$t_s)I~XD7d?8yHO-*R z%+Qa)(C3i%+=D#JnaZXz2{_RelF{r5}E+*J~yEN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..9db798bcf13108232f8797a4ac45b486efa5cf7b GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9c5n!KzEdQ!%4GR}0V zr`jexhFlZHW@RQTD{BJ-10^LTQBg6VvepgzJ^?Alk|4ie28U-i(tw;OPZ!6Kid)GC zxX;Nvuw-6Tc}dFR5+8%4jIsWQGg%CsXM_@BN*PZ~h`cdPu~hKHhR8b_iKUV!EVf28 zT+GsEX5KyNJnKDWFIJv4ehXROEYxD;d9#p}CxOYFfnm}bv7ZSWj~xKo!r<{QO1%WzhDN3XE)M-93xK`$B>F!$p^S&WFlf5Ot?D=7zCRbb(|EWT(npl sB)E8Zd^C8}1rCd>(P+5Z*l5DQ;D3!p&!B|Y2dJCD)78&qol`;+0P1TjIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8c65096fe6acadca654790c3d0abd4840bc5c1bc GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9c5n!KzEdQ!%4GR}0V zr`jexhFlZHW@V;?)~9tqX~vQuzhDN3XE)M-92ZX)$B>F!$qIZ+ObeDYX7CAIWDpZd zXbH-dOjyQPytswY*rOw|;Ua^_Mr}(2gAE#@1{*Ip(8pk9WxYv{!N9;kNl6K)QdCsz>W8(vfh@+7AirP+hi5m^fSeLf z7srr_TfIGwd`Ap8m>IohO*``E|Mu*yPOl1|r?8#=#GaM*i__gjtwq83k$`0&1Mh)? zO@*$D%r#nOxzS4-U(GI{NE3^Q|6M!|CjItAO@1c)I$ztaD0e0syg$TD|}P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..91bb30169be71c9cc8c86669b07edfe1dd5fe76f GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-90yMq$B>F!$p^S2Bqf*}N<1eL|FSYWidb0p%kmM?}}0HEl3u$>Upg^2QQ|9q%|BJ7?vd0Gh?%>FVdQ I&MBb@09#QugnPbQgJK!0Lz=qmpnYF znXEiP+ENk{7Q4iZHaMv;NwkDFywG!Q>A1oqaCYki#@UWMKAb$P3T@4kq`5l|&V2VI s%#2aRNKtd{W`;FcUTPth(jEK^g1`6^7kltq0xe+hboFyt=akR{0L>shBLDyZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd8b85357aa4577b0b5438ad8e5b51dc2e54a41 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9c5n*5pB^r4U8WmV9V zGKS}g3@77EmwKvg(qm{=W->4^P*PG76%_-jR5zMr0i+m9g8YIR9G=}s19E&lT^vIy zZY47`Ca`fN%w zs)3ZVWR8JgTMApqfptrQ7#8jHl90F~-VnjZ!=sZhk&TUwZv#iiK?f-Y2GKWcX1$;L RKLd?n@O1TaS?83{1OSt6GkpL6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/bronze/bronze_hunter_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..035af049f4c455971a2a5e0a926a162254d739b5 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E4LQC#Y&)~w6~WdC1l z@}!JGR8;KG%%+!BK_}x(IkzrR0ZK5I1o;IsI6S+N2INF|x;TbZ-0JPw$amO4gsCxI z+wA}U^}fr^oa(CcEIOqRSZhQJou6~1Zo`q80h8@^GuXENsHuF+uH@)B(`tV52HC8g ww-VRB{bqUeE?;V>b=SV9i)=g8_`;}0NCIXchWE09GT1N lFS-9LulFl@_9gxTL;F_N{R=P09|oGv;OXk;vd$@?2>=qHN3j3^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..27b95942ef0590a9513c0cb1b504ac47e89f0010 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3z`Z~k9vqHuKUlQIUW zRm%m7sy68{G%GV%Sy>wx7$_+ziHeE=mDOC?ZULkiOM?7@862M7NCR@BJY5_^DsCko z;65kwz>;}UA&X6D%o&a&P++{DSVrfnf-&cZ{CJUI(Fc@mh+85lMui%Z{%6ITS<{QO1%WzhDN3XE)M-93xK`$B>F!$p^S&WFlf5Ot?D=7zCRbb(|EWT(npl sB)E8Zd^C8}1rCd>(P+5Z*l5DQ;D3!p&!B|Y2dJCD)78&qol`;+0P1TjIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f6fc74e75d6a37530740d4af2595a7878a90142d GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3z`Z~k9vqHuKUlQIUW zRm%m7sy68{G%GV*^^=_slx8dm@(X5gcy=QV$Z_#>aSW-rm8`%w#k^oja|WNlMFz2; zgr=akq6y2Gy(hOZb9;2SHlAek*vKhmU|_(lX0So3O>ILf7rViRRyBhL&N~bY1|1yN UxLL{+faWoHy85}Sb4q9e00fycQvd(} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a83def1662fd90d2a730287d81f40d603fdc36 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E07iy6$6q=N=gO>2AlL4 zo+mO`Sy_MRV_5k6h1c7g&B{#w*O~|xRVf_ZDz$34;@POTK-G*TL4Lsu4$p3+0Xemv zE{-7;w~`c?7-r4kVqtTVxW;0=@ag~jxdukZGn18-j@@58KV37Vap|0N^VKXnwO%u< z-dKFzES&f9r*q;;+ouJe^W?}>SUoAY$z;hgy=(J-t#nwj)lqayZPGSApL+3}?P=Hd ztt)>xPnPM~Z}mOK-z2^y&Udswl=)xT?k+pS32x8rCV!lO4q@bP0l+XkKtA|^< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..91bb30169be71c9cc8c86669b07edfe1dd5fe76f GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-90yMq$B>F!$p^S2Bqf*}N<1eL|FSYWidb0p%kmM?}}0HEl3u$>Upg^2QQ|9q%|BJ7?vd0Gh?%>FVdQ I&MBb@09#Qu|Ar-fh53uAcOyuEN zxsa15Ok3T+px|88nFD+iH4+RWITxi{D!Z%^Ysgr4l;;LdQUXtc2ZNyqOXy4oo<0ND st5?`2csM6WxHCnB2D5}%YIpE6i0AUP8Fw;704-qfboFyt=akR{0GhNtLI3~& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..2b4354d2d849fccc5a49fcf206204c7e2a949d04 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=0(Dzwml{^Z#0t4}A;@ zN4GvHV~|?4{COh7COw8`WhMgy10^LTQBg6VO4%3#Mj*vl666=m;PC858j$1b>Eakt zaVwdjQG|^nVKzgm!ET3)ed3?x8YJ_-ZM(zFedk{B^Eb=_k5?@S(CIiRTJn9~E2aq@ v?{=5>A5hx*{+=y+_Z3FTgum|{Iy8U|d@XxtUz7Yppur5Du6{1-oD!Mn;X Suj_!uFnGH9xvXNXsi88F#yH-l~KkDAKI>`IQFGp*()Z;;K} wc`I@4+i#Xf@A9RFTKBw`dix-Ed;ACXsqvf(8!sO_1+;^~)78&qol`;+09Bw#y8r+H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..728242d16fd41de021627f429ec3cc6e3e3b5246 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fhC8i~aOqo9YKYQYw qM=b|481!Oy$@Dnp%z1Q}n}K2CPPvC&%+X#z^$eb_elF{r5}E)za~nbc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/diamond/diamond_hunter_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..60542922cfd9f7d61e36c53e84a4970ba1893cdd GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09(=x>ah`a>1gi|7%U2 zlrb#){i0c!$?NS+NvCWNW_!+U{|}k| z*d@E}wY^Kjl4T|v{TimkN@X6pa+7y@#k!|=4X*FBntA)rp3KROGWT6Xw#DZh{-Jj8 h&Ocj?gx~fSOxIEwGp~NvSOPSe!PC{xWt~$(69BnhL;wH) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba1781dc36ad832c75dd812dbbd0a203e66c7eb GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7E+dHr8&@^Yi-ooT{P z${6NEFl^FeXjW#jva&WXFi=ub5)~B#DtmWJHXleamIV0)GdMiEkp|>MdAc};RNP8F zz&22WQ%mvv4F FO#le~LfZfU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f25ac35ca2c764fa376a32436cd37603585e4b5d GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-93xK`$B>F!$p^S&WFlf5Ot?D=7zCRbb(|EWT(npl sB)E8Zd^C8}1rCd>(P+5Z*l5DQ;D3!p&!B|Y2dJCD)78&qol`;+0P1TjIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..144246df0829a57cda20bb6cf02883d4907309be GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=7E+dHr8&@^Yi-ooT{P z${6NEFl^FeXjWzl`r~N_lx8dm@(X5gcy=QV$Z_#>aSW-rm8`%w#k^oja|WNlMFz2; zgr=akq6ujX*^}KEv^_dP8#Ng`HgZZC7#MJ?8ElZ)rLtishqb|mohk+moOc))4E;E^ U2AlL4 zo+mO`Sy_MRWBB_u{?|3HW@V=TYfa`vFudF-dS{w&ZDZ;`plZgFAirP+hi5m^fSg)S z7srr_TS*E`4728Nv9LKwTw}3b`1F7NTmz%ynaRpZ$L=qlpRO6wxO7gs`D&J(TCW*a zZ!A7<7S4P5(>Zaa?bCwKd2(bbtezCyWU^$L-nIF^Ryr)%>L|LUHfbB5PrZ1~_O$E! z)|Ee;C(HEgxB4FAZxUY;=R4XT%KWcvcbA>v1h?mQlRr*ChcI}$`njxgN@xNA$qQTK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..91bb30169be71c9cc8c86669b07edfe1dd5fe76f GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-90yMq$B>F!$p^S2Bqf*}N<1eL|FSYWidb0p%kmM?}}0HEl3u$>Upg^2QQ|9q%|BJ7?vd0Gh?%>FVdQ I&MBb@09#Qu}1A7ELdw~mKL zQIC-)Ok3T+px|88nFD+iH4+S>ITxj?D!Z%^Ysgr4l;;LdQbI`r2ZNyqOXv&-9=>qb ssT0^Hcr-88c4vqPoy;C$$=$)v@ZuWps+Y4^K^8E0y85}Sb4q9e0Ng}BVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..329d8a7c8e36fbbe85d5d7995635de09a08139b0 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4@N#{atJ^?$9&%Z;LU zrU`%OV|Y@=@H~-WlO98}GLwOUfs&GvsHhlFC3DlF2|$XmB*-tA!Qt7BG$6;<)5S5Q z;#M+4qY)cN!hD8QgXNAH`@}!XHAv=v+jf_k`_8@M=Wmz=9(OI6px<%uY039_rFVdQ&MBb@0NJrfwg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..728242d16fd41de021627f429ec3cc6e3e3b5246 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fhC8i~aOqo9YKYQYw qM=b|481!Oy$@Dnp%z1Q}n}K2CPPvC&%+X#z^$eb_elF{r5}E)za~nbc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/gold/gold_hunter_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..677934a1046db535c46a07bb6a23257d0b66fbbd GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0BJDM(c#dkAWfzpg6L4Lsu4$p3+0Xcr2E{-7;w|aY88JQh8nC&^Y{Xb;- zW0&l@*Y++AOO}~z^lO+BE0uZZ%1z$s73-efHMqXhYUb@fdom|C%G`Gm*%qI3_=noT hJO6Ao5`NoTFkMS!%)I(tV+qh?22WQ%mvv4FO#oZpMN$9& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d99afe0cdfab52c84bd1280f673e2f31d44f4434 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=2Te-1xuNWW|aVPs$jY znwpZ5k~ZlvG%GV%Sy>wx7$_+ziHeE=m32Q=*920GB|(0{3=Yq3qyafmo-U3d6}OTP zaG#TTV9C6w@|3j2DSie?8DsqqXR;VN&jckzl`@{V5P2nTVJYW{50RIaJS=5BVX@Vv z@np6>GxO{PXIbwZZsO!w)3%T^XW=16o}7i8JPAzZ3=A8S#ieh>i7NtaVeoYIb6Mw< G&;$VDF-6Y+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f25ac35ca2c764fa376a32436cd37603585e4b5d GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-93xK`$B>F!$p^S&WFlf5Ot?D=7zCRbb(|EWT(npl sB)E8Zd^C8}1rCd>(P+5Z*l5DQ;D3!p&!B|Y2dJCD)78&qol`;+0P1TjIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1653a2c14187509408cd22217624d53c40c01957 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2Te-1xuNWW|aVPs$jY znwpZ5k~ZlvG%GXBNH5p|lx8dm@(X5gcy=QV$Z_#>aSW-rm8`%w#k^oja|WNlMFz2; zgr=akq6y2Gy(hOZb9;2SHlAek*vKhmU|_(lX0So3O>ILf7rViRRyBhL&N~bY1|1yN UxLL{+faWoHy85}Sb4q9e0Io7Lu>b%7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..ef1597d43a6a89fc922c664741b62be432728901 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E07iy6$6q=N=gO>2AlL4 zo+mO`Sy_MRWBC97|BV|rnw6RUuQf?ZN?NgEMN?B#XJNq;plZgFAirP+hi5m^fSg)S z7srr_TS*E`4728Nv9LKwTw}3b`1F7NTmz%ynaRpZ$L=qlpRO6wxO7gs`D&J(TCW*a zZ!A7<7S4P5(>Zaa?bCwKd2(bbtezCyWU^$L-nIF^Ryr)%>L|LUHfbB5PrZ1~_O$E! z)|Ee;C(HEgxB4FAZxUY;=R4XT%KWcvcbA>v1h?mQlRr*ChcI}$`njxgN@xNA*os|d literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..91bb30169be71c9cc8c86669b07edfe1dd5fe76f GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3%?{&?`<{QO1%WzhDN3XE)M-90yMq$B>F!$p^S2Bqf*}N<1eL|FSYWidb0p%kmM?}}0HEl3u$>Upg^2QQ|9q%|BJ7?vd0Gh?%>FVdQ I&MBb@09#Qu|Ar-fh53uCuT&XfX{#F;6r77XbAWH6MuI^s=c060WtTN#4H@f>^4#D_N+?P2U@#P637z4mdKI;Vst09`phu>b%7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3515762e88cdef03a64aadeef62a3864ac6896 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#{ab@D^{%d z(8utkjG?Ki>3JfEakt zaVwdjF@%jHVKzgmLAz7NKJm|T4U+law%udqzH_hm`5R_|$6X61=yx1^TJn9~DW(Y> w?{=5>A5hx*{+=y+_Z3FTgum|{Iy4v<_*G=j-s~y70yLPx)78&qol`;+0RCV}DgXcg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e06a0c8057502fe5a545e5bc72cec44de8308eda GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=0^5JUDpp;L@eb%gf7m z&GiCFF_r}R1v5B2yO9Run0vZ7hE&{2KENFz6CrbeM?H~EctgX&2@^LlcO)J-aDZo` uv03Aa)Uv`thVBN51VOPG9o!s(tPCeC*zAl03t53iFnGH9xvX|Nk2|Zmd|bA~;E+A1J|C666=m;PC858jus=>EaktajUmyBi~^I5vIm; zZL|OX*ZVFvbE>P(v*?sQV671?bbij2x(!EW228fw&0yR5qo(pPyON{lOso0H8)UO~ w-b!5i_M7F=yL_pk);+JK-ag3P9{+)TYCPw{#>>Y}0qtP$boFyt=akR{0F&xU5C8xG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..728242d16fd41de021627f429ec3cc6e3e3b5246 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fhC8i~aOqo9YKYQYw qM=b|481!Oy$@Dnp%z1Q}n}K2CPPvC&%+X#z^$eb_elF{r5}E)za~nbc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/hunter/silver/silver_hunter_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6271800e56f458fed4587a4c58a1cec955191c38 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A8XVntI^Q&LjW|FtGh z${7Ct|KF_4bmPX2DdlWOfzpg6L4Lsu4$p3+0Xcr2E{-7;w|aY88JQh8nC&^Y{Xb;- zW0&l@*Y++AOO}~z^lO+BE0uZZ%1z$s73-efHMqXhYUb@fdom|C%G`Gm*%qI3_=noT hJO6Ao5`NoTFkMS!%)I(tV+qh?22WQ%mvv4FO#uERMv?#k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..fddae9c9f245cec50a1f620d2e2bf240f6353f43 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7Fk7>cSqPusJHM4Nm1 z>08@tXlP42fHh3Kb$$g<1!GB&UoeBivm0qZj*q8{V@SoVset7-G)^+?^vl7lr2#)FyQt}NO&M( cav)im;Z+6Sh4a%7f!xX9>FVdQ&MBb@0H-)QJpcdz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..190148f9c0286ce7de32bf80cebba4edbb0e88ed GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>}1FHk=5kH3jStnJIj z|Cj&$ZfLD-Sd+}5%E5a40assQumP{@L6ZecL2ENy0xxu|Qjkv5R+B&I`rT~Oq#Pf0 eMHhBf28KmmDe+}q8&?5MW$<+Mb6Mw<&;$TI3@Y*f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f5733f5beb5e7d2f13cc20a4782ad60eee68299d GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`j-D=#Ar-fh7idbbEH zwo32vw>STDD`W~abR`;haL!g-%3l9S_%MsY<@)P}4I3Hco-;jt@XDd8%`=CQVScjw VPRW{+dw_;9c)I$ztaD0e0sw8ID4+lU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..7b2a853bbd6769a57ccb6c5168daa98761bed18d GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F$wE9Q3{Ls6AydY;p1 zd-m8=n~-R8Pd|NYdkqb3X$P>**Q<@9fJzxlg8YIR9G=}s19H+mT^vIyZuOpO6?Hb` za0s*$EcsvAedX`5`<#CqFa32rc0=}?gs7SEao0yTMAgTe~DWM4fJ@ri> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/kuudra_follower/kuudra_follower_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..844e29d90ca65ab5d1f7981d7b92d1cdc675c4c0 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6QaxQ9Ln>~q>1pIVV8Fp5YcM;d zOYb2|-UQj0({Tr)8XXvCvA>daf7);U_~y-qb8FZI_<}3mE}h|d?H@yyj@iw9B9Cn^ ze7JLJ{l0@8j`gIBn1F09Iu1 z>PJ0Ll(8hpFPOpM*^M+H$J*1yF{I*F@&cKb9ZoM8#Kpr54j(j`!Fr~kw2+hW;u$|RApxF$bu6{1-oD!M}1Es$gQ;>4yd;G)Q* zdqeBZ(Wpz;qVGt$JgTkJ#dAPl-42LsAzopr E0HF3B&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..08c6bf8d55f1d073274a75f9a06ed344dd2c7094 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0E5d`o$&xjzs8Q0hcvG z4&AIO$uSP!UIQf&(k- S0!x4}1FHkP{#oxps*7oJf z|D*q}{#V|7QADJfHSrBc4wupcE~O2c9SUm>aPMYn5pZf0pVF@OmL$tON!9;^OpYtP6G<8Si+-c0I?>vx6~yhVG9qPCLVz jroK&g5HvXOE}WsFjidj{s@|hO^BFu{{an^LB{Ts5;QK&7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..93c395b31e43c1f0a683b1882e8b27c5962b00e2 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay(reLn>~q={YFapdi5fw#{ls zy4DW66-TQUJ4&47dF=hI^rmc|ecaQO-7joz&Jep1RC*_YXX=GbY&SD)Ctgc+%(${W z$-^KmAVNaTHDLFjj+p0K^A&Ut=$&}au*}?1fcs&i`a0dpoo-GcObm<8Z+c=L*?16W OFN3G6pUXO@geCxK3qE%M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..b328a79881b3019a4c1dcccc498a9253c27fe5fe GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`sh%#5Ar-fhC6+my+V0yIFwg!Vu z_Z??BY!l99@Da9Jc7tKjA%-+=GoKQlgiscd!wV}#7#Iw;OwuY>+5G@$A%mx@pUXO@ GgeCy%G&YU^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_helmet_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..b11935f068ba5bc7847468465d397e4014bb929f GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyq5(c3u0UGIp_^4DS-@qDMCe|Z z{5zRbzihKm<^@VHmIV0)GdMiEkp|>cd%8G=RNShWz{tjGD8hVS#q)jr?}6nl6S3^&i1$da(q|NQfR8>X@v?aV%%d2x>Ny3h4D4roZQGR&x8 WdNgg_$HhQrFnGH9xvX}1FVHUd)87!WbnicR zhlQ8xzy6O{(*56`HE9BqzK?33!^5N*CLBq@0*o8wHJ-MFGJ0^aacUnZVfNr>O8U<3 gi_@% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..a69bb03a4d41b5fd28ef2cf7675b5cf7e40589b5 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=5*QzqsVzkqF%@;Ic-@ zp_^4DImY4JYoG*UNswPKgTu2MX+Vy>>6XMv2fB_GcqSAx8pjCVh;iiEc7a8K$?%d;14s8&1{p(spSmq4 RD}hEbc)I$ztaD0e0swpUHB~qJ#~=tfB}#5#k|M1 zC0|%>DsL`{yRN{Y6{xTJbGpL**LR#V18-MeyL&dTMEaoB#*&8iKP+>0e@Q5jIm{&a rQTU0};!DgN4NQFk4D2_4*FUo@{?P1qoG(8HXaj?%tDnm{r-UW|V^lR} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lapis_armor/lapis_armor_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..403d38c304eb9661d08217485fd7c265c8131351 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0B(7V(d0yyja2TXBxx* zs~Z1*xH~a2Tq*rL11QH>666=m;PC858c3n1i(^Q|t==wHrd9=s=Iwuv{e8dsz>4b+ zmmlB~?@(2dI4LwOrKhVT$A5a5bCYGdsZNJO+pPdeA9XPW#@siJsSA?hSKhwYpUtxN v^UQ}1Es$d{F=7*AV0Pe{ z^Thpx!Oi*^Q-n?|to=~*TqeCv>(2@XXTyzYOo1yBt}ltTFx1=6JzeXl`@$}#g}vdD edqf%Q?=a7Ba+o;#D}M*jR0dC1KbLh*2~7Zurz*z) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/flaming_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3b825c7fae16bed0e8994b8f6d07086ca6ad732d GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0Dfe!SH7q!~d%q|9`m4 zpZqQl6k;q1@(X5gcy=QV$no}caSW-r)!WU;#jGH3c+#)``nP*mDli{7;8?uHCSgyq z!|_iG1wxqA`JApVO<)b4yQFlQ?eq)!4~m{He^B`CxygsThD$|@|0u4nVKAL4Xab$rJVlTYqaZNbQMlif3--UUypSg8&1sg24u7kt^5s1~MM}#&j`K SFfI#d0fVQjpUXO@geCyUN=ruo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4191f1aba179fb6336ab8bd5fbe539ffbcefef4f GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FVODzJ)gHN?th`y zhbFCqnQShM9xD&m>r5*A|4=P)Gh3vW&b_is>HXONk2vV1t&vX Xg@OBSwMnah#xZ!h`njxgN@xNA>$@ni literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/moogma_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9d73165f4c3a653d2f920f233cae166dcc50e1a0 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`t)4E9Ar-fhC29`DhP<)Y%Q>X~ zVg7<=(vpuNMCX=1`%%BzLn?WAUmR2p nGaQ=b5a@G(A*Cm{CV-J4bbjtcAq6Io3mH6J{an^LB{Ts5(WFMH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/slug_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/lava_sea_creature/slug_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..dc4e0b2446ad72af812860566c202b955cba05d8 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3$$`W<_n_UyF&l4D-4 zmaBKKa=hBAklbT@G*%+0RCBL`gn_3>GlT4mRp%A~RWp_Z`2{mLJiCzw}1D=_vnz4`ySQ6Q4# z$oYT#)AxO^7mw%^jyS=2gstliv!>&Vd=@Wfk%kv;6C|7(g+qiG4=5?HeqmsEuWkNO T)Na=Spjix_u6{1-oD!M}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..af235831cdbd398dacb098f12383e42bcbc216fe GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E?cWMB(p;Bnv)=wV>> zWXLnfJp~kHED7=pW^j0RBMrz2_H=O!skk-A_bMYx0Ef_#zu)&BoBlst{mA^FrF>US zZ_hu!{j%`}ey5TxZyOcve~j}eQu&lr~~@x98(62KvJJS3fd8Xer-S z)7$gUZ@+B3f#0cQ%iBhU`yb;xic~%&Rk;hSp3lO1M)-j8`zs68zgWd;bQ*qm_;0CE coiflF757=raIBuV5@mdKI;Vst02n?&tpET3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..6e9c3106a01a67fef12a64a1eaf7a6f5175d87d0 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E?cWMB(p;Bnv)=wV>> zWXLnfJp~kHED7=pW^j0RBMr!j^>lFzskqhK*DA;yDBzSR{wv?|^P_nMUFWXLzwkNR zf4k-V7S{)@2687q-0Ju+VNtG7mQ1$Wv5?g&T4e$gk~X_C=4?#8&vI*`c$sCx;^@|# l8Lf?(CnLiv%G17zv2T!PwAYAO#{sm6!PC{xWt~$(6985xK3M<& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ad9dcff2b24fc4166bec1eb227cb10df43db7332 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CTsb4Gb-xwnV+&OJLb zQZm}RFVp}<8B2ovf*Bm1-ADs+Vm)0PLn?0d_O%K!2MRbPivP;D{QPKMLD#wK@-KYO z_TO%Kzs2=ItAX6f54So#OjwjFlqHkxb}VGIidLDxgrv=`j5!-q@3Y*RC|+jSusFIk mXGUvd=E=zLit@CtV(c5_8SOP9)^PwWV(@hJb6Mw<&;$UH@EaktacfS`R>lJi0!)?l%G#wd~1^ zeY3Xgox4IpyHbwDr&>BJ-Mz-#@9-|(-#P|W{$=uO7Yi{kl;tqo)_L;|WEz8~tDnm{ Hr-UW|-Ucpi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..2faf37b5855f40a359522f9fb774dfe1519db376 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy`~f~8u0UF#hk@0Tfh~-IyO2Th zvVQ|mh_NKdFPOpM*^M+HC)Lx%F{I+w+vALB42}#e2j|WF_kVV?aN(@FR zn>tw{uW3TdY!QV$D~ql>sh3OdD!A-tWa)ZKqxjJ|;RSD9ROhiTebMA_Zt_-#7S8(f s#mj77RA{u6DaMEzAD(^U`Dc6k#Zipiu~lEb11)6mboFyt=akR{0LZIEkpKVy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..10e940373fcd628aba3a90a63bf6c7b5975ffe68 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=2hB?3^)kMtNy@MoNaa zhxal@b6%h*V@Z%-FoVOh8)-m}ho_5UNX4z>1KbfYEi4CkQrTR?1kR=$$ao~gkYccz zgVRvDVTuJu*RBQ$ADuq0gIqj54ky-Bh^>jZ8hX-z;Yd+pLO_ZF&^3EK*$kBaajXWK O$>8bg=d#Wzp$P!S%`->< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..2ec0a7882ba3e5b0f477cdbebd98712b32cb0aa9 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E?cWDw|K;Bnw#3u9pQ zWGK@Yo(>dcED7=pW^j0RBMr#$_jGX#skqg9#!&1C0|(PZ#<{=aD`)p+IzO*xx}UVk zw0OITs9dB6RmUX Wj8P!}s$MnFXa-MLKbLh*2~7aGoHT9# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/leaflet/leaflet_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f9374b8fce73c9c539d50fa3adfe118c19d3092a GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CTsbH>g+JH0);%S+2M zQZjD;oP7=`%2*QQ7tG-B>_!@p7*cVo_l%*~5e5#Xi;Q!B$5+no&2)ZV&vZX& zlWFmG6H&QH55~_m7eWuR&q^yh>B#+VZ5H$FvyDwBxmiv{H#Qbc^<;DV&L7LF{?xl} XLK&k#{#CtdpwSGTu6{1-oD!M_!@p6YS~Y7*cU7NkNz)Vj7n+LxVue-v9gN&#BYU zR5E5zu`DIva;@-*-S#P=&Z`?%@$;~R f*6%$Sk;1?r?asG;k!ex`(0B$~a?K{ZJY`}43msYlc z`?Ew*w?g@80V4ONR;@oVqhS7juZ{7OpNY6Hn0Ey literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..151650f120de4e792c7a92e44522863c495eb214 GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`W}YsNAr-fhCFVV_XG-o8ypp4& z#unI;$-o@Yw?UDGS3xL2%E89LLiBF7$c?U(YIip{^0+ZFFkY8aEic@08fXH8r>mdK II;Vst0ITU8>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..26d55a0c236a38121567dc1d6bae7183cc7c7380 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9a7#sA;Q_J1+opBA1o zVFK$-1^R`#O~k}Bg@ojId4US<9x$*3Qj8@*e!&b5&u*jvIYpi>jv*Ddk`J)>>@GJp zcyn*Gwj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e8d5beae500ce20a81f57808b3ce406040a64816 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6$~;{hLn>}1EnwU6e|`hc0zM-H zMhUjY2W!?nl$m*4)~L}qr77E0@x~+Oq(`-JMK2z_^<#XqedCIyy@FdAlx0@49zDsq zM!5LAw9| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..41eef944819c87d9321afaee03b3f615280671a7 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE06{PO(7u@F)=w_-g4Q~ zQ-FNNk|4ie28U-i(tsRKPZ!6Kid#tvYz(_*a7lM0X|%lE|A~|HZ&0m<=e_zP2a5#` z$muq>_#8O2Z-eL8>~g&-d*ANA@Zrl(G1aq{U*9##rn58rFJogWm*?CP>u^&xqW0c{I7VH$2SE(A w3k3~I9ZD7y)GuIKT)<$;B(n2-t!?}-X7)FX`;O0v?gF{W)78&qol`;+0RL4(2LJ#7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..50a334e1abf0357a596ec5170d24b6ad4645ffde GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn>~q?Pq0lP~>qr>DzaD zGoQCZn`*`VyH9!3%U;^IYz>PtF572(dF_KG^@VzIO;4MJz1fv7tT}n()rXyj=dqnl uT2p*)SB}5(%(thPH3;0@xqIpS6%4jl{LJzn$o>P`!QkoY=d#Wzp$P!fJUK4_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/magma_lord/magma_lord_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7cd5ac6ac331bb92db0e9d58f59b7a7e1b46a24e GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;hrvzAr-fhCGI`2H&XMQylldS zdSOGu6dobv9En+JciJ8>E4V7?96!w+%#-GPwDU8U*ldMao{TTp0v2#i?mhpK#q{A< rE}aJ-BpA43*qYiFNHbiw`NP1l#LcOg*WJnqXa$3(tDnm{r-UW|n;9)X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/armadillo_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/armadillo_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..ed1bf3400e940e7a5866fe5b3100881cfaa2bdae GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0B)SH7K;RTU(fWthvhVzyP6HFk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bee_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bee_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f6c31321e0ae8fe379ce53f41fe849efa57e GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0C6x)0i5obhOFF)h#A4 zDC@R64_!@p6XogR7*cU-j!!TXgQCFMypsRB*IoMGc5w2q@`^c|FIz|pIti&Xt*sEK zvD?DQpe)3E;}zQiYb7u7*MA*c>>I>#Lp+=ndvv0F`W`a#9GIQp+Zo9FM2^K^0yo2| XUY5BJ?;ouN+QQ)J>gTe~DWM4fllV-$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bonzo_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/bonzo_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..add55e082b1cea0c526657652a2bacf50b4f1e21 GIT binary patch literal 301 zcmV+|0n+}7P)D$fLVHoFh9RL6T<=fHr^Ucr1$Jfx#-NU|=DIV0n#Qpl%bQc(84H#`6 zA6^q2<% z_RoRnJyCs6q%{#4b{H!S<}Zz>K=ii#FNk^ULy-CfOo)BB-cY^*=Vs3Y%2#O4=ZjyG zR<*oAFV?5sb`^EXU%=+LKVYPD&gvtdr+VK5ok0eFEa8}M00000NkvXXu0mjfw!?&h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/detransfigured_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/detransfigured_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..db72d4d2a00e6a1ce233dfbb573908dc50f0ca6f GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E08wTQ*(B5ym#;3|NsAa zd3i%T9g>ri|NQ=ySJ+rqR+bfPUmEMIp(6j~!nW7PR{#6^t7Yo+|1U27zq;-Jt$h!+ zO>ffptS44$rjF6*2UngIAvYP0|V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/enderman_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/enderman_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..00b416bfa8c47734d9655210cd4438b40fe35a63 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`sh%#5Ar-goPH1FhFywKyb`?9r z_poe_(+!fzh8P4dRDfyo9c0X6fvPnmZ z&+a(R@@&5FL8X=9H)M-c=KL&mG3E|k%Tg-5%%S$=&Pv8}9+Pz&A6K^kEoAU?^>bP0 Hl+XkKGLbuG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/frog_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/frog_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..1684edbddbc7e3f36bb544a78c6e72b396b92964 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0DH|k~DM^32RW&Rnv9T z(sXr;2@J|&Wa7E)&ht5+x14pMl(eST>aPyXkLnjhBu~)u%$D0YFMi+JtYs7YdrMs3 zCH*`MG=;Gw$S;_|;n|HeAScGt#WAGf*4)#rj12}nEC)E=eYpSE{iqi6msN%<7q9w% z@=d}2zG*DCj$PQIS}6DXW6^DuOP{&@w{Gp`d{iU&=J$+;t*`Gc=$Tx@OEZ?Ln?0V?OVuu*g%B!^TLUd z9?M_x+&!owox=D2f@YHzD@#jiqh3L6)rqj?zkD|?$^N*!fmPSMD(&gv*;Cm+*9)ag zDi!*v$05efo#iK^XG$p>@_gQu&X%Q~loCIC=fLGSE08vlw{p_-F;}u*%)otD z&G`S^=>L7r3##TW?^rrDW7@hYYZy}gF@zs7sQkBL+WHNPw|PzdS5{Uwvu;s|cUwo& zq~zq}|NsBryLaz@jr0FNg>v_nt*pBgf#x!n1o;IsI6S+N2IM4px;TbZ-0JaV7Gib~ z@ctI_z32b_&DVBhtNrkQW^n68{`uv9z7$z?{qkFJ>E{HOT6XRC-*)PJyPhC;n_7FJAlATRQ8-Tf+&KjhQVQx0%276^YE=%Xc;L2@`{8HS>+nG8039wlR3R L`njxgN@xNA#4v6@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/not_deadgehog_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/not_deadgehog_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..97fe35f4bb6b22c72b1004a295323ff0bdf48f50 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G#(d-sAHdZXa2F zcH@NA6N}2q%9;{3%YGxi>_L94?Cq#Vug*BlLY|&9sQp|A-45#nQo>NZFNda2L N;OXk;vd$@?2>@cBP!IqB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/parrot_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/parrot_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..5dff4766050c5d86c34a9fd203db898c13c8fa8c GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E09iQWIV;r?&=m37?gF} zorjT$=W{-q4*9UmcnsJ>RzE{))*Q3=HNvI{yOh8)ZR2{Bnu{*}k3ysZwZ=S^KOYx;ZXp88GO zwd(%QykGq#@$+?u{vQ1;m!fpnKB{uw%lj^>(2rB~fu7BI%{6QRsZrZl3I!h4#&#UZ kocGqOBR56W+5a;%gV} z{l=wBmk#u#qzg}G5l}vQ^N7S5k5WTUUnawpLqVxhq6d`p*7Z6$xZVEtW&@k6z~Q5+ uYl{^pT#SpGcW*1#i3cxUyhu2}&G2fX(EFcnW-0TP!(Mkb!m`Ml+<3#Ftry;gs9XnvFytyGn%TxV*y&DwJF z;n}+vx0}0K1C0tPj_R(}+`nPd`Q5vMJSA5wSkm3xE`C0d2Pnr_666=m;PC858pv)> z7srr_TXVaenVbzpT$8W&?)>j7HvjXS53voF4^CMox76R3<60=7=yCsvfWqW1M;Ezj zRdvbP0l+XkKKQ?AR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/snowman_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/snowman_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..206b3f0c2e0755974b134ea5023883524f1e01b4 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A7)>XfTnOkhwJBNNYU zcb?DrybjHeyjFiLXI&^It$8_%_kSO!i;D|T<-7kN@c8rR8$XV90r`w2L4Lsu4$p3+ z0Xc!5E{-7;x8|NW%E+q7aO6U1`^hiyZ>Ar8_hg#+m!~1s0vzTY4Obj)bXDkousNSA z(XZ*efmQCg<;fKtPG2n6M6)?fv5h-D>%hv7G1C-1vtGRA-Vn~RV{xzopr0NW^2#{d8T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/spirit_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/spirit_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..71fed89a936ec22d3c283f8ccf178f1d3c5c9c78 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A7x<-e(dqpgaUtwxZG zR(RH(Cuw`1Xi6GCfBe6>>c5|MgqucCYw!Pmzy5#!@V~6AZ2!&w$;rw8|Np;t@7~Ob z|9_azZ3CLZSQ6wH%;50sMjDV4>FMGaQgLhUiLH#TfjoyVxO_`q_SgL{&)?AH!l_Sp z|KC1KeCu6*p~fG~MfQP8img}&aL<4V$Stl^$LZq idDr*7|2VBY@Rn@33v)C}oY+2~B@CXfelF{r5}E)dBVki63Gk>c5|MgqucCYw!Q>AO8RQ_1{6te*ew?#==JPyk@u9HqM;* ze~t8thd@&pOM?7@862M7NCR>rJzX3_DsIg^v6ay^kmv9Pmv70-{<{C=`5U@iIQ8l7 z|J$R|w%+v@YW%@mWFPtDXX~=U`zDWmaFoXKmhv8VpRjtNQTUwW+7i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/vampire_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/vampire_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..75498845154466679a1888c1c7ebbbfe6364b769 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G#(d-lto8Kb%?m zcF&YYtJ}}^=dUXcEh{TaPEK}bXW-%jnG?<{RRN?JOM?7@862M7NCR>LJzX3_DsCko zV6S+8Z!dS+9oyn(?^q2UpNrH`{vP#KRp4<|MAi>iR)xjiy54VfQe3d?(Al=zdKyfU x$DLw|^YmDZ-gSu2+q;!($?CpGaGi7d--o+pAJKv|ZU=lMNg7zP~2 zfn`}JiUQL#VcRy?whhnopePEi>%yOaEX&X|4SAkp97iNcg1+yOrs)k(2;ltlVS100Qgh<{Puv)(!&T$mjq7002ovPDHLkV1faGe767q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/witch_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/witch_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..f6fb7c69d306604b46a29b6253f7b2302e731107 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0C6xlT%kyR>f=Lbk z|Np;t?_NVuT$HcboQZRe15IQs3GxeOaCmkj4ah0>ba4!+xYc{=DB}?Yf!2qTJC5+a z-@o%KpA!G0?SF;eFn4jPycANdv^G22%1|5oUHnA%rd6kurqAwJ%=_cSQss&NeP1S; ze-zgKX1rLke6#m~y)&N2`Fv?Q)+9egs)v8>Hff2gQVrLBF^D#Pa|+OEaj4(MaNx7R UoGPKj9H8|Kp00i_>zopr0O`JG761SM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/zombie_mask.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/masks/zombie_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..39076c2feab977932288831b3a43dba9cf8eaaf8 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0DGbQnOCdx69P^EHuq* z5A!HBl9G~&s`e+S9>JJvj|;o2-<9KSr%u7%^@ zsvAMq<(vv512VIJ<%w%EDG212-d}z=$NHsi{M@;VX0NirDz;OXk;vd$@?2>_=-LVW-L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..20d6e75a6caf932f600e1effe057ca93213894b2 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1OE@JQ`oG&j;gEZ<`{|GIlAGI-m0c>4n3!o7Yqzr7P(I}+A*^LsF%Uh)z4*}Q$iB} D`a~h5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2a74dbb733438f7b0f7559f78fdce1c47341cee1 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4@N#xMN+;@34VueUev zOcRz`wOk}Fc%M?(5}+JoNswPKgTu2MX+Vy-r;B4q#jWH6+$_uytd1tD3mF6q1=xig zSfm9sSBPw|HdHm(pt)0g!*mTs$)~J5Ja3+IR+um|G%RBKWj4FB0B8h*r>mdKI;Vst E0E*@?LI3~& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..84f28d80faa80a34385e2c7b1067741149148afc GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4@N#{atJb#HgejSa;w zH;SI09e-z<@U&9rbbn2MBMB=NK?6BHVQv=H7*UWBj3q&S!3+-1ZlnP@`JOJ0Ar-fh z53u-j3GwjsI&tyH=*jW$=<4zE$eh#TmC;jEXxr@G&Dk+=QqrS0&#oOfuw>GsX^);Q zIdI^>Of`)eW{r#|0&Z=M<~-9eF{(o3NP_L=?5{H!6q^5DP|KamG(ojIr1@M^?ql2H dXH1ixGVHF9KJ=n{+cBWk44$rjF6*2UngC}}Rf7Nk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..809dfa3ab61fa81b2cb8a9dbd0e16d6c44ccf0fb GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6yggkULn>}1FHoEDLB6;3!97;z z76T`ibG59Z4j%iRf*Hh_K3@=(VJ~v{A?l+a!g5kqKv98n`TIpyCTu#aj~j0ozTmoG e>)X?`keR_dyEfbDD{n2(SO!m5KbLh*2~7ZF^C(LI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fd06debca6458c9c48946623711c6d301166c0e2 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4@N#{atJ^>U-=ooT}U zMiN#kf(CMY!rUxJO6RZwr5Q_t{DK)Ap4~_Ta$G!J978H@B_Ck%>0;vH>2c!XIl`dE z%A%>kAsFoC8_Z;U#+A9-(WJOCD`F?(go8m-mMnY6Ae0quwu)i(Lk<0W2P1xl^eY_S Un*&vU0L^3YboFyt=akR{01d4(E&u=k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..cc4ac72097532104abbda1ac405f5a515129dba6 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CU6>g@IQ=8X--_jb4Z z{Tl!4n%DW+@e6;ykXp6e-$=qrMbJQw@2gsA8&D}@NswPKgTu2MX+VyoMt! l!|Nrw&gw_K(+-~hfl>AqucJ)OwFID%44$rjF6*2UngCWZMYaF{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8b38c8d1399d4aad236cb8eb8e978d755ce14ac7 GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6^gUf1Ln>}1JFqQIIP^c>Hk1B2&fTmIaFnLrkh?ds>U&MBb@0Gb^i AN&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mastiff/mastiff_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3753c90633511bdbcbf5f137ac8a72b90bf76e7d GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`v7RoDAr-fhC29_Mxqh&>^9k6z ze1KgK{Zd`IOnVrNq zJAttyG2(z)%c+1C!yc|1QyhC-9x|CZ7cOX6aE#@g+5)q46V7qYF^*9;C^$Fg0E1cq ZGsCs3{5kU+9)TRd;OXk;vd$@?2>{3jIllk^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..629a68356e5b507bb5669e9addc72eb26fa59858 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FHny7B+nwK!}C)6 z|NnpQo3ws#r!CgJ(YojXmn7FZ0TV_Yj^I7q3mM+&Y)}X>JT#NzrM8A!T%)F>6a$0w X_57X%>rZ9^jbre1^>bP0l+XkKk)bCl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5a94a84943660b3af648fc7675acdcd888c24112 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=0s?boU!7uNUL4lHj`_ z>#PnGVk`;r3ubV5b|VeQQS@|i45_%4yg)UfEWwZ=NT*AUPv@KyACHb6A5Q|4IRit6 WA=54;A3jx}Vg^rFKbLh*2~7YVJ{`gU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..1246e1d7ce1312bb291468a1a2bdbb364b0bad4a GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08uUmNCkdS-wU#f3k8= zql`(V+}1Ens7~V(YHXa9BaW z;rn^Ef6w)$E!tn7Fs;zYb!}BDU*DSdgzseA-LL!w8c%pd!Vd16?jGilZ0m82)q;i1 zJ#JQNpXh_HtHWDZTDX}lj34}FxyEQ;_exxP0*j-ngEHU4&DT}7?w$9XQBUE%W13yi QDxlR2p00i_>zopr0EFN=TmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f8425c59930b55dabfaf4f269fd49fa3bb31c345 GIT binary patch literal 103 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`dY&$hAr-fhC3F%*LOehGy`R70 z&-{q53R@LyHP{+HR2k+qwKZHhaOLn3w}ToC40DVHYYk6dn*!9y;OXk;vd$@?2>`@0 BA?E-9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..df2888dab56ffe32379e3219564b999dd74f0973 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=7pc$mUO04r-LyZ>Vfo zETa=Exn7LBN`i02{F!$p^S2oSm5u^dz_{8*gY> zxM)%VQ_DgfmNbpFHb;p?nVFpmZ0?y+QC`d)4<}B$#+PJJ(jXAXz~CFs{cpzeuTOv` OF?hQAxvXX5l;snV*hQzyMNn4WrNY-8cnWl-$$}v?P_E_;2^*f{QvsL z&>Gq6=WZDsQQ}renO1xzX8xwRp|v(*-z#=z2=bVFa{h>8EZTgPdEq=wM~{Xam;XJ| YY;$tij^*Wk0h-6)>FVdQ&MBb@08x!9=Kufz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c686aa40205ac3512145ec9de61e866dbcc920da GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`2A(dCAr-fh7g$NKE?(f(^!|U9 z;k*Ako_v?q`p>@dU^at~px$9e6UFccMhxxG0vQgTe~DWM4f D0_7o) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..1cdace7c580c145331331d61460073834dfcfe23 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7pc$mUO04r-J!sgyG; zmNCkd(TSB@FUDOZ!M9n!Ndu^Yu_VYZn8D%MjWi&~-P6S}q~ccc0X8RR=fjRBt0yd) z=)u^ra7Bg=N1B9|6t|}1FOZA)BrjR^_xOZ= zzyEUy{QJ9~+h?6y_$C$=p3n{49{-MpY~Xf1DEfvgjj45agGv}{_=96*iJ=UlE!xXG n9K|QJUhTTd!7A`=0V6{*-;8&!eLjZ(O=s|Q^>bP0l+XkK4_h$$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/melon/melon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4b01a0510e0e4d218702d679ddb2fe599c699591 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DxNNmAr-fh53npw5b0^s;@tQD r_0b&%C5{|Z?Yqv9(i2=0z{rqxL~3K@;sxJ;>KQy;{an^LB{Ts5Z9g4Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ef78f5f3f9b96010cc7067bf6cebae1559d338 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7ck9oxEf>$GXp>gwvU zv$LnhSr>We`S|#RnkrgaTI%ZRnkb6uO7T`U}1FHrXQ!{5Xq*7l`H zq32isnPaOL@CQ4x3NW!I=J>GICd6`>E#o}FrJ%N;x$D2jnnX5+!ilakre?3v1scNO M>FVdQ&MBb@0MGOyYXATM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0fe2c9bac4f3722f45e867ffa1088a52d2c7ad24 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUv|;Ln>}1D=_vj&HsP=pa1Xk z2NF1s2yA-y|Jwgu|0gc#Z=8BSq+!YSrl}61KFo)57MQp+>IEEPU$KI3;Q=8fPF4X| e0S|F`CWg?r=98Gso>l@4W$<+Mb6Mw<&;$U|RxKL< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..322b10b8e2d402b3039b816f14ace0c099954283 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0Ff_@d+}LaZnRUvQhBW z6JNAw(dpBttrP{lbR^uh#iJ|~{{R1f`}XZKXU^QXabwe_O_Gw5$BrGFHf>sVcDCiU zq~$;(7)yfuf*Bm1-ADs+3OrpLLn>}1DKIgdn#HBl!X)tRN7=;P|3gL7wC75@*>TTV zYf&M#;gn`TY{7-SJF8N)*=-B=7C7+;&WO{yCEPK=J?QzN$!~e?Z2hg3$jwo6>s8YN z$U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9f3831e52a43057a2fba4e2a51ccc23d3d7aca GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6^gUf1Ln>}1FR+$i)&0-?fBmoX z2R6L=U!rjLlf1Lzm-_zysSXb}{lDp8C3RwvGy}u&3nFJ8UO4^{sFlIf)z4*}Q$iB} DjxHwQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..504f5e37c64d475f02839aca7548a1830cd2f82a GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Iz3$+Ln>}1Ens61v0_u>Icy*> zN7=ek`2Au=tEP4X2V;kYhhr+|?PK8SG+6LEc*)8AeJ;8+D>!_WR@`KqY?SHP``}U9 z&db>cyB_6h*B(w-VA`b`F|$K^`;lko=~? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..e7cceb85dd8619ff5b2ff16cb143995ae8a634f3 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1FEBgt@BL@_{*-V3 zGacSAw?r&8XI$DSv4m#{OYkoq0Vk2%Lm`uRFY>l=+>7?y@fW|X;y85}Sb4q9e02O30B>(^b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..3948c8b668d0bce5550ae2230ce6cc3a51be1add GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ls#P>Ln>}1FEESvw*Rkv9IN<$ p{ln`Yy#3$(MB5?4ac9#+4hEiQ5*0p0Y(_xk44$rjF6*2UngDqH9Etz{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f230fba89840b0a1c893347b9cf0d8d348d4b0 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1FVH^mZ~k9-m*0QB z|LhN~y8J)$zv7xq1=Sgs(i;Sh++#^utkL+&$xu<+nK2+rp2IOmz_yo%^>RaiJlE!p okrR6tF}w>s6VT9pM1hHc>0!)T*5}s8fW|X;y85}Sb4q9e0KWJ!>i_@% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..2b4cff4eef7d62c724966c61d8d21b59c29644d6 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn>~q?G5B@FyL|77$|5l zb8^*;9;=zHnFr1~-qx8e^5gd2`QjB9lJARndVi?OJ$S^Se1^e{g9ZPXo&WRs#TaNj zaa5in^<(gTe~DWM4fxL-jE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mercenary/mercenary_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5e7bc502c5671b00be202591474f2f353aa0b5aa GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn>}1OZX`~{{R2K_<#N1 z@=PtK9dZ}1FOWO&kH66_phMA? zm#6>l{a^d}ST0UYX;wK{pw00pghA!C0M`oc1h&PS1-S&iDcv~C!N8DyIOt7bfaXG= OF$|urelF{r5}E)~79=qM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6a12da87b19bf1a6779c9de1f7344bf4da48830d GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn?0V?cXTaV8G!Td&&1w zdW+A5E;UtYr90MFtha<{Jh7iAmuDZg`Nf8bg K=d#Wzp$Pybp+1lR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6a12da87b19bf1a6779c9de1f7344bf4da48830d GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn?0V?cXTaV8G!Td&&1w zdW+A5E;UtYr90MFtha<{Jh7iAmuDZg`Nf8bg K=d#Wzp$Pybp+1lR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6a12da87b19bf1a6779c9de1f7344bf4da48830d GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn?0V?cXTaV8G!Td&&1w zdW+A5E;UtYr90MFtha<{Jh7iAmuDZg`Nf8bg K=d#Wzp$Pybp+1lR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..45ccf0dbdf1262a35920b527aec140bd42fe139f GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0B(hi>t4%@9*!QJ9qAi z6)QGu*l_gd(b(wdi4!MgWMq_=m)lrdx3;zh`1#q@uW15mU@Qsp3ubV5b|VeQN%3@X z45_%)bHbB}$$-Q8;yK;Mg8z@Tu4KN9S6%;SqWk{Co^c8@7A&!A=k8aNd2m72tD>o+ zNrY(?W17f>sumONi4W)eKD~CG?AqA-2G35}T{zzJi#qbAA_f>pUXO@geCy0Aym8o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f9923373121fe9f13c86ad7c61e79c4cd4f0a9 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1D{%HS?f5VKPrlXB z!1|s2tfrm+!x>Z`2n0LYdvMBpOV(P!uF2@Qp~TjQaoMCgpUf5^7L|kb3>V%7e_^+~ R?hZ7G!PC{xWt~$(69A-_B>?~c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d2964c1737a0c7aa47dd8ab0ac1f866822403f5b GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07NG^J{HwEiW(6$jF#D zabj$Aw2ig(P1~)vfO3o_L4Lsu4$p3+0Xfc|E{-7;w~lsi6g!!Y7cw-nV ReHdsQgQu&X%Q~loCIGBfI@bUI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f451c0e58e85d78ab207d39ffd34ae223aa8c239 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1FVNQb+20Vc^!NYu zKlV#>m@`B!{J+uj@WZ4Qp_V3IhaD0wPE!&z7`V>1-je4^NetY;sKVNOL*$FH_JL<@ oRSN`|t|fnFchV3!BIm-u;PJjVw69?QKcM*xp00i_>zopr0C@s2V*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f451c0e58e85d78ab207d39ffd34ae223aa8c239 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1FVNQb+20Vc^!NYu zKlV#>m@`B!{J+uj@WZ4Qp_V3IhaD0wPE!&z7`V>1-je4^NetY;sKVNOL*$FH_JL<@ oRSN`|t|fnFchV3!BIm-u;PJjVw69?QKcM*xp00i_>zopr0C@s2V*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f451c0e58e85d78ab207d39ffd34ae223aa8c239 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1FVNQb+20Vc^!NYu zKlV#>m@`B!{J+uj@WZ4Qp_V3IhaD0wPE!&z7`V>1-je4^NetY;sKVNOL*$FH_JL<@ oRSN`|t|fnFchV3!BIm-u;PJjVw69?QKcM*xp00i_>zopr0C@s2V*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..edc7b353f9c8f387766443af0883164c32a61099 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=2^49^J5E!-^Fv=FXiv zapJ`O{{Gh1*82MT^78VGjEuOrxY+3E06#w)YwMsBzf*x47)yfuf*Bm1-ADs+f;?Ru zLn>}1A7CqEX6$$tCL$7Y=fHtO2NsmbA4yM2VCd>-kn|GbbyG0B7s~%5%$A{ZP5O`h zQaWGz8xL}xU{E}EJfTgQ`Eaa3IENBnn1Sf*s|?KN1!PWosdEBNXYh3Ob6Mw<&;$Uq C1xV8X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..730259b7706cfbdf5390f08e2c82e7a863b3fc07 GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EInNuLn>}1FOci_-OpvX#Qcvv zSF?hd52w??JO8yCgbF%VE|6cs!uQ)y^h)!Th8%Y9>&+q)nA{i{B)@u@$c0$40}WyD MboFyt=akR{0OjW))c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/miner_outfit/miner_outfit_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a013e665a79ec726f705e6a5e30c21a8588f571b GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=15IPHb&$EiW(6$jFF| zjt=niv$3|$ZfGtB$}yG%`2{mLJiCzwFVdQ&MBb@08#=l ArvLx| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c102e2489805a5fbb5804d94972559d1b0012bc1 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FdL&dM#DI%DqUgGaC2 zzV}jF-$v3w-We#tSQ6wH%;50sMjDXg;pyTSQgLf;cPLYX1BZ+G^MBX3er;SE?`AheZx0}1FOb&wEⓈru?7% zJcryl?l5aRe)w`xRK_*XKzw$S(E^1l6**kboLB^N4sl&rI&p2orwdD(A97uo!mv{y ra|OeMwvGcL4NEV`Eaewo%+A2zy}B^7AS{9xXaj?%tDnm{r-UW|hGj7+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e037811b364f0b645ca322dff75c9656675aaf67 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`xt=bLAr-fhCDIhO=VUeK7lbkE zRZfuc;AOUB-TrU-W&p{fzAWaR)OG^z5A7X~givr^Tt|GN(kt2G(@~zH`FZ z60{CIW^Iv)JL_QA##q7I=%tkH7Rc~4d4;1y!-W>}2@5`PlpbbgU|>@1<$U?g)Ej6q NgQu&X%Q~loCIHB^HIV=S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..a40097f8708dbab781dbd69665f04ee292acb1fa GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FdL&T8&nK4b3YgGaBd zTz~ZTy_dOVQ?>PNY*J4y07^5K1o;IsI6S+N2IORVx;TbZ-0JOO6=OBzIMQ@x@ppTJ zn(~{z-A{R~Hwd5a*8HPnQzG_|%i6bcPHVWv*`UBYnfd(h9L%pho^r(Gi-M?n*pg2_ zk{S67jxUjyc3_gYyZoGOW4cwb_^FrkM9im!y4-w}c<#eg=3}W6dc{ZQ+yz?7;OXk; Jvd$@?2>|P`PF4T_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ecaf93a86f3e6999341aa2e07a443073befa95 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6nmt_{Ln>}1Ens6Xv65rqIjSJC zW^uM&US2WJoIOOU7l*1!|_htIM2d+DK6A!GOVDirReo4j6hpr!rG!NC- nb7`ot=B(c_^>*ct{}zlnCFfVZ{wZ7vbPj{3tDnm{r-UW|X_HPA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..784eaba75f4dc3fd8618fef880aeff2898723547 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FdL&T8&nK4b3YgGaBd zTz~ZTy_dOVQ?>PNY*J4y07`R~1o;IsG(f>!k7vR_!AwsV$B>F!y^f0S%W#2#{4`&Q0r4c9mu6qqM7pZ}eM`L)MWj+lH=5LFLb z^65u1BcH+XCGye^OcHmOpR;XDw<;Dt^>Utw`Ls}%n~xIDeVEF8ELB3U_~@LwKuZ}s MUHx3vIVCg!0HzXB7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..983d66026008f0928013e8016b48fd7721a7abec GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0EUKx5+J=I%DqUgGaC2 zzV~wF`lG(VS&Dkw_5~qop6!!fB^^V?umzY zbl*;C^Lr>2d6bJ?Y}McH@1HB=I4kB#^D=a9`*x#KT|2Yu8dr``#Etb1b6@DJX$eY8 zY!9BaTtCmNNPNva(IW9LqQ7L9ymOah`SC>gGsCL|lbJq?&t;ucLK6UK CH983Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mineral/mineral_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bc77ee52249b71d8bea07a0b9bf10421320aad8e GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0EUKx5+J=I%DqUgGaC2 zzV~wF`lG(VS&Dkw_5%*#(KrwGm7srr_TfJSaoDPNp&gb+07w*3% zn%i(fxj=3Gp^dJgEtLZP+TCg%&1DW9`xu^u6f$bvkky!Mu-8sw{zi+CRhNx-OplfS cZu`eUu<0}h>+1eYVW6=Lp00i_>zopr05?iN;s5{u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..10eec1ba492f576104916161cc0695aa6d683cfc GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07iw6MMN)R7pwc*EO$A zDS~&V2?GW9?$>$(q!>$r{DK)Ap4~_Ta@;*#978H@&FyYva|q;cj$ZxkfBhd7W}6+( zIdg^k84Hf@4H7&xiG7oD+ZTf)LJ9x1BUrhhh)T2jxD9elO8F`FW$r$ U78&5X252OMr>mdKI;Vst05{GzxBvhE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..50304d9172b71d3a1a4713d704cd6e7ed441aeea GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>}1FHpAlAOV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/big_spring_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d7b16e198081a7303ef9ff72e208b014bedf874b GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`o}Mm_Ar-fh53nqLaNTtMe|__= zf9~S!osCaA%rb(z6knHr-I^I_2sD(z)78&qol`;+0K6tC1ONa4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d98a147348a2828eff4a3e5deb75a21a5ff0fc8d GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07iw6H_?4RY^(7>+Ma! zqAICX%YlOJijzJ8DaMi@zhDN3XE)M-9CuF_$B>F!bGsYa90ECFVdQ&MBb@0NO@2_W%F@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..50304d9172b71d3a1a4713d704cd6e7ed441aeea GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>}1FHpAlAOV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/bigger_spring_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e1560e3c369471f4c79e7a0b3163e908806cba97 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`o}Mm_Ar-fh53npg@cQl9|6K0d z|GA5^cQ!uhF!R{3f@@tw*43gzQi5EZ(l#&lGz7HdS?h%hd|}hmpO9d^OuVCvm5;N< c@i0FFgKkZr?b)if4xph7p00i_>zopr0PL|T+yDRo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed.png new file mode 100644 index 0000000000000000000000000000000000000000..d67f406b0eed83dd30fd627770ebd229f830fac8 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0DI=mdKI;Vst00BWn6aWAK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b75fd4fea15d241fe6b681785d0080c35b426c40 GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Bs^UlLn>}1OEf+B|Nr~{k6IRd eK@NNptPHpG*%$t{yEYT3hQZU-&t;ucLK6Tc^%tN3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/crown_of_greed_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2fa14a2439ab2c5c72f57a28d6eb566e2a771fb5 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F&G|Nr0rWv||azuYK# zXPR(RteCwXpFy^XG1~KNlyk~qGHX9mz^89JA_aft^YJo_DN#-%%nEu)@ VKAkpi@*<##44$rjF6*2UngF+mKH~rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf6496e33b6cf1259db84b16b4a2eec8289a275 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^0zkZhgAGWsy?@uwz`!W%>EaktaqI0g#f&2k0iInCuCO_x0yRU;9+KxZe#tFz{JHCk-)B}bYqWhO+&|h=H_U*0Z0uz5-GhuqqzDNFv;D@>k%VL!`u)lGXW32uVzu$zZ`heUL!42%< Y{r*}B=VoxS07Hqv)78&qol`;+0KX}UssI20 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png.mcmeta new file mode 100644 index 000000000..47e29109a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/dctr_space_helm.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,2,3,4,5,6,7,8,9,10],"frametime":4,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/farmer_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/farmer_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..836f18891ce206e5f8b76b48686b331f4b9b273c GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9Oh8?K(DI;BCbt5{)@ zqjH@sU%RPHmI+U&CfE7%=QnTOJZ;*v^78WF;9yfz)16itjzB$JB|(0{KpF~)7f56P znL(Z|jv*Ddk`Hj-vwcv_zUXIIErSx9+6Dz><_U~StPVZ;4wDWtsJ!{o=+AmY^V-h? z}1FAy53~yUlla?Min-4UC!PC{x JWt~$(697>!F&zK^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ghost_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/ghost_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d5c3169d704653b6b658054bd02b9a5bbae3daaa GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FHq*lV{l~QcK&4} zFw0C~^GB^4J-!Fib~K&6A(ErECPAu}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..277e064299d23fff7afbc8561771473bd12e2542 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65}1Ens6X(PC$1IHVxb zrn}#0i2{q|3WJN!Yno)()PLB|%%08f*T0qJ%`ZU-&wZRflKwI5^*36hXYj0}`R06? zdIp8s&C1F`62;tJ+vGKNGEUmWAad!6(~jf+<_NQY>MfXIodC3p!PC{xWt~$(697CG BGNu3k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..277e064299d23fff7afbc8561771473bd12e2542 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65}1Ens6X(PC$1IHVxb zrn}#0i2{q|3WJN!Yno)()PLB|%%08f*T0qJ%`ZU-&wZRflKwI5^*36hXYj0}`R06? zdIp8s&C1F`62;tJ+vGKNGEUmWAad!6(~jf+<_NQY>MfXIodC3p!PC{xWt~$(697CG BGNu3k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/metal_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..25c850369595d3e8d2342e747bf084bb7232a851 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln>}1Ens6X(PDRJIHVxp zs%tyl#936tQTB?$u4AGpG7nk)pNzO&Q&6==HQ{*w0gq3<2gE-!zo?v)SlVcrCUd6l z=?`Xxmvd!j3Lcmd9k6My!%5x=QEaktajU1xk&nTUgK4$H-~avQH%-o$=7VuV{O!R;CSl3#iPL6Xt}G4RBB&@-vg@a@)(A!|%cwY+aa`?5;~}16sh~>FVdQ&MBb@04Hcb%K!iX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4b3fdde4ea6b18c664789a801600ccbc8624504b GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&~5ZLn>}1FA)Cm|NqbWJxU7a z@)V9~GCfrI^2TkN8wXP_tMdvIs|HUc9(Qv_z23_#K-t~`sf%80q6`f7_k9ExML9kK P8pPn~>gTe~DWM4f!u=#d literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/mithril_coat_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2def550b2c38bd4ac60023f1c1703d9f2d64eaa5 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0E4>Tj?5_t01FhWZ{2J z!S4W2h_NKdFPOpM*^M+H$J^7zF{I*F&xwnI4F)_+7aVr|KO^?R!d`XNhiC46pLD;s zI;t{EZ;s~K@FZQq?c%b8>34Up`~6OYxrnu@nCrn0E*HOmlj|(bZ}=_BP`{bs*&L&% RyMe|sc)I$ztaD0e0szt!I#B=s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/music_pants.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/music_pants.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4ee10be8020e0bb0d7d9f9e8990fa4d148ccc8 GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6EIeHtLn>}1O9U$X_@Aa=@|Qnp zHdEx~1vxED9U@wuh6r*uiA=#086rm^v0JJ$k{C zW?{9m!@=duq(&u;T@D;NQx9;3&N-mP6gHX7$%TdI6*uOM?7@862M7NCR?wJzX3_DsCko z;I23~$C4p!PR!nHz8Qr{*St8A-QAz(h_IbM)pssZ;i~y2t2Dj$tVVgJ+&jb8uo_i_ rmz0#mGHCAFz38>xkr%raq=bPExh?y7&w-dSpur5Du6{1-oD!MbP0l+XkKtie1r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/party_hat_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/party_hat_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8f23b1c3c26cdc4be8d4f5bc2c8414efb4d51905 GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`W}YsNAr-fh7jR0jE`AWK@V-8# z$gWlTzi{e_$$mHgmp{|^8^6uw$^N&?n*K+5FZ;)yy^L3am0_)k@S2$>Z{`6_VDNPH Kb6Mw<&;$SyizZh9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown.png new file mode 100644 index 0000000000000000000000000000000000000000..0cb0c20b3d650ecd13562687c08391fc9edf2829 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|Nr~H?A5#Q9~atQ z?n-*OQS|1jz&q1~PfWL(Tdvm>D>f^XA=jMIUXQQm^rR0!4U8p0e!&b5&u*jvIc}aV zjv*Ddk`HiKoSS3GkS4>cyPlD|WyiGerj`olJ=@RkVo1ulyJD}@kq77QrR;sn*fCKh rWe#JSgy!s}jgq^|-&eCI39vC7*A(xZa$x#&pot8gu6{1-oD!M<5$;N< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..62a965b918a7c2bfa0a6d7cbe2925775f2ff1ed1 GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn>}1OY|u`tv^*iCrIJX z|NrOz3y8IS$y?yU74XY)0?S99|BJO5y#BFkSMa6i9}Qp-`Nui^Uhi2J7L%4k2Zc)* YTur^FeBd?D2Aap<>FVdQ&MBb@0CagOVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/potato_crown_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf10f88b918aacf9cdbe44824a392c7fa4a9f38 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ex5FlAr-fhC6*o<`2$Wb( iNZTQ0V!-9b$nfrZ}1El^{aVszY$fyt1^ zRejMJ74u_nC%YPPD9>!#Eb1-Dd%fY${7oAUyq}TJ^taMX;gNz=M}B~?M&m4pvkjJk z9?UmAZ&xAIup2TU>rZFWMv=|yJF%)2B5P!h+k!fyzAR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/sea_lantern_hat_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/sea_lantern_hat_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..68cf45cc961a2700c3bcc289c097487c40163667 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0XnI(X>6+FZOL*@$mJN zk6%B{+PNX5t2VT32Rl%Xu_VYZn8D%MjWi&q(9^{+q~g}wep|l70UXVL-HZQAZ|6~Q z7F|+yZu^4cn>X}6RLK2&KsLm#W5;37&_}KTp1MufIsR?C;q=b*`Qur(>&#bt6WjkR z!q4_n=(6XvZQGQ-dnz#fDp~KBm_8$6Uf-&?>9GWb*SuLM= zj!ggQ)>!Gg|F0aKBfq2WLiUQfiz}1Ens5^v2rtKU^3(= zeVcbF_QnxiE5<5!i?!cX)s`K&Ji(_)z1#0qS%T5j6>Hc;SbbMprKQL_@$|48fBG&l zlR+^-fbGe>t?rGto?PVi)J+KT)86#|q2$x(x|iHCzFm6{W{C6rxW(FEvRC`XcmCMe X`6nlCt^}pTAea-{bF@S|mabHQ2E=d|bfBFmI~*ny(=` RZ-E9ec)I$ztaD0e0syQ{CYJyJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..480e4fcd16f6d256c1f3515ab7169faeb8efc567 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn?0V?Yqd!pvdE7&B}a- z}1FHpAlAOV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/spring_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3867d6fd6d97cf3132866f643439aecdbebda60c GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1OZX(*`hV%aLD|dy zng2Ix88LDHUgYh>VkjDXma9X+$^H-zkN1SN2Uf`^vW6K8$gEKM#mHb0r!!~Q>^((5 PV;DSL{an^LB{Ts5i{vD~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6adfe07d895fc317dbe8eb909fcad5c095641c1f GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07jaH~;_te?iC0klY4~ zpj0JmU!X_~P=bNMQSB}xkYXwc@&oE9n|#&+$aD8}aSW-rHP`zn;{gMXoWgJN7RPK? zAGEYIJAB6A!)6OLhRB9H%$}?PObVAcH3Vf=F&{XTFU(LR#d_4DMrW4LXTjiC7Ip6I XpIjI}tk1G40$Jqg>gTe~DWM4f3am6U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..45b8f63d5155bef0767a51b7240420d686ed3212 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FHrvQpTCJitnJIL z|F-{i|0!?2DDp)?^M#@(Ba?#mfmdg8b~NSqsHZV2`Y<-NtG(q9Z&=3iFujA}P-OwD im_Ww_hmH%(3=H24lG`2MS!)1IX7F_Nb6Mw<&;$Vaku3cH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/squid_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..95c222842d27f470972a6f2d7e462a4b872355f7 GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`8lEnWAr-fhCHfLX{;)IFOj6+5 uo~NOpV&7pa&%7kTWS310pYj|xMg}K0edpE%!oPre7(8A5T-G@yGywn#YZyiV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..afd4a32ad3a340208383e86a34cd3fe8129d847a GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b1{a<$F|ICU1WtQIN zYF|=jUc#DR>ZcvS5a?^G5%kU4CIzU7u_VYZn8D%MjWi%9$kW9!q~ccc0q!228B-li zHZNeBynwM|;l_s5oJSsHMIV^Dk>Q9(G=qzR+fAl*B?60&EN<9)bZ%qgUDX<<^p)O> r%+(na88=sDFfvbGz{EV`055~_LjLn5@y7K)(-}Nn{an^LB{Ts5g@8mr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7d4ac36518dc549605b54c5cc3bab0190ab60308 GIT binary patch literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ogvp2Ln>}1OC%lmz5i{!K<@AR zzwNtNd^SidV>rR2=@uN&vuJ@tEMrIa8U~l7LS~`t8H^0<+$vKiK5@_i>SyqD^>bP0 Hl+XkKZss7% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/starred_thorns_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..54a1daa202be4995c8d8ae0ab4aa144885ad5e7b GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AW*FO^w(o2z{ZL!j@! zU;k%L{J-qV|6KNjKA;?9NswPKgTu2MX+Vy%r;B4q#jUx1M;RFmIlQ~x+85rfQ{N%{ zM}>cW+OssqmYMGxA0GZVt72zJZBqBmrZ9!o916A>%}O#BQ7!-K_szYSu2s2{;rY+! SX6J#%F?hQAxvX}1EnwU5lfSva?dbzH z2Z^?Y8na6#o}0kC$K~7f1rHihCpzB_{u96X!A=5zY8<3v5{i}v5{v+kd>rRq8-vl-Aj22WQ%mvv4F FO#p7^JLdoZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..277e064299d23fff7afbc8561771473bd12e2542 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65}1Ens6X(PC$1IHVxb zrn}#0i2{q|3WJN!Yno)()PLB|%%08f*T0qJ%`ZU-&wZRflKwI5^*36hXYj0}`R06? zdIp8s&C1F`62;tJ+vGKNGEUmWAad!6(~jf+<_NQY>MfXIodC3p!PC{xWt~$(697CG BGNu3k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/steel_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7c32fa2f0911750401a2c0a8ec3641f217afa973 GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65}1Ens7~pqU=Z(4ZjV zvN)oJ$7DeZXU@BIkE?z>Iy=?i-Nr4~pKs=kxXHkFvz|ftCPP$wgthDe*6H$_-dn!s zHCbZHzvKvG&mXqxZQO5uvZkD7YB-_qyu(Cjkq|?vRsoB|x91?s7(8A5T-G@yGywqG Ci#Fi^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..08e3c8068fe1c86508dbc337b5473691444f7cec GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0B(gj7m;UuCK2zDJkji z@6X7{`26A5bD#ucNswPKgTu2MX&_aeE{-7;w^~j+W-$bExE##-f9LTL8 z_%GI2bb4~Wh|$a{CxyzuX0v)(n@(S_8C&!PC{xWt~$(69BoKM6dt= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..08e3c8068fe1c86508dbc337b5473691444f7cec GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0B(gj7m;UuCK2zDJkji z@6X7{`26A5bD#ucNswPKgTu2MX&_aeE{-7;w^~j+W-$bExE##-f9LTL8 z_%GI2bb4~Wh|$a{CxyzuX0v)(n@(S_8C&!PC{xWt~$(69BoKM6dt= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/stone_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..775b5373a5ecea0b35949156b872565ac401285a GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AUg^kvO2Ei*6i(~gi? zdYh|#$-iI!mtFZkbK-wnjUcBR-y48x7)yfuf*Bm1-ADs+{5@S9Ln>~~J;lz*puoX$ zVEWp>zjvuNynn(le`VnLuUX$24*fmx%9DB46A$6I1Ks=|82uJ7mo$d7G6;q4+8W5n obyILtr2dQ~?o&Kr=iVzbbFE`M-nJq{7HBksr>mdKI;Vst0K6?j&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7d4ac36518dc549605b54c5cc3bab0190ab60308 GIT binary patch literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ogvp2Ln>}1OC%lmz5i{!K<@AR zzwNtNd^SidV>rR2=@uN&vuJ@tEMrIa8U~l7LS~`t8H^0<+$vKiK5@_i>SyqD^>bP0 Hl+XkKZss7% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/misc/thorns_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8858de127612da7ad4619a7c40adeafdc94f35e3 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9b1{a<$F|ICU1WtQIN zYG1;dU&;{Zn>Fk0GN2q|NswPKgTu2MX+VyHr;B4q#jWH6+&w%qraGEzUcfYY0b|F) z0|ySIG{hD%F*8ed_!W92Bo{Il#T??g5gaQtLxP1>^1zI}dl;M^urVxhXAj(8)q5Lg O7K5j&pUXO@geCy6`#B&0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..0c66bb181df07a5541e778cd2d0eea27dfdac70c GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Beg?t@72M41jRpwY(c^3{YWd;Uz28OMj$1ihv@NswPKgTu2MX+Tbir;B4q z#jWH6EN>PXOG>1*i5VDZt~53f(bP29FilGCfgm4$Lc**oI>i^9f*Tvluba(2d~>zF z!H2!~t`#d)-)ClHyQgdCzDM7HK~g)1ue?$6bPiv7qeRW^qP|pn21BEBb26C?B`%$t kycSlKflrb$m3I)znJqN0;pf%Y?ay85}Sb4q9e0FQ=IKmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_shoes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/emperor/emperor_shoes.png new file mode 100644 index 0000000000000000000000000000000000000000..371b680ead5a27a19905cf5cee2f4fadb295b1b4 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Beg?t@72M41jRpwY(c^3{YCk6&(1_pKphEk3k37{Uvk|4ie28U-i(tw;u zPZ!6Kid)GCxK)I2s5NEyC9{h?=5%25zQ_JAozH>oemDQ0T7HKfS@|Ek5B6M^|M9&+ zqPs+_K=x8n!h;~L{Rg5~ZE0xK-t&#={nsFc$M0C#*zWD-{&0hX;bphf)x2)8WS}Js Mp00i_>zopr0B7S%F8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..3d956c4accf53526f508e1a74522d076d995e19e GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AVn&}3y;!ol!|iNUJ+ zw|ELjs3gcQn8D%MjWi&~#nZ(xq~g}xo<_E#3_Q%mx&Qw6zqXAoVLlu-$K=VEk2&nW z!#9S=^2YcqjQ?Q4`R>ikBZAKtRIA@T5}@FCG)aMPQrvy{J1MN4-qm{6K=T+pUHx3v IIVCg!03-`C>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..7797ff0eacddb02f850e82f064c86bfd437ccb43 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AVn&}3q;Vr5vu!SE;d z)zopr0IFd%rT_o{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/hydra1/hydra1_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..2513ed5ab052335a2af8fb59350f65b8bbbe7f0e GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AVn&}3q;Vr5vu!SE;d z)oQ%1)jqh-~XT7VV$z>6~9}<40q?(1|^r* zbP0l+XkK DHnB2N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ea85bccab1a130c769bafed2293da32f043eea GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE09(&Q`GU*bIh?9RTE1- zc~%H0#8?vK7tG-B>_!@pmdK II;Vst0LZj4r2qf` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/sea_walker/sea_walker_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2e4ee4e254023eebbaa25c920be4710ffec645 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09(&Q`GU*bIh@y*&Vxb zan7#obnK(u^fRe!&b5&u*jvIkBEDjv*DddU_m%m=$>rcf3vc{9jzW zVEN0!(k|1cuT2(zHj(&L{w v#Fbw(DgSxN@xew>C&z5__MJ6tch@s8zhJW7wnK3%&>{v;S3j3^P6&B@vMvV+O$?gb0HnK}|RmT2&# zNoY!II!mOT6ln8il6L7WVp=UYW8oAAmjqMJoCMPx1Jj&ioDM8WOH>&I#a1)E*~M4* Th9S%uXexuJtDnm{r-UW|gK04~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/watcher/watcher_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mobs/watcher/watcher_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a3688855f31aaa1365b8d0caeedae1bed61477b9 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E?<*0M+n_pOY`S)4Cn zV%v44x)~_SSQ6wH%;50sMjDXg>gnPbQgLf;ucKIlf`C)&#NY8dH{M?pCCc6KKKQ!7 z>cO_At>7 zoFCMfHT}rMEtj?k%5X|+2{i92=26yiT-&__sFblJ$S;_|;n|HeASd0^#WAGfR+0h} z!;BgHEDVVfEDdc=m%sl1-W5G(Z;!>N|D75;7@o4sU-=P)NrwEw_hJo)$f> zW%B<*O_(?6!M)55qT$TtH2Cj1B6dDf_|lWm8v*++V^~z`BlOY(o_Q{ONyv;pVs3mW z=rQFCPx<39=19Szn?{6Qxxl2zfG@~fNh6cns67RIW?h6amG<4#Q<3+qJ;e4;Gl%yC zLMKL5Fw!IZTeTWendmuWZbT!0DIc}>1(3B+m>~SW^T{)jYylY!j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5affad46879dc9aea5cc8d51a50c0e64a129ec37 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6=6Jd|hE&{I)7Qv$C_tk1dtG(w z5vES2kHRcMT)i8ax*Zxh4=}uw=1JM>od2OzY29z;8wtihFj2c!0P zOGoK#`7}@0+p23z&_!*Xr;87nH%3P75VFu%!SRKsL}~ki6n8(h=Q$j8N1NLiA0Ka< zVWlhK?Xm$JRi)B`Lp-?WS~14 NJYD@<);T3K0RVkpRpkHx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/creeper_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..31943c4df707bc9766b99b093c4ef4d729048a65 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0A97!7XcV;GPi^TVI;i z+2B{1W|@_b&SkC zPmN+jR;8bdw*$>$ED7=pW^j0RBMrzY_jGX#skqg9hIto@BM-|1uVZ25*Z;2nvEx|A z+W*cnH4atJT^O@@*^Whh>9t+J^w! zy)rGGmDalaaR0sU_p`RfT$^#BZQ}d(&Zm16r#h7FOmKVd^IWFzUBJ{M&g}1)_`aR) SpHl&J0)wZkpUXO@geCy_vT*YN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e015f90db7830a56717148cbc6d5439fd3494f20 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln>~a?K9*(V8Fw2RxhOK zVDK|04hCh8rl8%grmtExcVYDVc8y<~zkJhYn>FVdQ&MBb@ E09AH65&!@I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/guardian_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8aae43260756c9f9d3fdbdbc46f68eb56fb6c8c5 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A97!ClEMbp7(_>sQVk z*tPE3rIXh#pFXg2)%DA#UdPDX^VBFdWHm7R-2_z1SQ6wH%;50sMjDV4?CIhdQgN%d zvzgH)P~ga?o|*qn+e*tvrr&hj@nIiJ=Dj0Rm<0Q-*PN;Nd+_&!9m=tD{tA67oi!&Z zNA&Z8eu>~j!SlE0)N#a~ol+^)7-xQC`>*4i&!@0{QPOP_1{%-c>FVdQ&MBb@0Jil} A2LJ#7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/skeleton_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/skeleton_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f0f8dbcf8f398f01154725298516fbc3177b6713 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5cnKfZkV^68T&j~zR< zXV0FkTehxUy>|KX<@4swn>KA)c6N4VW~Pme&DZ})tw7a`B|(0{3=Yq3qyaguo-U3d z6}OTPa95n0W66*|KX<@4swn>KA)c6N4VW~Pme&DZ})tw7a`B|(0{3=Yq3qyaguo-U3d z6}OTPa95n0W66*}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..642f20e748989fe9b1fa75314c6ca622c72f5369 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09)GkT%j*vo+Cmw=-SA z$EU==V8g@|m3r_xP>!)A$S;_|;n|HeAjjX+#WAGf*4!RLAs0gqC*>9Q{vYGMx$$Re z9OJ{YM?QPF{Bb@Y-Eo$iLnHLJGUw|aQJ?N7UGIApGZxO;z1pJIkAHQJ+cMp#-(BBK ds?JnCU~lqbG~Xsv&jK`>!PC{xWt~$(69BrkIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bfb3033c0f3a8e54cb878ed850951497617d572e GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6yggkULn>}1FHrXQ!{5Xq*7l`D zVGTR?_2wHdyk0q8Dqt0mo5d*|=yRhZ&q>KcU>U;_31`L=OdSeMy*$gB-?VBod~V1w fQO(%1kcFX3FnF*0PqmFeV;MYM{an^LB{Ts5xQr?6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/monster_hunter/spider_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8bf0be1dc4e95bb94a2bf03cdcb5c22f4dd941e1 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0VPPAD;~qlM(~N_8A-Y z0r`w2L4Lsu4$p3+0XYhuE{-7;w~`e&3k(c2Hk{b>S;Jr>%LXok7xD@J8kaFKSX44y TYEG#Gnakkm>gTe~DWM4fq;?>b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..1cdc18f239d7eb16856800e3f9348d8717bcd33d GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ii4<#Ar-fhCE673-TYwBlPs*f z;^&z&Tn2obuKeluo|D6@_N?uZDMPTLlZ=Yn0frW*Q@k2n#cCHBT9jhg8jb`!`H*$) z(`Gkw1{JnR&B-k`huBiiYH%&6NimgRJ7DsVSEa*-Y4)sHeC>Of8S=6=N-aIwdLC#m NgQu&X%Q~loCIFdTI6MFV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7a515d1862b3c16732f3578dd6e324c827e2c5e6 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>}1FHko4!QaFo)>dLG zu$u;ww296;fYa1scxa>FVdQ&MBb@06;G)%>V!Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e4a3c864bef959ed826b3c7ac5f066bd9df05e14 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08YY6t7D8j_?IS n`3aNE3Y$2Xw(p3#`IlpB+yc$rT%&<+MqS3j3^P6}1Ens6Xv12o5IIO@k zM?1ePfkiE$ZOz-H&WPMaVO#6>2@ADdoqp6{wdTVJ9*3~S?9L*`VinR>2&9KMT|eOy z_PvIanfabUD0_LWk=za?4Mpz+yOt>vI)XWv9tJ;{oU{M+Zil0)9Phil{+Nq1sh+52 TUnZ*$w4K4z)z4*}Q$iB}IoLTU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0071f2aa3d89ead3128fff14141157b141706646 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)I41rLn>}1OXxhPXO=T;Vb~?$ s$LcVPslkAEIg2CflpEe%LX~vQuzhDN3XE)M-94k*3$B>F!$p^S^T)HH5phrY;X~Bku z$&(gjGIk^`(Rsm?Cb4X(vqYM#Y^#Br=8T7YsRm1o4W<|iurgeJ!#m^YoK;_erZ9NA L`njxgN@xNA=eIOW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4d98b5339c7f25f222e2aaf829faef3087386515 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>}1FVHUd*WVDa^zy&| z|L?Q4CH~j_pX}wV>bQVqAFVdQ&MBb@0DMv{N&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..07324884304226da1b8dadec10939f1ced86340b GIT binary patch literal 83 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6q&!_5Ln>}1OXNJLXAbNNm})pN fmof3EGB*Q5Og4Mn<2{{rKvfK$u6{1-oD!M<0K*lT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3a1a87b034253a4af83f8eba764c90fcc084db GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07Md)GP{fo|qe&t{OjQp1_P&mjpv)hCrB9RrM!|f4UYT3$bC{I$Xu+F7ib!T Mr>mdKI;Vst0HsYdJpcdz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/mushroom/mushroom_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d07d821cba82e37fdb73f818fd211bb5edd0eb01 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>~qJ!QznpeW#c(YE*N zwwFbnmgnW}iZUHuASnH}H|1XO`@MUw{VMvmNy0IOZQ?~n*&VF2+;1@Vo^7^ZR$IVq n!z|LkWwMCDV!^Zjz2BM7ZEN^6=Ro*Wpy>>ru6{1-oD!M}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..19657e91fa54efda06143b38fd8780b9fcd2fe6b GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|37{D^tZmgoeB!G zxwzET)ItRW#Kgo{Sy=4M8t(#CFqQ=Q1v5B2yO9Ru_;|WFhE&{2KETZ)I)la0WbrMQ zb1IAq&BnP*0t*dpsTHI(Nc1!bTd+E2dCg&w2)!dIal}1D=_vno%#Q~K_HUl z$oW6~)Bo{@ZQ#hJ&>!QkoY K=d#Wzp$P!fP$C-u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8cc7ea616f2b58eb13681e41bcca95582cfb66c8 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`fu1goAr-fhCE6a?i_EdB{bldN zbEJ)N&#XkLt5>i5+q`MR0a50g3WgJ8z|jAsU~%A^+_gZ%89ZJ6T-G@yGywoWcP_jD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..736283c4bbd178c1cb3cdc4f92f423645aa7dcac GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F&G|NrUJr`6TeLInh7 zb8+odQ25r@XJlx|%EBThCI(dScm2#_AjMb`;uunKtEc}e}1OXw+l{=e$~%>Ns^ zon|Uc7#2Qk@wi+X~qBlGk>(KS=O+G^9TE7_ZfXlj2IY>CK-w;bP0l+XkK#p)&} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..db55ee48d52f2ffcc2fe962b63c5b15c96724a30 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F&G|NrUJr`6Te#Kgpm z3=LUXSb&1Iy4;>Xim@cfFPOpM*^M+HC*IS=F{I*F w~2Ml;v4%%v7sNbn*Tx-mx zXg}wu7tg)t`xxK-u5{#3KGva9-Rb0X;-}I?3C%sLEnN*BBpaMO7C*P0Gv)Zn8w;YO t^%|c%&&c6>aQoz|o~n{nCU5Fk83Lt6o_?y^q6@T&!PC{xWt~$(69A0=Lr4Gs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..6c0aba1c1a507a976f5e08a009db3ef18b851f17 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVoVF?uw5EBzqS5uqK z#dZ4h>Hq)#XG}5_1j;d%1o;IsI6S+N2IK^Ix;TbZ-0JOVWjx@(!OT77^uOQN?y9ao z(p6t@g*iTrQEL6n4I1t(x-GvAcCU9yo8kJ*i6hcK`z-?-(+wr&jr~3>yNZ7txbn5^ fcFnDy{~Gxeo!FCvEUb-yW;1xY`njxgN@xNAATvC2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..029857cda1ffdbb1205c0f53da331d2eff3fd566 GIT binary patch literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^`xMLn>}1FOWO&r+=<{sP=(l yN;h64T>T&VKk$YKbI}@yFo!nI8TXdRGcbJYQuQ~P9n%HW#^CAd=d#Wzp$Pz*vLMp{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/necromancer_lord/necromancer_lord_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..98e6b6a5f0fe24b2049fd38b20760de4267d0abc GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`nVv3=Ar-gI1~RfS81hJ$#lH|P z`(N)ae^t0;RW7#-x8fzU=tUMMy7O9i1h41)6|eU*8TtQ{{lPG;V)e}2H5*<4EoJa@ L^>bP0l+XkK}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..e98dc6dc6e8dfd2f7b97a377daa3a5ad97ee107a GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`E}kxqAr-fhCE6YcAO8Q}fvagD z!!h=gf>(SFFf_F#XdN-Bm>}g)Dbb+HDcx{+!v7SB5Aw?IJUN&J|!S3j3^P63RYg7r=)lA eEbw$=VVK0tU%h+c^xl@Ln>~q?Pp|j2;^Y-{%`s` z|NEDNB1{}-YhGeqptT`T(deL3{hO(p5%ala#oun^%wkHktkXS{Zd&MQDbKp$oKdUk S{Nq5A7(8A5T-G@yGywp!PbESC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..2f35601b9065ff4be985ece2870958e617689f01 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`L7py-Ar-fhC6+x9KK%c`0nZa9 zgNYC9`IryXG|l3aXt*yhXO_WHPU!^)7O)&U$Ma6XXA+~pSq|oe85tD?-AOvDy+H^|jInNcO` gz@W=`=a)6(bER$D`ezpY1e(j>>FVdQ&MBb@0441#LI3~& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..ddf17fce320f2c8b617f5c7cfd2357de092f74ec GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`7M?DSAr-fhC2AfBAO8Q}fvc~v zMuP1#XO`NbhW}fP8P=<{Sjh4!DEL|M6m;N{Yo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/null/null_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b6b99bae70a9aa93d099fe5452c71e532d9573bb GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1FOd83e?BA6K?aXx zk7SJ>{d^#Qm)XU)M>gTe~DWM4f DrFkE- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6dd6f7b5bf6dabea7d39a1eb3cd730b7e9f60ea5 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F&4f9~VWs_UynU%d-= zc6OGMlH%at1d3OdUt0pC7)yfuf*Bm1-ADs+ygXeTLn>~~?QG;^Fyvt}^;h`){`R-( z2P~o|Ub^;g^wydk_on|{cgL-}LEqPLEMrmLvQ*(vd$o*VcW-3#4Asw%^@Hb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b769fa15e63c3eddbce809e481c7aa7b49b03388 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`v7RoDAr-fh7YItQrlmdmzjf=@ z|A&7ln0fRxn6)^~VBB%!qtu0K*V;}qOpr-r{`2S00f{5WRQt}C2^>phh><&Te7WRw zaRXk*&5V)8ZHyjm4F<~?3wmC<-+9%>&cN{eT9v-liDltHix@mz{an^LB{Ts5@kcl5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..63809946c4c03eb929f70e76401c4f94f10558be GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=4^1&wceS{PAYh^;M!r zmx|m13Ne-h`2{mLJiCzw{YV_@Lm;N(9gvlFO@u_VYZn8D%MjWi&qz|+Msq~ccc0T!QAYCJsW z+_-qooI1zDqvpoO<1_6j+nHyRMI|iGp0bI$G+EtX!*pLGvui&32@iajJD2z-JZR}) zki6`uG*x&;U5PfACfC}WgoLulg(-KQCNY>)Pd)l5G{Jk>x+qc3w1Tx!TNzFkF$8nT V9$mG@=L^to22WQ%mvv4FO#ohCOm6@H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f19dd6d0346112edd27de2b7bd34c4822416bb62 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>}1OV}LvUVpJZrS4*V zJd6C17`BiNJX$Re97RPNcM9-12?q!Y9I}k?ame^|G?mGTF@SRyrvr!3@rV2qRD7Gb ddfiPK7-Z-B8Bf^P%MLV^!PC{xWt~$(696l3CQ<+Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ad066cb4fb5cbf72b9efba08da4b445773b5ef22 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0BJ?S#^DtsH&>!pZ{|w zCUbLeaK3sME?ypg1SrQ?666=m;PC858jut2>EaktajVDAm5ITTLuk$a{}rj~=bG={ zV&27gO7ViN81JDc0=n*8?pG26c3VHaXDhLys=(^a(q=KMcg%Z5Zuv}mZLME4f8{KW n(6Wi9C-y%6^NrUjfr(+pM@E~(n5W-?Rxo(F`njxgN@xNA?fpUl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..ce5063e907ef6939630edd3e38875ab6064e3ac7 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4^1&wceS{PAYh^;M$I zt%tc1H?sv!XRLJzX3_DsCko zV4K3iI@Q6Xd-KFioy-#sRzLeP&sf}{XRdMjIW}Xz^Oif=k37)IXHZgTR?cA*XmmLw v&LG$^aT`NNfXgKybHc$jDGV+VYuFfKt0a53HA=Su4QKFl^>bP0l+XkKOdvlN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a444348126f621f1051fdc74e8bb6baac765277f GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1O9USHT(2*X_QyS0 z+2Pp#-~Xro`TnQ>oZAcrkvFVdhi=Z`n$}S2c=O3j24R;CFIgFwC%ZE)E&7`aG=jm? L)z4*}Q$iB}kOn7Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/nutcracker/nutcracker_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..04c013a7b1f455be9329f146b5855848a94ed5b4 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4^1&wceS{PAYh^;M#( zs;W{_QXCwdKykL*GgUx}u_VYZn8D%MjWi&~#M8wwq~ccc0k$bDtWzCKx;IbU)X6;I zU|`&|xO)sqOWNAn8YNR7E`901HnSn}Btypr4+aL&aE?iNtM0o1^)q<7`njxgN@xNA D*p)H< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/obsidian/obsidian_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/obsidian/obsidian_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..2588c65ebbb441baeabd5f129ef1c3eb53afa70c GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AVm<`&?QQJ1r|Ru4J+ zH2*tLh_NKdFPOpM*^M+H$IH{jF{I*F>j}m-mH-~sgRlPlo^P4W$#a!Yo$Ch8_5-P^t?MVl3U9iw^Uc94#Rs7RW?G3x1oQhP~u}1Ens`VXkx{t#=vaI z@kT*X)%(xC!%I#Sdo(*JGrY3>w_wJJc`r5B2s0a*u6^)pw!{QM1(q5{u6}`6?^^_> zpSb^Ro$E=%W-CSw=GV2)Iaf0}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack.png new file mode 100644 index 0000000000000000000000000000000000000000..c04ede1eab17f3a4a8867025b5db7508ba3944f6 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08Xi5WX`_xVkR;QBmey z3xgL=FYVD(`t$qk>0?V@bT$3`U-s*o*UOEf(-ftfV#VCK*nSlrdjr(QSQ6wH%;50s zMjDV4>FMGaQgLhUsYW(t10I$OyH!MUyg&b+ZyB&a_~KcHDvNiPF>WbgC(G^UeKv{u znf>!Vul^_AoP(Un0uMO8IoH1Zv^R!3B=fJyDy9X|DNHjH&o!;#6j3dl$lv#hebT)3 S2b+MFFnGH9xvX}P>1AbPP~bVh;Xdzq zh0v^kcCN!;1tspBt!-Bd(biZNF}cvxCGE3o6fb9b<7UQnUl%SBiI3}DeRUG&=bi`Q hg_n#g9az6GFzl>wkbdys=SiT!44$rjF6*2UngD5tE|LHM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/boots_of_the_pack_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..949dc68d75a14e27b500f14687e8c647ee18656d GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4?hzy15a?8Vbdzpisdb&7FPC(FmtYB7do_VIn)^*#S(b(N3hf_LPG%TvIC$ux io6k*;a$WZi)0A5*6oS8H-cSWv%HZkh=d#Wzp$P!T_gugL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecce510b5e242fee4eade72a985f1f749b25129 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>}1FJL?Io48cfgs{r}ImhUHj2yGUePzy-!fPQHw<*|J|cXjHJb$U5*bl{6el;EMUT kn_=b*KlaYU6^j`d_N|ILebTG%DbQ>NPgg&ebxsLQ00$f{od5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/chestplate_of_the_pack_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c5466675babe760b0783f62e7014cadd434c1a09 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4?hzy15a?8VbdzpiaSW-rm8>9cuycuMgQTmM zmzKh;V9%3BbD255ir54HC~%Umi_pTexANLB~M>9gPgeYv(Rryx5SU Z!;tZmXP=AHVOF4d44$rjF6*2Ung9e?L!AHs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack.png new file mode 100644 index 0000000000000000000000000000000000000000..95a33b78fa3d306f6cd2deccb401b34a28b710b2 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A{QVrz;Od%00`kEYV; zV@vJz_+C7{bl1Y*&+oT?|Cdcul&-GJepHnCqN}M~Lio-!;X}e~e}UQrJY5_^DsHXqI?Cw8$m1M*{N=yoN55j%pIB{vaC=Ig+04z+I@8qdyzxDqY|z}i zqrTxCYu6*c7dQ219G)R=Vj&ad@H%j@ul8Pr1KvD+t4(6pN!$p&-1$LWi|-E4mt9$b Rxj;J@JYD@<);T3K0RT?CRDl2h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7c28da6c784bf6792a4cf75e4c65061987608944 GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&~5ZLn>}1OT;BSsyC6-I`Pk* z+co1_{qz4BT=N!j*c=ThkUH5D=^)qE)cODR1E*YvdB)4M1)R<)d{baz*z{5D^;zx< R!9ar;JYD@<);T3K0RRGFC=&nx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/helmet_of_the_pack_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3492d58e46049f4ad4eea320103a4654a200b006 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4?hzy15a?8Vbdr;jat zxl#1aG~w#H?50>Tdp*8&y!O066^tc8e!&b5&u*jvIcA?x08@WIe7(8A5 KT-G@yGywoa_BQbV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack.png new file mode 100644 index 0000000000000000000000000000000000000000..0220444cbbe79c9c7ffa20e3ce8137bd34b88492 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4?hzy15a?AJA~)5n&+ z+$j2@tLe@(;YUT8cP$L|Xev!plrEPLcIRUI{QI65P&H#okY6x^!?PP{Ku&go2F{e()I+%3tm=v^-xkE8)i3~?t$80ud7nakfSsi)i#fn#i$1@nF#W5%eC_iQr xXq1o@udvorSpCqpwy~UlM&WlRfy9kc45fL}Q6cWSQ9!d9JYD@<);T3K0RSt;L`?ty literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4c666d018d4160a4d6d187386fda5f3a00326c8b GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1O9U#suRs1j^?&TY z<{NqrVeAunmp#xBU}8gTe~DWM4f%cm-& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/of_the_pack/leggings_of_the_pack_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..898a3f1106f09ad20d88cfb48589ceec3e2ae442 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=4?hzy15a?AJA~)5n&+ z+$efyn(&8rx0`?xj3q&S!3+-1ZlnP@TAnVBAr-fh53t2tx)kGJ(mi8R&?4pz#jGVV o9BCah*_>TiE?;74mdKI;Vst07}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b56fc1da57aee82a97a53b715cbca4302f2c85ee GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ah@)YAr-fhCE6COJo3?=Cs|l| zMdjT&1_tN+&Hnd$%dBVg*DHNw#GvASqd|DK(F3lFJZvWgO&Ed|4<*dn$*}On>&2A{ zJ*Qa>DmTd3owbgTe~DWM4fj?^+& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..413408fe241652c004248cfe30f335575fbdbb58 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E4lHb1c`W8IvvuaD+E zxzt&f;*}oiIJMQQsl>7I`=O&i6^tc8e!&b5&u*jvISHOFjv*DddVN|MnHYGYj{oQ9 zE_-do@bmDhRnrffxfu$EKCP3jI>t7^b++0iqvA65v(wm%53^dc$%Py@RH`|b^(sOl z=It8)$0cqNGgt+mGf#84@pi&A4!OMPxBqGU%3{~EX8dqo{ql66T@0SCelF{r5}E*< CAW9Jc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&E)VNY;$P0L~&5(8p-0sXNzu3oV|DIkbi#zuYP2kQE3ABw%6DgR~;&?W{?S3j3^P6}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/old_dragon/old_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0e9768b76e54df0a84fa5c74b4edfb0765748116 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3$1&3kgG^Tei%b#ua| zwt6*{IOZpttIvyy0?IL#1o;IsI6S+N2ITm9x;TbZ+)6&cbwg+YkGd#_?4n0cxTYDD znHl;q82TLYo_mmIIaAqGCIRQA4R<-u2BD)z4*}Q$iB}sWm$I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers.png new file mode 100644 index 0000000000000000000000000000000000000000..4c1b7059e329607607b041b73c295cd07e43f5c7 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08X7*XWNnU6bb&U?_F5 z$#ct=E#K}1-aH(-cZu)34i`PHtL;EVj3q&S!3+-1ZlnP@(Vi}jAr-fJeU36Z8H#jY z`F>w)J>&ndYN5k77v_4tDVF%J`S7R7yKu&xvY(pF91L6hZ#w8MWz4-&_arK-eYGjW zu{qWgil4B|Sg!P4pfu&l`CZPh`{cNCSo_XN3-z!r3EKUCJJ1>iPgg&ebxsLQ07xE7 AhX4Qo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7e88422aaddcb1a1a4cf754286944ae3069542a6 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1O9Vc6@?YFx#~1sK zy&}hsg%o|V7vh%v^Y_2_I))?1LKbP0l+XkKF1skC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/charlie_trousers_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..97e6c592d74c38966f797fe5c9081c343b9ab743 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=3r#Y`NIvxhBu4Kiag& zT_eCyDrU3)TA&1DNswPKgTu2MX+VyHr;B4q#jWH6Y)!qfF^(qDUW;Z#Gfg;{mGekQ ziXq8@IWob`BVtuH!zQ(KfkdVwjtXsB0_{c)odN=fr#4D3FzD{!! z4lNxM9X@lNInnh*c+r-ROdWY2IA8baz2jB+u&(W!^P4B{)BiC}XkuFSu2onRXdi>8 LtDnm{r-UW|>48*B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..19883982cb8cdfd86254a18a420b7dcb7a46b9c9 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63O!vMLn>~qnb632z<`5g^M8(+ zOCDP^a2j6{J4%f1MQW@_t{b$p0JK*${;Yqg2kwd&5E&t`iMU?I;D{3)rTz}-@ U>IH3UfR;0Oy85}Sb4q9e05>o{=l}o! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/kelly_tshirt_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c1292de0ea82a493f50a020094e5617cb3d8f45c GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3bKY%Ld9n>Se&Mq36t zs9k>gWFkNbP0l+XkKxCB19 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/melody_shoes_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/park/melody_shoes_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2de87923800534e23bee5cd2cc9e9d99893e509d GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0XIkLn>~a?c2!9%*esKx&Ec% zjaE&G21Pw5$4yTEFU2=o#(b#c_Y`6=*FSinW3%K$l}9PUBCQrTS$>9ll+?eNy1$6| u(DTnJhYfbSE)+H9&Jf??uDtvCPo}H|llt$eAJPR{!rB1=ie1| fidVufL4<)pv4!jD711laKvfK$u6{1-oD!M<_6`+V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_armor_1_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_armor_1_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..85e3c61b644f29798e3174b12a58073132269806 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhC1MgpdYb+_2#7rR pK0oKI0kcNg!2?x{c^tNk3}L%9du*yU-2y6S@O1TaS?83{1OWD(8T$YL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8d73b2b32eb29c4ade308374a1bb4122ab82197d GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0Xc!5E{-7;w~`NVUlO`;$-!iH0HZ*o zgcobhsf0E!#@U)P9tIr{V@uoNB&oTOHD}>V2gc3>g~Ll48UqjQY1n&X3xfvJlyrS| jA)x?n30CQVTo#7!D*V%=e?CbE8qVP9>gTe~DWM4fARR)< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_boots_1_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..070153b7f9dfa1c3c425c5a53ce398f928eae033 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qCH(4Ln>}1El}RU_M*10kb%un zgXjK#CEFl(Gqbd7`xRB%rW>tpKJwkOs_~1a@`i|4!tY$vMFO7tOiWp0R{DK)Ap4~_Ta*{k<978H@_4GIj9cJKQ z;`S2$`@dP+Z1R@~y-n79>+PAIZ(pDiKRsq)N5lF_+HLn)BphRuyeIwK@Zy|fn$Qb5 z!&j$U3RzRt^aGcFmkTU?XD9f*{X2iky+vowyY$|yX}i0gL9m&rrb(;E185tAr>mdK II;Vst0L(5^8~^|S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_chestplate_1_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_chestplate_1_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..468a3903cef31ee17c8bdb5ae2ec70486f3fc9da GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Dm`5sLn>}1Ens7~V0lb~;jjVE zpa1TkX4ok#-hM%~IP9tu2m7p$fULWsyASU)kv(uKqQKZIVup{{yw1fe52uH!S-h+k zZxc)Hk>}>s-I$P&^2NNm$kTdRLWEO-q_OIckD1{M^`2MDvBb`M8S_$kBM=m-W+S3j3^P61*ZQ7s$eV$@(X5gcy=QV$no%WaSW-rm3)Bv#-&R_2YOPj zZz>Y?2TPU|Z~B$;>Rk=<2{?)Eu~h c@v0j`(=36~!#jm5fo3vzy85}Sb4q9e0G{AOm;e9( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_helmet_1_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_helmet_1_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff5dd425a5f3390d5efb6bb65c0dd318b6d897c GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>~a?PFv+Y9PY$U-v)n zcMnD#0R;vogWigeY|VhXjmLTJy}xSew@9vJ&sIT4|AahSu}5Mh&kik>ZEEGZ9Hj8C mHRyr2z`Yut7LM=gWemv%E&n86);$86&fw|l=d#Wzp$PyU!!J4j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_leggings_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_1/perfect_leggings_1.png new file mode 100644 index 0000000000000000000000000000000000000000..10c7ff132e1e090e01284e785d6479b29cdf5baa GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XadQE{-7;w~`OAT>=6}li78ovYye< iPta%g~qJ;TV>V#wq2aPNP| zq9sgh90ClC6{q{RsBl@eez5zy_x7V2x6_;slX^uwWNHI{u$1v7vGpa!hq1@qmrC+= xC||()t=8{|>=8yWLq^epJuKZ1@|Kq>K`NhjGe}MKdc)I$ztaD0e0stbHGyMPn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_armor_10_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_armor_10_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f68d728ce2296ae3ef6e91e5fa5cdba8f0b53d71 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`hMq2tAr-fhC1MgpdYb+_2#7rR zE`O$tX@`Vj!#asmZXJTmCrleUllCWnHg=P^AjH6Ma(TEY#}w5hpk@Y7S3j3^P6EaktaVtqdnBmndHfDxJ8X@O@ zzppmiC%F2RMPI$udEre;%G-*Ma3+zYlTosKp( u@(6vn?g1BrN;t#mYW5A=RU{O4C9|1IbLF30AoUDr4TGnvpUXO@geCyw;YM%( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_boots_10_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_boots_10_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d4283d248b0f4c627ee3042fcc991a7f9d806550 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qC8z3Ln>}1El}R^O`e5u>v=`K z0|6Y&7k$t1KWDrLDq<`N@(X5gcy=QV$jS3`aSW-r)!S{zci4c3 zS@Wcu^1uJ<@4lLJ@zO$PK94iXE;b5h@;laX`9zclR=@uct!n)a`Y_DpDFUM}v2CoA=y(>vLney3F@`@}2u@7+vGJ VBxQCaodVj-;OXk;vd$@?2><|wS*HL1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_chestplate_10_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_chestplate_10_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a940c95a527b8efee1fdd4eca25d118af57e5839 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6N~q?KR{(puofY`+xg~ z8FmWEW>;EgUhPc{R8m~U*DL1*ZQ7s$eV$@(X5gcy=QV$O-UtaSW-rm3)Bv#-&R_2YOPj zZz>Y?2UaY?`aUw%8>x+1ZlWqh;g9 kM#h;3HEw9!Xvk4!IGH4z!Ex&TcA(h|p00i_>zopr08ye!CIA2c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_helmet_10_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_helmet_10_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..80cc91e852b7bffb190e9d7400c02bfcf67f619d GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1Ezo8#v0i5(a>Rkh z`q}Qpz7UD9u$Wijp^N`&o-RL=)SNlT#r8!-wsOFVdQ&MBb@03D<=rvLx| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_leggings_10.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_10/perfect_leggings_10.png new file mode 100644 index 0000000000000000000000000000000000000000..0a9686a85ee58b1bfaa29c3db22fc62c7f1b5e6e GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0Xd=6}li7~q?OD#qpdi3}vwng+ zr{wo{rjzciR$BPHAY9xw9wAb3$Tsa@pIM>e00Eb|+_^au6GJ_z$(`I6xQ xZvxY$O0i3anI|w_@Vm#rp3lJRuAr-fhC1MgpdYb+_2#7rR vEV2gc3>&TRpcnb_PoojJcHU1nO~(a6GF oZ5c3;MWBgcal+yR=1si}k6ZZ{y}ri%31|a@r>mdKI;Vst07GI#=l}o! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_boots_11_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_boots_11_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9477dbfac62f3d80c06224d89d1ec101559e9c0f GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qCH(4Ln>}1El}RUwxYH#kb$F7 zqU+v&rQ#*J%Qt)H{uUQ(O3V%CcK^h2>XxM|&t#?N44)Z$u%3Vj-YiWp0R{DK)Ap4~_Taxy(#978H@B`Gj5+>+qd z=134|Q#+A;^55@o5AN8lles4x#!~40=T^s=Cr1jDd1gF1W|=YLW$o4KW2Wkp$}``& zc}bM4?mfgCS#tM|^j6*5?|7XVO5T>Ln>~qoxsS(?8xI<{lEE4 zVpRhZQ_mqLiH7?&@jf>+T|XQ8-dlad?q8sOXrFLYX6l`HC+{4(1*ZQ7s$eV$@(X5gcy=QV$no=ZaSW-rm3)Bv#-&R_2YOPj zZz>Y?2UqD3rjq*kvJ$vn8_!3y0(c i$)2X(Cf*ZfObit-1x_q}ayblWGJ~h9pUXO@geCxbBS)G5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_helmet_11_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_helmet_11_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..3968e0dadf9b449069408fca54937041c45eb145 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1Ezo8Vv2OEVIOM=n zqh^0*vex5QtFov2E$5lSIV*a4Y+>u{71E;qxh@xEUj%P&tYDpL_u&%XK?m;OAcelx opa;4f`Ei%iKgeu(`Tspjtz5%e<`-M~fW|X;y85}Sb4q9e0E@aYAOHXW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_leggings_11.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_11/perfect_leggings_11.png new file mode 100644 index 0000000000000000000000000000000000000000..6f8dd3ba3b4a4469f17eb6b39f2a85efcf5d2617 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0Xd=6}li7~qJ#WZ&K!Jz(z@Pt$ zl|qZR=bTxiw=gSYN=IkKm#bPu@1_0+E~~nbe`d;(wWm5lo2DHI`#w|XNBOR-lmx@o z`$8D!Fq$>|3HWb1k@-g!d+%PR4%XS84l5b&omg7U5Er%j$eCxF>Ok8VJYD@<);T3K F0RY=qJ&XVV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_armor_12_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_armor_12_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d1aeba7913068e492fcd6051b28315a8a4274fc6 GIT binary patch literal 103 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`dY&$hAr-fhC1MgpdYb+_2#7rR zE`O$tX@`VjgSVki&o#XRCJidRH*$^?FzPZgJp3BZ&9U#xcc4xNPgg&ebxsLQ09msi Ao&W#< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ddb9f9538b1b5cf9be9256d2c8484094fe788f GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XgBGE{-7;w~`NVUlO`;$-!iH0HZ*o zgcobhsf0E!#@U)P9tIr{V@uoNB&oTOHD}>V2gXi^gWCcoGqJgGem?Xq=`zy-kA(@$ q)s_JhS(2G=Fu5IcJIIzI&1kw$@V53L`%OSA7(8A5T-G@yGywqR>PAKY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_boots_12_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c477233fff589782351e94c6a0027c84b37793f1 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0XIkLn?0VJ-?CHL6L*y!v6mX z^(x+0R#~@~&Ofjr?ttEcR7R&C us*gW5G-OYoHCueEyZjVc7x72Uoj2qP`u5xkExG`-gu&C*&t;ucLK6T^do?2f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_chestplate_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_chestplate_12.png new file mode 100644 index 0000000000000000000000000000000000000000..2c9271bf248445b7b36943c9360b481d2d571d42 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Fen`z-bA$t1KWDrLDq<`N@(X5gcy=QV$jS0_aSW-r)!XC9$85;M z)Vy))!T)9K*+5*EeaoR*COO zxH$Ki$NP)9iCZl}1EnwThmeJBPk%1*q z;m7~}4-)c@(>HEh)@xa=V0BS)=dnBMntq(|KK#N?spn<{*J1uvr_Zg`Tn}PHmt;Ts zsW-!Jway;jg_Xt3Y#TW8SBtw>C2(>IE|N(wYK^HCm1lByzOZrigzHPzu5wryzgk*E c^iT0zFV8z6HAQpJ0v*BN>FVdQ&MBb@0GVh*k^lez literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12.png new file mode 100644 index 0000000000000000000000000000000000000000..0931f94beaf0ba4c2d11d0c0f7763110999e6edb GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E^fwb%RYv(>=ly$K z@cYBn|KGThl7j;L{{R1f(7G}nsDiO1$S;_|;n|HeAjjX+#WAGf*4*x`jLwEUF1kHi z{~xk6F8v?c{!%+;WzeeiZDH%>&Mop%HYjhLE-JzJQ1k--1+FEmkA)(Yl+H8E;>cX| lv4L+%fcA~t-0P2?^6xTaydkh>XARJ322WQ%mvv4FO#t2!Mw|cu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_helmet_12_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..67a95ecf2347d3446aa30efe9d162a78e1ebd46e GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1Ezo8#v2L?qIBXzL z{j9FSU&|&eEap{c=$6dOz4~f_ITMcgUTN;zZl?5t^UT`gPJ5cp#q8MPydfYlit9+A n25TM5L*MxJeus_?|C9Vef7gdMt?1nkG@ilJ)z4*}Q$iB}$SX28 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12.png new file mode 100644 index 0000000000000000000000000000000000000000..66295bd4e9a4bf8e9dfe589a99eb7c2a0a68ba61 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XbowE{-7;w~`OAT>=6}li78yGxY{an^LB{Ts5k0D5} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_12/perfect_leggings_12_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..6e674cb1d784d9c29f10eaa37cdc7dbea88a3fc5 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>~q?b|5IARyrU*51P{ zXxVPRwX6&Qo(w46HM}75@0@}pj>FVdQ&MBb@0J?TL AhX4Qo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_armor_13_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_armor_13_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3059b0b178449aea489b9bb024e5b68c5d286d03 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`MxHK?Ar-fhC1MgpdYb+_2#7rR zE`O$tX@`VjgSVki&oaG)Luw~DSY2-RoOR<7zaYfGuv0eJzPVfoWC(+&tDnm{r-UW| DqY@qs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_boots_13.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_boots_13.png new file mode 100644 index 0000000000000000000000000000000000000000..89290d04218f2bd242db8feb9da899a3bf60e4ea GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XY$#E{-7;w~`NVUlO`;$-!iH0HZ*o zgcobhsf0E!#@U)P9tIr{V@uoNB&oTOHD}>V2gXi^gWCcoGqJgGem?Xq=`zy-kA(@$ q)s_JhS(uZVPb9b~&Ofjr?ttEcR7R&C us*gW5G-OYoHCueEyZjVc7x72Uoj2qP`u5xkExG`-gu&C*&t;ucLK6T^do?2f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_chestplate_13.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_chestplate_13.png new file mode 100644 index 0000000000000000000000000000000000000000..e4656e4464832b690715f4d45d62766ba15fdf06 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Fen`|SV!|EXUe2L$uL&Y6V*6)~0s`2{mLJiCzwh)t4Vlv># zUgiG(f6N-mcPUc4eg83Z{N^@kQrF+vvO?=ak4XoYx=6s)yLGCoi=rkQ=R~|bw{Y5I z_w53;kJy41>9+BoYudGPRj|Ti<$ZRW%6F=Cai+v+^KK}5R~q?Kk9WFyLYS`QQ1M zgxm$g=p%>jm>${mDy(aQM2Gkz>kP|(Gvti7K9mwvK3r<5r#M~uWYW6>+gKiPhaTJT zu~J-SzH7^Q%`F)ZTR3eFZ@<_ae9Mr54NqWVnh-59U0YwGG-yz0W2`(GOt b3DwVGk9l|}!AhYELX~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13.png new file mode 100644 index 0000000000000000000000000000000000000000..b4653c8212a41d8ff39ac323c04dc7373b34926e GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E^fwb%RYv(>=ly$K z@cYBn|KGThl7j;L{{R1f(7G}nsDiO1$S;_|;n|HeASb}n#WAGf*4*x+j4p}-&XTd0 z>JLlHtoy%ESTp{j-~U^4Do=m3otX7*Q_BgHb7d_8NmVRA1udI+6GH=d9quyyR|?^N nKXt*0?92b%U%Z=L@soKMKjV#am&>OC&1Ud)^>bP0l+XkK!r@B; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_helmet_13_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..67a95ecf2347d3446aa30efe9d162a78e1ebd46e GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f<0XvLn>}1Ezo8#v2L?qIBXzL z{j9FSU&|&eEap{c=$6dOz4~f_ITMcgUTN;zZl?5t^UT`gPJ5cp#q8MPydfYlit9+A n25TM5L*MxJeus_?|C9Vef7gdMt?1nkG@ilJ)z4*}Q$iB}$SX28 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_leggings_13.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_13/perfect_leggings_13.png new file mode 100644 index 0000000000000000000000000000000000000000..56171e54aaf7e961a9ed0bbaad9c94c8c56eb490 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XbowE{-7;w~`OAT>=6}li7~q?Nj7)Q510g{*Qg8 zvf}Gw3pd{V!{ucpEOOLjkNe^Gv25psbt*ode)MXp;*=JJ8FLeCETbLYJ4u9|u$7L= zV!6W_QDDy;8^iM7#=^q-Aos~NP6pqaes}+2Ji@rvQ1gEC7NAuOp00i_>zopr0EE~! AdH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_armor_2_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_armor_2_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1f08d78064a3ba28932612581b83c6f4795b26da GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fhC2SHzdYb-wC}}0$8aDs{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2.png new file mode 100644 index 0000000000000000000000000000000000000000..faba0b20844524cbade8fb19de6ca6a948b80dfd GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Fen`|SV!|EXUe2LEaktachpxQNaTSJex)C)Za3i zvF<+`kJ8Ud2A9scxoM(WK}WPy85_mq7?0>3|ElTt@i9Zxo0#QHM;c#w?0?36=fi}H qtD-&I685<_{^B`#wm`Ikfnnt?u1S&pdWAq67(8A5T-G@yGywo@QAvIP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_boots_2_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5b9fcbe41d3609293464d943aa6be4e5302202 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aZFaLn>}1El}RU_M()pkfF^{ zgXjG}_JOap7-)37=G3R~eo)RXH|?-Gk9H=Ya{wAO1du=XV?O9j$u%3Vj-YiWp0R{DK)Ap4~_Ta#B5A978H@^>(w0xfpUV zd#)(@|G7?c!@A(Jdlc#$j{areEaFjf#dYP@q`j`33r}zz+*iFh%y#)Xxr^63X3m?q zisej7;zZ8L2O`4MoX=RgujLV()5H*%&%3C6#WIN`?dL8gXC`i!i3?#VGLDdp2U^JB M>FVdQ&MBb@0JT$8Q2+n{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_chestplate_2_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_chestplate_2_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..edf0c12ebaec2d3fcb55b79c5f15027716a33d7a GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6sytmBLn>}1Ens6XF=NvdX?EcG z``x~y{Ud{3x_bTNTe((>J$yH&NoknA_mooN_hmM)jZC<_-M~;n|B+u#w7|d3pCs~s zop-uELA`)?;Q|XWlal_p&Fa&q7`F1LN-Wzjsnz0Eo#>Xc?{^4utXf|9O61g`=Ldqy c>h7Osb=vniFhthY6zB>DPgg&ebxsLQ0LLOgvH$=8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2.png new file mode 100644 index 0000000000000000000000000000000000000000..22479f58d04b7daff76f6b289766f2fbd44b1fd6 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no}caSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dYiyD;p({q0ep*Cr4^nT fHD$JNFflMJZWOFq7^L?PXe@)LtDnm{r-UW|;aEp( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_2/perfect_helmet_2_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b67de89a5ecc19384ca7ecb119f8f3d34353eb7b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD=6}li7~qozTd3z<`JK`+xaK z{#*(UjSLzG&dQ}+ov~27<6h{?QoiT5$Cjz{Prj+HXUcIhp~Uf}%58`5K33lxqT1aa w#0uPZ3<>z{^^bqfo2IIyH~$kdBEC7_ku%+3`mQ7+0%#3`r>mdKI;Vst0Nq13D*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_armor_3_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_armor_3_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b8823a11de3a674035728bf4e167647a24f2ece9 GIT binary patch literal 88 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%_o-U3d6}OTlY!XCzn*MtzXdHNN kf0OMXk3^*20vQH|9sH&Z=OR{p0xD(jboFyt=akR{0CuGp{r~^~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3.png new file mode 100644 index 0000000000000000000000000000000000000000..549a225fdb3ea14ab9844c0d606a1240763d8c10 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Fen`|SV!|EXUe&-?c} zD8R4a_lK+hzwzzb%XGx7A1KXO666=m;PC858j$1T>EaktaVtqdnBmnlZfS-D0gi@) zH|rltiLE~Tl(C^^ll$iy;Wv#R8{!hOF0ivOn+Vi8a4B)IZ-`@b`WU>!cyhW@+TS(d eDo;)wsn6ZHjj=aaaTgoVTn0~9KbLh*2~7aB%R!L< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_boots_3_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5b9fcbe41d3609293464d943aa6be4e5302202 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aZFaLn>}1El}RU_M()pkfF^{ zgXjG}_JOap7-)37=G3R~eo)RXH|?-Gk9H=Ya{wAO1du=XV?O9j$tWJ-iBw9d_Vh z;#cwY`}M#2@q@($Ucm>?ZHi+l|Ho~`bXt|aV^xr&i;#ARiJmOe{ns->S5CJ{a!yb) zo%zX7S>cIqhLph;(dKvmUgSUE5Kwq!*s*uwPl@l#}1EnwThmXX5~#L&_x z@#4SyrQ=^1<*K9ie7W;_mVmRSSRwPHv}HL~v)!_vIq2-@)a-e~!}b11F4rM(?Inee z|7*4IDIUA(baIj+hd@W%X7%Y?61dvL0{9YL4_WQ{tNFrgf33Pe$de~4=O+A-sqjBJ c^YQ;X>(_i-BXlk~4(JF5Pgg&ebxsLQ0A8s@<^TWy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2c5a7319294933700b517ddd50d8a4e30f74a1e4 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no}caSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dYiyD;p({q0ep*Cr5CUn fH%V{^vM?|#W)Q5(Q(^Q18q476>gTe~DWM4fsI^3h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_helmet_3_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b67de89a5ecc19384ca7ecb119f8f3d34353eb7b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD_bHl53S27q#=n`t>2v#ZPAj`iP5G3f!%UaI t)t(S@o#bhMSf@(a?(tId4?O$~3{Jz= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_leggings_3_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_3/perfect_leggings_3_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..dd5ed3c1864e1ddd6100c4430f1fc509a27e0711 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>~q?KR{&V8Fxt`G5Nl zPszQNr{{!D)jXmrxYW5sfXV7fnVzgaPqgjCnJ!u)9tSo*k@i|qC7>#x9Qj-C$gHg~ xK~44CaZZ2lOa5=|Ti9YH=)$qBWpYgr+Ar-fhC2SHzdYb+_2#7rR tF7GyZ(ezF$y#|IB?h~w6j2q@LFdS@BofNHlc`i^3gQu&X%Q~loCIDk~8;bw{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4.png new file mode 100644 index 0000000000000000000000000000000000000000..72f03194cbc2a0937c8c643b54d846bf4e3051e4 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Fen`z-bA<9YvHU;Y0r zD8TRk|NjNQKk)6^o7LI$9VpFM666=m;PC858c40Di(^Q|tt16uhF{aTWf&X;7#bG; z{NJvdwQ|ySMuxzw@NX+v|1@MC&=WAb!Q8?q(_yRN>e|Y5!sg)l2YxO5A*y+Q_n5O> d;r_9Qcb6XHyg8A_UjU6|@O1TaS?83{1OUR8LUjND literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_boots_4_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8670cb6a8633ab6ccea793d3b70263aaf0e5e912 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1El}RUwxX18A_JR~ zMAyClN-`^j+MSc@moMVEnKWB;_Dmbb^Ox0(McPVOO&ummcd&KVJMuh;k^Uh2MJHjB oAD71?m9~%ncFI;IWq&Bn6L{BY>J;E(4K$y@)78&qol`;+0AXA%wg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4.png new file mode 100644 index 0000000000000000000000000000000000000000..e89a3f035c9ba6c190f5ff17c2ae1b08bc65baf7 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Fen`z-bA$u%3Vj-YiWp0R{DK)Ap4~_Ta#B29978H@^>(w0xfpUV z&t};A`~G+RP49xw?z!-f;ox6(Z_%}Olbp`-d|V~a`|oqCjJw&{Bg^-=^X#}0Z4=aT z;GSMgsG7~R1yyBUYj!S^oX^5|=v>lT&mP8!LKi!0=4ou4{B4?WygN%8?`{7ZK>HXx MUHx3vIVCg!0O7q?0ssI2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_chestplate_4_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea33ac38afe989d58a83a78f2bfbc2a0f2dd739 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Dm`5sLn>}1EnwThmXX5~#L&_x z@#4SyrQ=^1<*K9ie7W;_mVmRSSRwPHv}HL~v)!_vIq2-@)a-e~!}b11F4rM(?Inee z|7*4IDIUA(baIj+hd@W%X7%Y?61dvL0{9YL4_WQ{tNFrgf33Pe$de~4=O+A-sqjBJ c^YQ;X>(_i-BXlk~4(JF5Pgg&ebxsLQ0A8s@<^TWy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4.png new file mode 100644 index 0000000000000000000000000000000000000000..b4824fa4cf974c30f62ff02572494097d9c039aa GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$Z_{{aSW-rm3)Bv#-&R_2YOPj zZz>WRmRZeOtiB>}<(ALGcEI=?uZC bjSLLuqJ^TCuG_;8G?Ky7)z4*}Q$iB}jip4R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_helmet_4_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b67de89a5ecc19384ca7ecb119f8f3d34353eb7b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD=6}li7===2Dh_txK%*HvUHx3vIVCg!0LG?AKmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_leggings_4_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_4/perfect_leggings_4_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..dd5ed3c1864e1ddd6100c4430f1fc509a27e0711 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>~q?KR{&V8Fxt`G5Nl zPszQNr{{!D)jXmrxYW5sfXV7fnVzgaPqgjCnJ!u)9tSo*k@i|qC7>#x9Qj-C$gHg~ xK~44CaZZ2lOa5=|Ti9YH=)$qBWpkPexcUZr$Fg#B;ZD?N{Uk6mq;OXk;vd$@?2>|%i8gKvr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5.png new file mode 100644 index 0000000000000000000000000000000000000000..c669ebb4c8b50fee6c62c635bc538e7774c5a33e GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E^fwKw(a<9YvH7ySNk z_5Zh^0KfnL|9iiE<}cX03nEaktachoGD`SHL$DYjz|1)!^ zL_O%m3afh8piv3^LV$gv%ZM^ty$ub6F1|8>1EL}TRqF3 sJk=-dem@eQpZ>;s@~V!5=nqDQqxll$lh*zg1=_*j>FVdQ&MBb@0Iugu%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_boots_5_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8fe7c38fd28c141df0848a18de3cf78fdf1ede93 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aZFaLn>}1El}RU_M()pkfF^< zqT$|urT-q2En-Z!c~4HwH2(7IsQMSq71M*SJo#Yoj3qgtgZB&ffnQB#0ej2>xIf%# s6y#=VcmdKI;Vst0Egc$u8kJrfp6)~0s`2{mLJiCzwg{Ho=Hke~ zY<{WgKeK+#G26AF`hWfkq~zI0teqO++n%v)V!klH;2q8jY5`7$S0}l5?G^RtJaA9Z zNmRH|^~R)=LfLCGKf9fg@SiF5vPYSwJ2uSf0oumk>FVdQ I&MBb@0DCY{JOBUy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_chestplate_5_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_chestplate_5_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7862f3cd9e41fa94e2105494af041c2e68e258fb GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6sytmBLn>~q?K9*%puofY^S^V2 zkNkldyrqe0rH`WoB^_P`=!70ESJJGX({^HECc`py?wnsjYHW*}zKh=$YRM0id+hr^ z@`cnB&YISMKv{07U2@+ys863_*vg|Sv24SnR*PA+0$I1_+}~L3IJ>yK?-oZRzjVPF cub*{tcdmW4u`!;W3Umd7r>mdKI;Vst0G(Vx;s5{u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_helmet_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_helmet_5.png new file mode 100644 index 0000000000000000000000000000000000000000..0348df2939674ec5c56173ef01b1377619d1764c GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no-YaSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dK=*8Y{|?l!00NqfX%o` ef5@E~|j1GI+ZBxvX~a?K0##V!*@le){*r zwUbW2y|c5-TF^~^rKv>G`s|@I@2~RaMeUvOBSTqgZ)5EjE*IVzZw{=y%hD)hyvyN_ naA~9W1ED8!Op34mpVMRh-mG~2?2ZRO!x=nX{an^LB{Ts5Z@e_s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5.png new file mode 100644 index 0000000000000000000000000000000000000000..027e25bdcd2b407b577abfcb03376fe69019d8a2 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XadQE{-7;w~`OAT>=6}li7&06cHVBH}f4p(-}Nn{an^LB{Ts5k8elP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_5/perfect_leggings_5_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8c2f898d74f2a89ad229b211d6f17b93cd85b61b GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>~q_1!MWpvaT_-_b^B zsdf34Eq(Lj-CMs1F5Si-J74AR$zbNooVvEEfqoN1Cp?_iE-a>Eaktacge3q0nIm4rW%B_J99x zo9t})ye)4}tHfIlTNNdas{OuRmd{pC{@;ATE=l>tEsi=i7ZF>#d6)05)^SbSYm=0E nb5iWow1v%Yvl|)2zW-rJo69TnKIz{Lp!p1*u6{1-oD!M}1El}RU_M()pkfF^< zqT$|urT-q2En-Z!c~4HwH2(7IsQMSq71M*SJo#Yoj3qgtgZB&ffnQB#0ej2>xIf%# s6y#=VcmdKI;Vst0Egc$u8kJrfp6)~0s`2{mLJiCzwg{1?Vo~H^ zHfI$5@xS@}i?8!^t(-0YaZLHmy=klNrkg@%?=IXdIeo?*&I@xbxKCf3RpAkG(`A<6 z3acr%d^n~i2~UnrNjvk?T5#((;kwrf#~N-fRd!y}neDDQJHCiX;UCiq{g09Bfc7zX My85}Sb4q9e05IxR+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_chestplate_6_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_chestplate_6_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7862f3cd9e41fa94e2105494af041c2e68e258fb GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6sytmBLn>~q?K9*%puofY^S^V2 zkNkldyrqe0rH`WoB^_P`=!70ESJJGX({^HECc`py?wnsjYHW*}zKh=$YRM0id+hr^ z@`cnB&YISMKv{07U2@+ys863_*vg|Sv24SnR*PA+0$I1_+}~L3IJ>yK?-oZRzjVPF cub*{tcdmW4u`!;W3Umd7r>mdKI;Vst0G(Vx;s5{u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6.png new file mode 100644 index 0000000000000000000000000000000000000000..dd9ba385acb38b55b110dc84a06501d28b9a7e2c GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no}caSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dK=*8Y{|?l!00Na@XW}p eNrFR=g@NHvwNUo2m^=%hu?(KBelF{r5}E*OQ$yDP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_helmet_6_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a2c4b1f753c5dcc330b650059da428f61042bb8d GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>~a?K0##V!*@le){*r zwUbW2y|c5-TF^~^rKv>G`s|@I@2~RaMeUvOBSTqgZ)5EjE*IVzZw{=y%hD)hyvyN_ naA~9W1ED8!Op34mpVMRh-mG~2?2ZRO!x=nX{an^LB{Ts5Z@e_s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6.png new file mode 100644 index 0000000000000000000000000000000000000000..4e8f74a5f869e19e83c6611de896186d50225aec GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XadQE{-7;w~`OAT>=6}li71Qw#mf--Ph@T2i&y4A(-}Nn{an^LB{Ts5eG^Cg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_6/perfect_leggings_6_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8c2f898d74f2a89ad229b211d6f17b93cd85b61b GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>~q_1!MWpvaT_-_b^B zsdf34Eq(Lj-CMs1F5Si-J74AR$zbNooVvEEfqoN1Cp?_iE-acxAr-fhC2SHzdYb-wC}^>bP0l+XkKrUVz^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c67da94295abab0756c96fb98efa0003612327 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}9K~|OfYOX5L4Lsu4$p3+0XYGlE{-7;w~`NVUlO`;$-!iH0HZ*o zgcobhsf0E!#@U)P9tIr{V@uoNB&oTOHD}>V9-f}2vkq;ZjLgvq)r{2}H76)CPD$5i i7ZNg%R=JSF!oatO|D0m!iKjrb89ZJ6T-G@yGywpGJ3zhw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_boots_7_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b9712ec351e0752ee179a247a92430dd95709164 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qC8z3Ln>}1El}RU_M)_}kb%ol zqT$|uC7F{G&#pDjt~ao6aZ4-Im?+*_x#Y5;q)C>(f)qy*({6?r<~MjPuCx4MvJ(3s utjpn0Td8N%8`in+h1EiSwM{Jgub9QQOh~LwxAy?r!r$ty)6TX76)~0s`2{mLJiCzwg{e7WHA&t zoMe5c{^0%(KIL3q#?gKZ&wn;wjcU6pvhZru!+c@o8RblCrtV<78B#o7?%Om?Ri^6b z4O9G}1Ens8#V0uiA;jjbG zoq9q3$BZ$%sxR#*`#n*h-+-@E;Yq2u$)-;?Kb*PK;b)$h_&h1#im#0>hy9ufC%f-2 z7m#w|`Ysf;jmNRU;fr~7kth4I1P#WgVqrQzE`D3TAa~z&O^Nc9f>&Zu533J!eeP>n a!NQ=s{i}_qssty{4Gf;HelF{r5}E+`1*ZQ7s$eV$@(X5gcy=QV$Z_{{aSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dYiyD;p({q0eqMA7?mza btYBbh$`p`|T@{!OG?Ky7)z4*}Q$iB}zkfxw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_helmet_7_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_helmet_7_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b67de89a5ecc19384ca7ecb119f8f3d34353eb7b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD=6}li7Px# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_leggings_7_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_7/perfect_leggings_7_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..261d91ea34de3118f88b705fcc1e590c22b86263 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>~q?KR{(V8Frr`+xg~ zB|SMgXV$Ds=!kAy#aAfiU2b@Nr;g411rHt61U7HtlH9W3kXqx7hnpw-U$UX>;I}nT zE~&iOzCh&0{g3|-IelxZJd_YCa6;^c{}Z;NOB<>eO5F(q+QZ=K>gTe~DWM4fqYyqv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_armor_8_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_armor_8_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..15f1af6063b7b0a23e83cd72d937ab297dd1ca2e GIT binary patch literal 89 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`3Z5>GAr-fhC2SHzdYb-wC}V9-f}2vkq;ZjLgZ&)r{2}H76+EIB?)V j9G_4o!)$&rM@9zY`+|u!c|p}c!x=nX{an^LB{Ts5`awb0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_boots_8_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_boots_8_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8670cb6a8633ab6ccea793d3b70263aaf0e5e912 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1El}RUwxX18A_JR~ zMAyClN-`^j+MSc@moMVEnKWB;_Dmbb^Ox0(McPVOO&ummcd&KVJMuh;k^Uh2MJHjB oAD71?m9~%ncFI;IWq&Bn6L{BY>J;E(4K$y@)78&qol`;+0AXA%wg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8.png new file mode 100644 index 0000000000000000000000000000000000000000..60e8761cf804079746408cf242186add6a8da4af GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Fen`z-bA$u%3Vj-YiWp0R{DK)Ap4~_Ta#B5A978H@^>jP(u`2R7 zwNA76_V4@L{xU;7dqcsvxa0B%&&6&qGTe29QIqrcc?Gt+f2`hD`)Jmr_Rla_!R6mp z8zL$3Rjo?OVDDVE?6vNXSml_RTI`x<2n){NX#RUquhmc9-SLd6QY>Bjraj05TFBt( L>gTe~DWM4fr)*KY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_chestplate_8_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea33ac38afe989d58a83a78f2bfbc2a0f2dd739 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Dm`5sLn>}1EnwThmXX5~#L&_x z@#4SyrQ=^1<*K9ie7W;_mVmRSSRwPHv}HL~v)!_vIq2-@)a-e~!}b11F4rM(?Inee z|7*4IDIUA(baIj+hd@W%X7%Y?61dvL0{9YL4_WQ{tNFrgf33Pe$de~4=O+A-sqjBJ c^YQ;X>(_i-BXlk~4(JF5Pgg&ebxsLQ0A8s@<^TWy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8.png new file mode 100644 index 0000000000000000000000000000000000000000..d2c6138d764c730a0d97b17e83bf044eb7566b67 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no}caSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dK=)DY|ZR!$?UO&F@?i} f<%mOv0t3TQH=&v(GMZ0-#xi)i`njxgN@xNAi_k>j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_8/perfect_helmet_8_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b67de89a5ecc19384ca7ecb119f8f3d34353eb7b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60z6$DLn>~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD=6}li7~q?KR{&V8Fxt`G5Nl zPszQNr{{!D)jXmrxYW5sfXV7fnVzgaPqgjCnJ!u)9tSo*k@i|qC7>#x9Qj-C$gHg~ xK~44CaZZ2lOa5=|Ti9YH=)$qBWpEaktachoGD`SfTkN3aEvj3SM zC*NY26O#0!BE;0|%_bx5I^oL1udYlPY+IOSEskb->BvxZypBs<;qCql6JMWSnUQBH sm9C!Rp#CiJ+39QTPqM@oaQ$ImQ2QcQzv6s*EzlAMPgg&ebxsLQ0B-$DsQ>@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_boots_9_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_boots_9_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8670cb6a8633ab6ccea793d3b70263aaf0e5e912 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}1El}RUwxX18A_JR~ zMAyClN-`^j+MSc@moMVEnKWB;_Dmbb^Ox0(McPVOO&ummcd&KVJMuh;k^Uh2MJHjB oAD71?m9~%ncFI;IWq&Bn6L{BY>J;E(4K$y@)78&qol`;+0AXA%wg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2ea2b5b74a52caada233de6a94f04b3c17cff9 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Fen`z-bA$u%3Vj-YiWp0R{DK)Ap4~_Ta#B5A978H@^>!NyF&lC) zPjq-}{Qv)ZRv$re%}u>~tq=WUIQ#ctU&Gns{v4h!%;y-)+RF33dfKGxp&mzGP4>}W zYTf9QT{K5x?STw+^*4LvJHsoq1Qfo+3S=Lwb;`eGDZcqc^WP`Ti4R#SpJe{!16s)7 M>FVdQ&MBb@0NiX>UH||9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_chestplate_9_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea33ac38afe989d58a83a78f2bfbc2a0f2dd739 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Dm`5sLn>}1EnwThmXX5~#L&_x z@#4SyrQ=^1<*K9ie7W;_mVmRSSRwPHv}HL~v)!_vIq2-@)a-e~!}b11F4rM(?Inee z|7*4IDIUA(baIj+hd@W%X7%Y?61dvL0{9YL4_WQ{tNFrgf33Pe$de~4=O+A-sqjBJ c^YQ;X>(_i-BXlk~4(JF5Pgg&ebxsLQ0A8s@<^TWy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_helmet_9.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/perfect/perfect_9/perfect_helmet_9.png new file mode 100644 index 0000000000000000000000000000000000000000..f4318b62762d6fbe681ab0e2621ddef2c34c3f2d GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)bG+q{3T3x0n{ z{rcGZ?K8ezdxHY}xRR1>1*ZQ7s$eV$@(X5gcy=QV$no-YaSW-rm3)Bv#-&R_2YOPj zZz>WRmP@dK=)DY|ZR!$?UO&G0Q-? eqfx+-fnmoQ!QY*E3Lk)`GI+ZBxvX~a?P6p*;K0N3`}98p zf2#vb>@p1uK95^893AiS=@?&MFD=6}li7~q?KR{&V8Fxt`G5Nl zPszQNr{{!D)jXmrxYW5sfXV7fnVzgaPqgjCnJ!u)9tSo*k@i|qC7>#x9Qj-C$gHg~ xK~44CaZZ2lOa5=|Ti9YH=)$qBWpuPl zf0Fc)#pVAuyZxCR+Nq>o_q=2hPz7U2kY6x^!?PP{Ku(yai(^Q|t-0Qt9UoU6as7Pju>^C*6ansZrW#wZjjEDivLF|Ey85}Sb4q9e08o@b-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXqpZ)&Ke$cUM`RH#1^= zIi}xWP0eqUI&0U<*|8wlQLVm;rQ*__$9`Mn7liq(JjyEn!jdWEa@U$|K$93eUHx3v IIVCg!0I4c6+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..bf8e8ce967ae5153795968f0fe1a0f03212e3e6c GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4?JhyHJN`;(-1-A`+| zp<1Vsx}~LMvbemqmX@5XEKotuq{(qWim@cfFPOpM*^M+Hr^wUAF{I*F@&T3}r(--k z$GVt!d{%EWFsN7`l#rkoFMD9u>N^dMJBzNpiq&2&ZLnd@tT@ZPMN^rXv#-4By|jB8 zn}I=r{>Q;v{pP01f<N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?EaktajUn>QRsjI2Q%lDXaDW<9?h6M z{T;`KNxv8^9XJy_&IZ~(En}JXP56Yn!=rmdKI;Vst05DKKHTkZ`!hQkG>7o;BFGj6sfbVL+u{L^#JY?Vyc^c6dv=9^|?F pN9RY>j`RlW|Nk6Vo~WyQVl#hL#Mty>t(88=J)W+9F6*2UngDioK)V0{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/power_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee32b2581733d85f3cf0248ab1e2dfa549a58d7 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4?JhyHJN`;(-1-A`+| zp<1Vsda}5D(i+jpKsm;eAirP+hi5m^fE;5_7srr_TgeC5L|9p;I+zqQFf*@a>|lJ< zD50a!#w@V8S%Ot#my;t0>ykzRE)90Y8U_YKPZo!X_tU2WwKI6S`njxgN@xNAI9VyX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..931d307a6d0b46924cfa3b337b263410fba52ced GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8QQ+5DLu`oG!jRGrSB zB)xS30?Q56EG;dQ#pSiNwB%%EfojfXO^E|ij3q&S!3+-1ZlnP@5uPrNAr-fh4{%T6 znK9MDmbcy#*sDsosDW~mCPJw2kr1GIy|)78&qol`;+07?u$ AIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXbP0l+XkKK;$u= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..5a94ed49ab053aff29a2d509ee7bc42b1db99d05 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8QQ+5DLu`oG!jRGrSB zB)#i?TI&J?mK&;BT3TvrY01gT0@b*GW99Cn^tXNq4_@3W z4tVyZkByCOo~{x5UVZ}x$#lL`a~ciAsvIS5*Y<@pOT4M>yFN#cA@b4QqHAIsa^LJO d7gvbnW4P9&5!ZYutQlxMgQu&X%Q~loCIHP*R+In$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?F!y3vbjv+_k^T zg0m)J*_qPBu+2tWr#R%l&Ct5~#(gcX|L-MoSN6O!`0h33GPBv`jg_T3=@0C(6XUHm e9{-l}SCP3&o#9etigzr~UrGduMAHk;k%t3LqMF_r}R1v5B2yO9Ru1bMnRhE&|@?P26< zP!M3b`_}5}pa0d?XIq(=*d=xp8os@_&M|w}>cpf_MjIxlg&*c@STjL#J;zhgV{}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/power_wither/shiny/shiny_power_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..65c03ea78980a0b02eb283a7a9e5830e93b25b1b GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=8QQ+5DLu`oG!jPmQ=+o?oqi(u^fRe!&b5&u*jvImVtYjv*Ddk`J);OqtT-XyVPp%siX9 zgYi+L#2N)R27%%R30{p|mmD})r!)(239u;EFfe4gumm0u_ge$h&fw|l=d#Wzp$Pz% COf4<| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a15cebec00e950a79b708c8a8c4baefc0a3563cc GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E^r=jYRE1u~?L-sCC2 z#F?-|PEO9y(D45zo;$@1F3bA3fpUx`L4Lsu4$p3+0XadQE{-7;x8{0ZWn^OHSepI6 zQT57i`&r^2j06gg|L1=`Pwo%%lJjj(`6uu#_`?21=bOee7v(+kT{0SO{$&hYEvq2= pJdY~?l}+SSU{Mh{(U7^Vj^+V-0){0=mo!PC{xWt~$(696~KKwSU; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a26b0de01e8d8c148091d96a8202d64c34320b33 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn>}vJ?GANz<|d&Fj>@0 zS#ab1y(|lI?`eKqx6t8V(+5eDMM0DIE38X+&azS9XMN4z7a#Y!NCY2zvhw~+hOV`i VykDE;jDcn`c)I$ztaD0e0sz(PE8zeD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e252fcfaa02c55427d9766ad3bd87b52c0c02d47 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DV{ElAr-fhCE6P1&;M`FlPs*f z;^u`5ANJ3gBjcgCiBZ9Df{crdc*9MG;Eptd9{(E*Gn`5a7x5l=$ogtWLxRI2(}s+> zvn&4H*L0I$NNPUfaj_?nApxf$s_n^GZwSn;}v?GI%5e|vOPf?KP0CYdX--XV5NQ1Hva(56(yF=3Lrz|( dSx4N7dEF7`!Z3@#4M0N~JYD@<);T3K0RT80EC&Dp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6c00eef28e18b8a293894c81b31d3857b97cef90 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07iz7M7EfGc+{(zlrBg zF;IZP+^G5mkYX$e@(X5gcy=QV$cgZDaSW-r)pN>`&&7~~DPTkEZ~4j%X^*~bW{f}5 zey94WTv%H35k@awrPW6@x#kx0|D`uaP64GEOM?7@862M7NCR@BJY5_^DsJ`maC12;@~~`{HvIT+ zy6%UpTOLyTSlMN-F;20*(`)j*ZuU!=tZA*2s=mlpXdHcX;iGMg>=f;*j_NK3qWcTf tjIJ+lG;#XJZdp=M`23E~;=C#PKNy&&39u!%XO)AT=J>LP7ul literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primal_dragon/primal_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..505835556557da1b012eea9edd1a589ed478c6ec GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln?0V?PFwPFce^Zzqa!B zz9sUr7h5#PF!HWabN;q-&IXA?3;BMAr%nI;*6G7~-kOT3f{rKoqU0t7D7-zBpeV+p b8-JQxcZ>7#Okq0%ppguou6{1-oD!MsMy=v`>{G$b}&|mG|cVsmQ!I5alXNja@4?Z s5wF9eN6GzC4eSAV3`WN^?N%@_tX&X3Z5e~hLZBTCp00i_>zopr0DoC8IRF3v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..515989969b07ac780d161f57c8e9e490fce21530 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|G#|s@}fnH&a_F^ z)YQ!M;f{=qtg~`*aEZ&%Hqy~|w-XQ(lhiikO9gNswPKgTu2MX+Tbp zr;B4q#jWH6-0$KZ?B!lmSzgDWB#?ZXJucrs`8V@>GlAyx>&)}6@;mhOu{*G&uteED zh}1cC;DFYWKMlt{3>zA+p4ii{H^Q=^aqpf6MxO_43|lWt-kB*f>p9SL22WQ%mvv4F FO#p;}1O9U!Bw`X>KT|fW7 zK$-RgwoQSeI?PTR6q%+*A3If9XReVFr0h96Zn|h*cxaqgQu&X%Q~loCIFc&H*Wv{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e197e45e362d16cea13d871bb4ae9f19a449bc06 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE09)T<-C0P@}fnH!sXTM z1jOpBoHDeH&a_F+^x=NII(T|e)TGY(o~CjKmpC1LcX=gqF-dI>E@8HdD?5Rj8B2ov zf*Bm1-ADs+N<3X0Ln?0dcC#`$EAlvhe82GFKk>QzR^M&62!3W?TKGRvEKyiv(#<%B zh`COTD>w}{UzvHKMfnD^B|pY24x-PP=>JS}LsgzM?7?LCY@`x!i4{an^LB{Ts5)#X_1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..827eda5d4e2f843d783f683606be7f6baf36a818 GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d^}woLn>}1OC%~hx0m7QHumAdAf~)3%)9DQw3|xvmds$MFgBi9nv~wza5(*GfXUwapC*%GcN(*u0wg#Egx_=U-l(D=i^Wp7U}>u&^FT1cMq3WlUFjg6A%-V)aKw44v}iR3Dm<_666=m;PC858jut1 z>EaktaVz-%+r7P(-{oA4_eEa3s?U(LWc7+Ejgr=P@1!+LoOxQDKTVoJ^3GK8isktX zhEDn)+L|QhJe0OLtj-|0$5@|1&|_5%vjC%HO)P%{$B~Nf3>_OHco}j`<-YkZ2ss3_ OhQZU-&t;ucLK6UWG)IR3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2842fb730ffa6bcf37135875c29d8fdbc882fd4b GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>~a?Yqc(KtaICI>CLX zX~a{uB1NxY&t4scKYNa-SIwQ8c4?AQ2AlTOH1D0E9Z8FyeLOus=uXSRD1rA(7B$&M mbq6=s9g?a4aOhC`6UJTBf;5h;nacw-oWax8&t;ucLK6VZ1~TXX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/primordial/primordial_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..df4bfa9df73a8357441719611d0c36a834f4acd1 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=5!BFrO#)l*}NP&R3sGiT1x zqemY+cu-qgYiDO?B|JG3D9uH{an^LB{Ts5w6H>i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2d41c0734ae1f94163a26e629bd09661428bc567 GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(24#Ln>}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..07e92de7008bd24f8c736fce67e4e0a821ea1dba GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>}1FHr9I!QaFo)>fh` zaOIL>%vIfF}}iQ{OCuY-p@gOiG|LyZQ%VsDa43}*P*hYD5fLG)9&8Cz!B`UH7tG-B>_!@pli=y%7*cVo*Qb?{iGe5T_mFzV{8*#XRBQ@DlTI`JB_{gFsn72T*z@lrJ8eDuOcL3 z-mdX~T;dingH`Z3^E8JWZzoLSkjtBX`=7?IEOtF>#t-M!FHZ;B#o+1c=d#Wzp$P!Y C@kYx4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&}1El^`HF^Ws&Ic6Y` zEGBdC;dcW|tA~MV*LPgqpWZh8%g(C!T)zt4mU06fcCV%0obm4}>rWjhk@~7*vgAjy z8pqM2503?eJe;HMp2eV4pj`7w*q@bmLC^!eKrH|O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..768c4214ed2513d85bb5492028735ee7262a38bc GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0DIcv#YJGJ$m%$oH=tI zJa|x4R3xEWpls3>5fM?N)w~R-g0UpXFPOpM*^M+HC&JUkF{I*FuTLlwt0RYy%55;!cKZ5L8Jl>_OxG}%{|l>4tnZw`?s?n8z7S{!gQu&X%Q~loCIGqPMjikF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a85f3089ec2ac1815c9cb102ade47059cefde1b3 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/protector_dragon/protector_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..729d56388ea1a8a2f089d289978bb37278893712 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6QaxQ9Ln>~q?Q>;hP!w=Azj@w~ z@7?7VtJ}?LJ8Hfh*n0@E5}UW0Rb47`p8jE4^VVwVF7ZSwmn{L$cbbG@Pw<5Qr844$rjF6*2U FngAZMIC200 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_armor_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_armor_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6fc0feefffbcb9ee150f773625bab847ddabf1a3 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0C_U<$K&E`*@l6k$jN_ zVcbEgtjE=qE0~ICTn&8v@ZW^5j5eP*uK5B@ OWAJqKb6Mw<&;$Swi8&_# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4d855257f5f16beacb76e0ad81979b1b0a58dde0 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aZFaLn?0VJ>|&jV93FIL7!K@ z*ht&rAZykyXOCHJZ*9sXw!E*l;Qm@7U8<0Hp|(L}LWeX*(~ial?hnEiW{unlYZFeZ sepQlKa&DdViv7Y&uY-=wu$>_<&tCr}e(~=^Kr0wLUHx3vIVCg!0RCq&I{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..b9e9aef65f4cca1bcfeca55550bc6528ee9330a7 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0C_UT7h>Y9;WmcZ}hj&&#X}rc^h`NWM5YJ21(}xv8PWe<{Ws^ p+t*b1$~@uC?5{`dPPNv3Vq;1azdzF=d=}6a22WQ%mvv4FO#m-IMl=8b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..583696a9113152a3facec13cd825b71c98c9f7ab GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6$~;{hLn>}1Ens8VV8~{|z+}j? zdSXDrjOd>`+?_(0 Z82nCN^eyI?R|0eagQu&X%Q~loCIDF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..36596a2e9b30b2a92c26b5fd5a0ba22fbf2b13a2 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=5d~c|Y!wJ(4f7AdI`t zmM=(^_3xL;hd>F&k|4ie28U-i(tsR0PZ!6Kid)GCxFejMnGf_Nh$C; z!WBX)ENL3;ZIX?W%Q7=hCbVToMRCn|$d+o*Vra0$P=J-eN1uC+7u#}1FVOb**WVDaRQ$jF zm;IbBOdAi^ueoI2ST(yrMNIXiLgog}05LPx?uFm186szJ9k|42&~dg)O@!6=hKNOi khC^_ZKoP@6c0mRPk)H*Zx!zCK0GiF<>FVdQ&MBb@0QhGs(*OVf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/pumpkin/pumpkin_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e2a37ba9a27504e3fb22ee6d44373b890d659f GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0C_UwXtksG1DZ?3;b(BPgurhnV(@klxwc>;PR{q+9m$#<_h7$duA;4 e{v&DsfjOj9u>0Gkle>YYGkCiCxvX}1Es*nI+oG4w%Ft}U zb5`CDSUgcbujI5+ginVt-NR9U9Mvi6Ggc{ z{P?O^^pxMAZE;wF@D1)8EE!vw{2W+29x^yO{(k?fU!ReC&J5Qll4(Lf3mH6J{an^L HB{Ts5@%=eN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d404ace724832d8f52a68820e7cba25ddf591c6f GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07NIuw1il&F$N_4;?x* zsWE46Urk+cLSne*DqaT(pfqDikY6x^!?PP{K#seoi(^Q|t+`!{LJWZ{PKx!pwV2l ag8$uV#yxj`IXnXz$>8bg=d#Wzp$PzA-9dl= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..503a89be3914f5dfa885eec37cf3bf9eb3f8add7 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>|^?PKI*Fyvv5Pwfo} z?!DrA^@(Q7LCG6N4LX)i`@6l~E_S{v)!G<%JDP(rc_CjwOoE5RfwnI@5*XgtACa2u h5OnmGhg8LS`IpCYj|T8cx&sYn@O1TaS?83{1OQh{EfD|! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..54dc3e6e82df19832b8f14fb73d8861ca42b25fe GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`W}YsNAr-fhCH5qU^fcYxp8r37 zbKco{iT@WCI{$Y}T9V;r$Z+hq2}>e#jIfikTEi*jE4=&+3`u5|?3Mm+j{{9$@O1Ta JS?83{1OUIFB4Ypm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e34658d6ade275ca945c6f600056a8c999fe2b2d GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08{P=+N!kx7Vy&6Xap} z>C>mVeKnIBbLxr{62mSOQ6x_ zzvep0-=5t+Fz6b63;faOoUI}Z=;SVS=RkQOl$c>0v^jupfA!}Nfz|O|k wjNwf`#lP?x^W9T;w~Mz&;9nve^P4(WhK+BSR_|cg2eO92)78&qol`;+0E$RSi~s-t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..fee56ab40dfd9b2e2a9c7933adc40ffcd4d63f11 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>}tug5dj^0pYDe mYoyom^Znz!u+7$DC%ds%rS!WS3SL0N89ZJ6T-G@yGywopMlU}A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f31759118bc32319b3e83b835e61d24a4c183bf0 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`QJyZ2Ar-fhC3F%*WUNYF*w3sI zm~(r3{(pBdmXG$ezrM)3Jr3;VOyFuTIl~Ym#Ub60rkuDT?XJ{>q!Q)>5-RR}j0!%J u7&W9O@~GTm*rBGA^XM?6^fFH+7KTOZ&V*lVc#{pZg~8L+&t;ucLK6TLVJ@lw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..3e3e0b69ec4484fdb9c2b296c2d4edece034e805 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09hM_YCr|oYa_8SDY}n zujcmc+lLMvTC;A=(|`YV0HqmAg8YIR9G=}s19HMWT^vIyZsqhaavf0MVV=EY?!W&> zjZ^v9tuGvL7OH2kNSYdygsA>nC`f>i=*^)8X== r=UIP6c4d4C-Y9wb`<%jl8wQ5e{EW)x{hwulRxo(F`njxgN@xNARu@R! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a1625dcb295736618196fab07e2b23affc1895f5 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097d zO)Rn7$9bpH>Y!U58{^ZX6WVtP{h!b@bE4mm3F5vUrBmG7*nE?k8o8gE8*;ul{I}

zopr E0GdZRR{#J2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..802ffb2d7832a11f04b543a95284e039db7a0e80 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`hMq2tAr-fhC2A5xdYYWu`TnXe zNjtmCR3mG~1<^bEYJc0i2rhH$U~P$QJk8MY;{!88ldpV(?hG$Jpk@Y7S3j3^P6eJJnK4g5f65GpAm)n# g{6?Rpo0NDMX0|f=>@g|`1RBoZ>FVdQ&MBb@0F*O6fB*mh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2821b08068057b4edb3cb58b61a97c58b91144e5 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>}1Es$gQVkXDR(Bi;T zBB`9wB^WbD$||Q;e(xDSug$hKo3DO5yECk6$s2t~r2_4p6Ym^oyEs$&)r*M!9nUiy xb{7gpFn%|Cm=VCRm@(I`t5I^nd!|1ZtfX#sv)b3Bz609B;OXk;vd$@?2>_ZRHRb>S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rabbit/rabbit_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3b51441518916763e27b132e1868517a842646c5 GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``kpS1Ar-fh7idbbE`D%fq4WQV zH@}!CoZV##WT@Qk%VW?BH+ZzkR7Hbj|D6Sl3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_armor_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_armor_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..3987a363f670b1fc7447cfda594c44fdf5089d9f GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0F%*Ve!$O`*&c{Vm)CMMo?Ye%38#*!evU zpYQ$W0Lz&zG5rh)r{Y>a{5rO30`C;wc$L#X+;%84dIm77q~HG?<0{wrJE)0i;^~`r e|4n^Rb%4J!lF>?9ecmgesSKX3elF{r5}E)$mpH`$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..dab4fa8f66697fe249d4b63fd5d70787d12cfbd9 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mY)pLn>}1El@te{>AE;8N(q1 zfj4!G)3?ZVZr$T=mc;X!?ewK~xpfCDO2yeV{*M;FdY@}mP^1#2a50U^=EZC-w)z_LbFxJS2W(zv18rpRboFyt I=akR{08(f=DF6Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7c4580bafc18d1e951f31c1bd91a30d1120a78 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0F%*Ve!$O`0j3q&S!3+-1ZlnP@@t!V@Ar-fh6qp!pO=ITaYLZ|( zTyJ#qYt{eHeU*zfZuon)*hTU=?D>?is5s-fhQr>8OcOtev3b5pDOXfr+3lQgq4kRA z>XcYdMm7O9<+KUE(>9dutezon`09FBV6T7uyCWRlZ8y|8fL1Yhy85}Sb4q9e0DB2Q A!vFvP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a576bb7f59d23fa590ad89d746ae9b4c9cb3ec8f GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6x;$MRLn>}1Ens7~U|D9$&}<+e zc2Ie}#6joU1xxA*OeF8d=J`(Fu=He^y?j8osGRhDAF(-yXHODqdr-w(Af4%*z_!>W z=sXkK`--G%R`y&kHr#O%_}{lge1UsMMhw4-LWbbQfbf|OiYC{B)D3ouoi9q=!TdsF t#~ROC#yO1>g$k7Fw@#QU7}@FZYYyHAqPZlJ3eJYD@<);T3K0RRDFMAHBO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..2a5757d2acac1ef47a89b0fe0e8d1fade21e1a83 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9aJEdG~De01kNrpmBL zn4wHcR8msXf{RO&gF~K;?eCc@`9MXCB|(0{3=Yq3qyaero-U3d6}OTPusQYiIy;)I z-Z*JeAwx&v5{)H1X%^aCGaDrJo*mUwV2fVC?47|h;h^ZV1Cw?!967;}kjrdrC43{T nLDE>9L69r?DwD#YBvXbX_eGqp1sTQz&1Ud)^>bP0l+XkK@1{Bt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rampart/rampart_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b373c159005ad027c4099b0ca59c3d9e727cee31 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay?xfLn>~qJ#&!vfC3Nmfp-Tc z#~<~$+3b0vJ#v@BagW>%Ez$p4AC9Xmm-!v{^_A@*y==X8CtR3z?3(DwVls(A)}FO_ z4##yS9%iL)X1i(~AH86GlF9l^^<0=qaDdJ6NM~&>qeF>b@o29zgHn4HA8*FG} eGiczv!@#iqtUy=Hp#&wM$qb&ZelF{r5}E+PF*HH| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bc9592570f614c8fa48c47d8c0b92cb0c470f4a0 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1D@gV<-TW`8v*yy; z|IG)4938}BIAa(%njdgAHQ20RTfyKW#3+#Tg@NJFX7!I#@8_ff^)h(6`njxgN@xNA Dtc)L? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f02808fb0aad57b2fc6a0908cd6e5547c502ef48 GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6yggkULn>}1FHlbS$KS*u)>d+% z{_cMsfkXvuj#y6PfB=?t4lE}Qhcx6cnXxKqaJd+W7A%N3$QaU)$;j-%*y0k=RG=W$ dU{#XAz~C{*LG_p8jXI#Q44$rjF6*2UngG+lB{u*7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_rage.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_boots_rage.png new file mode 100644 index 0000000000000000000000000000000000000000..de6587bf5ddbcb82b9f7b6e0a017f4becb634592 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4S(FA7O9z9MJt7OdUL zAgHV(l*Ggn#K5J;!1`2;VIEKgV@Z%-FoVOh8)-m}x2KC^NX4z>1Kd_p7FG@>?H^eD z4zsbTv9YNNFd6i>SE`<^ouWf^N87PTT48* eL<5VQG^71w!8h+Xm1Ka%GI+ZBxvXkvg@YC z#pk;D1p2!M7+N^1ad2?x>gtM!hy(=%F*7r#-=3EbRK!>kxw3Q(~zYqylU0m3sb!km+f7B)BTE_)$V<*R}7!eT6`)xBXsBL8s492vrZ@9_{+uc XD2Sz~|LcJ+pp^`su6{1-oD!M}1OBgD=sMir#)ZKKX z>0h#jE`yUwqEBpjgMrxYCancmxD?tZgwALSXH>On*udEl&QMv}v?b;~VV8C;v$o(^O zO0Ul0f4e10Y#98#g?DdE*=nD*vUvZo9h;7s91EbD z8W*4I<`d}e8enMQtd_*Yb4AX)lR@y!^hH4oT+8nH%?4^@&lG1IL=qMek?vP zQ@3?RlfG%lQWajc>h6W9UWv>0uD;{u{wf`WqFg0(H2 z)pT`rm34$fL_|0^IGCA1>d)M|u^dP-mIV0)GdMiEkp|?rd%8G=RNP8Fz!tVPYO9n> zv81$mdJco}rAwC%^la-f>p0PK)7tuA&rInZ=}i)E7P309Byor_2y!_uZMeIV!PU2t eQ6O=n6ocj(@daJn*KPxiWbkzLb6Mw<&;$U4RyO_s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/reaper/reaper_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe6021e32b17f9986c85d7dc6441353a312687d GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1JFqQQcu~(N!1mWY zZL#JK<`xG>iP=1?!vD7)65Ya7>0s8G*We&xHkE}1FOW<4*UuyQFWH0L zaiN|>_X6$2HV-9*WlVw_HgNPD3pv0j@`QoYIdTS4eSw|>|i6@AGOOJtd;`@8If$A7bg8YIR9G=}s19IFwT^vIyZY3XJ3tJnt zRm!E9lS^t=K7(;jZ|}jLq|ZqmC%)XY);`!XQ+h{wlY~qruLDbxhAD#}*Ws;=%1ans gechP_5;saQEc+_%=k@=G8_-AwPgg&ebxsLQ0Prw5h5!Hn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d85116d26946b9ea09364742a2a6d3bd030d14ec GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08weV)U0}NLFL0GG+L` zisAnwhNC6|E+P#7OBv3aF@v-+mIV0)GdMiEkp|@Wd%8G=RNR{DbC{9AfTw5U{{yD~ zG@FD){L|(Ym8CH$JnNpI#+0BXd%!pI&@=uGoHy97EIayzL2;9@%cD0w!V331KHN|@ j5SYi%XMAfe*K+1-{fzZ4vRkJBjb`w4^>bP0l+XkK2>d#t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e25ea75178486eacc71675ddbde1f5dee760b9b7 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln>}1OZYta@&ECE@xSaF z#en$Y62&0b03pSubv&+JJggkr7Y;7@pWi4D$=G54(teZ44SoYwg?a_enJiD5mOkWC o@aj7(BGS0@f!X4&i_8oR3GbpFSN`W$0$RY}>FVdQ&MBb@0AlYj`2YX_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..46b2c2e0f8adee4908dc0dbd9486506c88b743ab GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`UY;(FAr-fhCE6a;YaXtbIHu+n zV64c^A-#z!Pk7nsFu@BoS6m+a|L=Z7lZ~eq!Xv%$D}`%7#r}l$hDXo?pALMMs#OjZJKG zS6`CC*#k-!!?p^X5jYo-$B{N;YpCOrNt>t5ZkFJg%-gDaa9iQDrTz|^WEh&CiT}Rm S@;VG?F@vY8pUXO@geCxx$xFfj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d5fe98c7aaa92b2e6046cb24e814635e464c85cf GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay(reLn>~q4RGXZP~iD|*7`Ts zybI?)NZkv#%yYt|_hW+i*=uF01%DdP`F%Lq^eCSt{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e157192de05810592cb6e64858cac2d125f088bf GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0F$Q%5c;~;QuOy|Bo2* zUZmv%g&0eM{DK)Ap4~_Ta$G!J978H@_4c$fHaPGw+h=}@m$baIbJwmdK II;Vst08S<|)&Kwi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8066221027ca91b469c4785eb8366075f8a286 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Fe=WJp$Ha1mjsGG#E} zV*I~~;eRQ^Q4@hkX};Y+X~vQuzhDN3XE)M-96wJN$B>F!y=M%Cju`Mb1u_RM`aQp5 zuTR0-@IR7)8Fwdc@O;h|>8j*?eYx?5o^*yQx(bJX+ibq}CT+#6D-kYP3KMQ=|E=G_ gCbaVGw74IPX9^knO+V{h0h-L<>FVdQ&MBb@0E{3#2><{9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rekindled_ember/rekindled_ember_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..554939aefec3098849179dff2b467ea0ab5c7546 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qCH(4Ln>~qnGni&z<|ePxn+=+ zV%nl*VyFJ>b1QE)i2Z-iRebB_69wYSQ-7WL6yE0XWr4u~zU_t%Rrx1NT=f|F1G${< w1*&Om4xV=*>C}=Q=RmjCN$!bP0l+XkKYb7SN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c458de124dde6c8cf908477711d6e90d614dbef9 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=0(Dzwml{Q{m`Vsa4BE zQj7(Qs@#ILMdE^$b%aVx?mh>qU@Qsp3ubV5b|VeQ@$+g_)ZbI2tAXOG?-^NHX#8^zfVrGVGU-c+zKRuu;}TC?VvTXF?Jm(A=!60>tXW!y7CrzNq44$rjF6*2UngB3GI#d7v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bc9592570f614c8fa48c47d8c0b92cb0c470f4a0 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1D@gV<-TW`8v*yy; z|IG)4938}BIAa(%njdgAHQ20RTfyKW#3+#Tg@NJFX7!I#@8_ff^)h(6`njxgN@xNA Dtc)L? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..994dd60a8a8e06ad97ddf723d59eafa6a578f1da GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0(Dzwml{Q{m`Vsa4Ab zi>gH8f?qA0G7%`jSQ6wH%;50sMjDV~HwzMNes-w%*_fM zjS~MQCF~j`nRs}5cnUNXID$M9l7m>Yg4jOxFiChYGQ54y`Z!C%|1;1W22WQ%mvv4F FO#nNMF8u%i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/revenant/revenant_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..cc0bdc4d33cb3dbe1224ebe0a52a2ea0cb534bd4 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09*!5z;ahv-i>!i3^U; zb*q~i=M(7f8enMQtR}T;x!2p93P-mt{QW|(sOn9f@o}IA#*!evUs}1OBgD=sMir#)ZKKX z>0h#jE`yUwqEBpjgMrxYCancmxD?tZgwALSXH>On*udEl&QMv20>;`9W3sCrmV(J>IH305_eXcF$i`%+{D-sAR#KfOLn>}1JFqQQcu~(N!1mWY zZL#JK<`xG>iP=1?!vD7)65Ya7>0s8G*We&xHkEMuV4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf.png new file mode 100644 index 0000000000000000000000000000000000000000..d7c6b2c01d58eb5725bfa7ca5c995d680fb38407 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07LU*DSEG?$y>=rY*Z} zQO%W;i%dnu4=FCx1! zTKzxR{rhKT3#sg#@xtkpZzo@ex}WnYwbH{ZE2V`>N`l&F+PJ!Z*1UhkFlomfalzC3 oMw|t<8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua.png new file mode 100644 index 0000000000000000000000000000000000000000..523f6ff84025d05b0a9c3184b0fc8bcb561b9054 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AW1iV~?TXPCQ)VcCgw zi)yZ%T*Tn){Ip=FC{T{EB*-tA!Qt7BG$1F+)5S5Q;#Tgdc2Q;r4yFJ`|8MgxTz${) z*XsYl?%zK%TS#T^j2BL)d^`C%)cu@Ksg)jPSt%`4QWDfY)5g{Pv*!IPhDkf_hzp+H pC!f*8>hzDJrQcHLIQ#h;R?(%5zxA8sw1KuTc)I$ztaD0e0ssZZKL-E+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_aqua_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..f7b97504a122a01fdababd1c9184573c72d53e4f GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0UF(vYaIDPWHv@(}!=_ZERCC$(7uana1Ouby{Jyvm0M}#_1iNw)Xh} ubDuLOv7hE^{Ha*5zP4aTeDZ-u>W2jv*Dda!<93GCOcE1u*)5n{VOjdw#!G z{||Qm{+ZcADtl+Va60AN$=9Lo=X^@7^f1dxX`zymp!S(IuI`^T?_V)Y+Hpr*@bo_U nj3!p6e;h6SmO97T&)2YuE@k|!-z29Ew1vUb)z4*}Q$iB}*2+BS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_black_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_black_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..818adc07d0ed2fa6a95759a91aa8667a0164fb7b GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0UE{(Og1Y-NiO4+%Ie0 zqM9ow7YXpo9FFF_0F+}a3GxeOaCmkj4akY}ba4!+xb>#Lk?nv1kBh#z=fD5mySLqG z*p`s|X5smh%}y88j&M!3lYKG!^x<1}8`~63awWH9rt!FEomN=w?8cX#ae9ZRt$lvL u+~>?m?5Ft}e<~KNuPxXSpM2mEJHvrfEY?+X-g5(OV(@hJb6Mw<&;$UtXhvfI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..909bd7d345c9242b178b66294fc183b934df7308 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVUjS{h~WUyQ$?)Gin zqM9ow7codV`>r|rA1KFI666=m;PC858jus^>EaktaVz&!yC|~*2U7r}|F`)TuD<8@ zYxVzN_wS#XEu^w{#tWxYzMXs>>VD3r)JhMttdtfiDG6$yY2)htS@ZrC!=xQ|#05|9 plh0^kb^6EA(r>AAoc(+atLRe3-}+5*+CWEaktaqCTgBijK39v6La&wu~BcW=AX zuq`3^&BF61o1HGG9pRd6C;MXd>BG0|Hnu66U(~_ zR{sxn|NfcTLMnS_yl^_@+sW6V?&o|;t@JRfUHSb?BOxkfrT=4Wh o`HUu3r+*wR{gyh%+0WOoiY{gRt=}Z44YY;9)78&qol`;+0QA>A6aWAK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_brown_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_brown_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..5e52561df4962e72bdf2d08a10763ce8893f71b9 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0YyXN5w%|F4xw$GT46I zqM9ow7n#XO3hQWI2Ffv(1o;IsI6S+N2IRzfx;TbZ+LWIK9Ku);>RA u?sMiO_S1ZgKNSns*B0!EPd@O7o#DVK7VD}x@410CF?hQAxvXU(~_ zR{sxn|NfcTLMnS_yl^_@+sW6V?&o|;t@JRfUHSb?BOxkfrT=4Wh o`HUu3r+*wR{gyh%+0WOoiY{gRt=}Z44YY;9)78&qol`;+036jlT>t<8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_cyan_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_cyan_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..0da1b764e6550407232113b15f6b8daf57e9a7b1 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0UEp!b{1~TrDR;rY?8g zqM9ow7m4VqZt$O(29#qg3GxeOaCmkD#EJ8CaSW-r^`^g(?SKJ~i@vz$zyIC4x7}&j zmXQ2r;rWxzP8ZaUa80(8eKGs=;ahea+Z0W5CAVaz@wjK5R#@%q#+ROPdWWa2eSW~) t=gdj$r}-LxDi*A-E!YvCeBco~!+}#Q)>U)fa|3N+@O1TaS?83{1OP4qM=k&W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f0d671393061aabd623d756522fcd1f7c14fa0 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0EUG(z3R;PD)BDD=S;K zsOHMaMe_3UPP~(%fO3o_L4Lsu4$p3+0Xb2gE{-7;w{lOli!wWKFaU(~_ zR{sxn|NfcTLMnS_yl^_@+sW6V?&o|;t@JRfUHSb?BOxkfrT=4Wh o`HUu3r+*wR{gyh%+0WOoiY{gRt=}Z44YY;9)78&qol`;+02KE#Lk?nv1kBh#z=fD5mySLqG z*p`s|X5smh%}y88j&M!3lYKG!^x<1}8`~63awWH9rt!FEomN=w?8cX#ae9ZRt$lvL u+~>?m?5Ft}e<~KNuPxXSpM2mEJHvrfEY?+X-g5(OV(@hJb6Mw<&;$UC3rE`k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_green.png new file mode 100644 index 0000000000000000000000000000000000000000..76946f68b3fd77cc31cb36548d7dbfbaa1aec1a1 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08vGQ}Bq>@hwwu=@wqM zsOHMaMJk3u>+H=zni)%i{DK)Ap4~_Ta-uw4978H@<(_I6Wp?0T3SjjAHs8Y4_xygX z{vYiA{WG(LRQAqz;dIKkldnVF&-s*E>0y?Y(n2LALG3ebT-`rw-oIj)wBwGr;OTwx n8BMHC|2SIuEp?8wpRZvRUCQ`dze!FTXbXd%3Y23k3GxeOaCmkj4akY}ba4!+xb>#Lk?nv1kBh#z=fD5mySLqG z*p`s|X5smh%}y88j&M!3lYKG!^x<1}8`~63awWH9rt!FEomN=w?8cX#ae9ZRt$lvL u+~>?m?5Ft}e<~KNuPxXSpM2mEJHvrfEY?+X-g5(OV(@hJb6Mw<&;$T7%SSl? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime.png new file mode 100644 index 0000000000000000000000000000000000000000..5096281551a84e3b2f47c72ae04f44a6a18cde53 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07L~Qp>F{ZJepnxK(J~ zqM9ow7g^eiX4gqI1LYV?g8YIR9G=}s19GA~T^vIyZsne87iD(fU+Nn6%@LxZvr1 o@)=F6PX9Ps`Ym;iv!AbF6mdKI;Vst0K*JEdH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_lime_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..22c18bf575d0c334b7e37a770504dd5d14cb1f2b GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0T4s!ZavKt#PJG<5r<{ zi)yZ%Tx4l4s@)y91}Mi^666=m;PC858jus`>EaktaqCTgBijK39v6La&wu~BcW=AX zuq`3^&BF61o1HGG9pRd6C;MXd>BG0|Hnu66}ObXg5l7* zMKxDWF0x>7ej>#D1t`Z@666=m;PC858jus^>EaktaVz&!yC|~*2U7r}|F`)TuD<8@ zYxVzN_wS#XEu^w{#tWxYzMXs>>VD3r)JhMttdtfiDG6$yY2)htS@ZrC!=xQ|#05|9 plh0^kb^6EA(r>AAoc(+atLRe3-}+5*+CW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_magenta_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_magenta_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..c60fca4fbf486744a1f403e77906c3e06e6d0715 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0T3nq|%oqs-I!e35G-K z7S&uixyXXSdE?x;Pe3`wk|4ie28U-i(tw;ePZ!6Kid%2`8`%yR@VMxUd;a_1y?fi8 zhHVMSZx)_E+3a*d?FiRoJJ}brPanQzx3NvpBv*1vW*U!s)@g;+&Tf3^8K-x6+S=y_ u%ze(B#D1Eu@uy`bwB4*YNdx+R!R$%lmxZUv~hL+ta<;6VbYE};)195 n$!9dNI{o8l>9^E5&VIgzRdgxiZ~Z1YZIGRwu6{1-oD!M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_orange_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_orange_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..b69181dab7d20e08d1559ffb3486cde3775c68e7 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0VQnuui$JjZXE(m|jMF!<@Z7lcf5Pl_ zi)yZ%T$ITmqiouB6DY@6666=m;PC858jus^>EaktaVz&!yC|~*2U7r}|F`)TuD<8@ zYxVzN_wS#XEu^w{#tWxYzMXs>>VD3r)JhMttdtfiDG6$yY2)htS@ZrC!=xQ|#05|9 plh0^kb^6EA(r>AAoc(+atLRe3-}+5*+CWH?kct;BnCx_x$(2d-t|G z4ciiu-z+?Tvf1f^+7YhFcCs&KpFVucZeyFGNv`CU%rqYNtkVjso!$7-GfwaDw6)I< unERYLiTyNR<4?tc^|b{%;*$?NVrMvTip9EW&UhzDJrQcHLIQ#h;R?(%5zxA8sw1KuTc)I$ztaD0e0suWMKV|>` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_purple_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_purple_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..1ea85134c44bc8b7907beb8483ce9a577f6844ce GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0T41VWBfaXEnp^!wmn| zEvmV4a*+{3sf)*yX+Sx~k|4ie28U-i(tw;ePZ!6Kid%2`8`%yR@VMxUd;a_1y?fi8 zhHVMSZx)_E+3a*d?FiRoJJ}brPanQzx3NvpBv*1vW*U!s)@g;+&Tf3^8K-x6+S=y_ u%ze(B#D1Eu@uy`bwB4*YNdx+R!R$%lmxZUv~hL+ta<;6VbYE};)195 o$!9dNI{o8l>9^E5&VIgzRdgxiZ~Z1YZJ;d-p00i_>zopr00^8tF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_red_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_red_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..00e61a4ebb6ebae7c87849d4feb2aa757f3a3562 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0VQmk|4ie28U-i(tw;ePZ!6Kid%2`8`%yR@VMxUd;a_1y?fi8 zhHVMSZx)_E+3a*d?FiRoJJ}brPanQzx3NvpBv*1vW*U!s)@g;+&Tf3^8K-x6+S=y_ u%ze(B#D1Eu@uy*v+AQ^{K0rCfk|4ie28U-i(tw;OPZ!6Kid(s-+C`ZiIG6$${lCq(aP>XE zU#tHIyMO=8Y$27sGhR5I^6lj7Q1^2_rB-^FWu>%GNl8%qOdD7C&zkqI7$)twBQAJ) ppL|9WtJ6P@mVQf}1j(+1kY;OXk;vd$@?2>@#MKdb-% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_silver_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_silver_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..de8900612f01c1c3c0d5598cc07725a9313179ff GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0T30EX>lk4qyLRnb zx2WdI$wg{vYIk4D+y=@qmIV0)GdMiEkp|?%dAc};RNQ*g-^g~rfX78&-1Fc6?%mt& zG;B*qezWlW$!4buYDc&x+sVF|efsb%yNzv%Cb^PZGShh6vra3lc6Q@S&p5rq)7Cye vVD59~B=*yMjXxC&*4Gy7h)+K7h@IiUDHiLhIq$iFHZgd*`njxgN@xNA>pn_C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_white.png new file mode 100644 index 0000000000000000000000000000000000000000..a53776eb213223be1d0b99b39860120e36f19e9e GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08WKDw;HD((T)~|NsBL zZc)vZlZ)cw;`-m2uma^6OM?7@862M7NCR@BJY5_^DsJVTY8Pd8;9v@1^#3;B!qxZu zey#o=?Ed{TvxQXl&UoQ;%D0oRL*38$lv?RwmX*>%B_%=aGi_YmKWpB^8P3n&e7u$xP#M&pNHJ+S!dSJ>&EaPh0!^ vfVt0^lh{x5HU3mASYKPPBR=`SBX))Zr&z43=DggTe~DWM4f*W*o) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/anti_bite_scarf/anti_bite_scarf_2_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..3792a7012f0eed8952616e6ec758eea9ec010cbd GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07LyRW3|0o>-y0W|r`} zMKxDWE;7>*s;Zd29Vo|G666=m;PC858jus^>EaktaVz&!yC|~*2U7r}|F`)TuD<8@ zYxVzN_wS#XEu^w{#tWxYzMXs>>VD3r)JhMttdtfiDG6$yY2)htS@ZrC!=xQ|#05|9 plh0^kb^6EA(r>AAoc(+atLRe3-}+5*+CW666=m;PC858jus`>EaktaqCTgBijK39v6La&wu~BcW=AX zuq`3^&BF61o1HGG9pRd6C;MXd>BG0|Hnu66#Lk?nv1kBh#z=fD5mySLqG z*p`s|X5smh%}y88j&M!3lYKG!^x<1}8`~63awWH9rt!FEomN=w?8cX#ae9ZRt$lvL u+~>?m?5Ft}e<~KNuPxXSpM2mEJHvrfEY?+X-g5(OV(@hJb6Mw<&;$VIp+=$r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/burned_pants.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/burned_pants.png new file mode 100644 index 0000000000000000000000000000000000000000..248851cbea5cc6b0c40e073d7a3bc1f182fe0f00 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`MV>B>Ar-fhC3+4#u+Ka5Vg7}uwaOlnxfDV#2x$}p=fr-=82+ox)Qk8CcH8V!aWz78_NFHUj%IbU?) z5C4*bU7Q`sOf#4ic#l~e{m3wbX+tn)cQR8Ht8m& Uqto=lfVMMuy85}Sb4q9e0I4WE*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/chicken_leggs.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/chicken_leggs.png new file mode 100644 index 0000000000000000000000000000000000000000..40569824dfb4058fa5c39b1392e4037936b894fe GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0CT(efpzEkN*Gvf9%+? z%aBYRK!>kAydw?CIF6 vT)WY5O;4OAkLI+SUhy@4`isNO{vKohUMg(+MM#7VXaR$#tDnm{r-UW|b#6?N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/exceedingly_comfy_sneakers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/exceedingly_comfy_sneakers.png new file mode 100644 index 0000000000000000000000000000000000000000..b580e3875608776391de6bb7948286e8c29a7a13 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6;*wlM+|+_>}A)YJ@_ z1I5L~y_^RhCWtOwmugdA~m))G}1JFqW)aP2?qf5$J| z{%`-c*u#OPkzozP!D9gpDNJUp+aGX=Dcs;-c($nf0yhK0@jg?-Ta!N60QEC?y85}S Ib4q9e0NFYuWdHyG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/leggings_of_the_coven_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/leggings_of_the_coven_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f5310f794887ea57748dc018f12a1fe93a5cf3 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4^2m;Jit^>U-=iq&iG zOcRc3dX(Ef%_{kbWp?p0ZP@|~Yf(qnKy^(HHMK~SD}R9+7)yfuf*Bm1-ADs+JUm?- zLn>}1A7CqMZ+pjf@s2ku>tZto$vv}0Ti56}NVre!O>*Fw_vXTdTz-e1KK2^fgky{f sY(^iNPI1n;>}aywn{oGP79B1I_7b5NyfY4n0?lObboFyt=akR{0Je2Q761SM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/lively_sepulture_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/lively_sepulture_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0c29f45304062c80b8bddcf42382e3e12d26b1c5 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0DI-)=4n-!$KHgr|Ai_Ddii`FfwiE4Uem3(By>NOgEDVEvAx$V<9)YL>BT~9XuQv&K| zED7=pW^j0RBMr!@@N{tuskoJ-z{GHCO0sO5lK|J@6{nUk{rab0)$VP{^Y+sGmLvY} zOoO|wyooy?WZJNDO^fApnMKOk=UOWAt&f*^G?wVlSnP=D(y zJUrS?(h@gjPd74fi4-x|pq-`jAWKLq;enXZyQqh2b~H9xpY;g1X~}!y#yk~`l*qk} zjg7klJS>Ghm?gcA3Ak?0CO)vle literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/snake_in_a_boot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/snake_in_a_boot.png new file mode 100644 index 0000000000000000000000000000000000000000..2a233f93b8b78f54059ba1874d79022a14b1db54 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07j-bhWj$6&Dv*Q&Tf! z4vZ0);KrRV$6&1CmtvKCghNg3ru>WZKy{2IL4Lsu4$p3+0XgBGE{-7;x8`<*3%M9_ z92PmSC#pSk-E08u772h+p^2*6Y>lW1n zs%sWlSodn{EYp^KcYf2eqbvUZ_-LNo`scy%&)0T)dWGuhS%^!>U0T)qV9)%!J7$ZD z$*5}>%F3xGCnx{^|Nq{-d%~j9mlb;4f#x!n1o;IsI6S+N2IS;=x;TbZ+)7g5XXp@P zXKqMT=rZfgeQ%%MD}L|zo}bU7)~x;)er<~PSo@nvrI%tn zHv(zP>wh%Xo__J%=L0jtTQLpmg----X(n`VsB*}4K4o)cU~oBK!8Cs}zcm9xqCV@D UR~OIN04-+lboFyt=akR{0B@#iNdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_aqua.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_aqua.png new file mode 100644 index 0000000000000000000000000000000000000000..911b54d6eaceb6e40f8a57f1b454fe56a102cdaa GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0AVzcHT3!^2*6Y>lW3p zL`8{ImNP6n!7z8xyYri#9bNJN$4B$z);|x9f4;U`SI@%JD^y%U?$WB>2Ycq<-7#BK zOh#S9P*zSgIXU_N|Nr;y-4hm-o~iL9186K`NswPKgTu2MX+Tb{r;B4q#jPX-eufS) zcIJjeg)Xz+-1qkBz2f(d@A>&WYR=k!;n${kpVj>1Br>Oa#D@c%EX3x~hD<>DNTU4X2 zXf7eH9`2XrVjK1D{HA9|SN#9+(LA~J&x7NiukH5q3f0xKxU{NQTte=_p80oo%oY`s zQP(h(l~YYlPX7P@|Gj(nghi!oXN$-K&1EbJ@(X5gcy=QV$jR|^aSW-rm88JW&@qKu zo57KRVbP>Zci-4Amv#Ste9!OuTO+~`>l-``D*j~ea&TuyW*>Xj%40IpZ~7fpnuG@( z_{Z@iruZCdjGO)a7CXiZc?qv2mD#rlYaD73?CFy~E$ha>&~pB{aMd-tHw+9(J*?Mr T+_&BV+RNbS>gTe~DWM4fMU!X4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..d9a0016ec60b245a06057c51c02523117b478e1f GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0AW8a^5qw^2*6Y>lW3p zs78s{R*JiQW3XKG?);`_M_2s+@zFfF_0NOjpReuq^a|D0v$(XXS6o8w!Jhedcgz+Q zlTp_&l$BFWPEP*+|Np&v_k=~Irzre+12mSgB*-tA!Qt7BG$1F})5S5Q;#QIZKSPHY zJ99&#LYG-@?tA<6Uh#X!_xyYwwPy9h@M}}N&z}76Br>Oa#E08vmk=!%2^2*6Y>lW2G zD9icks8j~q=h_;-JHP4K(G~xHd^AsP{qx}X=WDxl^(;KSLd7NIF0JZ)uxI|=9kWHn zWYjebW#v?plav4d|9|h^Jz-JlTZ`xN0nKGB3GxeOaCmkj4amv$ba4!+xRs>9&(I;p z&fJiw&}G(}``$jiSNz`bJwKmE%~|^|{Mr=nvzmXLMCNqQcvjI8waW1L)^F~SOE1NE zZUoYn*Z*j&J^kXj&j)6Pw_*~uiBAM>X(n`VD09elK4o)cU~oBK!8Cs}zcm9xLL=*? U+0GTkK#LhXUHx3vIVCg!08g-LTmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_cyan.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_cyan.png new file mode 100644 index 0000000000000000000000000000000000000000..614739baccb9ccf6b6943e1a1263b36f644fbebf GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E07k^RoyeS^2*6Y>lW20 zIhyN7c*)e|s^vtyJHP4K(G~xHd^AsP{qx}X=WDw?y+U>MEW{<`F0JZ)uxI|=9kWHn zWYjebW#v?plav4d|9|h^Jz-JlX_+5If#x!n1o;IsI6S+N2IS;=x;TbZ+)7g5XXp@P zXKqMT=rZfgeQ%%MD}L|zo}bU7)~x;)er<~PSo@nvrI%tn zHv(zP>wh%Xo__J%=L0jtTQLdS#3ur`G!r^FlsV)&pRzeJFu0trV4A;~-M U?rN*0K#LhXUHx3vIVCg!0EKF5#Q*>R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..60d6f524c4a846ab8b1c4faa17cdbf269e57797e GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0C6#m)|qB^2*6Y>lW2$ zX=zzoTbGrUB_$=jJHP4K(G~xHd^AsP{qx}X=WDw?y+U>MEW{<`F0JZ)uxI|=9kWHn zWYjebW#v?plav4d|9|h^Jz-JlEpt+1CL4Lsu4$p3+0XeyzE{-7;w~`e289Kz+ znHv%ny3BfW-`l76ir+iF=jZdNHLL%HUz_56R`ZXO$eivO&njA?Rv8}O`prFZ>7^LY zjX>J+`X7z8r(Znx`M}KZR!qV+@rl4K&4dmPWe&N{r)-W43@+y@nC5Thw`O2SXkfjR TyV`0g&|(HpS3j3^P6E09((6xuVj^2*6Y>lW3R zxhZ(W>9}+Y`<5xZJHP4K(G~xHd^AsP{qx}X=WDxl^(;KSLd7NIF0JZ)uxI|=9kWHn zWYjebW#v?plav4d|9|h^Jz-JlU#(1kf#x!n1o;IsI6S+N2IS;=x;TbZ+)7g5XXp@P zXKqMT=rZfgeQ%%MD}L|zo}bU7=B)h}er<~PSo@nvrI%tn zHv(zP>wh%Xo__J%=L0jtTQLdS#3ur`G!r^FlsV)&pRzeJFu0trV4A;~-E0DId7u_?p^2*6Y>lW4I zR+t7wsWomDYMiO^?);`_M_2s+@zFfF_0NOjpReuK)wA&Q3Kf@-yR@qJ!Jhedcgz+Q zlTp_&l$BFWPEP*+|Np&v_k=~ImtKy$1~iwkB*-tA!Qt7BG$1F()5S5Q;#QIZKSRe9 zZfyof28KnGF5P`&zg*V+|M5M)?{Bq;{;O~BG^m)%-sRxVj?6yxtd+-Pq~G*AtTYJ^ zI`EI~i7xEHbODeN(5!N`=BG}U>e_Ga!fuZI6bK$CMc5fIMlB!v+ U`+f|Y3bdEO)78&qol`;+0G@(sa{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_magenta.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_magenta.png new file mode 100644 index 0000000000000000000000000000000000000000..95a0dfd2a3679bef8b00061a1947b9581cd45e00 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0DHeaNaYu^2*6Y>lW4c zvP7keRGwfs)X%W!-T6(=j;{Fsz@b5KVRGJ=@qK0XK`s&uegNVgFW-_?wBnq zCZn!lC@ZI$oSgjs|NndU?g@)ZZ|mOw7HBSGNswPKgTu2MX+Tb{r;B4q#jPX-eufS) zcIJjeg)Xz+-1qkBz2f(d@A>&WYR&40;n${kpFR2CNn}pXxBvhE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_orange.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..e4fbd3468ae71911241f7ae43b2f801931a36250 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E08wiVc0XZ^2*6Y>lW3- z>kCc}*7;h`a3Wst-T6(=j;{Fsz@b5KVRFet7qZq6?$n^uegNVgFW-_?wBnq zCZn!lC@ZI$oSgjs|NndU?g@)ZH#Izb0yLMgB*-tA!Qt7BG$1F})5S5Q;#QIZKSPHY zJ99&#LYG-@?tA<6Uh#X!_xyYwHD~R^@M}}N&z}76Br>Oa#mdKI;Vst0M}q`5C8xG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_pink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_pink.png new file mode 100644 index 0000000000000000000000000000000000000000..c405241eed98d6aea48d1b88b001514588c0da55 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0E4)kl8b}^2*6Y>lW4Y zGN~UHaQL4v`?+!HyYri#9bNJN$4B$z);|x9f4;U`SI@%JD^y%U?$WB>2Ycq<-7#BK zOh#S9P*zSgIXU_N|Nr;y-4hm-zT$VL3urE5NswPKgTu2MX+Tb{r;B4q#jPX-eufS) zcIJjeg)Xz+-1qkBz2f(d@A>&WYR=k!;n${kpVj>1Br>Oa#FVdQ&MBb@0DU)Y5&!@I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..f1844c4c7a6e679320e532e614d2a3ee728acbea GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E08u~DBUx)^2*6Y>lW2G zGjv8UEIiEcznbCpyYri#9bNJN$4B$z);|x9f4;U`SI@%JD^y%U?$WB>2Ycq<-7#BK zOh#S9P*zSgIXU_N|Nr;y-4hm-{&WYR=k!;n${kpVj>1Br>Oa#FVdQ&MBb@0NrYAAOHXW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_red.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd59cb459406de17b548afdf0cbc25e7cac994a GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0ES>;M+5`^2*6Y>lW1{ za*9t;FnPhic9ucn-T6(=j;{Fsz@b5KVRGJ=@qK0XK`s&uegNVgFW-_?wBnq zCZn!lC@ZI$oSgjs|NndU?g@)Zd+>@j0nKGB3GxeOaCmkj4amv$ba4!+xRs>9&(I;p z&fJiw&}G(}``$jiSNz`bJwKmEty%pr{Mr=nvnT&MiOlJq@vNdHYL(&ft>4@umtKnT z+z6yCum90ld-}z5pAXCoZ^a~R6Q2m&(oE>!Q09>9e9Gp?z~FMef@%I{erpDXgh{NI T7QWpH@-l;`tDnm{r-UW|-xq3H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..4e02b8be6cbb9a1e8a8636d2d69eed7dced1d498 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E09)GQ`lW2m zT3UvMh3(q4YsQQj@6K;}c67!6A0N$=TmL*b{`uN&T|Em=uTXIbxl5~hAMBZbcgJi| zF&T9YLs>c1mdKI;Vst09dAMzyJUM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_white.png new file mode 100644 index 0000000000000000000000000000000000000000..4ad255d0a2e3f333fdb6e6faf1dca7f7135b939f GIT binary patch literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0B(hi`z4`^2*6Y>lW1{ zCnw9wsXjZpLS4h~|BsL6$*rPdGIw{(ez0f$rB%J+5^|nip}Kk&pReuy^WgZq^P6tp zzCCHuq@tpt|NsBryLV4mRC;>9HyhAU#*!evUv!8RU5`~UQ=Vkp zY4SR`RHW~K%<P*22WQ%mvv4FO#p86Zgv0w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/warm_wizard_face_2_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..ba9a77e68a11c810f3c742c7ec61c5867286d29d GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E08wR5!y4g^2*6Y>lW1n zxhfYX7_XTnJh4Lg-T6(=j;{Fsz@b5KVRFet7qZq6)G+vcWG7cgFW-_?wBnq zCZn!lC@ZI$oSgjs|NndU?g@)ZAL|Zp1DeZN666=m;PC858jzFg>EaktaVtrIpP@sH zow*@Vq06i{_q~03ulT*=dwxETnzQy___ZnCXEpygiOlJq@vNdHYL(&ft>4@umtKnT z+z6yCum90ld-}z5pAXCoZ^a~R6Q2m&(oE>!Q09>9e9Gp?z~FMef@%I{erpDXghtj& Uvz;r7ffh4(y85}Sb4q9e0Aq7&r~m)} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/wizard_face.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizard_face/wizard_face.png new file mode 100644 index 0000000000000000000000000000000000000000..65055eec6adf9a59cd8628ef8dcbcf9ec752aa3e GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0EqZwK6$5SyoQ<+0hku zcg()Ds`uUbP3jtkqGB=+_RRnPz@b5KVRGJ=@qK0XK`jpds$hTxP;vQ|NrmZ zyC*Cv{q4@QcA!CwB|(0{3=Yq3qyagRo-U3d6}RS|ILg>yz~gYSqRIMqe%IxDzgJfV zT>CdIy)W^JDtDG>%*xaiM`N?@Zs)hy@qRt`b^i^S*7?#0zY3SUzY{C4?JMil?2yAV m?F^=7&zsQkV5+&sTNb&M%oD^)HaY?=VeoYIb6Mw<&;$T0HexdX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/s_logo_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/s_logo_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..641052c228903045f51ea5cc4ac38ff7fbc7f923 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjsQ$mF`uPyUtp&_S ziWv^;sCDs5bO|t&aWdpFiKa0!gfK8VFfgbvFzDM$y8$&YmIV0)GdMiEkp|=xc)B=- zRNP8Fz+#hr&dA`7WpP8}@?<^c!)N&flE1UwyX(M~|NPzN^0M8WV`J?&t|gK`)=hCc+9a7C>-4@sa=CTdJ4WNYvXXPGh7$MQ+^glw ik-opXoPUB2J43-XU7!CRx&}bI89ZJ6T-G@yGywpLXj9?< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/ugly_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wizardman/ugly_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab7512b9a7cb48913a8fd415a2b080807aa5522 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08v>+^3K**K^{vgXu;CS4A9fuv5eb#MN*TMC;OXk;vd$@?2>^{NL+t}vJ;lm+z=4PPz{$0p zvpTwVbZjv+winm;ei2b;@Ug~fLk-&mcyN_nM|a2jOF)ebp00i_>zopr0DLMeX#fBK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..b92ba085eaaa0e00e15f43dd3b502f65cd1c4f62 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1#eEOjp$-Y!vI8f%o8 zm?+jP)$Ax`Yir98tDzwy|D^*}|8B|(0{3=Yq3qyahMo-U3d6}OTPaEq`?v^tn9 zzQMH4g;Ak-Z8BrHJJW=NqPrM68hE~Su*R%qbzt+}%-r3|JYk|n(t$S`Y$4h!Ha4vG uG-zz})huRuZnBhx?c5elo&+Xy1_sqK{*Ruf$Ik(+VDNPHb6Mw<&;$Vf7Ckfo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rift/wyld/wyld_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..378fd26b94af684522c22c0759ed8253f13365fd GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0At>l)7D_yfoHGN=i!i zqM^wjOQkjH6DCZkudh!`OtiJN)z{YtD%(_>q79@NOM?7@862M7NCR?mJY5_^DsCky zFfrT`;a6dE5a96YpY!kkZpO=}{VdDai~CrJzX3_DsJ_jVPrdMAkgw~ zZpp1T@Ba4x-jc7vCh}|Id`Gi=FXwGOYTc;lkj1lic0@(C0n2gzj{^US;u6dY=WcZT ye^>RnPx;-7M+MtY>3pwEZee&Ama_AcRvGBbddFnGH9xvX}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5320285dff82a5d6409b071a2b990649e3b1fa GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0(Dzwml{Q{m`Vsa4Bm zCeC6Ai)U~$vs|Nl1t`Z@666=m;PC858j$1a>EaktaVz-%_a&hlmmExH2QUgWN_es6 zoKj$$kYdbc+>^*7tf4G-!Od#ljKu}$})vUX$FQ{etf?= T$~M{n4P@|i^>bP0l+XkKOg=YY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..728a3c62e92e36fdbff29b9fafb333ced91b30c8 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln>}1FHrvQm%oWatnJI{ z|Kb0m|GB3v*4)7**0Rw&A$SAhx&&r3R%s6H8I7@wP8;;OXk;vd$@?2>`XgEgS#< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..a8f79ed97f6392c4b72d1383abef074fe112c904 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AUgidENAjoROT^0$VyPqFD_1h#=2m)k@1dKY}a%AJUbZUXXyU;;+Bo{Jtm-`qa)_s^pUXO@geCx)PeF$O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..bac5d43162ecdefab40d3ebbf0ef023988fe9caf GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6vOQfKLn>}1Enxe=YGTA@DsaR= zz&h%vxKN{@k!qnznrYzbugd*v<0Yf7rpDC#+ZxKVXkBzRhp6(%waNO@w8=K$a1jZZNA3YxcvNo@jrgEcC<+{h^gmzMAdMNKolTbUwAmH}R z+C%t6*&^PCOsC@_(heaK3ONUlxEyB*b1i5#IH1A6aKva<+u!$$+ko~lc)I$ztaD0e F0sxKlHsSyP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b88684f4f26e21b8081b924f7e2c9fae8c45c5a5 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>}1FVOz*x4$7`Y5Jf0 z46SGX>;6xkxbN40QGsTWGY3K*af|HZn#|^y!)501hTY3FIh0{ilj9*SgS!lunj3EX hZ4}tVvXNbofuW*3uW5plrwq_w22WQ%mvv4FO#o>IE`b05 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rosetta/rosetta_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..463177a7567c9e43bc959f6f3f364de13105dc01 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0(Dzwml{Q{m`Vsa4Bm zCeC6Ai)U~$vs|Nl1t`Z@666=m;PC858j$1e>EaktaVz-%+a(}yG?~3~qJ;lg*z<|f);?1s( zRaU|i1C31$g(Dv`~=%g1OLT-^Ok zV3YNY^E-BX*@$nt?y`8}1OZX&w|F8c)@s0lf z^20ZIRy57%nknGLr?}a`@ohbi+*5|jLM+`%<`?7{7|tG+RJNa{cmk-K!PC{xWt~$( F6985%A*uiX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..759c6aa5ed8b80b6aa44968d2c537f2c14d647e8 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E5Ll>nlAU+Ewn0Syr@ zch0&BpeR#GkY6x^1A~9h3Lwwj)5S5Q;?~?=Mz#YEJS>xazx~(GTW`2yv4gdQb>k8L zUD9v+49q?{SzNSK34645^Y1vu*GBeBPDRdD{kVKt`i;n=2PY?7E0^QrWZ9X>yju!r OB!j1`pUXO@geCyI$}`LW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..ca78c7e12ade03b0a758489e019b3b562b1221c0 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07M-5$HCN$oG}bij~;n zqHr|TQA31FaAt}dP>!)A$S;_|;n|HeAScSx#WAGfR!`?iMrKEj!(umi{+7>~G3Wf% zIYQTYwf@w?W?uJ;w} pC)P2tW*wf^RcD)8$+J72@wqYMv%aG_SAn)Lc)I$ztaD0e0ss}1FA)Cmss8)_TmLhZ zPSljVjGDkULxM@+b)%Q^4uOUG|0n7?2RBV{neMiO*;&e&^G@fAI)`HWBT7aNx?SoY cwU-z%Fmz3DJu2!g1G0g^)78&qol`;+0BaO0bN~PV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bb64d25fc53d97eb0f24a91d54d9662a57085e52 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E5Ll>nlAU+Ewn0Syr@ zch0&BpeR#GkY6x^1A~9h3Lr1k)5S5Q;#Tj;!+lw&Lj@(X5gcy=QV$g%TuaSW-rm3)Bv#-&R_2YRL`JT2JJFnPu1 zY{rg-Qb~`P(j=BIZEuiFd-_y0p)I}1OXMv0_CHU7TRDG%lG>O5})z4*}Q$iB} D9N#QH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/rotten/rotten_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..fcd6350e4e5db0c5579e0f551f90751c5da15fac GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-D~Kz?)omh??<>8}1FHm0b_dhE~`TzBQ z`5z`~+~A$)!r;Tovesb(hsJ@IY$?VUbX+);M1%`iE%R2iN^~b&=4W7#`l+A3OzGnt Ppg9blu6{1-oD!MnlAU+Ewn0Syr@ zch0&BpeR#GkY6x^1A~9h3LwwN)5S5Q;#RMZD-(kO2h-I5|10ip-#F!ve3C=88pE!@ z?ib0f%4>r26dZJ#B-3VE$ez{NZ?(cLS>Unt3)hm(FOEOVZ?}+{%h8j4Ctl;|5vI>+ S){{X_VeoYIb6Mw<&;$Txku-V$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..7de24968a7bd6ebfa93e047a6ec3c319dc7621bc GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=1-~@?u+4LyDueJ36d3 zHFl5pX;xP1KeqT3G+D@S)Nwk zFx{WQ=!UZzgJ8!)E5?ouT}xO@H>|8MFxb$kWxheu(#&9kW~51hi8iC8EH4j_j02N7 a1A~UXP~R)I^)r^Ln>}1D=_vnP5Q4;^z8qP z{{r`X40xX$Tr&MXyJz_U(UOL#I_w`4tqxoYU=+B^DCDfs(deb*z~j>+$H3sBY|=fC S(cb}R6oaR$pUXO@geCwwxFtsb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a54cfe493c99cea8cea56fa6f88965113eea050d GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=8Cc9aftfH>)e9sVGb? ze6tiN#8?vK7tG-B>_!@pW9aGP7*cU7`2cr}%#2tElkSbon>R8~IJo8ogNs7j1ZIIm o(ZmpjBu0g1&LyHJ6j&J;Hm0&X{8GPrH&8Q!r>mdKI;Vst0D!0|>i_@% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0fab3847a5b403223b6bf733a2c1273afc1b03e9 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A^*6HZf6XjWI+?&z@E z)Ht>^HDyX(NO6>VypOr7HQU~NPM{*jk|4ie28U-i(tw;aPZ!6Kid(%stW1X$1X!5o z{QtlIrSIL_y&Fz_W9Pavndkf+g_n#EJN&dd49?tIoprTmrTb=%&3PhjqT0V=xZEah z{be2?5j^eGq)x-aWBcAVi!YeI&T{&i+bM>TJ`8-kU#>E~Ft=b(a9~p_E#I3Dw2{Hn L)z4*}Q$iB}eELbE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..64470e1f675c41ace92902b90aba85f62acc269a GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>}P^>=4%Fc5IgNC|P# zS@0mHY+2&x$H(8=PSa;N`a{UGRn;r&MN^*pLgg|GYlFQvxUaQoIXf>ExqNJ5P)Dm* puhEVLi^VH)e9sVKOK z2}^SAvj&PXmIV0)GdMiEkp|?LdAc};RNP8lAeE4sV3xqaU?|hu;(CB5**P`Y;P8nf vkrHPL%!JGs4JDj>=EN%Aa&l&#;KRu9Pl9bnQX0c|pa~3~u6{1-oD!M<;_WFZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f5117d74ff73de51f5a8ef3b1a6ca9c84acddeaa GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=8nt@7jEL_U^^)D;6wC znUdFCs~Ovx8d4lpm8o2kp_&%06dfpI?rIHGS-7YC6_8>q3GxeOaCmkj4ajlxba4!+ zxRrc>yW;)5y$oqF+5IP2x!=5gQBliyBqDoBjqsThHpOL99S0|Wes^~>vjZD<$3ups o6ML(_3mi%KkepC)$U%gG;YP8PRqeehZ=i_`p00i_>zopr0LO4gmH+?% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..306648871a9a0ce60b08d07a485df93b75a11143 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1FVODz+20Vc#IZ^C zfBL`pfBPTX&uG`=4Ps~%5Hw*;=sD@kv2fEx(H zM}1O9U!Bt3UH!NWmp- zv1Y`-{mdF1>B(9z7`T{O6LXAwW^i6?O-PP16h7HCa|V}!K&!7R1A~@M;L~^Iyg(KM NgQu&X%Q~loCIHQSAn*VH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/salmon/salmon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b008e3c3f3c050484fe6c341c77ddb5ee03edab3 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`=AJH&Ar-fhC2A6mHmUyqnAkMy z{QG;Y;>}kCQV+}(R-a&ak*z`G@nIKfhV8tsv_hCy@VXt;U|=|jbQL} L^>bP0l+XkKBIG5g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..296cc1f6e2ec108f789df4484edaaff4b30cf33d GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3eM;#b>*MCLELt zJ1{Tmz=0zN6gZp|+8CIbl{*;OmmTEOS$2?z=S-6qpN>}(n-33@LnP}0B{6Y!jz(z) ZhM&G{AJ+#Ood=rB;OXk;vd$@?2>=q5G2s9J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..7033bb98857215582e217c106bf93fd295dbfc5d GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6yggkULn>~a?Qi64Fc4s#`>*|H zZ=FP^+z|%84<<~@b~4|}He4LoeQnYI4T+aD(x2|G?W})ldhq-2UNxqoSU0lc@48T zkk42WXOwOG;N< zTwGC6ft#D#HptuxD92b5Ne+AbLhgI*+yj%1@ukc;Qnavt(`5z=*Ke(~|ximGkbjhz1!V)uV)LhFI z?%E%!Tft>MCGD5(^SOoMI$OHplW**=IcxqrejfvCFw2^9BeOX`D;Ydp{an^LB{Ts5 DY9dB6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c4e5a0b96544e029da9f318324d18cdda30598 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}1FJRm8^Z&E|q5m(s zhW};nbe?%*i(-lfd&}A%-IpiU3ognHP~~`O7NVQ$aJ7D6S6Jf>0oED+-1xoSU0lc@48T zkk42W{A5K~Bv68}B*-tA!Qt7BG$1Fy)5S5Q;#P0(MXpvujwb(GRsYTJ86Ns~o3r?* z;*V@1?0h8>St(O1NeX;u`lS4Wqn{DF!sVv9uDunV0$<9isJ}yv_ b{RMf^7G@@wpOb$8&1Ud)^>bP0l+XkKBC$Hf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/shadow_assassin_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..57e3527c12a28f8ce40d9f386c4ee84e3a3de015 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1FOZA)`d>}pAFGqV z-dFa!Oq>J`F1BW{m zjvW?8YUd1QxVgHr3b1Xw_>+bAKtNBLMk4cujg4#zI{4>isGPsKqOnzShl1V1j3Xuu iKQdg7SsY~-Wnf4N^j3bffXxADGJ~h9pUXO@geCxeFf2X* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..dfea1756e32c2a65e39cdb94b50343e49dbaadf2 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=0_S5Z+xTwI)+oBNDo7#~mtV@Z%-FoVOh8)-m}m#2$kNX4z>1Kcd4Ggur=7XM;7 zr^Kkxyg7*}{WlAn+5!=dMhPZ|OaW%TL*BwS4tYyTMD)fA-H7R7o*}`~u!+mTH7Ao( dfXSSJp;4GK?RV0>4M0;FJYD@<);T3K0RZrlGPnQ$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..348216ef53f1cdad4c2a1bb442f463c9884369e2 GIT binary patch literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUO&DLn>}1D=_vnh5lDek)DzF zoB#3QrT>{8`YN<&F>E}T6rj4=A!dR}jH9#*%Mu1HhKVi=EfTg241d-+IR1J$s|;ug NgQu&X%Q~loCIAi1BSruK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..40310fca2f12009d535ee145d40eb94f24f9eb4b GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=0_LS zg3ewhpeSQWkY6x^!?PP{K#qZ@i(^Q|t>gpTETS`598DG%F|3}*FyUa9(1BMn2M(}I pVNw)uX3*eGI>5M@QDQPX!{4b)2NFyl7XbA#c)I$ztaD0e0s#NUC$Rtk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..8d931517509a528101b691cfbbf2fe6af613330a GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E^q=2lcx5EmC;mFM(u zOS+eo?iG*t)ixn{y6#1XXMO^zU@Qsp3ubV5b|VeQN%nMc45_%)d#Y8G*+9hUqRpZ= z`wN`!MlZVa`Lz7Yy^eMls_y4cc46?;U7w}0x647*_{l29$upNUnV(5rC=s_=<#52l zswJ$?Oe)TCKiHa}Tg-UXXMuFbuF}J}1OXwwBt!FZ-|9}5a z|H=%}fG_$^TXLS zg3ewhpeSQWkY6x^!?PP{Ku(0Gi(^Q|t<=+oTuy;JE*Do%h>K}lml#*2c!T}ZrvGa_ z{xluke|AoqMfpziFQ1Qv@-1cGHf5Q|8(sakEpeB!7{VMGJb8~NdxqB~A1!GB&UoeBivm0qZPKc+AV@SoV-rhhyW(5xCT*gJ; z_rH&EPWb(`*5(ph>fVQGGt>T^uWR`))v9YEvg63#JJ&?Gofca*Oe^2%z;cY0Sw`F~ q>*oZs`EFZwpQ!7eqn-5UfVi(H=Y+XarcMBw&*16m=d#Wzp$PyR!9(Z( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..cfabb2a587ed115c1753b25493762f8ec34483f3 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)I41rLn>}1FOZA)`d>}pAFGqV t-dFa!Oq>J`O4mJjRv)9}<9zTZ!>MyJ8@b}YT?gu5@O1TaS?83{1OT`&9)$n^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shadow_assassin/starred_shadow_assassin_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b13fb46d5af5f9aaf11b0f3c252b6b2338cee71c GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0BJ;C4E(%)934Tii!&2 z;^N%g+ySA>PXQ$uOM?7@862M7NCR@*JzX3_DsIg^&B(@LDAN2;q@VtDMb;HEvK2kR{*{&y9Z&|TTg?XC52#)P5>`Znz}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..cc7282fb4349e982e59bec4ff83c7c1e141d21ee GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAtC_Vs5CM5dj-FhH7|d%U!15PaC-;mFV2vhwOve=(^p;5oBh-K@^gTe~DWM4fImuQ{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f4cee079c6b1409613bba4d4a91c99141ba2cb3f GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>O5T>Ln>}1Enw^T&)*#3!qD4) zk@J87hl}j_ue;ozoe=wZRwA>uBXok3Er)Gw)={0ysag#4Y%JNAsUEv+e&#I0hRa8G zzfZpPu0nXh<0U6lHb{7uUrb9~({PPV!#L@vxB=INe+wC=Y>i#0z);g+A%Fa*&&Mbi hg~&Wc`APpjGB8%Es5I-JKLT_KgQu&X%Q~loCII#hMeP6p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e00e425ba0f900f9283244a7c0186462fdbc9b77 GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6)ID7sLn>}1OB5wI9}ZNwbD_am tN`tfAqC{EYkjN=ffimXAcpe)D28Y|`+53NYx`|LX~vQuzhDN3XE)M-9B)q-$B>F!$p_djUAkoCU^08bghdI= zGZyBsBucEb&~%o_(-decU~X5OvGCG?XDn$mOg30LOUekeWiz{TbQ~1CcOZ}}t;B>u cP;510?*hRUNwse_0gYwwboFyt=akR{07+Il=Kufz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c5bf441ca9a4ddf0d89a53d2b24db95ac2e579a1 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mY)pLn>~qJ$sP%fC2~Wg}&n~ zan{X?H?$XTXx$tz;mPqW_O>VY3sjscU6*%X`CsID(e4m+zlNV360AErGL8rpEqJ}J z$iPrU{*BAN^@)ES{oW+}VSMPYm$@V%giqRm`JThmtMV(^qxa28T_o^&4bVmgPgg&e IbxsLQ0AzAKyZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shark_scale/shark_scale_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers.png new file mode 100644 index 0000000000000000000000000000000000000000..c19146adacf7081dc1977ee932201b86fd44079c GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07iu)R&Po*Uh8mE7vyycnsZ-wThtGP!nAi*thKrG!%~lm8xIEV|C{-m~rXeV};^ Mp00i_>zopr01#_4%K!iX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8361c910c226a27020f6ac2d2d77e5d28c1c27e4 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yqm)Ln?0V>DwsSpdi4qvZY1r zL}r8Ci~UWdWnY-=jXzF`e}7&6R==f;*(Eo<*C$g9Cd{qd-}3aoPTse+Ia7>^M1xMv zXYIdco?}%i+qmdSNFVdQ&MBb@06UR5 A1^@s6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_slippers_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers.png new file mode 100644 index 0000000000000000000000000000000000000000..dd29356da18b5d1d0b0fb643625b3cf90d1cd323 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2ieS1nB9bTr*%B+W$x z^?A88m>8sPFYZtP$}yG%`2{mLJiCzw73(=Si{CpCCb0= T{Q0s5ppguou6{1-oD!M<$tW-W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..163f5b223c1a4067da5f3c796748364e069324bf GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0XIkLn>}1FOc*2AOBar!%;;d z*+cukxnt9*7hXR9ZvX%8=%8?(CAN`Y>qr2@b#_zk;6~dBsdL9d8vKMp9CnFvw9iZ^ tS7BMSQIJ7mM?$TF*#tIr^Q}sP4ClX9nksC`XaZWo;OXk;vd$@?2>_W9FHHad literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_trousers_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..306b8f2db06f14c270b963c144dc3561d1de2d7c GIT binary patch literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`(w;7kAr-fh53so%)Og^z`G1Mjhk?o%JYD@<);T3K0RS1+76||V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_tunic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/shimmering_light/shimmering_light_tunic.png new file mode 100644 index 0000000000000000000000000000000000000000..9438471bf1ab92382c9d90a46d7762cae8fd2a97 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=2ieS1nB9bTr*%B+W$x z^;rdFdAT&07^Hww?}hA=ffQp&kY6x^!?PP{Ku(;ei(^Q|t>gnNZ=S01@VtA<%Jb&n zIUXLhWe#oK-At3axjl{?E-K>oShC2uILN)4k$H0Aj>w{w8=07y)jJFu8IKf*I3~O7 xSh~eYVqWk8p0;T-jcpHXD?B&HlJR5_1KS&^&3ESf{0_8~q>EFofY{Ir^sN+cZv`JI()D4}apEWbVI#eI}G g*&T*kO@RyyH!gEZs!KoA0;*#0boFyt=akR{01}24Pyhe` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..687eff8318f1fb43e8a032e4f97028e11efe161c GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08ub)vqYXIDKqsM@!|4 zrJAmzF z$$ro9E&5Ln$S+v$&?BdKeNo;`ZX h@-1LiwknaXVw~#{do}KM=s}>t44$rjF6*2UngFuGEtUWP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..38668f0f24f23a67a5bf9b38145541c3043bd83d GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0ZDHrW z{XjlrNswPKgTu2MX+Vy=r;B4q#jWH6TxuH_J6Ze`0uOMj@EI&VA@$+F5d%hs4n<~r TA%AC1pi%};S3j3^P6EaktajU2EBqOsU$6>LXJb%mQ%$Rfj z>Kvi#yjp+iUzt>XzSwr`rwFff&h}L*AJ|x)n@sYUk$Bb2IDCehUYPI|$@2PUQP=wl q_7m$ES+fpL>#DO&t>oDq&-mP!@mb%|oU1@v7(8A5T-G@yGywpO)kT8< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1a8e8eb2eeeb71796f7bd85f029a7fa40f5b7e8a GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn>}1Ens6Xv0_tWIAkC& zXGL?#uAEDvi}Q;<2(f%__*Bk$*V9glA^zVZ-8oAP1RvV0oLk!+s9m>EOD!rZ@u^q) zoyGYl3ptntLpH6JZ2H!)%Y@~jmqze|w|nlhOqqM2F_7cO^_V!`);A&tRxJeD$>8bg K=d#Wzp$Py&dpnu{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9319dc5ba0dfff7a5dd85b98dba4c2b78bf699d6 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0ZDHrW z{XjlrNswPKgTu2MX+Vy-r;B4q#jRuq<{WkjX^9<@KkN()Gz{bu9{k*Ou%Xd%)m2-tTddF$d_uc#Moepu>dOriv%C@vgaQQfhI9{ My85}Sb4q9e0Cu-IB>(^b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..92590a38f5973e95c6d44ed0fdd7189dea9b5072 GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUm?-Ln>}1FVOz*r@tX$>FxcS3l>{-~ZPcZ%TOCOk8?U!1DHrW z{XjlrNswPKgTu2MX+Vygr;B4q#jWH6TtBKBTC9vG++cq8`9P{e5_H@5 zS}Onie(U36Z+dB}AyAI7B*-tA!Qt7BG$6;z)5S5Q;#RNEQAP#@0U?8L@i*SxPn3I_ z;~{Keoctw3!R+Dh8wH%6y%!a4{96#WsCMD<<`-M$ANiA4C3KkQmDQK>hRcQ>wWoIR Zu8{x9>~?FO&P$-F44$rjF6*2UngF0MLZtuz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ff58be671a8d05b248a317eef89192fca20fb7a6 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>~q?Q7(02oP|JKH)g) zoNv^{F7_G?&JOE`ANH{CID1yEWy(VC}GCN4dh0|BNzD mWp5v>=bMu)&S3lZ$eetyq#q@93vU4pXYh3Ob6Mw<&;$U%?lI;7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_grunt/skeleton_grunt_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c1136477163f2bc42a2284f589f01837b950762c GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0ZDHrW z{XjlrNswPKgTu2MX+Vyar;B4q#jRuq_UnAiou&$5%pDd93`#Q^kFeP(d~A^Rkoa)m fh~0<9+3XDAQ#cfsCD$nfbuoCl`njxgN@xNA?V%}5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..f26d31516c9c9c26903802edd0cd309bdfd92b97 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7!+ZTf%1_UzfIYuDCa zo@O**LV8C_<+e11ih_)^qzE4udj|)jCRJt)4Gkv-2G-XmH9$R#B|(0{3=Yq3qyagR zo-U3d6}OTPaHj~};A_f|OJ)~)%O_=g)D3|AbaeR>s&i-DFf Nc)I$ztaD0e0sz?}PyPS^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..27600eda46ade86fed14424523d66652287f9a73 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn>}1D=_vno%o;KDB!_t z*uwI$(PUG}`~QpnZ%a_T{omC=Zqg)=2`U~^>kf#WdGD&Rq18)?A%bN|gB%0H6&Z_i UCXK4aK(iP;UHx3vIVCg!0B?XNI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a63535fe4b883588f748de83f6f039c5b275396d GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7!+Z902)>e{vS6DFj0 zv{Y6UWTYiU__)|RI2dVYXoL%_lmIGXED7=pW^j0RBMr#0_H=O!skoJVfLld2Laiyo zPn9`sDW?P5=HpE3#F!PD7nd@IyD)c5+|{7Xb4DZjz*N2@gAK+8A_fyU86rBlw0Jl( R_X3S!@O1TaS?83{1OU8PGdlnP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..06cec10279547410136c8c1e2175a32b7325641e GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Beg^GfVw4?|h7kdW>qb5~mGgEy*LBaiU5B~u*FqQ=Q1v5B2yO9Rulz6&0 zhE&{2KEU#3VY-CGxfU@41I?Aj1|pi81{}1FJSBV!{2P-a_wLH z0i_*Hi~buJ8f+KWU_Ej|&B3)QQO(8aiV}me{vS6DFir z6lA0&MfkYbJ2)7bnd%D)3Z|qy`2keKSQ6wH%;50sMjDV4;pyTSQgJI;flov4fe@4N ztR-Su44U7rh^%$ZOJwDlb2(^N*p5^`1}@cTT{CTlldc)MS**rRTf}xYNzBoV^S-0j vAR)IpY-@uAkKXFAoejJxky}qOo>XGss1jTDw>UcnXa|F*tDnm{r-UW|+WtU+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..ec05bce94455ff9c1795882ed2d928d1a610c09c GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|Nr~H?A5#Qmm5Ww zE?s(Ons8rlUsJ4DczC$I9^aJhTNVKoF_r}R1v5B2yO9RuxO%!chE&{2KEQqB^l9z` zJ(oJJ6>M;*UhH<1MWNYwbzpKJbH_r(B{#M(95FD{HDWUkI-NePQ8H66FEhdI`l`^? d4m^h#7-X*qxrs&IH3b^T;OXk;vd$@?2>_o#LG}Ou literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2bd5d1210c9fcf6da888e388e4eb137a1a7571fb GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>~a?Q&;4;K0GMu|<8& zLZzlfiSd);-oNv2zq_$Yki|JWTj2QB8;5o>+)rng+14QYpZW8=+iTxuHU8na$vi3Z j{M%OyjsGv5I>MwhB{u)kvV=20gBd(s{an^LB{Ts5h`lrP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1990acc302fe65272f511db358c3645f60114ec1 GIT binary patch literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`R-P`7Ar-fhC6+B%zx}l_i+}@*EOqX48~lWpF!UU%6jVC>>}D NgQu&X%Q~loCIB|lBL)Bf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..503c8aa6b02696498658f66b55d5356b5069b6b4 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7!+ZTf%1_UzfIYuDCa zo@O**LV8C_<+e11ih_)^qzE4udj|)jCRJt)4UHRTziR?DFqQ=Q1v5B2yO9Ru#Cp0o zhE&{2KEPJ?{@z}Gmtq#(uAp27ql)}BFJA3sNGb5w*I!@5kaQ;IdzRV^!CwvfB1aNJ zxfqlt=v`$~VDc=rVNgwZ7+lT44BfCQL@f(dte=vxxW}I}v?RRHnFyvq{6jSVo z(#)9iI`w|I@ye2p>mDwGff;*+i!-)FPJL~Ave4Y=$9(};#XtGMYv%sGA1n0x`w<3- XH&!nn9FchnG>*a3)z4*}Q$iB}wV5lm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_lord/skeleton_lord_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..dced110a9fa7f1ca96166415944ae5f88b43346e GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7!+Z902)>e{vS6DFj0 zv{Y6UWTYiU__)|RI2dVYXoL%_lmIGXED7=pW^j0RBMr!L^K@|xskoJVfX&LvYL~(q zrZP4WHutQIj2lb>%4@SKrDh!5(9oU8xJ*(&lW&7a_)n(3B7x?}OO2_E7$+QDnQ~x_ c31hb$gS7zopr0Fg2|tN;K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..3418194f7a9a26b6336561d504013df02cff7614 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09iNU~pn!*w4UF&%iL3 zfuWkm zyMMiJziZ6F=O@pEo|6k?@N$tmP{WYNzk%@va}8r%W5l${jb|G7vKqgOZDsH%QCy*9 l!XR{!^FqY&m&}KbXKITv{?>8ba1&@UgQu&X%Q~loCII{?I#~b! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..27600eda46ade86fed14424523d66652287f9a73 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn>}1D=_vno%o;KDB!_t z*uwI$(PUG}`~QpnZ%a_T{omC=Zqg)=2`U~^>kf#WdGD&Rq18)?A%bN|gB%0H6&Z_i UCXK4aK(iP;UHx3vIVCg!0B?XNI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bd29819851816cd6b25bec5c2c78a90816802a88 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0Feau}@2is3^$jXsOiD z(6}6}?f?{JED7=pW^j0RBMrzg^>lFzskk+#yOEQ@fa7q`$N$r1B|bEWc1Y>W_iSqT vl$YVV_Uyl%w*}SNWYnK!T={y;!JdJ^Y8IPn`u4C4paBe?u6{1-oD!M<5ST3w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..725c89a7867bfaea383210d5149a6e120735058b GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Feau}@-P*w4UF&%iL3 zfuWl*!;SMli5BH#BWv)^y{Ey}P{oaMm2t9Eukix@mz{an^LB{Ts5_{u}% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..de9ea11a433cec1b1b3b961f7115a2ed5dc04727 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1FJSBV!{2P-a_wLH z0i_*Hi~buJ8f+KWU_Ej|&B3)QQO(8aiV}m<6tM;3uM%p!94;N^VPGiSZ_lZ;!&L-m O41=eupUXO@geCxGEhDV} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5fab542f7e2d9fa800a41db213be261aea02f255 GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`*`6+rAr-fh5AeD*_ILlSPcie9 zx;#ngfW#5E=Z~+31Wx$4fALbG7RQ_k5@v-yhtK$Y{m*Q;Dv9OT1)kvkv#JuaHmp4O zynfBLLr)yH2^%#`5dR?EAj0?KkN*V*8;L{)MrV#}wG0k3pUEox3|?nXzh4kwCl9oi N!PC{xWt~$(6961}JURdX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..014f9b8a4b388bcc1c0febfec8ebe8b19c78475c GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=1ZYl@$dUX-N@2F82Ew z7|cxd=Q1$VGcat6nhE4GFqQ=Q1v5B2yO9Ru*m=4*hE&{2KENGeWhHZf=lP`q;SCLm z?(GFk9Sc)(*07{$?A{^KD5;g1>6y^x85LzTBatoDV27c>5<>x2hP_*OCSKn>GZSbM NgQu&X%Q~loCIA>kGdchO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..10ae38b22224d668d2339f4301a0e1dc7bf58647 GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6WIbIRLn>}1FEG~l#ouTl`sH6d jcgx=YoUdOhwf}eb1V04crVMeA}MsQ{>deq}v?RRHnFyvq{6jSVo z(#)9iI`w|I@ye2p>mDwGff;*+i!-)FPJL~Ave4Y=$9(};#XtGMYv%sGA1n0x`w<3- XH&!nn9FchnG>*a3)z4*}Q$iB}wV5lm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_master/skeleton_master_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c8a6356e2f045d8ac15e4025eabecb54d6a274 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1ZYl@$dUX-N@2F7{@o z`WhMLw9Ni$H{V5pKXi*aHSqxVKh^$ilul3tt+EJ;gLH?$^QW@XS<<~Soc|A#oxFa}Ro KKbLh*2~7YFAunnG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8668db03c07b922e25ed42b1f24cdfaebe66235c GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0FeavF~W9tSHDxON!9Y z(CFJzmIV}LED7=pW^j0RBMr!L_jGX#skk-wtTz{fA`kP0XXXF3`IpMxo!vTN`N1ll z2HS17S9bm7UcvT}NxH(3+3LYeiS$I1$v4*hbk)r{cqbuVWoE9>6=%DGCk*%3f9y^M P8p+`4>gTe~DWM4fEv7ft literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..56b01d21eae535b8da0d5dfcbea07871b9500624 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FHrXQ$=}2w)>dLI zaI3lXtz*s%p_V4z|LKQB7$T)NXx?B5-@rJ#X{H8OT9Q_V`!=RWY$X@|$#=Yl1cSIoeZ9?elF{r5}E)T5hwZp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..b4e1eecab52b2e64533d493d377bc3257222dc6d GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Feau}@2is3^$jXsHws z5HK^EaktajUn7k?Vi~57XjpKmSi|f33vK_NF0B zU*#+FjB*Co|C|$K?kweC>RE72=zR9Yw>d}N85J<^wCxu#Q%*}gQta}k!}-XJmuBW) aPqOZkWbE0K_O=CRG=rzBpUXO@geCwUi91>V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c2046a142824425593b1cd87de1eabe3f90b9f66 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln>~q?QdjdFce_9oH)xv zf91nnKlr}eACGE#{xQ;Gv-7)S^7$t#6}_XE$~LB~3}IVmEfQsE+RAo)@-(C98MBVb zUT=Rc6wdXLW#O(Hiw@{(q;%&vFg7~0ZaqKMc;9~M{IKJDlh(%M0&QdPboFyt=akR{ E0GpyY+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b0bc14bcb23fd8462da41838ecf7a7717e9bb7fb GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fh71(;30v|k1`fsnR p$<)Kj!t!r&Hiye+1=ht345`vwmS0$en1RX}JYD@<);T3K0RX+$7Zv~j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..e73fc12fd8e03a65816b7a057b7511fb596131d8 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=1ZYl@$dUX-N@2F7{@o z`if5{yaI|cmIV0)GdMiEkp|@0c)B=-RNP8Fz#S12BXfW!-BnR|L&L%a3kn#Rg_#e# ztE$$q2{Z==1TY*6U@&HB$m!rXBNNWn7QnWMfnkCt%fgv_rBi|CFnGH9xvX~a?K;TY;2^;Cc7ocA zR;f3Std1D(Tp)GN?b+c?n`@bkM*%j_Qwf=>|pS8^>bP0l+XkKFI+EV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bfb9e2829a199f5d9b942b432d1045dd078e0077 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhC5|09e)ONck=o6M wuBM*zopr02Ln|CjbBd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..b29c2dec3b401548a688908ce235c8850a9c1d06 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Feau}@2is3^$jXsI+a z)z{F_IGt5q2$Wzf3GxeOaCmkj4W!D`#WAGfR__@`HU~qV=7%bkMgOJ0Ph83P=5W5Y z?!6Bl_n+GzDM$<8bZ$GD_e1-B8+-Wi*L<}!G?`njxgN@xNAQ_4O3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeleton_soldier/skeleton_soldier_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e6be22ab9030419cfc0a70ba12293be9859e43 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FOc*2+0XO#zq8BA ztb=F%OHX*;`Lr#bQ-C@dJYD@<);T3K0RU{tC5Qk3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6be3a153c6c2022304ad1a4a4c86ec6a692e1d GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=5EO9a^(y&D6=0k18ws z`1sh{+O`V{CUSAf%gI?VFr@3)nE@3smIV0)GdMiEkp|?1d%8G=RNP8Fz|F!tgVoWb z_!i4K6J~|xV8e#c3?>hk6OFDH8yY!Ru(dQa99C-Bx|8ul#z(G%*hh>a1uG*CTzz-x vz=6PvTN|=nttV{EVq|8%zKYGpjEP|zi-6kX)~$*_D;PXo{an^LB{Ts5e7HbC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..cfd260572434447702dc227cd51d9c567c7965c2 GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn?0F?P6p*5WsV^>~P$A z^WVo$+AQp9G>rH$|Jl=D@(=#2Wz_IbSGux7$>&i`hELbCH!A7r^AtSausq#yL89gy YudcqIGNZ{-KA?FFp00i_>zopr0R1m5N&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..481a50faa41bcc5ad543e65dfda7f377ac350401 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=5EO9a^(y&D6=0eSCcE zZEfY{#JY5_^DsCko;AY{S!73>+Lt;iOPXmX>fn_fa zC{1BVG2k{d(2!zSD#7B&!NMaGF+=f|OoYS-6a}R8Mn3{7t@NEuHh=b*W1tEPUp$D&?G}1OE^9F_5bz%j~^xf z9p1?yD020NNQ3V}kpwAj#X_&9H!PE9bSVg}(3#`)VMpz;dJRvYq2JndE+7B*1rHdA91gh2_vf#; z-sM8kI`O(Cd*8cu`WF-(()|6K#aZWOLgJ?Lu_-crt9Bk=yJObNt)l0pS3UjlvEhtF vhK)mFuuT9@b-?8CCExdQCmTezi!w0mm0(;NEm1fFXb*#@tDnm{r-UW|NZ?4k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..109ed75a94cdeeae48a22416e830b5a465a953c5 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Ff_@maHG&7nhw?%lgL zb@Jq_j0|}>xkN55dt2LfLBXTS${Rl)`vp|TSQ6wH%;50sMjDV4;u*qCo*)T|>sanFek{~Imw2~nIqnP%+U3bw!EEuXpY zS97`hS9Zo#|0bM@j(IHX9TUF%TAfc$uN8ZlL?Q!&M=n#|7I8IGpgjzpu6{1-oD!M< DQWr;E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ab14322767d74fb7afbf696a97a1d5c043aac5b5 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf696VhdLn>}vonX$$U?^~So_$kt zn#Heq`<80ketNQ4*QR5U$RW8@4gQ4BHlkaw2 U-Xc<54m69w)78&qol`;+0G=@_ApigX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/skeletor/skeletor_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b11fb2a0635dfe9499d861bf80b1e7b70c308baa GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A8ZX3e2PhkSf|?%lhW zm60JYCpUHSWP4lNU(>m=fYOX5L4Lsu4$p3+0XgoTE{-7;w~`e27_6k5RT>fnSoj21 z|F18+Y;mKytRz%V%})9Gz1UK*VBN(G<{Xv|Z6ckV9yi(79sS1Aa+hJ-{Auo=|CAo( Y?sI1N8F_T02GB?bPgg&ebxsLQ0D`PJy8r+H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..811c68e07b07ea2c03653bbbdfd5e5933f8b7a84 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4JNuNiV~GI%dHGfURe z@>5lHmXk9P7uP}1OT;Bytru`fTG*ui n-_XNH)&GH7!wnu~ZU%xe-HS7~#3OIbo;PXlg+))zPp_zBRPs&q zOJtmM@#~J+EsU$q9-dc_{c%CE;x7j$Ih7^l+@JQTq@8AS-Cl65&qh)A#P^zszF(xv b_A@aE&0*fBJnQTXkdr-K{an^LB{Ts5V7XDM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snorkeling/snorkeling_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a524f4562d76682828474bcc4e610a37389128cb GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>~q?cXTKV#vdEcYoF* z@zPE9_32DCT)r(~9R1gMJKaQDPu{oxqRQK#w4nW~_m;K#Th#9;%x--@Y4@KHOM`Xi zdvn|$eSdZ{m8D^Yc(6iLSD!!U*S|0y-(2qT&oF5&&?W{?S3j3^P6Eaktacgb&QAQ>Q0p`bl%X_SCW?t@n5dY?5 zOk`EvEZdfnRqqd7tJt!;d(y%%P4UyA4dC|RVFA1%F!y{8@d7!*021AlcF{TDvZB3zm+ zZo2P6g}0}|)t~;C{L;9)e<<0#OIpM1ma8#g0pAi)#pjIX3GpY|_AuBs@^0E{9U)XW g@7#>yH+3iYt#g}1FOa+OTYhT0;$L~! z7ys)Q2nmVWI0#lWtYkRLJA>sjiBKs?eC~;Qh>K zgNh~pnXgSO*BVzw`BL z=86Bk5B{4?|IZNfU)Wn|KTw*nB*-tA!Qt7BG$6;{)5S5Q;?^7=R>lJcJlf{}c=n4xnhmphkt it1v^=$7Pn67#NQ9G0s%-J9{2zG=rzBpUXO@geCx{_d=@x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0b9ed25b73b69b42f5e3be0cd9b2936f1211cbe8 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>}1Nfa?$cwHgFAackc zq;Sg7h?qV0H|N~EkkwV|H<@+j4hR=1mgrZRZC`njxgN@xNAJvA-v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6acd6103b69cfce53c0cd5a20e9914871d389b73 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FGe@IUj!f3xZT8Djne z!JV&P_kH+Kc=%F|Mcp)@G;2waUoe9d5G*vD;tLe;^K@|xskk+_$5710kb^1E^UFW+ zvgym;<{Pyh5_vFj&(8GUmOIN=M6*2lALcTng_UuK5A$a`7c1Y38JdB;8J&D3XO~Q7 hcxfyhA{tWlfZfEOQ`Bzx2arn`JYD@<);T3K0RW#3M0)@L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..eaf9a4e2379e0e25a530dd5b31acdf627e75d823 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Esz;luy`|IMcVzw`BL z=86Bk5B@X6{4YFwNizIHGEkbaB*-tA!Qt7BG$1G0)5S5Q;#O~$p%AkH&mjh%N&oln z`1W;A$*MMimp%3sQ##VVon7^a)30;$QDga68+aJKqM1{84maLCKfSuR%k1@&IG)%! zJ8JXiTs|W0kv`{+!qSOmdlm_AmfLoL_xkcXX@A@KpMGb2T$%F| yoG2fz!!}#Y`9Ra2TJBY4Du)j`$kxqRrGKYgs8Bt7QoIe&A_h-aKbLh*2~7ZnU^cb@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1383cbf2a410880c28980ee29c89aba818e40d26 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FGe@IUj!f3xZT8Djne z!JV&P_kH+Kc=%F|Mcp)@G;2waUoe9d5G*vD;tLeW^>lFzskqg1E|lqr0uRfDiPH-H zf4-)+=I^`1rU&KI-c~DC&B>NAIwbY_$l@8Ed=ZEDIvP#?+^|H^%I>kdLR7H zJn_Hq@Flb9{~2QbN4<8R3zTLo3GxeOaCmkj4akY~ba4!+xRrc>ZBp-)vkoS+CoNbI z#5CdH8jT!{6o!-y(o@^C%^M_^%IQ8#aPwep*Pik45`&9ETQ+lmz!8r82O6x#Ez%Y| sjy!1#+4x+UC!9RScIFso#2Pk+3|9f2ccmfRKuZ`rUHx3vIVCg!05=#$Y5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e869b8cac8f44ebb7e867d425639d934f609acef GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}v?LElJpuoc%yJPas z8PP|s{TBHw?z52P-Im9TeKv;k*_Lp!ExviN?airUO4)t% b!tNXu<*2usn-<0cO=R$N^>bP0l+XkKuMsS? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/snow_suit/snow_suit_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d7548a1bae7b24d1aa5e3c8a3552a72feda505da GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=76_{%4-}Z#MluL(G35 zxbyYvz7HP?4`0f$sGA0qW-STw3ucf4f`x`te1QUyo-U3d6}OTPu-!U+N!!81Jt`w3 zih07pc~WswVGJn-(RTQ^9!DfOL7Xj{bGEigmz1%r!1+XUtSfg=HB35HC@hh!tX s9C^MOuur?fG~wh^);CXiBi67ntUSyA!aVQ44A2q=Pgg&ebxsLQ01*5~xc~qF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_armor_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_armor_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..0b034edda5c9b8def9f5c5a34dab5d1dc4c9a28c GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&YmugAr-fhCHfvb`TyUbCzMBj zM$;P3xxE3#HM|ZiVtULUSX7p=In~^mWq6e1w6X<9eUqV@d@R2cBbOWNj;p-<3=HxA WdOUX>GS~q$j=|H_&t;ucLK6TQTqLXj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4c79723814d481f55c751a020bbd5b649c7e0410 GIT binary patch literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUO&DLn?0V?K;iNpdfPSPQB4K zCug5m&;9t{J4?FC^u2bAHhfxkkelnLroz46XTR#1BGZzE1lTsQ30v7E`{wLimjN_| N!PC{xWt~$(697%9B!2(^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..3df7662f64135dfcfe4c72bad894b5fd2c727123 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`!JaOTAr-fhBvc-#EHE>2V`N}! zyz#&Me|9+M!W9c1T)I3VNv+!KaH{~rJ%$Mz^jab`8>#{w&WI$uTEn%ZNW4K`c24o! o@-6QeCTr)g&-kl&OZ+QCBIlgW9qKzj1C3|!boFyt=akR{0HCEXw*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..40fed211a9422ffa07435ccd141bf12a10a67863 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>~q>1Sj+U?9Nq`Tz8{ z>zA#NUAsiFoiB+UUxaG%KZzXj;wT6!J??C>{LrSO jX^Or_*Bw;g4CG`8nv!=pD{^5G&}0TrS3j3^P65^{)z4*}Q$iB}$Y3R4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5e080c954954a3406ed814b15f7cb3a222a75275 GIT binary patch literal 110 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Og&v3Ln>}1FVOzc&$7X5@yCFJ zo&Pz46O=N3U0lnMWF*ruwS9wNB;z4oAD8GNrlVX7{yDNRX#RF8eX(3>63_q!Pgg&e IbxsLQ0KM2FcK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..6f75fa155e948d7a47d25219779300ed9d7e159b GIT binary patch literal 110 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`rk*a2Ar-fhC0ZUl`Tzfif#caD z5e74OXE052*^np^JEzXD!F|q#{{@!SKcpM1UnNMaNef_P*zDfpd49Uu6`%nOp00i_ I>zopr0Q(vxIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sorrow/sorrow_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a49117b4cd61df3855215704f2105b7d3f106dbf GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6^gUf1Ln>}1FOd7u&t|a1&@>?O zVCR1UA(q6PPk$N?9or&!^8;f*!y`w57R?1R3=C2%$-W)0?-v2JGI+ZBxvXi1lb|Y01gT0@cjuQCSY87)yfuf*Bm1-ADs+B0OCjLn>}1AK+#Y zox$R0@>r5}nK6?C+hsZSX_vVi*iLJ)D=-<|aOhzXNDgPZoh9(NqLk_OHz_u@d7rKd zTa-_gPk0cycWa|^)pbU;u*(c=Y}Xzz*qAXf6pDyWyQQ6K0kng`)78&qol`;+01CuE AL;wH) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXZiWP($Z2}OG{2x7O3Vw^BE5y#aI&L7tG-B>_!@pQ|#&D7*cU7`2dU0 zsf9c|3*ESQ&g||tHn{S}EFod;&gG4dzno!UyB4|n`<#1QjT#zjzn_ZKPJgSH@ZiP0 z;(%vg`qSOvqVmH-_tpM43Ura7F`qDkejo+ eTwNiOkKy(w4V&-Ldp85EXYh3Ob6Mw<&;$VG?O1XE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?0HqmAg8YIR9G=}s19E&lT^vIyZuNE@Wn?hmU@p8-|8Up- zDhtkzeZJpwf|29MG>Kpg9y#BwJ$X(g<&fvS(l*`O!mp4|H>ZCug%TA29 g+Iak1&R<35Ds_fSl_}n_K!X`PUHx3vIVCg!09bZI&j0`b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..8bcffbe955ff8e7a5377caf06c5f9d634399bf1f GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A6nAaG>2ioITj z8eX*#>v5M|Y-wrfr@lv9OG{2x7O1A!oo7CfVk`;r3ubV5b|VeQiSl%D45_%)+q;#~ z!H~mcrp|p@c=*{IBH3u#&-mzBkR-Zu`m-V~=#wBwEu4(%9`vPrY@O1TaS?83{ F1OS7aOWFVc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/shiny/shiny_speed_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..49318da1c7de7a3c858b69e60120d862b7f6c53c GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2_6|5?@er`YS|x&VPt z!>fMkd)#Fg+lcj4X1MwTr5Q_t{DK)Ap4~_Ta*RD)978H@B_CiDVP&1_U{cJ)%siX1 zgYi+L#2N)R27%%R30{p|mmD})r!)(26)-B+Ffh2+u>}4Pn4SgH&fw|l=d#Wzp$Pzf C5-leH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..7cec5ad2d5d8a3adae35c5d9751f5f2c9255f659 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE06{POG`^RSy^o@tx&_O z6O#Vei1n;${BvafA3yay4Ly4=1644V1o;IsI6S+N2IPc!x;TbZ+?wm%D(Yg$!CkZT z_xq|k%@0P7yo(}i1kDTFMZP^cpMLPUvC4&y?sm(ip6{DK%gdo%NGM=2>+g+mdKI;Vst0FN(2LjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXf3ByvoL_=>wEtED7=pW^j0RBMr#0^K@|xskk+_n~{ydk%w7*=d1tqHSVsmI&Wsg z`f^Oa!J3-iCUw@Xm$PF*u%lXi6-&jXJ&*mi$S(-U%6LE!|}o+lcjOYiY^J$^sPxi?J^OQj8@*e!&b5&u*jvIYpi>jv*Ddk`J)-I345R zIo8F*6|22m(qO}yS<@_ai>ER(XJ2{MdujJH zHUonK{b~0ywl*@JxUn~|%Dlz!qR^p;ti6_8M;=7%-CGsTd}7k7%$cVTZYx|9b+sYI al0oX2(p#>ng_=Oy89ZJ6T-G@yGywoDXj7g5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?9L$_op8dDado*M6 z^miN^CjDZxbl^{M7+?R`-+?rK!}%?P7O cp1XfCBs^o-ymzX`QJ}#Lp00i_>zopr0B(6dN&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..07e227d81e4d46878f4325c17cf0885e472baa56 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E06{PIayh4EiFIwJ(iZ1 z?y`$R4X+k^y}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speed_wither/speed_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..dec5a2209929669851134fc9461fe1b43a0d8091 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2_6|5?@er`YRdsNq#V z^*!#gi*3YuuFRRX7%0bB666=m;PC858jxe`>EaktaVz-%n+PlGR0oq{24?2fj2(=R z8YOfT+L#44H%qW;>~eDCU|rHEz@@>iSi`_z=*i+R@qYSLpmqjNS3j3^P6Yagm>kP}!|4obgV!Oh8^MiTH=HhW-#G2m*i*ECuS}s)nt{QxR=|rj STB{3aAcLo?pUXO@geCxu&^dnq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3d0b8f9b7ea7d2bc647b5a303e6684f8e689b7 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>}1FHrXQ$=}2w*7oJ* z|Kk6%9Yh!+(;IV4Sl=ILGC2CaA*V?#U>$?=F1~dO_*Sv_TCr-Se3JL&oWMP?O}jy3 mWwR!O_d?54ENX823=9bi>fLAa9L@)t&fw|l=d#Wzp$Py=s4Qgw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bff469f504bd6c2f87332761e8935b967a7ff0cd GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0XIkLn>}1FHrWF$mGbv?fh%a zl^9Lo4km@yIum-AJ&=tMSoTA9f^Qe+|NqIsAO71rvSwT=EnqEO;gxVnGk{esh(nbp tKvp1g2UEu+s~JoiL}qRGNl5y_z`)&Z)6Do!|1i)J22WQ%mvv4FO#oL!FHQge literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..91db0952d2933d7224c7105c233076a12c2088ae GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ETUPQT z|LvLW?s0A1+&~G&k|4ie28U-i(tw;mPZ!6Kid#tvOboX~m_->J6}p!G`d^>3{w|AF zL08}1ua88x6uR6@EXk2bYqjtQIQlhm{bZfy_g<|_ww~@5Vi3IY;jzpi*{_WMpQ$~O cj~q=|3pipupoS+cnXu zeRhdTSYqpsO9?f$6^Hjdn^40XqrUHewY{IhLDPie2UyB;l{Y+*SfO$H!kJ&yU)%0f zNf#VGV6ec$YyM7!yN=6)Wu+3BH*S$*U&OGl$-(3RNBFB9%J*%Q6}1?Z?w$=Ynsj~q>30-uFyL{%C@4EQ zMAl;ElE|5CakB*D`0u#I7kk*HQyzMwaUhvdqGFw)P&Fl)PY(j!VR6Jj6BUI2aj|bF)ZVh6@JSa t!zS>Qb%t(=M1uj#YNZ7dd}kLkFm#+-c2#-n5o@3&44$rjF6*2UngDghFZ}=j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5062dcd8bcb9f968758a8ca5b0cc174c932cf830 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}1FVOb*+20Vc^gNU5 zJx328RRc|y%un*p|L^=4xWwX>WX#CpyJ7YRJ{8vHh_w!Z4VkPS{B2AosvL^K0@VVH Z3}s@4cUzwt1prNC@O1TaS?83{1OTP}B{2X1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3295bdfc1b5cb5f27f761f662ec8ae7cbfa2fdc4 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}1FVOaw=;W~GQhKA% zdj*wcLNi2~OeP+>U?0xqG|Ry=N3CHYXPNN5#w7^?t3@@q4AwHdJQ&chj72epDT!Z+ af#K;-9q}b=mU942WbkzLb6Mw<&;$U)t0v(9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..a78eaa9255f0b4ff3afb5940f2de8c06d31ef8e6 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7d=x39Wg(zGHnv)w&7 z+d|ty_9{aoJ(jcVwx=&!{yq-d&Gmm@RCpiNB30*@pXLZJaKICK+_mJ MUHx3vIVCg!0ICc!^Z)<= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/speedster/speedster_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d5346c6b94430a22d3e7b503d6e69783e0c98b75 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>~q^<`ybaOC(M(CyNf zy~!hF;h}lu-;bBB{wJKVa`jfuqDZUT9X+d=wNhT*b6dy1OZ3vsV-{8~zWi7qD<>0> yYNPS!+k)ixd>ZwRg^dko8LzR=UH96437eGo%uQ1mnQVaeFnGH9xvX~q^9bA=;MyN`?SkbF?J;Bn|5?$ACln^lox5-#h>07N7>Uk{~~j0YH$qjC~@I3iEVv45_#^_YA90g8>iA zfd_&`|LgUH9gpw)wT+ke%gG}1FR+tf{r^AzKmVfb z|NsA&4`t#waH)Xx_CqCuxdEOmH~54XvokORKT&_0HqRmlsE@(Z)z4*}Q$iB}k9r^W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5113b79adaa6405c8173a25c46d21c4181b134dd GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0B&4Q{KMD|KJ|Kx&4+8 z9|xX2=T)Ao!@rzA9Vo|G666=m;PC858j$1c>EaktacgbQQN{)b9+uAU_YI6J{Ld+8 z2R~l9YH>{Ul9;ayMvRy84u~F*bMRfkwLoE0z)Z^w(bh|SEt8pkdPug-5fw9Id>I|7 RcoS$GgQu&X%Q~loCIDiLH^u+} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..65ed2b535a7c2d68dc26de638fc1594c81f08644 GIT binary patch literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0BKpIPmN_uY-I1%5!zN ztT;GL*f~tt*>%|9;@j8w&+WGa%EpH&^SE#!tI^u5xf5svXGxGB$Vdn%PMN(B$jb9{ zaSW-rm3!JXiN%n|XgFH(cAi-tPR-*CAIc_j`u3es^9~cw2)*mx=XNC^MH(}1FJSw@&$8p_ObH3S zhZi^|CMG6Sw0TQuFq<*X7Fwa&0z3! L^>bP0l+XkKZF(SI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6486f2fb485d5d5af487768aba10ac5d9b869422 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0B&4Q=Z#zxqXfQ!99Lw z&v`w399W*KBhRz%KTwXbB*-tA!Qt7BG$1F~)5S5Q;#QIZ7sIUy&B|;J3N4EY8MpuM zYi4uje|YH6^}FXQAMr0^Qn|%z7$C6AQI27`iaFC(;iFtUhR6-RwkpT)4QbI5it)q)qfoQLNQRUG>E%n?a~O;&&RAJ_@in+K^aM@d oSZ_U{ka3Cb+{T4-8Z{UgYJc-TU6PUb0B9zIr>mdKI;Vst0OsgGRsaA1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_armor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_armor.png new file mode 100644 index 0000000000000000000000000000000000000000..e4793eb1cd1096639cb941d8b7efa87eeef3e1ff GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvg8-ipS0MfHap2i=UI+L1ZC~R* zx8Jg>&X7NthcAGe&ySnWmzx)eyt#PXxp-W;xE(lC{@+18aS65g5 z+{^gSzu8a78q9k5{^s}Z_L`bE4`;Of{r-O5FA*gf{>762?*94roq02(eaF8SIVtB0 z>g+ElTw_qUSp9GFCgoYVr@VghXej9RHZn-CGQ_gj8r1ww+6r_GgQu&X%Q~loCIFg_ BUfKWv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..76fc8e5950f08d14386af2148c1b6eb6f0035aed GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6lssJ=Ln>}1OE^9FU(ci@?if>} nblXrQXZg0Kl^l9bDKCI(xhR6-RwluPSx20r5Q_t{DK)Ap4~_Tax6Vv978H@B_H6vap{uKfgX{^4+;zp zd!D!ZT08%lYE{-7; zw_49MvK=;HXnFX4lE#dE|BKf-cpIB=O22vV<3sm+(fip4xlb4-*zfMxv|oO~*FL_d zP0>oLGZ$Z5qPsxOeeX@R6p?f6O;2+jC$UaW+tME}GhkiP-T$==mCb^dkAyedf$Z~i L^>bP0l+XkKji*yQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ebf97d58cd48c801e2b05cb30253e6e9044bb01c GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn?0VJ!L4$V8Fw4@z?#u ztg;%5j1A1z_Z+vsuT~n#F1Mug08>c=hX|94L-R%h&NtgW?c;Xjbe7DM4Vnlvg2B_( K&t;ucLK6UL>>%6# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/sponge/sponge_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e21f67e9e438e3ce89261fa54c8bcaa9ea6f3658 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0^62cA9Wb#Ra0_BH-< z`z_0Jb>hR6x1N!^2b5zh3GxeOaCmkj4ajluba4!+xRrc>?Gg|imdKI;Vst0GM|<^#A|> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..4884601d124396d27eb45aba3378f81c938a1eee GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`MV>B>Ar-fhCE6CaO@3_8lPs*f z;-{Auv&8Yt&3})p_FZrII+4eLC(y$|M)<_1&41jFu^cfxsFk+B*fQc@cIU?C%sG!L z4%E*`5}3WgB8@?agW1L5(N&%&$r26M1$L-78Fw*B$fxHhWFC_C4XA9{^^lQaGxwCm US2jC)0c~gSboFyt=akR{0K2R_?*IS* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c297c09717b06d5256911140e59515cec32317e1 GIT binary patch literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6q&;06Ln>}1O9U!>ssC2b#wOsl hVWWm)V!sXpLpB5N+3eGiSAohHJYD@<);T3K0RS1Q79aos literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7e7f260dd40da26b1fb3e7e3cad539f9f4f9abc0 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`>7Fi*Ar-fhCE6CaO@3_8lPs*f z;-{Auv&8Yt&3})p_FZrII+4eLC(y$|M)<_1&41jFSsdkL)HVF}A4oU+U$W7Vd4hw4 z0+Z1CGzIy?413xRs0z*s6glw2BAMA!_+CcSDdj7?{0t12MVfY&G<8e?TFKz)>gTe~ HDWM4f!Q3|{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..cb6592b4f215c4257a9f6786a41ed938247d11d4 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0B)UW|QS-0W!42*spM~ ztYT*PGFkIVD#Q9nh8j(d1_paRpd4dKkY6x^!?PP{Ku(gUi(^Q|t=^7SMivF0BRjOi zzQuo6eXr*@YuTTJRt3UoX-4@;)qE+vokCH$a}V7MblM_ksknH%f(M_vfeO>fs{y)V z^4^@*64MXp$BND>d$cWkLeg&Dl`#Q+C$bmFXy)H!p8JF?@hF>a8PGNcPgg&ebxsLQ E0JL{M1poj5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb1adaa963a6988547bd44291097be9ec567128 GIT binary patch literal 103 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6^gLZ0Ln>}1ODHM)w&!U7=Pt(m zmtT;zSm4qNuZ$;BDzi7<;A-U%Pt;=amdKI;Vst00W~N AtN;K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..64e59fba959c57507797490fcca9fa33e9bc1695 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0B)UX44X5m*rFVdQ&MBb@07c_MrvLx| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..11ce7dfb00fab2622dfb47bb54765e7711782f19 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3$8Yrd{#xsuATK9b=I z2TP46N1Qg>DrN>PF?Lyg7NCNp0;_94im@cfFPOpM*^M+H$Jf)vF{I*F@&UF>K;URH zd(nhVo{Sv}Q*w9`HFjG#OXg`Nuw7rpduO#-gM_g;gJ6f?F2)Xro<80?vH_ZT8$_z3 k7zG+7p0YZ$9L-{QX(IM)^&RQ&K!X`PUHx3vIVCg!0LJn=Gynhq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..509e742f84b4b67889257d84351f1569ea68c969 GIT binary patch literal 85 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6WISCQLn>}1D+u;9z4?Fhf8dQ5 i3Sa79)QfxzU}9+O;QHw(=(iuJj=|H_&t;ucLK6VDQyP;1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/spooky/spooky_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..cc649856f8961f5e716b8ff4b4f07540cc699aae GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Rh}-6Ar-fhC2AJ9O@3^zC$s$Q zxA_a6UB9aHf4|Q)mP7&Rp7l$N8b1E=VB4VhgV!OWDRB~SgH~JOC*FpivM1CoF+|o) z`)|PWL`mC4?09~|Gzn`CXOW~XVH1XsledXD>mz%ifF8IOQw9J4se cF3P~L)OVhI$IZM(peqFK)J;sL^o7Hnls^O!g%p8tD_Qmr-z|6GTu4Na3a cO?k1HZQ(6;*(`4s8=%Pyp00i_>zopr0F!Gt7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..2b9da36f7a50dffda50bc167e7a84140b714f723 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn>}1El}oQ`(oFoF3@Jc z6MO2Yj52rWUKxHxfpz=sU3)%G+?KX|)%)z9KQezVlAfS`AmaZ45rgQaq)hJxx;`fC ycUc{#HC3(>5>Zh$x?#LyzA(e;*;XIzBJ9(+^W&>F#Qg@&Xr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8b97b594720760f2c75207603ed2fff7455f1ab8 GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`>Ygr+Ar-fhC9WlioS8ZQkNiyE uO>AAfI%~`S^&fO&I5cZx*G0A-CWe)JB-+)E+SCBGFnGH9xvXQzs%!&do7ni0^`#s;n zUN1HAkLYoE|3|et%jfJoe8g&Eh+78l_psG{COuioeMaXD&eX0+UBJ3WjNxQf<{bTw t`UCd`7=Qk2WR(9@sl2^hvTQ#S!=Gb}>zGYzw1Czyc)I$ztaD0e0syVZKo$T1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..5818c1d20a2bc8ca06aed52fc55ecc6feac5bec0 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6iacE$Ln>~q?G0sgHRN$t&+>bf z_pZSrAJXHu;SXc$f_m+Q3wErojvo#mXGmJ{B{TJ7=nFBk zoRno}?!P_bBX01F#UeVkW5M=fjVkly3@>gsvTrtRN3 V{f_s>dqCS6JYD@<);T3K0RWW6Lk9o= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..510053a48adb7ce04bfaddf48518665f76ac496e GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`>Ygr+Ar-fhCD;?NwkuXZX~vQuzhDN3XE)M-oB&T3$B>F!y=MaX4k++2UAVaD+dp-= z(-;1E@o=7Baz6HyW%Uz<(9#Cay=^DDR`BFpV7k)w^}pj@oh1uA-bYFs=uVV(IcKNU iaEn1cH{gzWB_lUC~q^>=4%Fc5GKne(8r zKK06lo7O^RzVo+#k9w7G);_B0v>)H2OkPzj4z)*9Ha8t>Nm=}6$_J*U4mP>k6}uk@ zv)t;l=}x^Zp4{krVPbh>&g>6zZ8s-wP+t4s$U(hE+1L8r$-d2vK-(A?JYD@<);T3K F0RSK}JE;Hw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squash/squash_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..857797eece8f4308ba5e54a6ef048bbd01a07b8e GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`>Ygr+Ar-fhCBhO!&di+uXFk(b u4$e)c)2~@4PgPhW7TmNU?Nw7C1H(22VPE$B!Iywq7(8A5T-G@yGywpAG8^dt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..4279768f2534ed299c1934963161e9d0c01563ea GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn>}1FHrvQlfOw}+S7W0 zBNObt*-LBXaE9#ox?gXVkoXvXp~$g(GtyOJhl=GQ&Qr^0~F$Tf%@AF?hQAxvX}1FHoNGS)Rpl&8`0m z9g2Vd|F2wN;KJB3{il2=W56%_n1j{}gcdN>sO?$2jFY2bO+(@gMurbpgPiN8q)h;t O!r}1D=_vj&HsP=pa1WE zouKdauj}vr_qcTYfS1ler)mEkFGU~pTEMl8G0`kQYLSDu#zW?ikoJHC&WSBd9ZDQa by7?Ks_nIo@ok-aYG?Ky7)z4*}Q$iB}HUTU$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..69dcb76b8d98a647bc0a62f657b232d83cff6372 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE0Ff_@yX84mXwq{cI?=+ zY11}s+H~g3ncKH-2N}sYsEH)mDER7$yK9R_Stu-8wCMEd(_T6fR*Hg66E^Bt$HZrM zDQLSgv2gN=s5R|bWd$^ju_VYZn8D%MjWi&q$kW9!q~ca@m!TMwAqQ)tj=)wE#&`9B zte4(YoAE`Tna}&jQKY={`z=QE&aKf&%UNU$0~5VpCTvX?U;QA@`+3OJ)OP_pGWQC+ zj&yV>HlFWb;*nLv#pqb~>(O!>m-Ai%A1Ak8P>65dkr&hR+`MPm*LHn@Hcrv+KFfCk PZD;Uw^>bP0l+XkKJw{&F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..987673e53ba1c9a9d7f12f76c7578384c65b1162 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>~q@o{BjP!L%BzDwsw z)kU`Q--X|2&X#At|8L=eYW@7_2No$zR$O2tYRB@8RVVj4};8r%|H4qd2F b=4N1MdmT}_fO8Hb&`1VPS3j3^P6}1El^~bqIt}N=ZFH2$b#3sfBx4mQ%(?{c}Dl_rUfGZ zzkk)PX5JaL>{!0jx%Mc%=vTW>NZ&bZsvRxE*qv0vFe@~~Qfl=)HulHD=Vn$|}1FVH^mufHK;>GMDP z`Hsr|SN@kg^}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2a93635dfac92168a985b623b67670e9139d1f GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=7ck9oxEf>$GXpnkHxlUVhL9w2YaLBoq5@Qp>hm{O?)3%8YR|vF*>j$tuWi*bj3yH wK_|oNnWYWsVjTxJzhV$*lt|}e5ENU@D0Ec9{*C4VL!j{tp00i_>zopr06e%r)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..64636277f24d4bb9a8ddb87d4a7175f35d7097fe GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&~5ZLn>}1OZX}L{{R1f@xSsv z{S1ft{$Kxpp7Bx!mqQARmZzb@*{+-o!V7~q%$OSP^aWgK^krmOv|%L+gXKOO&vnlQ R{sRqS@O1TaS?83{1OSNsDJuW~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/squire/squire_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c9420acc3d9e03c2e1149c8453fb5a479b551d GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>}1FOWO&kH66_phMA? zm#6>l{a^d}ST0UYX;wK{pw00pghA!C0G9`g!d!_QmIle5b8Z?AH@XuRGp!J4vYo=f Y5Ec=4?^{CXL!f~Sp00i_>zopr0MCag4gdfE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0daef9cf2f847e06570b4d462bfc1a5cafe099 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07M&&hA*U~~?Qs-pP~c(qZT$Pcf2z-`lat>h zdOI(>uIO-OgV$KYg;z=-0Au^S7kGf50#)U;^6|<|kJ**59|8E6c2? TbI9Wg&_o7LS3j3^P6}1OZYu__dnjD;=4W9 dY!L%4h7)@Hp;39i766qnc)I$ztaD0e0s!Xd73lx~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b5b8232631b97719877dcaca46d4b0364f1f1a85 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F&6>(|}8cXysV*|B6v z%7h7_+1bqdeLessm`j5Ef*BebbbRk`1#(?HT^vIyZq4nz%6Py)z$v-^uX&$r{nvTg zOXf3K>{u`A&L1^7+2iC+i+M3;7CNgWXT4i8^X_3O2cHZ9@eAJ^jONDFPG#Kmi?J|b T>9y@Z^B6o`{an^LB{Ts5Q?5Pm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..d661ece3a21b8d999dbfa52a524652637731122a GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09i^Frj0~lAR|{{{6q= z!K3n9j~-pR#1NXDEq=3iK2VymB*-tA!Qt7BG$1F|)5S5Q;#SXTMqCFxp5~$c1%6X-21FTyi<5mxU)nqoM!8jk8{2>?-;L$*J`&rS3TzzuUh!#^aFk7 x8*`-_GXqqZPv{3|El5c)I$ztaD0e0s!%SM{588 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..de3c701cda7b023d9d6d18900667614cacc60497 GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6^gUf1Ln>}1OBg+P_dnjDLY%{K zPwoH28ktk|2UTAzWl-d4{;hECD6hgK5v>JU3=IE!^>-K@+G_yR%HZkh=d#Wzp$P!b CMuX*AW&aK{e|*IKbykE3FVG4GPgg&ebxsLQ0F=i=v;Y7A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..328fcd4dd059c994eb9c7fa0818a9cc688a4d785 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4^2uekN-(St|jJ5QeM zSh6H#!i3Q5Y;$MldS#^^pfqDikY6x^!?PP{K#r}ai(^Q|t>gpTH!cMUALtQLO*h}r zFu7~7H{*nZSsEG|a~OmQJ+;}pH|#7enbIKf=B2D`ss>M6k$@7=EsP<2c29g1Cjt#( N@O1TaS?83{1OWY~H{}2T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..750f8a9c14ae78cb92aedc52c06c35756ac01429 GIT binary patch literal 85 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6WISCQLn>}1OU!xjuAYgj?(gx1 i@5O~!W;sbourd@n38$Q4{;LR7$KdJe=d#Wzp$Pz15*GCU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..129a046bb82e55e2f5e8bb6176d6ddb6f83d1f55 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=6=3J=%HlWXF;vDHA4y zW@no_JD=i7lmJRFmIV0)GdMiEkp|>gdAc};RNP8Fz#S1YNA>`Zx+AOThK5BGnt~W6 z9OQXq+2ArI#_6Dvj#g%-qXOIN?5HRXu4YA%mJTL{K0(fqJ-`2+0-D0$>FVdQ&MBb@ E0Fk3INB{r; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..56874a03bfe1fb18309811a0761f1cb5899925e4 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07M&&hA*UWar6~w;nzE z`+r5sgb6KQSpmLE*u;}C#QKVGP`0Ne9UbJf6nBRNpTC`7u9NQ`JTehE? eDsxNx59197p+$_U(-#5FX7F_Nb6Mw<&;$TKAw-7& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..1f7034d1901910c8a95499dcd697227371775211 GIT binary patch literal 77 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6L_A#_Ln>}1FEEy1-T%*7fvfrg Z1A`Vj|4Hv|VKbmSgQu&X%Q~loCID#a5<~z1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/starlight/starlight_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..eca109a02f29aebcb84f3ab991ed38458501b982 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=6=3J=%HlWXF;vDHA4y zW@ksHN`C~3GL{7S1v5B2yO9RuID5J{hE&{2KEM{!z~Hi3LYqsHy+Ojwsq0ii+oDO6 z1YC}oNGK)A9LVCC$d$n8&FHBht=P&E5zExTafE}HK}jc!nL$aO+u)|goMxbL44$rj JF6*2UngCEXFNFXA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..a213ad3223ba77cbc27252eef20048756d0aef62 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``JOJ0Ar-fhCE66GH9oZGNfuUK zQ7I@=&0wfkxQ9*V@}Wcqm%a^*uOkJy0(sd^3YstkD;`R?wUc4ti)nHkkBb<6bb0&NK&xjdMHm6;L@IeOYX?=dp$-?fH+`*Jm1 Ppw$eXu6{1-oD!M}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe0d5564a90f09b9ad497b1067b029e4f6e3f7f GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VV*9IAr-fhCE66GH9oZGNfuUK zQ7I@=&0wfkxQ9*V@}Wcqm%a^*uOkJy0(sd^3YstkD;`R?wUc4ti)nHkkBb<6&|jGUx>BfV%TDy7p!?zF$-t|gQu&X%Q~loCIErSDR}?@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..66e61149aa692d377e79a6be395f69ed3460694e GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeJU|7$}u!w=-mL5Y9 z1H&;bh6fiXeR+R4mVx20Wb=HW3dWKkzhDN3XE)M-oCHr7$B>F!y{9hnIU8~?UFa-Y z`~Uyp=C6r%an3;&FP|TsTU-^hER^@|o&$N#lQ;CpZA%CUowHEx48M?2uBbChaHyvn zhs(-`6>%$cQW?2cd}aR5{_n$sKo;+B(|%mL_nkH39h26f_K)j}1FJQCyC(kndkGoj( wCwV2V&adr zhQq#loTTk%{$+LAvQM{kajBKoYRAy8KC2DHT6)YfCf;OOxWQO;iHF6@@HIX$lQb5b qSRJ%jWX*wtfnhh^{EPebi1BI(W5X-k=WRe+7(8A5T-G@yGywotR6unA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..6a98c53e33db5ba5e50fc1995e4389dc2c787f3e GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeJU|7V!u%4CSm=?n= zJ%%C%h6fiXeR+R4mVsfGKUp$#;?D0JVNW|^8a99WUc;z*=nE0rTVR@Fe w`Th9ZRIPboVcAjAlGkir+i%{d%*4R(^bChnndP4IKuZ`rUHx3vIVCg!0ER6_D*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a85f3089ec2ac1815c9cb102ade47059cefde1b3 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/strong_dragon/strong_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fb8a4c9cdba509d214823d0628ebbd98f75d1b37 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6?l7>;Q%tY>9d#K2I* zz!1y8;K9JqdoDi(D92b5Y^O7iyl4Unr2XD zX6VOY=yS+>?m?dAOl4D<1e}*P+~qtYpqF6IV$8#RqxB%qai%gs0cMX))=iR6SshxA arZKd|^C_#7 zlz;kg)59+2eLSZMEH6n1z2#kJkS8K}i_tx?EO4#WpXJS0jo&x&@3UvykkJ488qi1v MPgg&ebxsLQ0O1Ta!TOLn>}1OZXi4z5jcCirGsp zr2r9^gy05&9tBs%Ljf(K9CA(!OobmMAHG3k>^8wD1qWVJ1=%KH>d)lJTfoN6a$+}pPKe#+oT9RB!ZqJpiWgMB_}dkp tGD>5;CURxZf%A=q`Wb<@roC|8!Qk;O<5Bp7@@$|T44$rjF6*2UngH@bH9`OY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..84d22de3082a6d0d7e6533aab66ea0f12ac8309f GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6qC8z3Ln>~qoyf{~z(9ccdHm_u zopX%t&DeBY=jl`a6Q`s9NlkurD9llqk8#sS_Ewdkv+G`Ndm!Yxa!RmEd_!;5o0i+z w6S>Vd-EDo#c|%Um@!6CK_BFy&=iYH=XyQm;>G{d^AJ7&CPgg&ebxsLQ0GgjU6951J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..f9488428d6255d4e4df61afb90421dcb29f77ba8 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=829U0btejlO}on!2u} zq~vKiyHh|>#*!evU}1OT--bz5n}v4h5Er yJC;85IuR(qDBg2m8G}m7H+iOmHm5{+RDn7lTSSK4tYZi2WAJqKb6Mw<&;$Ts;2uu^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..93f63f028184d2fd3c80c8d76ca2c0d259ed42c4 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1FVK$o{9j67-B12S z8@(2P3}AHPcVd~_ovEZI{({Ni$SQ_Ju8vlBMm7G0?7Nv-6r2v43RDX)GF)12&HS(G Rd@#@?22WQ%mvv4FO#p>^BZ>e3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..1bbbb759217943f77154e0688665ec0c3dc6ee1e GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=829U0btejlO}on!4`# zciovlA;yv*zhDN3XE)M-91l+y$B>F!$p_e4L`0`Lm@MwzxUrjQ!oepwIXOxVrwT$0 z8$CD;np`F3vd(BwQfOmpIrv2B0LL{xmBt(nW~D<*R1U0I(r`43VHpFb__92qZ9p>_ NJYD@<);T3K0RS;XHa`FW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e23127a66bc7e3e2468e166b854a636fa7fa2cc7 GIT binary patch literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^`xMLn>}1FHrvQ@BLqUCN9Su x9WEt-2{x<+iTQW95^`o~I&f44yEFb}V7Pq1?W+H5#c-fD22WQ%mvv4FO#t!+9J>Gj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/super_heavy/super_heavy_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..074b288118efde4fc73cbde06a859ed40131d8ef GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn>}1FOb{ut)5q)$%BL2 zSt^#Q31KFN`eeu Xd%|uCi+-OCG>^g4)z4*}Q$iB}^?)Ri literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..6bc9fac014d48c68d6eba40f8f8ade46aceb96f6 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`#hxyXAr-fhCE6a`$l3SbpvSjo z!L#?*ryi_`wLV@S^QeON$A5eF>5K}NhuCWB6M4cr(hNNM7BJ4>5@fr4ftACRSE1)L zt3l-knYgpoJ`(@VPfTghX4>SKG^1_7?S>0InGBN@XT&jjCS}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bba894c03f8c82ff61d2b600522bc8ba5d4adcf7 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`F`h1tAr-fhCE6a`$l3SbpvSjo z!L#?*ryi_`wLV@S^QeON$A5eF>5K}NhuCWB6M4cr(hNNM7BJ4>5@fr4ftACRSE1)L xt3l-k8N0I`)*BL*?AV^G{@1Q~>Q^@O1TaS?83{1OOnzG=KmA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..62d3e3fe260dffe9fe4fc01fd94d74b5234cd926 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0CU3%<%lW?DM0%@89RV ze;;vn4#ONth8-phTRIrpj;V+PRWOzW`2{mLJiCzwg{P4WLDr|b~MWU z-+0n`ull>Hk}38{=PbkIvJ1qfZu;(5YwPy@)1ic~c9&Lme27ZRRGq-;Sgf+*>a!(p zq8JybL~52g9eMdxW$gr}(Y5(N`xrc3{an^L HB{Ts5iM31M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&C7E?nQOcnJcv_1B6?Sn$HqYRGbskaxi74rJvYY^XrveEmQbf p`%6A8xHw0A*`Mam7kQ4dFdS`R%vgCpWFpWK22WQ%mvv4FO#o4nM?C-l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..bcdb44acd10e7ff4886210df0ef9cfac9b73d668 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A7V%kci3#P{z>?;mJ< z|6X=&Dd!wXh8-phdnYlkZC#xNRKZvh}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/superior_dragon/superior_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a8c7ed0c3605e2d68973df7a766ccbcbeb971791 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=8QYmwo@9^!|ay`*RZ4 zmU8Z$#JseY!RzRO<3Ksak|4ie28U-i(tsRaPZ!6Kid)GCxNZn7;87RlkX`iX3D-1( zGBZOz21B1i-g6J~EN3d4$|T^twBau283DZna~5MB?i;NKd5$xc2?{WKY_e{We9G$3 cax{&hEuK$t<@W{WfCe*oy85}Sb4q9e0D9p(vj6}9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..f5bb4f79f5e98bb66e6e2d21dc2e27ff4d7c7817 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0EUKw{h}JYVKY>WA5hM zvZ^xl@Ln>}1JFqQY@bLfi|0n+F z|4;t6*o*mL?urEF39JtndcJShzR@4Rbd_;p8y7=n2Zxg*Plym>QbN)f28P}}UNgIx SlNo^~F?hQAxvX}1FVK@K=X{)20KkrWl>SyqD^>bP0 Hl+XkK29O|( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..b039dd796c64505aa8258d56219534841f948e12 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0E?;RghY>yz+MZGd$WI4vs!@a7)yfuf*Bm1-ADs+d^}woLn>}1DKHf@ zGZ-;DG}p*5FdPct*gD()+x+YAc;}TDK5XUAX`Q`;;lv$YIhDoUOggz8hId;<9yhtZ o-?_Vi`ey)78&qol`;+05V8KX8-^I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..50b16b9aa019a6b1c3fec7a1c38dae01561150f8 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|6lm~h1c7gm8Xs? z9NpU7y}1JFqQY@bLfJ|2#Z; z{|^eBxb@%unY~LJXQW_{=;!}76I_Bnv^?Zf^iC2`Yq-(O!N9OFN32FM>dPUZ5e%NL KelF{r5}E*41|_Ee literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..648c6e5330ac5ac5c3e1dd1e756f24cd4dd75584 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`v7RoDAr-fhC6+auzxT%8%x6nl z>*DDD)qD4LHZ2X){eOPpst@xu&T`l9|H03qAeF}8A(O{p$L!GMD0R{Fut6fTmcJ}} yrqefT58)eSlV46&WD{Vz!Njwsa7R-h1H+Tn%)S49ObZ2C#Ng@b=d#Wzp$PyjqBNEO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..0855328afa5005153bb89910433628c35a176c25 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0E?;RghY>T;b?eK6^8- zw>K3mEcLCttY=NlK61!6IBVtlqci4i&MlkT+`U{|-^R%^Nq)<%T%b0_k|4ie28U-i z(tw;mPZ!6Kid(&2TNw`<2#9<>{O_>Zw$}JpUCE{Fatr20ujSqNFzd%xhK>TRmLP@{ zM;{$I(aJ*i6PkMO3huo+xO&6AQi3GkCiC KxvX}1FObXl(a)3oFWIC1 zCqIkBCo=&i&k|MMfQNq_Dx_VKH5$0SGb#oM>aiLo+?L)ji($)uvjDECy$p*P7!Ib! VF29|ZHVtSRgQu&X%Q~loCIA{WCG7wJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_miner/tank_miner_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..621e0365cc964b8ef8f607df1ee45eb6b2befcc5 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`(Vi}jAr-fh9oQEqh-gGa{5x+~ z^kVu)uManr~_U_ujkrXMI7*>w3P>*8dhqK1wkJwJa1k!PY65-*9Es x(-~|DUCB%fR6GQo6qi{fGEXq{`{>BZ@Na+AM9qNa1Kcd4 zGgur=9!s(=GiGvNyDY~(?J}1G+i5L!1ty~i#~ucO$}SO zX15ie!G|^X%o>fWuQRflZDwI(+xCRT#*B%fC{Fa`=>zp!fp#!>y85}Sb4q9e00pf+ AJ^%m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvX54 z^+m-QG3x>ZVgp?*EiJXRwB%%Efoi^R+bjc8j3q&S!3+-1ZlnP@#hxyXAr-fh53u;0 zTFAq*(2a}d%9Cn^tXNq4_@3W z4tVyZkByCOo~{x5UVZ}x$#lL`a~ciAsvIS5*Y<@pOT4M>yFN#cA@b4QqHAIsa^LJO d7gvbnW4P9&5!ZYutQlxMgQu&X%Q~loCIFZHR!#r_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?n2x$s8)!(IEU zEI4ZtmYpe04BKq9b&5m&+YGI%Z`{}N`u|=ccV*8zgYRBbE;E~5-dI_xlm5UiJ2BpB fSrg+B!4QB9k^>bP0l+XkK-ylH7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..346d91dcbc50e6d104c9c701d51e20322d7ed726 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE06{PIayh4Ev?u}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/shiny/shiny_tank_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..94c486eabaa5c0bceca71cc6e3cdfbda0ff8e5d3 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=1@P&73*0t+T$UI3s3V zfIw`ZtG|ndsg6pzzx!OEG-FASUoeBivm0qZjTQB z&iW#M7mJw_+g2=^85`(2FKW$HpbEy4AirP+hi5m^fSfQ-7srr_TXVfzMO_RzxNDaF zeqU9m`N7DMcTt3mpm~A2$hSx5(+@s3R=M!e-EO(m^L_JYc{#KT2?Z=>{k>7~=VqZZ sMHPyPJ3g*D;`;g4V+rPrDFWQ-Of|M*8&xI4WI-VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXa=ds@w`2}HqE040uzp!Kqx!kp88_*;MPgg&e IbxsLQ0G0eQt^fc4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..7cfd4c06b339258d0aaa9aa482e68b2187153992 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=1@P&73*0t+T$UI3p%D z(AD3?!qU>xR7XWyOG{2x7O0^8e?%;hVk`;r3ubV5b|VeQDe`o245_%4e1N6L=@<{s zu`VVapViw83@X+KB_!y@%O2RZ`c6aR&Z29tVzrk`8*ErJE6#Fn(Nt#U>?^N&FYTVj zW?)dDKkZ(|)<(t?H}(crnYS2T6gm`6Xoe8v^!PC{xWt~$(69AmUQnvsA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?g8YIR9G=}s19E&lT^vIyZuNFK3LQ}3VCKB??7w~9qZyN@ zzvI|2=@+A=180KA*+AQ;Wh~Ra37>Fxcy#cRwRcz_!@p6X@yU7*cVow}+AIfC3M* z@3qj_|NrlYrYA77$rW5Mj`;TC`hxPiXAL$kW02!q7*OdK5zg^UJ80vf9o~|z2YD|4 p(fJXzBfY`;|33$oC+aGn*vwxQF*f~JYo!lzkEg4j%Q~loCIA|fKnVZ< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tank_wither/tank_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..eb579f0df0d847245724be4de86e6b0dd14d7a68 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=1@P&73*0t+T$UI3p%D z(AD3?!c<2kPcNVtD92b5K2ae)?3Pb_P#ZKbLh*2~7a#Z7A~q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..c618777a126e0ba4e2de14b8692e3d0c1e11c187 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G#|s@}fnHYHDgC zBO@(cESE7ciCUR3=otyADI_s4a7#-t2n!3BEei&!W-JNv3ubV5b|VeQ@%MCb45_%4 ze1Q9$%mYj2MU}Vo7zCMxnVFTD5392Y9G2)f(DU7aCGAdnLIr!!n~ciF^i3Sh%-s_{ vvC1jCva7MNE^M3MbP0l+XkK6Fxg+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..10cbfd2068fc7d7b41cff1ebd3e720ef8e241089 GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUm?-Ln>}1FHrXQ%iqKy*7jxV z|NsAI|94MYtj)mXAj)tuTY{_Mj@=H>hBGW>DR2-+QPN@4GK!vR39i`mCVR|zGw3Dduv|W95_(%sN&X{ zSX(9@pDyifTh9vxF=RzwylMEH(c}ND4~q4Q%8*;=u8H?VJ;( zF^79&)bls+e){sDQ7xfUTzJ8J^MoChH!OrM-eG&ya$YUq?1k2Yh3}^XJSdTPb~Df` zBOqwO#Iv5Ip{qK?&dvG2yF2RhES=w`Yfe-d{pezSba6qG^PxLpKc*%|FSAuB{ij~@ bPda{$#FBa~+x&K*6Bs;Q{an^LB{Ts5;oeDn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ff7775955a6db5b2b6d9fcfa195b5bf872762eb4 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=5!4x=7JM#t&Wl}UuOK8A#K5PfM*&TAA1fPGsD9emJrK)_l-c^44$rjF6*2UngDKy BE(rht literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..5269b440f26163fe1691f1ab66b3fa946b52c11a GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5!}sid i_5|aSv#c#0ObmVJLn?0F?cK=RU?6a0PpI0d zoSQGM8CGdJOkA(|Vd}P$np0n5S5G$-JDs>#(Yi@_<}?;>;mfQy{~s=8n-FwfNp}0Q a@)-R}|LL>jnHqrxGI+ZBxvX{~=m^EwG|CCjZ9&!6>e%g1aIr1?oDJ%cikJ`eq=ESK}T$0U44iqVv kDr~LbWlVH>#9_e2u-Mr$T&=z65zuS~Pgg&ebxsLQ0Q!9__5c6? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..9b11b5a9ef54f0868fc57041b383651bbe2837cc GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5!EaktaVz-%TiDtc zQM`*J!>25*=5COa4kei~Je?@<@z$;uPoO0Xp00i_>zopr0KY;) AxBvhE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..93a1fa1285a707e7f6ac0974d47ec07f91d67bc6 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6QaoK8Ln>~q?K{YOz<}e(u28ik z*=q^P*9toYf=Yg})&D6d{(Eok#*c@(j>H&?6!44`xrc3{an^L HB{Ts59NIr8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tarantula/tarantula_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a382784b8185aec3a91c90905815a094e39a4b3f GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ww^AIAr-fhCDI;zdV2c5XXxRU zbqbx0jB6g)%isT>>f`f2(Zr`OjBr>mdKI;Vst06Rw~RsaA1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..5df1c9ba4070147304312f789a06ac6a96afa1ec GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=8!2{!cXipUQYAjAM&6 zXN4|nxH7+iB%7KDi#$-4XG-5xAjMb`RNpp~q}08{c!D1$hh4Fn!DH tV≥DwKQ2G-*kLg0)cx7}N@w89v+-VE!yOCmm=9gQu&X%Q~loCIGdNI_&@e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..cc0fdf07ff5d8e004f37054e838ee24500842aaf GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUm?-Ln>}v?Q7&b;K0LVy?=H} zpUxECH3BVRRu1+85BV6^|CfoVDH2TUUZ%Q3q;;Z+sXF(BpjYPYC!F@X{6>1T>Su)78&qol`;+07)P#9{>OV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..36ec8b395c439ba04b1652cd0ad42789a4cdd8b2 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CUO{C|DY|1gd%A}sRC z{02agRK`0QHi8R*EXI-`zhDN3XE)M-99K^l$B>F!bGsSY7y>z1pMS02`}=-{D3jQ3 z<>W;_+K(!1H`l#qut4&gdf3~|;&YqT`Xpr@sXcK`JWv$o7#g)~arm}ADLvkipZ{&t;ucLK6TsTQ;-+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..3fded0db56ba968a3854a150fd696fb39fa7adf2 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ES@4G-hkBFUy^%~>(g z_lq{c7Eaj5FiC#_OZ$XBPx^x_mS~;gTXiW>_gYkA zl=k&oJr}CiZ*??dUvT|e0XOT0>DdXhlh3%ZzsvS(Y~a?Qa!4pupp5Z9m(< zT`Z}2O8e_b(dV~SkINp;n&;iJ{&TQZV?!#-(vQZ>5dlc(>p)`@iw xOcU9fR;f8&f2K1*>EX1<2O-=`UJ3k3o8wa7!oI&+*Ai$CgQu&X%Q~loCIA(}Hjw}T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1f4bc7f77b13503432cca61b6d77acfd0f6c8e6a GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=8!2{!cXipUQYAjAM&3 zzkxKHrU;8XHyb}tDuuh%2}m)P1o;IsI6S+N2IRPVx;TbZ+)7s9EO1!C#@5Hl#lzz> zhu5dR-$2tq^F|Cqml2niq{EZeo`tVw@-FE4Vq|dirkK<$L&hVs0;k>M6r5#Q%ruFY ZA!8@cBz5Z*Hb5g8JYD@<);T3K0RZzfGQj`< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c4bbe1e0ab656f0751e61c03952fd9ba28614243 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE09iQyc5Q;Wqs0rAX|h* zUYXxOnoZMO#?zX!LYFmMl1*)*@&6CAs@DRg8B2ovf*Bm1-ADuJ^K@|xskqhK<0!=- zDAJV8u;agH;?IWjRZXwh{|Fa{S*Gv%w{&g(#J!777;VeE@3q^x#X^DOXYG;}?iDAZ zEZ;WW+xh?9Unb6s8OA4mFBVFut#`Px#h-KC7Q@WI Pw2;Bm)z4*}Q$iB}cIHqr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d84857c8ae3be011e52347d6ba6e032a07c0e892 GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&~5ZLn>}1FVKGRtG^*)Y4|^T zo>uLRnvEXHQx?2t=WHr1YkYawL29-11Cug_V25?$7k^63b9vTmYn8#kprh>7$expX Q1ZWV0r>mdKI;Vst0R7@7L;wH) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/burning/burning_terror_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..392aabb189f279a6ac056f7cd7e30c20511459ff GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09iQyc5Q;1;|k5HxOZw zH<$60WK)x7(_EkQf1>gKugm_M0_7M>g8YIR9G=}s19E&kT^vIyZuR!MGBGG}xHA5} z|9{iEoCx0^Q}lKbP0l+XkKjVnFL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..d7294dc56b62f0a66970fba130cd08296800c5cf GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09iQyfe}GzbZM-G6u9URlWaRIpKI^7`{Um+#fAsopnta^J(PMc$RmLr%+d kZDE|zSA>HFH&u1I=gfboFyt=akR{0ORXGe*gdg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ff431094fda129d9b1edfe325c380c45426485e7 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUv|;Ln>}v?Q7&b;K0LVy?=H} zpUxECH3BVRRu1+bKFP6H{C$4l(Pr_7c^6DrwznEI<(>6pbn@DJRx#*>_zTe@r8)PF dyFc1L&rAMe_q|pppbBUxgQu&X%Q~loCIC6yE}j4Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..eb87e71cd1240f79c65e77da47b22b992e19c006 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CUO{C|DY|1gd%)|?fo zjCVYh5SNgv_D1BwdIVq4DYMlq!<{AvRNiRXK_~qn#bVj L>gTe~DWM4f-uE;> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..b37526035972a518bd0128b069c4db9084a75035 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ES@4G-hkV$E5R%6Mm@ z@&ENn|0UVfY!mx=fpUx`L4Lsu4$p3+0XearE{-7;w~`c?7*2_GGq*8Hu!W_(-(UFH z;Es34Lp_HqZkKh8yWAV@-dDH8Ld&=OjF8ZzFInmiM~{heNUS$r spm}kR-WR6rr>AvXd1hX9<4?Q&lWmN54xQ5p1zN=5>FVdQ&MBb@0J1(otpET3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..74360cc465a2a2dbdfccc376320938c9a9fa820a GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn>}1Enth_%xK|Rr@-PQ zvFmGow22G*iFygq;)ya-&dleS_T=2nG;J|~iXw&ox{@&q>Qyeh>ihIT%;2ChAIpye zGve}Rg)m>6#doCj0}uPAu9wlD(->Z_ykyU~=)ZWK&Xa5Jt7YA0?DMVO?U4brlfl!~ K&t;ucLK6T#fIGba literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..023cfec232fd8e4f2fa1a8a73142d4cd6c66d20b GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`PM$7~Ar-fhC3+G>d`$lRpP#Zb zG%DLN{u?} zPBmGl$ov_9CVn~FsdikV%SmG5+|y44IXEXUxleG&oDjc4{VT_%k_qo_Z)ZMtiOnse l{6!bXnfo)UTjTWqFmC5#^kZ>ZbQ)*_gQu&X%Q~loCIBD-Kr#RT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/fiery/fiery_terror_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9d053062fde9c1a0ed661ff51f065ef7ce43a973 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FVKGRtG^*)Y4|^T zo>uLRnvEXHQx?2t=WHr1YkYawL29-11Cug_V25?$7k^63bJ@Xo$oV_#nWr3Pdl?v3 X&x*aMwCNik&^QK9S3j3^P64u zyVtA-3Ne-h`2{mLJiCzwg{c1JmA2?wDZ6}?d!4j>lT=CicDDhea>FL zX?w)4#o2Jn6#247UHZf|bI01b6-v3&4fbF7c7@q`7DK@$|0$<{1~GWL`njxgN@xNA DctkX( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4ba2379aff5c8b89ed542b0690b2f2106a21c9 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=8!2{!cXi@2i!Z%6KP? zV~e?rr!{AVE^D|lzkwv1nh1+LHyb}t+1&;6RDl#@NswPKgTu2MX+Tbtr;B4q#jWH6 z>=7ao5;J5Pc-E=0i}kWPu(=;)TKA1j;jnT{?adKi&WU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..64de86632cbba15860ad66102aed30d38d33229e GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OV})U{r}Ye6Mv@u z->p#7a^T^A1;>sg1OC{9>ng85KHA3yG=jm? L)z4*}Q$iB}u~8@2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..fe1ab544d5e35e4e87aa6a2399febb4ea14e2960 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=8!2{!cXi@2i!Z%6KP? zV~e?rr!v2RB%7KDi##_QKTyFocZ1tNim@cfFPOpM*^M+HC&1IiF{I*F@&Wb;5ebPI zG7UTmoGHr8>};%RY+?${i#Ien?_oUA5i#dL+EuO;lO^T_Q;Hc%xeLWM_y?3EB>1nt ocVO?{H4Tl`-`Us<8l@Q+q+9rU4^2D$1ZXycr>mdKI;Vst0AL$B5C8xG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..6a081caeb32eef30c4380caa869cab4cb550d756 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ES@4G-hkBFUy^%~>(g z_7Fi*Ar-fJPq8ww zC~~wW%1d1Ndw#b;-goZ=DQtPa4bzml^X~H)q{&j(|Pd@N6+aA7=;Fipz zP@i&5>sVBF4`<$PhHEo~JGeOl(swq^>U#2?Yu&V!>M<@MOV5Q{X60Km22W>J`PQ<^ Q5NIWXr>mdKI;Vst0G{PWa{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9d44c22258c4550ac90973d2d10cd95b18a9db5d GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5@S9Ln>}1FJO!KDbHr;y5J7K zLxqIv!Nds?J}fS!f8R54A24b7ksvAYqUm+xEcT!V9)(x@&WcBTV)%~fU1Xi=pmD^2 j@$PJkp7zVm+zbp0E@cWDN*~by8qMJ8>gTe~DWM4fSA#17 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7ef147657e029021f481dd5ead332b451514118a GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=8!2{!cXipUQYAjAM&3 zzkxKHrU;8XHyb}tDuuh%2}m)P1o;IsI6S+N2IK^Kx;TbZ+)7s9GHKx8Q<%k&RA9y+ z$;HFtF4G&qzE(IY3BP_^wnxN&~OG%S3j3^P6EaktaVz-% zTaU=pDUK$audfRA=5gqGnwc4@z~&tp6}5|b!ojI=TleHJPB^$^YeV)#rU?f%wlsJL zGAwc1*?5>^&9h@H=kBp89J|TAr`&<(-d*mB@^}U#3njIJZDt7@r5HlwB^-8J-xC7b O#^CAd=d#Wzp$P!HPeyM5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..688a98dd54be426e648810d74bc57c033164dec3 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j67W&Ln>}1FVKGRtG^*)Y4|^T zo>uLRnvEXHQx?2t=WHr1YkYawL29*hf{9NgR|0i2c)I$ztaD0e F0suukA+rDg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/hot/hot_terror_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..022b4fd1ae0686346bd67814468bbd5a3586240b GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=8!2{!cXipUQYAjAM(r zjHfccfi#<@B%7KDi##_QKTtu7ex^K-Vk`;r3ubV5b|VeQ3G#Gt45_%4e1NS-Wa<=0 zlg-S`%-xI~jE@>6bQIc{H$|zja-=1QBqaohFsuypOE6|y`S3>Afq8cslGfZiu$TMD qgLyX(*cLNSI4A}boz-wOi^0d4``L}N3+Dq(XYh3Ob6Mw<&;$VK6FrCk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..2d1a90d5d771c35fa8b6df60601b6286b52fac38 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9ad75`tx_pgcJVk*O$ zV1_V`E!LbBx~$=nY-+YkS8N5UU@Qsp3ubV5b|VeQiSTrB45_%4e1Lt1sD#7}o(7(C zYRqZ9oDOX6M_JB&V^cV+6x+CRjiky{i^gCcm8X#_4yf3%o|v)FsPXbn;T6#<4ma#{ tzSz(hdDEo9^u~#XMpKgpMxO_44BB(~Bjfm8dVzK@c)I$ztaD0e0s!OmK~Vqz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ff431094fda129d9b1edfe325c380c45426485e7 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUv|;Ln>}v?Q7&b;K0LVy?=H} zpUxECH3BVRRu1+bKFP6H{C$4l(Pr_7c^6DrwznEI<(>6pbn@DJRx#*>_zTe@r8)PF dyFc1L&rAMe_q|pppbBUxgQu&X%Q~loCIC6yE}j4Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b76b5abe3dfb06b4e50fc5d9411597eac27c7c GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0F%bjPL)c;)|&aYl0d6 zH8DK7ub>7LWh@Eu3ubV5b|VeQaq)C<45_#^r@N8uKmZT(mdKI;Vst0J{M;F8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..98082f67624bfced0540cae075ca007c7c035aa6 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C6CQ~TG%@P8TK|5L>m zQyEej?^ttIgmG-qWes1vAnhAa1!GB&UoeBivm0qZPJ*Y4V@SoV-tJaL7efx`?mv^> z?Ej$n{NE~ftjd_V8T|<+yv-N7J&$ z!94U{i$Zqa>W1EqJ$a&USgw0%F&@eFTN;^f$+-6xGvA>ZPSHTS7(8A5T-G@yGywn? Caz@Vp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..74360cc465a2a2dbdfccc376320938c9a9fa820a GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn>}1Enth_%xK|Rr@-PQ zvFmGow22G*iFygq;)ya-&dleS_T=2nG;J|~iXw&ox{@&q>Qyeh>ihIT%;2ChAIpye zGve}Rg)m>6#doCj0}uPAu9wlD(->Z_ykyU~=)ZWK&Xa5Jt7YA0?DMVO?U4brlfl!~ K&t;ucLK6T#fIGba literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bdb6ab390d74469f870c01b71ea1af89e40e4ef7 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`j-D=#Ar-fhC3+G>{=^^qK0jq= zy)Vyy#~(>rhwB$8S-4%}IGSK;@O4LQ;i@0@B8N?!OeQcbm?gMvBJ+b;ncQxS3{&h~ VOJ`B|D1rb0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3f826887f58c01d18c60e099b19d7ae28e7b37 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0C6CQ~SS+PnR{^nzQ2n zsp5;N4F8%KRI=*ofpUx`L4Lsu4$p3+0XbowE{-7;w|aX6`CJq^m~&5G`hCBmQlrkg zQ%%+>GJnROiC@lksvVc;a*~)h_w*A%4$cWo?h_m`C&aH%|H^TxWWu}K+nLW@VspzV lf6>Kp=KhT8);Rq?jNADb{a9QUod(*#;OXk;vd$@?2>=^hKpX%7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/infernal/infernal_terror_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..9d053062fde9c1a0ed661ff51f065ef7ce43a973 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FVKGRtG^*)Y4|^T zo>uLRnvEXHQx?2t=WHr1YkYawL29-11Cug_V25?$7k^63bJ@Xo$oV_#nWr3Pdl?v3 X&x*aMwCNik&^QK9S3j3^P6_UP2P$Ce(|ZV{7)yfuf*Bm1-ADs+B0XIkLn>}1A7G!sDj^}k z+rZQ3!ko5|O`%zLO{20YyxNk}MPfA7HFy-OMztG~0c88k{WFl>G(>~`_le=ndV44$rjF6*2UngFt9J_7&% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8874bb3081c3c00cc36248f30d3a0f4218c0c754 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_M*NLn>}1OV})U{r}Ye6Mv@u z->p#7a^T^A1;>sg4*tVa4m%`T_~vd9N>W~SV*?{YQ>vn4xxa1~P%ne0tDnm{r-UW| Dk7y&9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..79af54c0f3355ecff4a321d64f21ee671fef4c71 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=16Z|NCksr!w9#m+@5Q zH;`mg6Je3(X5$A+?b&0z3P>@Q1o;IsI6S+N2ITm9x;TbZ+)6&cK7&<4LV~w}M}ad% zx%mSF8{4%Yg=SriMqg9L6CBw^2^T$BPwrIP(AreOJ)M2SG-)Y=4ZGa@9?X#vI&i?U fn2CAD0bYh>XLvM|;y8ikGB9|$`njxgN@xNAwuv*G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..56ad84e666ce28bd4814283a0ce95240e0311f23 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8!2{!cXipUQYAjAM&6 zXN4|nxH7+iG@GU*o0rvH*=-=jSQ6wH%;50sMjDV);OXKRQgJK!085VM zZb^x<-Kqu~D%YeX+_=h=^2TOk=@EOq2is literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..e53f0a48fdcd9228b2eb39aab1e7560e9af19b87 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1FJO!KS^xAu|No1w z_J7zrn`ati@~CpK?l`M`34>W?_o~_VE-d`DOu}i#+qNubl?%&a685>*I*Z<6@8u3PN}e?HouZa?vVpDB zj|C?=HpwrzV7rdprME%Lf8R#tSjI<(T@Ntqc4u@t&y>xeWZ?;Nny0Iu%Q~loCIBLk BLO=ij literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..442a42a70137afc2e1d5eb1ff9240d4a61c75df5 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CUO{9lqy4aneT;}>C( z598Qk%~`QN>A$&*r!|gx53UOf_|JDym_r94wo6AzGbVf{ zQiW+gR~cijhOzGsy){!TP@6F;S2<(Kv$A(V*98OHrA5N7Fbl>7E@1*%#Ng@b=d#Wz Gp$Py)wnBFR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..787a6f233b6bd3ca82684121d4db244747dd432b GIT binary patch literal 76 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ggspxLn>}1OT<0+P;VlanIOWz Y5MajK%4vK115ld5)78&qol`;+0Ai&Q$p8QV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/terror/terror/terror_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c1968f3a8f020d3d1bf113b418e2956166592066 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C6CQv;IRZ2TfD^2+=M z(rlXMGM?*`{)cgFNoBk<(fEJi;q@{=6^tc8e!&b5&u*jvIcc6Qjv*DddV52e4j6Da z3%{81dwyBz|GTS`IRAZ|bvNzXx*rpdeLmN+LVLxTBbOgds&s1#5DjE?Kh&d>IV*Sa ztQTfMec$gfuCr0SP?V&?9P=r$q~Rd5oq)2V*Q)p;m5@q?zN0_*B@K59<=kj^k^{7n N!PC{xWt~$(69D3@OdS9K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..68f80674d624909fbfefdab9505ccc16b52c23fa GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=5oL|1&)Q!Eo#(441t;6ThhsRL4R ji3biyNgZHND_~|=%gy^Z=JjV4pwSGTu6{1-oD!M}1OZX_fvzOwRt@y*9 z%)%Ya=o2qf#wwu6;@Kt2k?>vKYfO8Y zcF0UPk!4`=_=#{>^GlsMFBvX-bFfwjap#pDW@cbGVbk4SYyF1@Xd8p4tDnm{r-UW| Dq=7fn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e291e59b8780d332f88848aa18da679e2697988d GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVbvPn|WlHu4@hUY(2 z4MWX5YJ+pOO8)=PP+V&tx#%iT0b@y!UoeBivm0qZPO7JiV@SoVBn2h|rc-jvB5g?$ zEk;-WJ^Lp>ImdK II;Vst0MKMiEdT%j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c964c98709b4ab84742133a7bfc9833cdafafedb GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn?0V?Y+o(z=6ZrdR}mf zfcdK_nyQRbcmLMzm2p4A9k*ZOhuwzv4!OC0p&|l3jVGl!n13zL=H0)$HMpeQoweDVL@w|P4!Y`Vg}g`LSU zp|Run#f~Ze^n0XOa`HHARW9VTC>ek4eirsH^Q4!H?~2o3w#-|6{=~ZU+(p-}O%2fB aa)|Nt1=f{~{4EDT_ItYexvXu$r hzZmX%yLkhD1w+3(_tJ}3pX~;@!_(EzWt~$(6995DKiU8Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..66f457e73cf47d1c6bf35a2b2b8b02e074bdf694 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^xl@Ln>}1FVOz*L!P}=?th`y zs$cP6<=1mMunGvDU{Kg?c!Pt%Sf;m^LHob6g4OH|oGo`7KByci<}mxq!0@)zU0K@1 R={wLQ22WQ%mvv4FO#rtPB_RL+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/thunder/thunder_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..d29a95ce938507416b9fba53c29524ccc70d3c93 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VV*9IAr-fhC0Z8j_-222lJ9@j z|Nq^OB^XYSNj!VL{y_-KB<7WhDGVIWIju|z(t3PB&dTBnfA|j`Uze2p*qq^2&Y?FC rxi$EiD@26Sg!|kCq?i9#z{D`)Yv=tAodb`7HZXX)`njxgN@xNAPg^kD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..23a08ceef54202e4609d2fbc512367e79de98afd GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Yz~&C1e9LsLbr%q#F5 zkk42WCf`XmIzCW{_S*m^vVxA`yQGy9BF Z45xkB&$Jw5p90jt;OXk;vd$@?2>_~#C29Zw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e3309502fc95224fc45faa09734348d77c6b95 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1JFqQI`1Jqe|HBOe zN7ybZ*mZr;Q<%dO&hU7#m$J5lMk8lJ1mk4}(FPAC2B#i528PSqyy~5H$+82DVDNPH Kb6Mw<&;$Um4}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..bb8c35fe764475b3dcf99bbe589b909e3e4df28a GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ESyk+U??@OQHk5#;;- zu=wkCuLlnv1o~|<2g)&)1o;IsI6S+N2IRzfx;TbZ-0JDP$i-wJaQM=_o&W#eRm=~qoyf?>;K;-L`&8YU z{V$(aO$|)7)R}!iO}22(-U;Db_HJ5sa+aT=$R^*1RhO9xLSDXA&@^7bkd`|6L`N$_ zLZ@*PpCa#vMbRv~8|)qzE2cNP#LZ=R>&%d1|LObsgxwd}YrD^E+;zU38E7Mer>mdK II;Vst0Gbv%*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7f9ba96019edc7e2bc0fae88fa8e54f141a28e34 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhC3F%*{?teOnJ;8J xrFs4Bz5jw2wHJMOaIpEmfzPI>QwKE|7?%E3^5i~S%m~!Q;OXk;vd$@?2>@U#AlCo@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..d88935fe213dcf7393379534c7e65d9373e04ac7 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0ESyk+U??@OQKN|FHO% z+tJfNA;yv*zhDN3XE)M-99K^l$B>F!y}d^n9SnJ#m`naoe0}Jt_kBgV4(lBS>lp=w zO@dy1eB1QML9T=0=|KxNTZRqE8N234%-N^T=a6))Hn8ily{N=umh~S!1+;+%GI+ZB KxvX}1FOZw@M_x2(;=R@e zhd7B hUCWp?8C@+I82oR|UDr6HPz-1=gQu&X%Q~loCIGUwEQ0_5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/cheap/cheap_tuxedo_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec9aba3264a39185f99ca3d65a6002d58e9b79d GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`5}q!OAr-fh5AeGk{NH}`zhebU eMX5*+6GLVt+tT+D%k_b37(8A5T-G@yGywqpz7}-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..49cb3556805bfab4b2478b8a5735927d3b51d13f GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0T4KkI#*b&47g^=!NYh zAfK@$$S;_|;n|HeAV<~H#WAGfRu? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e3309502fc95224fc45faa09734348d77c6b95 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1JFqQI`1Jqe|HBOe zN7ybZ*mZr;Q<%dO&hU7#m$J5lMk8lJ1mk4}(FPAC2B#i528PSqyy~5H$+82DVDNPH Kb6Mw<&;$Um4}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..6820c9d0be3ec08a9876af2b7605571687da8dc2 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08u|VR2()OXcGe5#;;- zu=wkCuLlnvoSE##2b5zh3GxeOaCmkj4akY}ba4!+xYg5nk&DSd;P9n;JOBT`tC$zY z_wlMt%al*-n?f1BYW7Gh-G9lkaq<0?TE3Ep_ZpZzWA#esHj3bTHSI7{%+sRsDT^u( uOkS91E`4S~4gaBIED6pNpDO4b~qoyf?>;K;-L`&8YU z{V$(aO$|)7)R}!iO}22(-U;Db_HJ5sa+aT=$R^*1RhO9xLSDXA&@^7bkd`|6L`N$_ zLZ@*PpCa#vMbRv~8|)qzE2cNP#LZ=R>&%d1|LObsgxwd}YrD^E+;zU38E7Mer>mdK II;Vst0Gbv%*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7f9ba96019edc7e2bc0fae88fa8e54f141a28e34 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhC3F%*{?teOnJ;8J xrFs4Bz5jw2wHJMOaIpEmfzPI>QwKE|7?%E3^5i~S%m~!Q;OXk;vd$@?2>@U#AlCo@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..47a8da4cb12df7a96b0865e68a35efca497c68c8 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE08u|VR2()OXcJH|FHNj z>roq^5MxP@UoeBivm0qZj;p7OV@SoV-rl2(4u(8V%q9OPzCQHS`@W)FhxLwv^^AhT zCPA-0zHNHsAlJe0^q>WsEyIT7j9qgi=Im4Fb4WT?8`$;OUQ}W+%leO=0@^?W89ZJ6 KT-G@yGywo?z%nNQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..755b2e52942f0355f1b9ac725651be2f436872f9 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>}1FOZw@M_x2(;=R@e zhd7B hUCWp?8C@+I82oR|UDr6HPz-1=gQu&X%Q~loCIGUwEQ0_5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/elegant/elegant_tuxedo_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec9aba3264a39185f99ca3d65a6002d58e9b79d GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`5}q!OAr-fh5AeGk{NH}`zhebU eMX5*+6GLVt+tT+D%k_b37(8A5T-G@yGywqpz7}-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8386a7ea7fe94018e91a9212ff237a715490dfed GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%sgEjLn>}1JFqQ2@MHhS`cMUy zjgBTA{Yr27T8}1JFqQI`1Jqe|HBOe zN7ybZ*mZr;Q<%dO&hU7#m$J5lMk8lJ1mk4}(FPAC2B#i528PSqyy~5H$+82DVDNPH Kb6Mw<&;$Um4}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..e056d39ba3024cec7ad52d6518e42b74f10e3a1c GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09)IRW&v?c6WCd5)%6V zu=wkCuLlnv1m3^(7AVJ9666=m;PC858jus`>EaktajU2EA{Uc^z~M{xcK-i=S1~V) z@8eaQmMNduH-$2M)$Ea2y8n`6)c#_E;MZ4|-xYT99@n5RYMQx;Vo vn7lC2T>8v}8vaAaSQ4BkK2^{=%E!PvQK0Q+)b6Q3n;1M@{an^LB{Ts5HEl~qoyf?>;K;-L`&8YU z{V$(aO$|)7)R}!iO}22(-U;Db_HJ5sa+aT=$R^*1RhO9xLSDXA&@^7bkd`|6L`N$_ zLZ@*PpCa#vMbRv~8|)qzE2cNP#LZ=R>&%d1|LObsgxwd}YrD^E+;zU38E7Mer>mdK II;Vst0Gbv%*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..7f9ba96019edc7e2bc0fae88fa8e54f141a28e34 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhC3F%*{?teOnJ;8J xrFs4Bz5jw2wHJMOaIpEmfzPI>QwKE|7?%E3^5i~S%m~!Q;OXk;vd$@?2>@U#AlCo@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..acd7dc6559eaaaa4b88f052e9cd317f090cfa87e GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`NuDl_Ar-fhC29`bxbef@&Sy$m zd3kw`gwFC+tGaFrOi(fU_kV*#&&8ve&zV-Ft*L82C1}EM*UZ4JL)eUAb#PRqKfLP%+Q#7N>gTe~DWM4f DhCMiU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..755b2e52942f0355f1b9ac725651be2f436872f9 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6d_7$pLn>}1FOZw@M_x2(;=R@e zhd7B hUCWp?8C@+I82oR|UDr6HPz-1=gQu&X%Q~loCIGUwEQ0_5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/fancy/fancy_tuxedo_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec9aba3264a39185f99ca3d65a6002d58e9b79d GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`5}q!OAr-fh5AeGk{NH}`zhebU eMX5*+6GLVt+tT+D%k_b37(8A5T-G@yGywqpz7}-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/cashmere_jacket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/cashmere_jacket.png new file mode 100644 index 0000000000000000000000000000000000000000..914169cbfb5b53605a1184478919ffb87f2bc2c5 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Er}apScsSN{M1-`Cey zQ&STf8fq=|s1qo`SQ6wH%;50sMjDWl!r%Xsr!QSqHg~Dn zA@&va9TT!Q1Ux&nY2~45rcBz`EQ?ayIC3VxZ+ELWyDxf~Y2xRy3r#FnK7_3b%}$!n`~Oj^?!$wF^#b?yR)4Q|Vr#zQaP@Iu_Xg32QgaeS7#P+!C}zu@nQ8(wfx*+& K&t;ucLK6VWr6|S# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes.png new file mode 100644 index 0000000000000000000000000000000000000000..529fda98b55b975fcaf302ac99823bd165205aba GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`zMd|QAr-fh9oQEqh~(Va@zI{+ z`jsmUhCVXK+D|Uda0+K(y1p*P(VRhtjme-?!pxcRjGBn+iKGCALe5>hE>(;VolICc hdRH)P-}R7@!L+B}^QzdSr9gujJYD@<);T3K0RXgBD6#+m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/oxford_shoes_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers.png new file mode 100644 index 0000000000000000000000000000000000000000..59fd65b054397b6d7b875a5d4e1b78f0d3c6ead1 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`X`U{QAr-gIPT=M`V8G*4{vk%I zTywWydxJoW-%oP|i`)B7%=^7;_xJgWj=ztJW|us->J`sJ))x^j`@Ky1K-wF&%_L#ezJbXtbWVw@bpD;Ad4A1UHx3v IIVCg!0RFr@d;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/satin_trousers_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat.png new file mode 100644 index 0000000000000000000000000000000000000000..d0bbff27c9d90c5ec234c48706ab6c26a2908259 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`d7dtgAr-fhB$h2$w(Oa`na`GI z=Ii7C?=O3Ls@~yqas#7*$l(jOzt!!1Xw%YFCYiACOx>qhW#)&?|1%w7SoWU5Ebfsm zQ^?Jwlap$DW=UR~lO7^^FG7(2p6G(L`H42#2Nc&y%oAwTnQ@r=L{t40=9xY$pClEo R?F8D);OXk;vd$@?2>|4tL9_q> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/tuxedo/seymour/velvet_top_hat_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..93d07ee395a8cff34cfad7e41d11190a047069a7 GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`8lEnWAr-fh7jR0jE>1W<&-VZN u*qu#{j*pDf&;9Y=r08JgWSo0IgMop+MfbljgH8xg4}+(xpUXO@geCy2;v3`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8e5962ee155660798e40c39d4d019ba7f29d76b2 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07iu5s4Sl}si|pd zYHDk1tEi~R%ggJ!+2K4;nz1CvFPOpM*^M+HC&1IiF{I+w9G}aK42C>=7u=}7uk~-g zQpK-2Ife~Fza@-cwKwHxUShJadN-NjMa2S}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e68eb8330ff7fab2a2fa434411790a4540aa274b GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>}1FHjcv$=}2w*0x1S z;L|_%w8feRu7L?%D;GR8&-q7wl-0 zSZQHlAtfaxA|lfMii;B{%~%rT7tG-B>_!@plj!N<7*cU7Nr8#s)C^`3E@ugr11Wmt z|Ap;y9c=zdEQw#dDoNc$mU#)A3!8@GrF}$|D4@+F%y#})6!Q!%NRUe{an^LB{Ts5#_m3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..86a176b9a2b110fe57074956fabf0b22ff479101 GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6>^)r^Ln>}1FJQCyC(kndkGoj( zCwV2V&~q?b#^U;K0F>`CxPZ z367Ts{z*GmoC}v>Vou!AxLfwc`B`Dx$~W3FuH)FfuuM_-dfT%3$6q8T?0fJs* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..57e722feddc7b4c4209a4e128cd321f4edbd754d GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AuJSScbR5--@HsHmu^ zsVOBTWoc>2%gcMXag($^NF@2 ttVf0XUtXCTf8V!#p37?uyM2!Fd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..fd8d771b74f6ec743fa1a14b17f00ddd6be472b1 GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Y&=~YLn>}1FOakN_y5O#)&Gub zfH;TerK$tRW5$~=ybi>a2)<%YF@G@C?Sp}A>q%#Emkk_R3OTHQ85qiAb@rcE$m<1~ O!{F)a=d#Wzp$PySsV5=; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/unstable_dragon/unstable_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ea3290ce2d4db2dbc4b5c95d8ef06ba4d9d30f GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn>~q_1ntG!pQNP^-|!) zr711<>kXdVkuCr9d)ASo{I|Z;8*O*L5_$IAs`Y-+M(SZTrUBI+Vb8BQ)VgJ5zl`AP yapgJO%_z;5lbxWGB(blVF}1 zA7H;B)Ubo$L_(N$g0~Ta(GGD*gX~xa!%cbx`pm}L;vcMIGptyx{~?dvP-rXvha4gH zS0Srx4j9L-Y-rq`<;Lv({1Z2i%sNIMo;8ZR6>C@+&TSA2yD_;*1!xC@r>mdKI;Vst E0Gpaa4*&oF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..26469153d2f70d810bcbde9445c3a0466cc59a30 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}1OE@j~@&C&I6Mt6z zKm32O=8s?UDjdOoM1vha{{I``D6m>0*3n{8f`yOaGV2KuGZOyS`^X)tXptBA*AQ*| afq}s&#`0zGNq!Tci42~uelF{r5}E*?*e*)| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c14ef05084f94533501b66169b95d9b6c6e7f9b8 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2ItzNqN_kyLWMytE)b zF48$lJY5_^DsCkoV80>Mu!G@5 zLYQ`fw-E!Up`?Mf!2|YAF76#Ojx<_LwGc1x4PbgX|Kfp*oJ%ZXm?b14oTWZwurY|8 WdGvVvgj218O^-Gn~&n$iil}J8ACWm;H@B!EQ~b(z1ml zD&jP_G$p^wCL}!YF!DCbV|evE_qFB3LdGK&n-~A)nGrbg+C{#!H81ZKave#iD1Uaw jdP8na{yAHRO)?BRdMY>9pDWh|+RotV>gTe~DWM4f=v-DU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..69afb14e668df6dd431c774c6b93a81c180fac13 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6B0OCjLn>}1Ezo8tu@htEVKv~H zDyeue$To26=iBMejGAYzZ7zAp_Iu09+|ITG5hm{E+|LCrKFpN3uO{hSut??x3r+6* sY?mLN>zopr0GW6(;Q#;t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..4ede4fd1b44460a30324de933a10d201e49e71ac GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2ItzNqN_kyLWMytE)b zF48$hTS&&t1d5`RR^?(!PC{xWt~$(695}d BKE(h4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d4d91a43e57e2cf190416c1699dfa118026764 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07kFax-%1at>Kr(fwn_ z+80SB*UL)_q*S8g<05UW&7~X-xPgioOM?7@862M7NCR?0JY5_^DsJ`mG_tuE3NTMz z@^sz*|2s>oV|foe=1r3{t7z9hv~a6V=eG#Xt=tdzcMBP;?z$zMSo{0rbCnturX2Mf svbV&~FZ{76@hHFa772BkN9KPRe|+TTbo}ga186>jr>mdKI;Vst01`_>iU0rr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..79c65a79863e59492a9612aca54a8b9c8fa29732 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j67W&Ln>}1O9U?X@xM-i=Rbc^ zyYtNzTna%eRE{=OXe-=VZ_uuIBjEs3@FbQa9A>7B47@8;ZmzuKI0vYk!PC{xWt~$( F695<1Arb%p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/vanguard/vanguard_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ef9830fbbd495ed343d2cfa1a0eb77ae5f11c08e GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2ItzNqN_kyLWMytE)b zF48$F!$p_dj0fD1Q`@#jA3YjMy zj8f4^kz+{Op(#1NK|)6GW$Ieq6}ucbIBv9XHE^6r2-jv%nh;>gA;`*b+J(E7BkSNM PpkWN2u6{1-oD!M<#~wGE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..80d45c98cd2e002577b35c209233b129387da3c0 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=16G3N18b4HYGH8k8$*n7pav2o*uhQ`L&7>52{hB*wp V*#|lcmjTUW@O1TaS?83{1OQ^fG}QnA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ba880d5b3e5dd41e38c3ecb60896a9d50b37de4f GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOop^Ln>}1FHkP{#oxps)>dLB z@T#e`)G=puEn5Hp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8564ac540ce7e21d2ccc7b613ccae273caab4ca6 GIT binary patch literal 83 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ql2i3Ar-fh9U1}+xZDo5%sceo gV3x|(!^{i}{I|Ib=k>4^097$~y85}Sb4q9e00aRQ!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..a463b0347e35daf2b5dff005759e7d99061a2f36 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C5I7EqHC*O8MjRFtsL zkQL|Wn$S}y%+0#pG;$$Onz1CvFPOpM*^M+HC(YBvF{I*Fk54<}VFM24-edpcV^WG7 zo^*!QGO(Xu|JgcWZ_8Tm8$sb)Q}*{o9=Py2<3yuVc}HHfqRD-(I-|GY{f`B_*DNm8 z_~^F9rMby~q?Kc!Vtia>EQ=qt9 z@8Qgws>G)LO>=@+ihPdl~aCzh>diPT4Q|BVyKu zkcdQ%TlYR_F+3BzZ*V!VYOZtH;_bT+9ht$E!CJ!0(7OH4AyJ3L4i<;~{F$ztX=Suz n*ze4^097$~y85}Sb4q9e00aRQ!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..f93020d589ab86673206f9910b87598d75c68ce3 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1E8vWAKhI&ua#^Tjq2f0ZK5I1o;IsI6S+N2IP2qx;TbZ+)6&c*3-z~vU!#Umlb=1gkO`BmI7OJ z$D#?@OdSs&O?$+Yw82V!!_0=O6094vnkBs$9aw^xlNv;umjsBmt8Q4zmatKZVah*V V&kBcYLO^2~JYD@<);T3K0RYT7F{=Oo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a4214b29cb36602cad063437a67cea8a59b8d9cf GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65~q?K{ZZ;K0F>+o6`x zWS(EO;j5vdxc>I%-l_I2b6YI`%}(jP;wL1MuI?ejm=-Itu)%QRIz!e)$!Bt_CqB-2 z`#5KkX`i31=QXA)dMg{eUUiF4>bu+Ukf~-Sx88@^o BH>v;t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/werewolf/werewolf_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd2f281bf7ba4abf8450cfff35a9ed2b729d01 GIT binary patch literal 71 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6_&i-4Ln>}1J1{Ly5Mf|o5@28y TUmfrZD8u0C>gTe~DWM4f*2xbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..956f28aa4d104853373da02bb907d1589ff66c99 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`C7v#hAr-fhCE65n&OQ2X(Bs>) z;8~M!_<5K}NhuF5*{pASnNHg&0TfjJjOOWmI8CDKg_Qo#0 zM`esYaysqd#?G(${__+TKj>=6nIN%DF~dwD`}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..481b7865ad578c13abce44cef957b8353addc63c GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ah@)YAr-fhCE65n&OQ2X(Bs>) z;8~M!_<5K}NhuF5*{pASnNHg&0TfjJjOOWmI8CDKg_Qo#0 zM`esYaysq)#(wHa5>08$U1>IL3w9QWFfiDDyYT#4^`X~5n;1M@{an^LB{Ts5CQdYg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..b57e7b7858e8fb870e49b42d8de8cd18f762c7d1 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeT?`eJdvEam&ga7}p z{QsXJbq7P-oWu<~!{#im;aY46RKZvhiB~Vg{?=bLMFdH{MQ|#v$`g@A_ZQFIV|ArZGNilHVr{w2Q&h)z4*}Q$iB} DSpZ8U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&s{6OM?7@862M7NCR>rJzX3_DsJ_jVB}&6o1nXFy9BJYD@<);T3K0RXKwMQZ>6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..10fb29c5f2e23cb24cf2e147c52ad7f39423cd15 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeT?txrE5 z{Qp03!%l{{ISi>g!saYq8a6czsDiO1$S;_|;n@ukC&JUkF{I*FuTLlwt0RYy%55;!cKZ5L8Jl>_OxG}%{|l>4tnZw`?s?n8z7S{!gQu&X%Q~loCIIE=N&x@> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a85f3089ec2ac1815c9cb102ade47059cefde1b3 GIT binary patch literal 98 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6G(BA$Ln>}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_dragon/wise_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..32f7fb80bb076ecc6bd6ab3ccbd401f63e318c84 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0uq|6lq4f9una1t+c~ zZrB+%XR%j%PfCbc9Z-(3B*-tA!Qt7BG$6;<)5S5Q;#Tqjt{XxNc+^EXWEVYp!ZppH z%*@b_!O-WB_uPX#%bCiiG6^^@ZMe&MMnEsYoW+=j`$p?Qp5shqf&$DQo2;88pRzi% b98F_ri|12Z`F+7Tpur5Du6{1-oD!M<`8_?F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..37f28dff028c2f34706d6b3c4740ebbf6194c23a GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2|m-npN;r?chksX86? z_GRk=1S~BrOH`P}O@g(xwB%%Efoe*w6+8k`j3q&S!3+-1ZlnP@5uPrNAr-fh4{)=H z&R}sgc`V7g%$Ui6?Xn#6v&&o#Y@fB56_|`79D5i9lEWEZX9+y6C}nv4O^S_e-lwa= z7Ufgr6COnFUE8Q!eVvibYZ+qNkzHfBr=!Ba((FVdQ&MBb@0Lt$^ A*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXU7lGm#qsBP>QOvw6xUL(vp*v1**}`*dGj}7)yfuf*Bm1-ADs+ialK%Ln>}1A7JS@ zq{qXf*T%$iW_Q1#!IL*;2?;ZIE^mDN#fP13TIA~QbM9@u)YzE&{ZyoO`dhz*2QTgw zdp!Tr$HvAsZ>?4PB7Oq~$#lM#a~ciATpcBDC-;RlOT4M>yFN#cAyQ~>(Y3G*xo>ut diz`I(F&uiUk)OX;o(X6@gQu&X%Q~loCIIDvRw4iZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U? zQ}>b{y!*b*=2V@|dI6qeKxxL3AirP+hi5m^fE-^>7srr_TfJRJ85s;XmO2 fHXi?$^H-6%N}b_SWr}w!&|n5nS3j3^P6D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..f401436a74f93af1327961a334b019b7dca297f4 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE06{PIayh4EiI*}I!jAS zS-(PYlVJ7sWjb5Vx}Un2^x)mP00F~K;(kDNj3q&S!3+-1ZlnP@L7py-Ar-fJdl8O&+qJ2?SEPv?mb}pB+A(1nL4iw}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/shiny/shiny_wise_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1027aa1b64dd270df901252e71941b451006a7db GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2|m-npN;r?cg(di%0< z0Rl=FVdQ&MBb@0Ku0*w*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXC?P>FUiQGQ)pr^icNSfH6|22m+F-+)S#g$oi>5L&XJ2{MdujJH zHUonK{b~0ywl*@JxUn~|%Dlz!qR^p;ti6_8M;=7%)vXR^J~3&{%c-XiY%5$7b+sYI ZlEH#s+0a35?M$HU44$rjF6*2UngB+IQ>g#| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?Ljf5o1Y^UoeBivm0qZPN1iYV@SoV-X2D-0}4FM zzSlxy|Np-qnx4SSCRcF5IO5xj>kG>7o;BFGj6sfbVL+u{L^#JY?Vyc^c6dv=9^|?F pN9RY>j`RlW|Nk6Vo~WyQVl#hL#Mty>t(88=J)W+9F6*2UngD4SK%oEt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wise_wither/wise_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a584adcca35decdf6e32b00408d95010f99ff9ab GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2|m-npN;r?cg(diye^ zs5)7{LUEJeuV3yt0p%D=g8YIR9G=}s19FT#T^vIyZY3XJ6JceY>R?jLz|6dwv4inZ zqlAt^8?(UXW(ih}T~3Z1tV|Jy{$k-cO$j)Xw1P>gTe~DWM4f>@6#* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..5d757c3191b950bcfe8ef7f5b90474a319f4509b GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08`_r?W0VASNQn&)vz_ z%-_<|(!tEAM1|Q&Izd}YOHNi6s3tdf637h3k|4ie28U-i(twaM^kN%d$?d52ePQRLrtqJ#D`oikgK_GL zi^j+5jqPtRbGc4ww{+s)RoD1_Dj%dFOsH&?*K`S3j3^ HP6VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXaa*|FcQDHt+ zr{m}D6cZ7&EG!s{T{q{?Rh~Gz&iu>2XNzR_^ea{QSNlmOFvV7}Y)_i; R)dXl3gQu&X%Q~loCIDn>IC%g7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..849d0b72c2b522dc4f4814d58a48654c5dd2372e GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8QQ*_^7=Sr;G>6A|R+ z?&NFcZ)s`ir(EPAJG)~CCTzBDXxv=m&wTvlCr+L@p{u{oxwo~3iTU=sr=h1;m#G^Rl)Sgp zD6Vp6W@bLGHnaH_yF^2eF?;Gc2MO-23O#47+SfSpJhN@j^^l`}{B^Sirj c9@Cf^1bfw|M9*H&1hk&P)78&qol`;+0A*rN7XSbN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4ff64c7ecc836e5c2f280f3b2cfae8f6211e2b GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln?0Vov=}qRgr^b?fE>N zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?r5Q_t{DK)Ap4~_Ta(q2q978H@^>!U)WH8`hF1%6yaM%7S z3(lH^WoJqg!!{djo#K%HHbd*`8~3%m{=b*VUD@-_;Jeq9%gkn%H&&MFq(89BPK>wO fc>G(=Uq$9Bb%sloDc-R_gBd(s{an^LB{Ts56K6kS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..33a47962ad2df29e077a2d99fcbd8016ffa45e7c GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE06{PIayh4EiFIgB1=n4 zC+P$wHVa=fe?NDpn1~<;Goy6@0)6iffXren3GxeOaCmkj4af=dba4!+xYgUk$km`A zz;gGkmFeIA)z)WQnV8rmb`%=E4P5WIcGv90Bwt1wCZ~lT=4@CqL2^CEQ_*8{FKKY4 t&3Kl6@cJQJraM2svsbnMX>qvsfbF9vW6#N=@83ag@^tlcS?83{1OVJ?L6-mk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/shiny/shiny_wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2df3c64872c646e900e01f176946e46eeb4eaeb8 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=8yR1Y#nB{M?;<&HVk8 ziyX|1oTL+!*euLfF0lkkGnNGT1v5B2yO9Ru7<;-nhE&{2KET#9WlE2uNi+j9b2d{4 z_H6 BDBA!4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..830d9efe5ff94cdc1d11ca9f93cb84fbc646d2be GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE06{POG`^RSy^o@EnhQ# z2Qwol=>$J_rF!bG=(dT?{$6YnJ|g zUsb31!N`$!QG|`4d4apgw@2sG4?Z_mx$x25Zn@O+ee-8|IkXE21uSO$y;1S!W}!1h r6^e;FKCU|A`uWyl3FeF`0^I3LHMU|KRVBk@K`!!i^>bP0l+XkK42C>` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d932b1f949e62a54cb8cd2cdaf61846875356 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn>~aJ+o2pKmZ5Rg)_&^ zc#dkEbJYtg3VXR^()r#0W4L(USGO?kXw*6WSK5F<_`p-C{x^Kb*D%atv3<5YKD?Q` alCk%K>(SC_bJKtZGI+ZBxvXqpZ)&Ke$cUM`RH#1^= zIi}xWP0eqUI&0U<*|8wlQLVm;rQ*__$9`Mn7liq(JjyEn!jdWEa@U$|K$93eUHx3v IIVCg!02KExD*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..79cd03b7f72a8ca6fc11ad56bff2a817e63fa01f GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2AQL4NK|zGnWGmX?0X zMGj_0PSOe5T3T|lvPx_gKn1zCZj=Kl#*!evUN zuAnv9_V4`*gew|PIyU6X#-!AUXlomXrA1XwnXB9K`WjD&`uhvfn#>;74Iz;Y7kV4j zHfW1x1oBR>n&0rNo3$Xb@rk1U?3p zPEcaAh=~aLQBD)z4*}Q$iB}rT{s< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..20cb0aaa4b538672805d4907ba02abe52e0a4a95 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E06{PIayh4EiFIgB1=n4 zC+P%VGk-sKCkHd5n1~=HHj5tnGX+3Jj3q&S!3+-1ZlnP@fu1goAr-fJdlT)_q7h;JF!7nt6?Yp`)0gB<6=fJ(oJaE@o%K^qV4@RoEv$aDFR p&X1@a=?&KZ|2eQcQCIoIX8!66WAn=If98YSvd$@?2>`z1KA!*p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7d121a52cb8384332437c82c7652f5e5d51b72 GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}1FVOz*tG^*)DffT< z)U7K1XL>x+(6kA%IrH&k1wM0ORHO<*`j+%&&5#zER6Z3|p2A*dEToQvh a85qu$XPFD~SgivZ$>8bg=d#Wzp$PyOX(p!t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/wither/wither_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a61ca227b6273a6a9f0b98938609c6367c5dc69a GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2AQL4NK|zGnV@%0&)l zMo!WRN^BOL_g{Sg$}yG%`2{mLJiCzw3t(qLDtVPG)Z!{VSmZ~tkab_P#ZKbLh*2~7Z7n<$b1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..b53c997f3f7877b0a942a588a35cdf046e68f884 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`1)eUBAr-go_Fv>Y;K1QLcjbk@ zd2IW4x62+5ymKH)u|Q#G-Ph+#PKGB}t4n)@3Okp*-ZXQs@iC8W@k~lhjHiCH?WpEv zijiagpm4xGu0i04Uc-ZnpDMlOrmOt}1FR+tfJ^o++C;y`9 vf9(Is?>32H4B>R*(&A(-a8*eC!oYB2nOy(#S1)D*^)Pt4`njxgN@xNAve+Fi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1f81899a49d2258f67e02f7de8e452bfa21b74d1 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6JUv|;Ln>}1FHoNGMV>`ahv(&6 zhZ`T{XZ9|8z}(fuKZ8rJfimdKI;Vst0JT{qJ^%m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..d4eb91dd8ca676296db8140da01e0c72e57f171e GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AtzXt;3U!uIXk|NsC0 z;ll^h9SlZu7#1&HJZaJ-&RpxCKoyK7L4Lsu4$p3+0XYetE{-7;w|aeA8JQS(qK^OP z=Pr9~#qjg+s#Vhuo4FYZhCZ#6tvbdw!F9IUC8Odp_OsL2ix0C}v&n_rHB`EDK5LIm z^Xj>N?vG2{B4)4(K4+fhaO3TSX&f@|^sfK){Bo5~V;bYLCi#8RK)V<`UHx3vIVCg! E0OXZS5C8xG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..8e923a33869bcdfe8774eff1a846ff4303b0dd83 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6v^-rLLn>}1FJQCyC(kndkGoj( wCwV2V&~q?P=t6Hso+Iu1Y(> z#W&GZMpb&xw+BJqf*K!0`(IS2*hF?$nOgi1Ym%2x36H#|a?`&riYxz(Ze&eMu4d2V z*h49sN-tP!eQlRF^^r~llT^C4%7jzj*qP_t&2t5Uy4dhuQUT% O%;4$j=d#Wzp$P!hx2+6$u z_q=xF<^9?03h#A{S1EmdBN&qE@~%19bLo5Mt;YmQ`AQB{@`rRdbk<5JAB)u3`(_uv v{g}1FOakN_y5O#)&Gub ufH;TerK$tRW5$~=ybi>a2>xmcWMG)IS%TS7WSa_56N9I#pUXO@geCw%R37F4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/young_dragon/young_dragon_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c62f10b09857f8129e471ffa005048d5b796cf13 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l097~q?F(mYRupK~ww2mY zpp?X{SvuiTecR6?Z$BE^?N-&y+_-F?tEHQh&9ro$((vbtw#>M~7{cM|EW>d8szsZH zoFnrM0XAucr|c(!*g-4@_FwitfOJ7taQ;O3PZOu}XI%}q0$Ru5>FVdQ&MBb@0A86h A4gdfE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..de6dc0877b6eea8e31fa55884d928a8ff7f4c243 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=0_jnyw`!EGR1Oh>Q0u zG_}jrwNBF4ca#5Aze@rr%~%rT7tG-B>_!@pl7^q$G!&w3EBnt`iB+j@fptC_(DjhPl3EHteRHteu4XyClVz;Jz^ Wz~;u!3K>8X89ZJ6T-G@yGywoMEH+jE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f408176ecb4c74a11390857c9c912f975d249c20 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIG6|Ln>}1FHp|-$=}2w*7oJ- z|Mmx5^O!0;OXk;vd$@?2>=&`C1d~q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..81b76a4495a4140b686ea85e9eddf6d24f201f24 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&YmugAr-fh7f4F5E`AUdbf}&w zX~u)Z;LG(h4zao({cru~(L{?R7f}-M% zxOmS(Q@c!E>m+@PAT>P~`M0kuV}XhoOM?7@862M7NCR@>JzX3_DsJ_hY8PZS;9z#R zeDF8F%)%?LC(izJ{HOBfpSr=ZExP$Pj3TeLv^_a6Te#&;Go#ZEcfO$8=bkN^?RwUh zCn4s@bLNFfO=~|g7V~e{-%<6!D&BElJ;!H>vi(d9f8H^NUu_DQ1hk65)78&qol`;+ E0JalMO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..ff626c1b7af60bcc6c80a10311b4792f1f7320d0 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6f;?RuLn>}1Enu7RU!Kj-b-|tP z|NM-GGrAR<9yGBk{8^rGPqC%RIY8CF(JA3+LWN-L!C;G8!9-RghS%-08Xr!s5=oqJ muPVg#>xz3V8VorSj0_*Xwz9vwH&YX6I)kUHpUXO@geCxuP*mIz z7ypFYOBE=}SQ6wH%;50sMjDV~=IP=XQgJJJfxw1cEDjtB9A>RtR$UHHM0i_UnH+dh wrwb?>96o94!n(%H#q*@-A`KH0hLbi7rVH5pgmo7l1)9L%>FVdQ&MBb@07|SY+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e2e9b0acb6cf71bb70262ce2f61f9f24493f3d GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0DGbQqy;nw@%Wx%hdHO zG=13AbS)`iK~Zr>T>Qq4%#%PBj3q&S!3+-1ZlnP@UY;(FAr-e;`x@B}7zjAe-W~Y& z|NFang5nt$-RE^}v0Ar4wab%D@`PZ3ysd`(qUAqk#C2@fU{2~beZHx5X~)?l}1FOZw@UtToHBcA1u z^Z)rwh8=b->z1%CV(6IfB)VmRwna5B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie/zombie_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..021fb74ac76fae671cf0d64a009341ae8ed962f4 GIT binary patch literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=0_jnyw`!EGR1Oh>QP| z@zn_!@pqv+}47*cU7d4W_yU=f3oLUZH=h7O4t7nV9GH7T?tBrq}5 XG%#grh`regRLtP%>gTe~DWM4fwACf^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..4021e045e702c27b3eab47fc87f3995ddf7f9004 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09iNU~pn!sApi<&%iL3 zfx*Vt+Su7h!(5%8pI=H%qW{F5JwQc_B|(0{3=Yq3qyag8o-U3d6}RU49A#us;8^1L z?f&(?{jM}1D=_vno%o;KDB!_t z*uwI$(PUG}`~QpnZ%a_T{omC=Zqg)=2`U~^>kf#WdGD&Rq18)?A%bN|gB%0H6&Z_i UCXK4aK(iP;UHx3vIVCg!0B?XNI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1c93b8d5f3a9bc3edcc285b4b95ad00d479b5197 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0C5_lh80%H+D9%@wMjX z=RbRK=UkvDV@Z%-FoVOh8)-m}si%u$NX4x=-Hn_K1{{ZjKK`FBEAgR0v_nc~zGqXz wr@Rc`wP*kBye+8CCZql=@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..9165c7db3eb96990cbf3747abf01d1213f00dcb3 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0DJFwKjG(+7A>rSD(wk zP|v_1r6!RCR4mEw%C%-EPz7U2kY6x^!?PP{Ku)x$i(^Q|t==9+E@lND=H#`<{{26k zJ!KjrbJ?OL%h~D+j+DsZd>&@lhjiS^7-wx=)POyP3kz&)@*Lj=|H_&t;ucLK6Uxz(Oqm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..de9ea11a433cec1b1b3b961f7115a2ed5dc04727 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6tUX;ELn>}1FJSBV!{2P-a_wLH z0i_*Hi~buJ8f+KWU_Ej|&B3)QQO(8aiV}m<6tM;3uM%p!94;N^VPGiSZ_lZ;!&L-m O41=eupUXO@geCxGEhDV} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..09c5cfc1e19a4411ce84ae69d6dadbe426474382 GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`*`6+rAr-fh5AeD*PMLM2KE=#a z%Jj_DgAzyFoI zFw`?JNU2E(Nb(yUsJ;f2W-JNv3ubV5b|VeQvGa6s45_%4e1QALwx`szHc>L5YC?D?^$Wf6{r&l|4X{ O7(8A5T-G@yGywox8Zp`c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..10ae38b22224d668d2339f4301a0e1dc7bf58647 GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6WIbIRLn>}1FEG~l#ouTl`sH6d jcgx=YoUEaktaVz-%cZ7t5%mJQsHa6i64T{Xo1q{r>%!l2R zlk3<7ngas@7>)%n7_&6wba0%J31@2yU|Yn%V7Hd}S?1SUl0b79JYD@<);T3K0RT_t BDI5R* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..59bc9647fd869b5a4b3da579251a1f0a5021ce8b GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E^r=TBl_n9IPhA1Gz6 zZtQGi<7+J-$?wF#Af+a8L?hrHP!VHEkY6x^!?PP{Ku)-)i(^Q|t=`jtT+D_XEf41! z-YR`xe=o}T=r>dOhwf}eb1V04crVMeA}MsQ{>deq}v?RRHnFyvq{6jSVo z(#)9iI`w|I@ye2p>mDwGff;*+i!-)FPJL~Ave4Y=$9(};#XtGMYv%sGA1n0x`w<3- XH&!nn9FchnG>*a3)z4*}Q$iB}wV5lm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_commander/zombie_commander_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4fbebc28ecc24de8a21721a0ff3b7f97f71f82 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=2RY*2d088s_R!Y7zpH z{6KI;#9s+0!B`UH7tG-B>_!@pF!$p^T5cxUuFnrvRg+&zJjS(y1SJ6qfT1VKeM rHrEXu3LK3Mi~%Bx&Nj9-#xO8+_Oh7eIPNY0>SyqD^>bP0l+XkKu*oZ@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a72b669cd9b83af50b3ff39ac17aed5e429bbb GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AvUkQa{E;`3ADDbU)M zrttqm)c+f{uXbBpo@SKN{yYq*g0UpXFPOpM*^M+HC&SalF{I*Fk^&RMtO?xA4Nd}G zi}-m8{-@U8s`T|+F?YVgBH557&eN^R1D+{4o?gv6NA$g`>y=$xXRb|Ok}@+;`Q-wZ zhS>&Rvl;7_@!xNn{bApaf2sOJC^Oy3sGJB)8}Ra?PTzD L^>bP0l+XkKRUb?- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..881775d1d943f0a8b3f8c9979143bfa9906d4ffa GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6%spKkLn>}1OE^8S7fARJ$ZD{4 z!HTxxi!PZDLO42|gV6CP=Lo((nYDxLME6Q?JYBFVF}EPgg&e IbxsLQ068@t>i_@% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..06e1454dc0fb47cb806d9245d437976f9a7c1262 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DfC&FIx`i~l!l|9^9+SQ6wH%;50sMjDV4gTe~DWM4fF!@Bh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..d612a0f478f83dcdbef41ab1e6256e3fa951ac60 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9a-*uL6rae122wlsw{ z4|$#fE#Y`AK0l=pZT^^cjSip+#*!evUdcy;0I_mE$P|Hs=jl6F6_kTw}P# du*Zyvq0Niu_NOx0y+A`5JYD@<);T3K0RZ-~I#~b! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c6c3d12fbc804d5b5bbdac11dd4dfce1fbeeab97 GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6WIbIRLn>}1OB6k@7kLm^^zeV{ j|B5g14NgABZj21AvSR0X-hD~|DrE3<^>bP0l+XkKq=Ff) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e988015b93cd2306b35ac26ca921468d8373d586 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DfC&FIx`i~l!lx1}kB zX!Eyu$XgY-M*<}nOM?7@862M7NCR?QJzX3_DsIg^)5yu7$m1ON`RbefA7e9*FxDh& zl`q&6^!oXkb2pt!=Iu~h{Gre-<7u2+;@f4?H}qypvzTcp9#xBPo%{J2`vzvFw-r?@ R&430nc)I$ztaD0e0swqpI(Gm7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..c29f82c480bf910f5f52b200fab2bca49ead1568 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AvUkpF+f_SJ5S{~w~Z zr77?fXkDIWBpk2B=ckmZxHTK7g0UpXFPOpM*^M+H$KTV%F{I*F?+Hh~BLN&u4+Y-@ zzpH;}xNOVqx^DZ%`{u1@SYF>;TkN;`?~1HvA>Rd6*d)&fh93!i&)BkiLg#Kfhw{!T lyQ8woUFR1}Z~J{vUhpjwhrr+8`+!C>c)I$ztaD0e0szVgMSTDO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..4263a845673ff371b66e82e75f7eeb6d79a73dde GIT binary patch literal 110 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Og&v3Ln>}vJ;lg&AV9$RVEzBg zPu+rBgt%5*ihPuKzP%%Bu4t{&t-JM|&-V%*{MPVRaPQmln2(L_tNRQdd@W%DSQ9` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_knight/zombie_knight_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..0286debeadc4d30909aa70258c2f8530df5df139 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F$w!}ir~i_6oDwxucj z{}9#YA^#!e@@1d|V@Z%-FoVOh8)-m}ou`XqNX4zWCt4XB0tA=>8u@?c=aj$Rz3-Lm zL9-P1SJYVj?74|1r^ixj8OVvDOxT3=Dwi0L(gQu&X J%Q~loCIGv>I1>N> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..2f593f767e4be03f390ef1886d4a64df268fde8d GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Be1sh*$2M41jRc2#nBMozPDK!ZJNq#2=hEK06-vae8mIV0)GdMiEkp|>M zdb&7}1D=_vno%o;KDB!_t z*uwI$(PUG}`~QpnZ%a_T{omC=Zqg)=2`U~^>kf#WdGD&Rq18)?A%bN|gB%0H6&Z_i UCXK4aK(iP;UHx3vIVCg!0B?XNI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_boots_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..623c9e6a076d1eeb29baaa83ebbb40f6c0b53cdc GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7!+Z902)>e{vS6DFkF z_*y$S7#TYoX_%`^sYwV(@<$0I_yQF%mIV0)GdMiEkp|@0c)B=-RNP8Fz6Rz00 Tlv|I0<}i4=`njxgN@xNAv1T^; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..0a49ceb89efe2ab2fe36cd3d2be24f33e5d1e25c GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Be1qTPCCRJu*XCn=BbtyFo0ZD#ALBXkyyA6RF7)yfuf*Bm1-ADs+N<3X0 zLn>}1A7FX2&{$F;txe3pKy#(BfrzH2!G>v4b`OO4_!AOlUD5e|!6~@0G5xyP?&CLC z^Ba7)ckkMFrRw*rY;5y%>-_id8!$*}zmY3%lsx@LF1=A=&+Sk1QsWs6jqdHuW;T?# nbZ@UW^X+5b-o-LaddhJ8f!dDOjGMiH_A_|8`njxgN@xNA8X;Hd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..f5acebbd4b173eac79e9337bb371ce071c19b247 GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6j6Gc(Ln>}1FJSBV!{2P-a_wLH z0i_*Hi~buJ8f+KWU_Ej|&B3)QQO(8aiV}me{vS6DFiP zI2ai_8)=xUOQ}f+Nb(B`3VPeCeg-OHED7=pW^j0RBMr!j@N{tuskoJ_z^9@2K#0k> zX^Ge>Ce6N0LTg>$z2xPYbJ=^*v|ZtT3|ykox@P$dCzodFaxohRZ4ukqC^1Jh&ijsf wgT%VkVXX}kJbJ6cb~f;)L~cFBcv6Xh-&t(?lZ~_Wfp#!>y85}Sb4q9e0FDMe&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..d16bfd52fdc954d593f4a351a9cc86e60a5104bb GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|Nr~H?A5#Q%geUB z+$egof6<+3!t09KCWmJ?#ftG1XbHz_+3WHB)LWDTRLxit~a?Q&;4;K0GMu|<8& zLZzlfiSd);-oNv2zq_$Yki|JWTj2QB8;5o>+)rng+14QYpZW8=+iTxuHU8na$vi3Z j{M%OyjsGv5I>MwhB{u)kvV=20gBd(s{an^LB{Ts5h`lrP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2acdfa5d5e99fa16eb1c7dd6a924caa52aaf3f GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`uAVNAAr-fhC6*<`2Hvh0m?txj z_n3j*#aa6Lw?F+)`LDEtO+sG9J;1oHEYico YQ2NY5<62GEG@yYDp00i_>zopr0Iw=1asU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..84f13dd9bee808df22e105c3567d33bbb8c99977 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7!+ZTf%1_UzfIYuDCa zo@O**Li)Be1sh*$2M41jRc2#nBMozPDK!ZJN&b6!@*s_jB|(0{3=Yq3qyagxo-U3d z6}OTPu)Vvtx0>H&GrMe8pe}>aj%o7iS4J_Ue0cZb#fv(Iq&Ifo)68cG{%X({Ig${{ z#h^4n?<$i5ljl@>1|@~&_h*>z87r`Lr!d`iVOMCre53Jb1(Von#&>nHS=&t0eSsD+ Nc)I$ztaD0e0szMXN}&J% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..532422298f7b292b31b2e138e14ffd1d186c84c7 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}v?RRHnFyvq{6jSVo z(#)9iI`w|I@ye2p>mDwGff;*+i!-)FPJL~Ave4Y=$9(};#XtGMYv%sGA1n0x`w<3- XH&!nn9FchnG>*a3)z4*}Q$iB}wV5lm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_lord/zombie_lord_leggings_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..11f5ff68ea145de3c44b810d888d133510d26822 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7!+Z902)>e{vS6DFkF z_*y$S7#TYoX_%`^sYwV(@<$0I_yQF%mIV0)GdMiEkp|?rdAc};RNP8Fz?ODyjwSb@ ztOp4Wi3QWz+S>FP3{UM2o6;=F!@Wa7EMXSo#78XNg{3+V-Y^)>I4Tn%#M{7QrplbQ cltrhCp>`3!VGWP|HK2(Mp00i_>zopr0K3jNx&QzG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..9907cb2cce05c50f094c9fdffc7a2f919ba23add GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0C5_ld$o%Hg-1BFjp6l z8hJ^@J>R!%FJA$E6#QWPZ;j6|Ja=j PG?Ky7)z4*}Q$iB}*`754 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_boots_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..56b01d21eae535b8da0d5dfcbea07871b9500624 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>}1FHrXQ$=}2w)>dLI zaI3lXtz*s%p_V4z|LKQB7$T)NXx?B5-@rJ#X{H8OT9Q_V`!=RWY$X@|$#nn2;bC!k1twRFaS=Ae594 nkiyW_!e(Hwq0Q>SMIMH}ugvapOD5F=buxIm`njxgN@xNAaC#3$6*B&%XFJ=g2#w0_L5z{Q_pnX{kqwUEXv!ADQve%>3&~ Z)?Jc}J$usLwg8Q0@O1TaS?83{1OPV_IkW%( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..c2046a142824425593b1cd87de1eabe3f90b9f66 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6l001;Ln>~q?QdjdFce_9oH)xv zf91nnKlr}eACGE#{xQ;Gv-7)S^7$t#6}_XE$~LB~3}IVmEfQsE+RAo)@-(C98MBVb zUT=Rc6wdXLW#O(Hiw@{(q;%&vFg7~0ZaqKMc;9~M{IKJDlh(%M0&QdPboFyt=akR{ E0GpyY+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_chestplate_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e10756cb2299e23d4c3010168bdbb8675c6b5067 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%APKcAr-fh71(;30u`33eT+XG oBiqBu!t!r&Hiye+1=ht34E1>&;#skZoIvFap00i_>zopr0I_ct{{R30 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet.png new file mode 100644 index 0000000000000000000000000000000000000000..9cca5376c7ca8df76f30a3d5dcc98aa7dc84bf2b GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=2RY*2d088s_R!Y7zpH z{BMIEZw87omIV0)GdMiEkp@!Y>EaktaVz-%cSKB#%mJQsS4H6s4GR}6C}3a~WR>Lz;G;p!I-5Xr-S2+OgLLx0NWx4h6$c53up3`P6e97;OXk;vd$@?2>`41 BDaHT* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a27bd1ec182c7054b38dd2ec224cbc7501cd1663 GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6yggkULn>~a?K;TY;2^;Cc7ocA zR;f3Std1D(Tp)GN?b+c?n`@bkM*%j_Qwf=>|pS8^>bP0l+XkKFI+EV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_helmet_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..40f376b0568748a67edc7833832b71ca4257537e GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhC5}0G`988YQoG5J woWA(K*}iKDJSmg&7+j2*_}_hyVqMI@uvJjlcDu1)5l|O{r>mdKI;Vst0IN$IDgXcg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..4a95480c2a9d811958035b67508857064a6d1403 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0C5_lh80%H+D9%@wFC^ z}%WQgN&Iv?CXTA&=9=RgeGn&(Rcnxh?;rCsSm8 zfyL*W?AZp!+Bp(83hlqNzH{8NvRdK$3loivyd4?L4Yw`sdmNs0`@=Q6AB;=qvB|CY S)A|8uDubu1pUXO@geCyG8#q}2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings_dyed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/armor/zombie_soldier/zombie_soldier_leggings_dyed.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e6be22ab9030419cfc0a70ba12293be9859e43 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6{5)M8Ln>}1FOc*2+0XO#zq8BA ztb=F%OHX*;`Lr#bQ-C@dJYD@<);T3K0RZ0_Bo+Vw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ancient_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ancient_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..4a017dffaef8d88752601db82f17ea87bf5f98fb GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=81=gN_y19xJe07h|*_ zNNc{YT(7-cn~h+DA$N_gM1ee;^)YdNpgP8qAirP+hi5m^fSg=U7srr_TgeU#-7~#cgFca%1KzsW^tDDQ7c`Sq*PE_ZVAUcH|LOcHMka zp>4y2h~*X?iE}Pa`G zcY~(PY%%TvZU%p0YmE?~G-FASUoeBivm0qZPK2k6V@SoV^X?8+Fk#<5tf`4E_g7C?Vj~T^22?1tr0z_U3m?b5IzrK+1%0nw5 oA?dwA&^wI)25A-(HhBhy6FMT(-R`?q1MOh&boFyt=akR{0N3?9yZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_bracelet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_bracelet.png new file mode 100644 index 0000000000000000000000000000000000000000..10fadf43684521825ada3f5ee16ffa4cc96e20ff GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4)`{tNd#5zcuM;B-aY zzZDhOxRgbyf8<4&-IX+^$iW l&z6~<_Toi?!GUyThI3NFZ{Kh}=mnb2;OXk;vd$@?2>_i0Jw5;c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..a257ad6e4f4eb6aeab2ab72a468b7244ba9c8b3f GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07k>c_PMLpeZxkN_Rtm z(-ppb|AqUWa5MOedtBYJaOnY{3dWKkzhDN3XE)M-oMcZI$B>F!xqhvT%my6UL0|s2 zhc{Lhr2k?5@brK&V@j2(%Y(FM0+MqT)ptH}D#$aiI;h$HLoPejPpEtSt_2Pyf-O@U z<_ofGFAH9-S8IGy<(gYT<@4?n9)gipar0eRj>p?D{1;`Cz9hUk3}_vLr>mdKI;Vst E04zI2!2kdN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/angler/angler_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..de83e10f46740b36fb5fa4ae8c531a585d896847 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07Lwx}qsF+e&wXaNiSg zkE`4a{(SrXi*XkS=R65g+8+p1!B`UH7tG-B>_!@p@K__$jH!eh0*cDMH7%U44$rjF6*2UngF6;I#d7v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..a93a7d45e77161d1c7e4af474f0497fbb182f035 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5o`>wB8YkHlvugn0P7 z+RT;HwKdT-(pF1l(^gZEmJ;FL{aVEusE)BD$S;_|;n|HeASce##WAGfR`LOE3o9$B z10~(rnJgVwg`(o*UNMRktc}{5Rq4UZ?0$rajcwgEHa5NMZ~FRj6}cOFa@Ee=R5&(i z?#tB8dmDJx#V&ogTD(ET=v|cV28I-+%WQe9Ic7`@$rdtEd!Ox-2HM2n>FVdQ&MBb@ E0ED|k2mk;8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..abe1029182717245e753bf7aa2b2b5b6703cd273 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE09)GkWOXOo-3zY&8vPS zK6_GUy_5)lWlmf|h=;$cjjf5Uk+#}2?~BnurHmy(e!&b5&u*jvIXRv#jv*Dda{D;B z7z{a>d*8~b{rz8keO`>U(5lpi8}eIk{k>8AJ@o-=Ty&|(cE$j`N#Tq+O#182?2FER z^<+11;KYMsOCFq_Fsh8=3w3ort)z4*}Q$iB}l%Y#5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/arachne/arachne_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd71c7ed075bbe0fc78e3310a06b5f1a02d4817 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C5F;jhezO9=7sceR-- zr<=;AeI!16QfIxIg0!uP?$ViGo&gmxmIV0)GdMiEkp|=>db&7wB8YkHlvugn0P7 z+RT;HHPTi~Wz$wukhWw~kP_inzJ9J8sE)BD$S;_|;n|HeAjiYg#WAGfR`LOEt4o)x z988Wgv9YaVQ&`M>B%1LEZ$hFETZGkKo;4G)D?75UGEMkkB>Y^5Z9`2~1oMo8JBqh4 i%s9BEF`DtD8^g{`{1JSYRi%JtGI+ZBxvXbGsYOf>G7aZT?o&KeCRiL;4;~J}TAzS#STobwwJ!fj+4F0+QBpFRqS^fUERUdm7 ZUB6$H**WB)XFSj<22WQ%mvv4FO#nYEQF8zQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..78f475b6ba80a6ba55808109dd8638aaa95352a4 GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E09+6wlPZybZ9BfDs&HA z(%t8)w=&+~bh~ZZ%JTn*0$Ng>vja>#^@Ng~6udeFeWIl!R~y6?s1{jkhe{qY2I^-l z3GxeOaCmkj4ah0?ba4!+xRrE(jUn|!E8`IZ4u%6}88#FCrmx*+e{QEO-{O7BGv;C>!Gu7#zeoePxg&%81Jen%~b_0gtJ z%`WGB7rc0`cvP(QYhrq+Vd}&0O*3Y8sohb%Mln#a2SUr63xWqob wKs^6?>zla9tlV6Mg`x9oGZ-&eGc4k?mvdy@8*y>IF3<@Kp00i_>zopr04uv&ssI20 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/backwater/backwater_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..c231e50dcd5c213fd7f74a2924a9bc2d31176f65 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9Zy1)OfTja+T8GTy+U zrL-l**{ee^u0XZVS1&uj#4IJS$XZ*?+s0E*NKtRmC!hw#k|4ie28U-i(tw-@PZ!6K zid)GCxWkq%EpNzJ$Iio3!|QO&O5nYvfIb5^^G7y;X6X)Q2c9s6bqO;n+ZM{6(0EsJ z$tIC6#UPw(m5e!qVa}8ozGexYvfxGf&1)Z2RBvZI>BbPnB&>X)p?E9M4hBzGKbLh* G2~7Z`!9o`R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/annihilation_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/annihilation_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..fd463f53c03e929a7af8c92b9e5c7dc4b57b22b5 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0F#l7kA7>`P~$WcUOG= z|8F|H#Q6JB`~Pny{(l+re@5MZpb7>C3kHTo3=DGYZ!ZElj3q&S!3+-1ZlnP@xt=bL zAr-emPqZ?!DDtod%H&P{`M11!+EvHTm#$9TQlC)oyWhduqVo2(oVMl8O8(WXJ9qDy z6JRL*wZSNR^2JwomhQ`X|LX5=wv4mas`HC8*^gzc?R9MES(7iZjG>m5hn3;b1a6P& fqMetN@89RY63V)!bmD=pAUAos`njxgN@xNA>0exc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/demonlord_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/demonlord_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..06cdd20703276edf40e377ea6774d9932a517ff7 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE09(akkJ)ab5k|y@UvT* z74_XgVWO(g5o5`?w-#|gX~vQuzhDN3XE)M-oCHr7$B>F!xqaMR%!&felYg!${?EMr z>Wzi0HH@Be9gq5MpZd>t`=@4gM2*g^9iqpBp1$Cg)Rxih+S$29Ime)-g_(u*gPh^= yYkEJN`p*?&t;ucLK6USG($`P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/destruction_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/blaze_slayer/destruction_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..3d89b59d2e80598253000d03469851b908e25756 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjH~oJz@&C(^cUOGA zAGLosMdI)h;}wl;$6S>A6BwghR6?!f=P@%|s|)Liar|q&xe2I;u_VYZn8D%MjWi%9 z&(p;*q~cbx1H(Rchexs<8~@+m{r`6Z&%gTR<@0~@Pul(e-JRdu3dhd$b)Dl>IJQM- zx{*M$@tLDXb%jnO7z>Mt7&9A&$g;*>b>J~wASIw|x#`FfBMZhAnQfal9yeLAZRhq= l)~nt%@kVXUVw|MRaBH5*yy}aJ`+znxc)I$ztaD0e0sy7;T*&|c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/blaze_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/blaze_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..09c65508ab4e95f88db5021b963e8fa060d983e1 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E4HWVl$t@Mjvs|En7R zf4Kku-_mWuXwS$H&%~Ir^VBn-3dWKkzhDN3XE)M-oM2BE$B>F!b5Avj9uN?54z%y| z`WC-~mHP|Ry^H@=rN(ZYm-POTPjH~pg7+)_y2&P-WvH&-YUs?ReA*$kt?|iAe}99t pA6<)GKGyhe)V$=kd(W2nac|3+*rz9)m(EBC}T;GUoeBivm0qZPOztoV@SoV+;iM~2Mjov0t9#dpL*QqwcScz;fkMv z%bDvKr!aWLJeZ|&Swz{x#x~}6qQXu7%i=kW$)PjNMWiG06Apj5x6!ry%)cvVKGiNi dDRX=`!=@*US$Fy0tOOd*;OXk;vd$@?2>>D-LOcKf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/glowstone_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/glowstone_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..d0d53e856e4ece0cb054939ea2ebae35c991f13f GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09jLmG;r%FZNSwkJ3ET z7V`U6Nt3_Ie<1j9%S4*JoUPdbsEDy7$S;_|;n|HeAScn&#WAGfR_-Zwu>%S`OaZEj zum632dr#EriT!O0S?~F?BdUcLZDO)ns+^rGbAj{mrBlL-RxG)+fqBgo!R|Q@=_yiM zZ_O*xyZu6aP0<_S4NuuRR&*s;=SwdWIZ?@4x{TL|IiZ>9bYC66KF~4-Pgg&ebxsLQ E0OYYs8UO$Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/magma_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/crimson_hunter/magma_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..8f8f6aee30db1cad2aef444c6d18b5405ca9e069 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F%us#IiTl&YZ-AT8}E zCiY{V%PBv$KbB6PfpUx`L4Lsu4$p3+0Xc4-E{-7;w~`cu8Gg-TV{T|vxVB>Z|07#J zrmH#Fa~6Er`s~ow{XPZ%%-9&FZK-z>DqJ)@DY|sgWxt9qvTKg)Su}aqH}=!hd(xR1 V9#{X7NCcY5;OXk;vd$@?2>_CkJGlS= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ae0f84fff1f6ff610d6f08f1a0238c9ee568b1 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C5@_Y)CO)3Yy8GK_T$ zp2pB~MNUo*D4tw0#R^CpmzkU0gVw wEwXHePQ~qe``+fK%~4;YUF+zr)Lz0Cuv%ne*^?#zfmShiy85}Sb4q9e08m0hNdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0e88c737aea9458d4e1ace6000375054d11865 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C5@_Y)CO)3Yy8GK_T$ zp2pB~MgGJyIXO9?l+!A+b3lr*B*-tA!Qt7BG$1F{)5S5Q;#O{dt0;@1fYZ+j|E%v7 zW3bDDR%X_a@fWtp!(+V4}LnwJ$7!B^j#V5{iv+C zXlu`bH97st2Mp_0-F>_GZjOg<`t#ard`PYl`>n<>dFPxgR Q9B4Cxr>mdKI;Vst00nSRL;wH) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_mythic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_mythic.png new file mode 100644 index 0000000000000000000000000000000000000000..5b951b9cc95fc65fd71e2e14373a49ed6c8f0db6 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=8{-p6v{aXXv@&7(8vE zrk1Bgs-AsGft;L@VXTC@pSz%-oSYm`Sq0Y-bs)u9666=m;PC858c593#WAGfRCz)dc5)qA zp(D1A#h54djO^Nmo(a~^-fePcl91Ro$IyGTCDWDl&*liudb8}n0g=0Rr7qr;J#yf{ msa?s(!@@TFWpp^f!0>On;xFNVyW4>S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..7bf36bdab4e6835a9f008297cd50dc21056b7f54 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C5@_Y)CO)3Yy8GK_T$ zp2pB~MNUpm{=_q&lnEaktaVxj4k?XJnhjZ<*|NkGq zJTzB2Kq|}ko}j@!7XD_VMjzb*9nVyedZ)t8(^R@Fzx{DJv*!B&lXG5qtTvLehS7mb zYo~1slKP{!g1O+s^|!7GZl6BN`TGAqx9MG`_HC88udMHN#8z)yUT+Vyk-^i|&t;uc GLK6U3d`LO~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/davids_cloak/davids_cloak_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..d98bcb0f080f9b6ea3bc8d996dd29262adb7f60a GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C5@_Y)CO)3Yy8GK_T$ zp2pB~MNUo*D4tw0#R^COag zYt{cvh?AeFsX6(s;cV6`Z@MlozLeU&V$sHJ5p!oIXY^<kHOQ`&t;ucLK6T9 C{zhv6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/divan_pendant.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/divan_pendant.png new file mode 100644 index 0000000000000000000000000000000000000000..e1110176d24343d89bc9fd22be65df2b234aa5e3 GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0DgB$B?7N^!{|@kB>#y z=Nf0ZscMSw`s*p(-oG@e$1J^jj+&Cld}C)9P5!2pyS1bfJxnGUGBA8zVAN*75H7$l z(}Cf3`F~}gL5w9qe!&b5&u*jvIklcHjv*Dda=X}@m=$@L{k1pm761Q#rMgd*(y0jM zdV8kt#uYLg^RAc9WoXf!9jxCT_2*MftYy>c?(;FnY}puEeOld=c3oV&IP>MJ(p=AD zYcr!IzgBM3>fZNS+B@c09?!vbuh}{sm$zopr07Z^tLjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_black_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_black_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..9611b33fda1f121f518af5822246298ca4c56810 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E07ix5K~vPwJ;C#_bQQ+ zP!F6_u?#56SQ6wH%;50sMjDV4=IP=XQgJIuL3~3KqmX#OW|;*H0!)e`uKVx(KNYR* zY4GDj%YnsgHB2w9uF3m*ZC$Um_xQ?NVZC3OS03bLS7W;HOEl8Xf4Tlq_Lr}D_s&w6 fKKCqV_KamE&0< er(YaAW-Y(lp0TW?SxgIP1B0ilpUXO@geCwFZ9A<1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_brown_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_brown_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..388c5bfb885458131331b24bb8d15f4d26e8146c GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08u*<4^Tcsf;q1QR3uf zDqbhxs0b8gED7=pW^j0RBMrz2^K@|xskoJ-AiklAQAj*sv&;ep0VYKe*ZueYpNiJ@ zH286%<-lUL8m5<4*W~@ZwyxLOdwk`su->oCD-ZIrt1(^pB^qhxzg+()`^(q7duORj epMG)hn6>w2xd$5-A8>;1~S@*pp}8q gUHbHkgU77pciS_Tl{AZK0c~LLboFyt=akR{01mG|jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_yellow_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dojo/dojo_yellow_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a1908e1f7b6057b6584638434f05f8d3875948 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E09ihWcqM`=l^}q|Nod4 zm$T>3?Ry3kWh@Eu3ubV5b|VeQ3G;Mu45_%4q#(YbiBU*AV6)5u1_35T5!e0q{-280 z_B8l$qUFG1wi>3FR@dbHy|%8`+IxKEt+3v&%qtJ_va2y&_$3-?=f7P4DErITynAP< fOP_vm@R+syZhOYEl4db2pbZS3u6{1-oD!MNd>C@}KtTp|=-s5HM zq2zCVY&8isJEpUKHgfSxi}QTO+V1zDQ`~mqs^I6W!aCZkpGaKJH=KU7dt!En;-A3J k6OKk$8&vl?9!q<1ioJ0U`%iw}a*)Lgp00i_>zopr0D(hVA^-pY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/draconic/dragonfuse_glove.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/draconic/dragonfuse_glove.png new file mode 100644 index 0000000000000000000000000000000000000000..7260d913c8cb95bc164e0b0edc175926cbe32f43 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A_~bH&C`SM8T z>_#7<_JiJcA7(rk5fNTwdbvbpOR{`p7*HK!NswPKgTu2MX+Tc4r;B4q#jV_KcBxha zo+jrPPVeh)n)g;WZF~Cvz&uudd1G4}<@pRjH)OaEyxC&*K?H}UR zK7C;q_?f#|#&r12fmcfQuS^4Vhy&w}AOM?7@862M7NCR@BJY5_^ zDsCko;NDUG{vN}!@?AU5ux;G7!*{*UM>Z~>lhxnf&3w+rmUot&ho@$;nZXCmx4ZTp zj(W)`+bHn&SIsD4TI#7>i4e9ang)>O0s;fnPqnZZDH_q L^>bP0l+XkK`R-1c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/balloon_snake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/balloon_snake.png new file mode 100644 index 0000000000000000000000000000000000000000..94236d3efd43554beb02e6ddea3977beed9b68fa GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AXKV^TOEhp7R`VJr#q3ubV5b|VeQN$_-W45_$PdZJbIuz>)}Mb^V#;|tyN zeX=J!dwsrbZ|bc(oo}|~)|l^7dpuv&S-tGiTIcp{sw>W(_~U8jp!=Nb`OaC|MXifx yl(tIxR>wF#+o!P8OsL-{PI`grr`p|h@0l!InOLf7wi*KMV(@hJb6Mw<&;$UhQ%U>) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/bone_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/bone_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..c3af2bf8eaa2869317ee6db7d7d19914ad7eecf8 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=4?hzkTua(&=MMtLw5| zoIE{&LX0Ire!&b5&u*jvIi8*_jv*Ddk`HkAOr6r>XtJ4^nYo*BLL$>6OXiJC9S2*^ z7%*tFcye257VK9QlB0!E&*A#GYV2E48ogw8T2-=6tiX+Tm>4+ N;OXk;vd$@?2>^>EGzb6y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/shadow_assassin_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/shadow_assassin_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..bac0d75a300f4612d227bb37140a346afc9db2bd GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{PadB~OZf-?I1urSx zD<1KyZ9?*N-S^7BUksFEED7=pW^j0RBMrz&@pN$vskoKf+sepnAixyg_*Xq|OI_f- z4fQ+fYi(+T)fK+?bd*e=dxD3za;xbIk&EUI8pf>m`ciym?9!7A46KaZvusVFUxR4W z?j2hg0vXSp=MrE}JRthwo#5ku$LZ{6SNwg-D14u((m(I$9iV*-p00i_>zopr0Pamf A%>V!Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/soulweaver_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/soulweaver_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..c65b2af76564dcaa45101c1c2d6f43a1f18139ee GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07l9mMSwZ@zajb)-!W- z4>7fHlv7mqizrxj<^Rly|1~9zZ8d^!CbR|sl`@tD`2{mLJiCzwF=yOF|YU~Bz|;>85C%( z-LdtIS0)ql{Uv;kj>*0YKAg_`*?;h}M8l`;b3+cvHSj#z`(KxFeJ_KFr>v;4=e;VR OEexKnelF{r5}E+Cm``H> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_bone_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_bone_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..098f72fb3d94682a9988b5e0ae0f8046d895ed28 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4?hzrFF||BI)WmRgpTF;k|*IG98; zGBZ~*O_<2{Xey&&0E0%$nG6O)i-wA}1_tG1^$7=UE;dA7Vo;Gep`pOFXy!~wULKwU kYZ$_qJ7n3;oG@cz&^*f_*=+M`AJAw9Pgg&ebxsLQ0P)X30RR91 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_shadow_assassin_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dungeons/starred_shadow_assassin_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..8547335079e79a47deabefd12e6c719b5e54243b GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A85=fus;4P=Omiz_NB zJlvB0`FdSfh>n+(?iG*t)ixn{y6y+WuAK*}U@Qsp3ubV5b|VeQ$?H3Y+GqDeqnQ%Ut9at8hdpLxAJ1Yi!$Cb__0_ooZF`PCs+u=>qQ%9>Z5FQIgw5aVUF{mFD^;bw_Y>pX XeXJ&;D?cRx?Pc(E^>bP0l+XkKn?_Ic literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dwarven_handwarmers.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/dwarven_handwarmers.png new file mode 100644 index 0000000000000000000000000000000000000000..94d4aa38bf78b2088588a78771e4e752ea3134e5 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE0Ff}b+xuOD=W>KI=N-- zsu}zDtlM;deb0{il;o)Y&(=JwW%#s=;s5!-thv!@o@z7X80NG@G^aSX1)5iwXw*9! zM(C>9s3-uw8=C zB>rDkS^S_aZCzaYT2(tX4xi}8Fj?Uv8+JAoFEwv-$XUm6U|L<`>}#F;K29_4C#NoH zI5Z_mYGe2z8~@2qK1du}q;a~?f~z(*wDkJ7@cSjXw|U)5LVru%EPTXpK;CDAi1ghl SmJ&b*FnGH9xvX_!@p!0Au)BK220u&!%k7H29Y9@rOUES8lKEPt)+8-&1m;_35OoD!ed#=3|~aK Vvp))peF7TD;OXk;vd$@?2>`+CGw}cb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ember/scourge_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ember/scourge_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..f771f72c28c2111e8d164fef2d11d80ff1bf6613 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CTl$go0CSHc5>Gqa}c^x4tacsOI%qJX7F z0XudE)m|#$W?S$_NBQYgUWMiz;U&2TvXvRiyF?O`wl0VT+QH!I>gTe~DWM4f?0!c9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ddcd0643d3455281ddc142f9f69564644ffa49 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE06{PF)^_pLH~DgeEMJf zZ63!%KZfR;B0tMmj%3u|SqGG6ED7=pW^j0RBMrz2^>lFzskoJ-AkJVlv00j}Nup&@ z_8Y?s^@nddc1cU|`L&0XyOSN!@lr7L7=hnPZ!y9>i41uI?0XfCyxS!uI49WEwJ;7PKY zBz{L$yg2N~L&3uPrv-n@U0nBa#f_vlQrlii-rja}RucdK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..60b0b52ce9750b6f1a6afba02894c66fbb0b9e39 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AVkVG$Mms8*>4nLckhgT zpL^@lmcz2KoXZXFsGpd{Jz*xpt6PGO(XL@p`O{u&q+6uj5@v2yyj8jqXcL2{tDnm{ Hr-UW|tGP@; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ender/ender_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..58b0ce776b4256494934a2c22e10b4e62dc801ce GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9bEzx@dMe^cb=E{;!0 zOiR?&)y2fbfZ|QNqxyjqV@Z%-FoVOh8)-m}tEY=&NX4z>1KcrFro=dycr!3FuV$X` zkn2$^!$#%^iK&5cd}%EkrY{w55ZTnmEj^8`;feC4OHl{eil!_zcj$Td;y{)%Lx&T$ VX3##plRyI*JYD@<);T3K0RZPSIdA{~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..c8269d2e73c1f23f837de3113c857e2e854efe3c GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4TspSyN^%i&FP7OdRc zGj-*xuF~?l{`j=={G`C($jm@DGc#*<^BSgXpi;(?AirP+hi5m^fShPg7srr_TgeBw zcci81FP&!pO!pZz;D#h1asPb7sD*YiL{^ z6dagwsbs+i#q5*4vr8Lx?bzHqWqU4zwk0qoSC(ILs7!|`JMSmfy)iu>VWDPOM?7@862M7NCR>*JY5_^DsJVTXk~OZ zvfZi#hpY&rjfxo<0T@F{73 Q9iW{Ip00i_>zopr03xDLPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/finwave/finwave_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..27589bebd658fa52f9ea325bf1ca0b711b202cd5 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07M3%rvuhKfGzqoBQV) ziW2gZ0t4O5t{vYptE+Uu%Dp{PSC-fH&vb8^0949Y666=m;PC858jzFW>EaktaVz)C zb;iRE9Lxd1>ks_H?0?VmQho3}tI{udD z@+zCq^PcZsU1CS13)8mdKI;Vst0DO;By#N3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clay_bracelet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clay_bracelet.png new file mode 100644 index 0000000000000000000000000000000000000000..75a50af91c5ba43e4d5d2af5c26192486d136f7a GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A_@iHghVEv=m}W#*EF z%QvoBw|D){Yvz_NonHfVfzpg6L4Lsu4$p3+0Xg2DE{-7;x90Y=3Nk2gFwEao{J$|b zkzu}{o#4dh4)L{zb6523wg`F8X2sT1Sj7Bf(V+_a3mpYd|1NlbxlTIyi>kPu@7cRs d0=F>F_j%7N+EI6Z##*4U44$rjF6*2UngHgXL2Up4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clownfish_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/fisherman/clownfish_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe33c062404a3f1085c2a1b082d6fbbafca4c2d GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CUKFO{jsc_TsX{oaLN zyF7m1IP`x>&Q`7Y|A2CgB|(0{3=Yq3qyahco-U3d6}NJ`8M%%aFdSNR`+t1Ra_0u4 z1g2}tG~*}6B}adspBJ~EFCoiW$>;#bJw9fic^ms@q?Xs@uGW2);Ko>gl|UnhkG?`j4k$UE4wt*Ap{B1FvaK3u6@#a%pUXO@geCxV@I3tYZpI1EzjZVNO=s|Q^>bP0l+XkKe7!#l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/frozen_amulet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/frozen_amulet.png new file mode 100644 index 0000000000000000000000000000000000000000..9f90ac447ad4ecc7b9fc5cdae0136c2836b02ade GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8RD&z<|>|Nr|&zqW|k zKK##c;6KBJyPEk26nlcwmcWbR+K(k7!F{-Xj{Dv&6P|vK!rC zZ)Wotv2jBoHgRWWdgP*}=P9>o9Q^3PrephXOxu6{1- HoD!M<(P~A} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gauntlet_of_contagion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gauntlet_of_contagion.png new file mode 100644 index 0000000000000000000000000000000000000000..f82914c066eaa34c4f6fedee79df097d47516cde GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08vkicsbE5$CoFF>9*{ z*|w13%>RZ@9SmzfyZ_H%Xx_zpZDGjTUZ6V0k|4ie28U-i(tw;)PZ!6Kid#ts_!v^V zjx#bla2!tYxL<$uOMz(J#`Rn$(>`Z16v_BcNnj6WycizJR&?n_fZNd!xAt|+4wBbq zZJ&SnR7T+$M+TXO1&TU4ml&=*`VwNtnAh8u*w6H=#9@nug4V%$w*7Zx?4L}VvkYh< NgQu&X%Q~loCIAh%Oeg>V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amber_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amber_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..27637e4e31dde34bb12b40dd54b6399f97f3166f GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b4;Mto0=L28W|Npd% z;bASq2J`Rv9YaVQdrD&B%1Gtumg|Znx3gVnX){a8+g{Gwylcgb~vQXGP%5w_ep@yZHBZ0 jc6SE}p55ijw>cQ*-Q~X)p}5cnXexuJtDnm{r-UW|4WL3O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amethyst_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/amethyst_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..a4922db93ad2ed04900f45d8cc07917f7aa4b8a4 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0FHZI+O3eI>fT;{DRN_ zPCwh+_xV-*{}$a7LF{WcnEy9rsLq?0Gz+MXu_VYZn8D%MjWi%9)zif>q~ca?H>=nY z2M*`SjZ)SBH?J$#>9>1*Ty;nL(%Dh7H($+*nzD1o0Sh~m*A=gt*=ny$nIMtY8nwZx z<}>s2h^zV>iP}5+3}R+qy=!WnR@eK*z37eL?|t&uWj2;7$!RX+%FB#O;#H7M_>&E^ OkipZ{&t;ucLK6Ur`BS+7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/jade_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/jade_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..a2dff73492e22aba8a2c548f497167824939c9fc GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5%PU)^+n{j2)_Jv-{N z=0t{4{ZFhSrV{IpX;=#VF(+a;aolux(oX+=Pt005GOxd?NA`y;2I~Y7&{an^L HB{Ts5%T`h= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/sapphire_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gemstone/sapphire_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..9362f121a9741493620bce578156698bb3f5997c GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07j+nIx3BNxc4C$ECkl zKmC_f)&2kfzbQlY2J`=~>i@Uso(N)J+b1V|7^sx7B*-tA!Qt7BG$1F>)5S5Q;#RJ2 zE8}4Wfis-{ey@+NU3JjX_S~^3`~De%*=u*)RgTe~DWM4fd=6Lo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..e523da8915fafeb1ed616979d7acb092438c1f37 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4TspSyN^%i&FPW_6Wj z71rb@1^S1?2D+J9+Bixps_+SmGk<2E0940V666=m;PC858jus|>EaktaVz-%_l`?< z#2Q|Tc4cjLSo73)c8}HS2BxX2qm9aZ;}0AV-P+jLSpAZT?cJp*TTHfp;N`iKn$_jx z`O@K`uUJy=*;@{=GIDOGba@q;qpYlKKHTD9xUx(9i$-n|&<+L$Pgg&ebxsLQ089Q# A6aWAK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..71ad002bd3f523fb40f74cf86034e54bbe29823d GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07L!GrM+ti?pJOe@JXr zVU4AYEaktaVz&kE2Fa^ z2g?N+&Z^(%Z`YO2xxTNdMnPf7dh Q0PSS(boFyt=akR{07I8easU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/gillsplash/gillsplash_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..80a7e594642bd6d02c4941b4db4fe48c5238443b GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C5}RN)gAKfGzqoBQV) ziW2gZ0t4O5t{vYptE)7tu*N?m*3!n2iTk2AP$^?ckY6x^!?PP{Ku(6Ii(^Q|t=u!$ z84o*fFb4#$Kk)Cfn@XX5r@Za-+_@@Wb~Ue3pJ?Q@(R)%s=;t2^ET=XdeiGT~_*j$0Q>tXse>~ z+Q>*uOpJ$zM@>!5#>OT%ICvt%ifo2DcZN_I1|?kv^8<0B_sV2{P1T?4!&_s_U(#}b z9cTn&NswPKgTu2MX+Tb;r;B4q#jUdwt~MT35O6IlU-m!h`?1fv&-=3+Yqj-?wRBx1 zlk7D!WBTtEl0~w$SI^vxip~`|tE7-t%kTvdG+L=?DLOTWaly9$; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..a893be92ab350d2de2d61a6a966f9f1cd2318a6a GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Dfj$0Q>tXse>~ z+Q_I>gDG5=VN;6W%Z;MHu6eESV5l=;2vuT`<7O}yWjGKgdaq3O*HrzvKD;%?{HEXS zvw%i0mIV0)GdMiEkp|>cdb&7@@4;{z90L%`@BEPu~yrzNK02G z@uu&68Pk6o@NJT;y?W;6tk}%lbFPNZ9(KJJGwc+;xAW+PNvjGk6hzi~dM&lQ?sdvm zjEiqU!fq!IzJd+R2U+93rM)_(DfCn#_|*2=D?B^zeG3e$tCp|lp2X>?DXEYEbOeK^ LtDnm{r-UW|i5^|8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_belt_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..204012d13388dbb4b767f6cedf728f283d71a3f1 GIT binary patch literal 308 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Dc1m>5LX~=tD+(!C|G06ugk!E zuT0iOnBiWFh75y}E`xbCL!CQA=tPDU!NI{|Vq$7)YBn}DJUl$Fjf`Z4MGnM?itzHz z_26CJE#nC^h_NKdFPOpM*^M+HXRfD=}wFjzP~tEOgQ`l?NDZ*moLZIWdAlk+J@-0r-5{D)-= z%)EbGf9xr|f7+ee#FGE-)MhGkW%gcEJh1;@QM!2847{;03FKU>FVdQ&MBb@ E0D)z3-T(jq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ea2f21e22ea8ccbeb426066d117270e86c378a GIT binary patch literal 311 zcmV-70m%M|P)9G|=69C?J z9W4L@d@~Om5fMEkBo%9`TmS$70d!JMQvg8b*k%9#0H8@kK~#9!)zATELs1Y$;qRY! z@jxUb-T(Spw2DZ{yHgjSvVk7VIbiVnOL*(Nt69^k;3l63+ogRd;4+L0DCqX|TmmGw zs=6frxsKXuT!Vp>6R6n=&LrWC0XmcFiQv3VK!4dd9f>CTx&I6@j>^H-bF@OofkT=A zr_kSC^I!HT?B-;hono&$NqE$5&@=bS^0uC0PC-@(us3;l#V_4AQ?Qj@XRZJM002ov JPDHLkV1iohcpv}( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_cloak_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..40b981a164a8562994da6dc727f1ca01982b7808 GIT binary patch literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DVqSF5LX~ABPeLAqGD%fm&02Z z#*yA6G;uxiK6}nULqkJvZ|{_p6crT}7h#59Q}yqa$?7sNABYpJG3KA^!K++<`8ZHN zV@Z%-FoVOh8)-n!LQfaRkcwMJ16qZg40*DbpU?gOf8v}60aEWI>->zojh25eh}(JX zU~~7= zp7=h4i!0i$EDc%SnE55>_O{yl$>#%K3w~e|O^Y$(pBuLEi?CVvy3&cw-BYJeHPU~x ztp?ZAf3lrG$1-@j`njxgN@xNAp1gIP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..c38a39b07de6c006e4ded1312dba6d4454bfa9d3 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DYF2d5LX~ABPeLAq7tgaU@pqA z!h@mCgke*PV5tVvuWMc}H;TFlGyIyWf3Hkdmx1{}oM??P|6C7V?fY9V0d+E#1o;Is zI6S+N2IS21ba4!+xOFrjw29e}qxHm&r~kI!S-V}cwQ*PNH1kR7h7U@oiawrZF6ykR zKYzupa>)ap3|l0f92 pKizd9NsrikyTAXP;9GycUwCtt8fP1?Svt_A44$rjF6*2UngGamZ2$lO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_gloves_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..c21a6df02642c279e23f454cba498fa4c3b9d767 GIT binary patch literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!VDx|E`RzTNa+Ungt!9fUsLrD#EItQUED^RgDS_2+XU=*Z2Cg@^cm27$ zd)15UJT>dXf7rgf^_@W@bwfk9=?k&k4Pmms#g;H1W>i1INoh-Q8`;FUJsRqyJpCVaM|`k}1-R8K?9s4qT3j Q0lJLA)78&qol`;+04vaCb^rhX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..8077af034b7dc50adbf1ba7ed6989edbf845297a GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Dct~{5LY05AWn3y2XCkngSjZf zuc`VgJQ(Us7+!7^eQjj)>zY@o2Ggb#L0c6S89~9mR+Cvk4U8p0e!&b5&u*jvIlZ1P zjv*Ddj$R05Vlm`l3RreBVsg>{-Rm~J`?fWI$rS$&*6k&~lRJ6&b~Ww2bobu*vm5sx zS)`vT-|xC9?AgMM998Y5X%|@)qWz35{cn1_>7JnxEW>RuY0|K2V}lEN)i)d@-|T7c-EHe;{r;hH>X*-Qc_N=r%lR4aIy94e-fgC1np|hUDKggr P9me44>gTe~DWM4fI-O=H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/great_spook/great_spook_necklace_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..551772cf9a74fb1bc6f13a9ea9f28704011d1e9d GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07M3%#2SfFR$zGnYuDR zDR9Bcz1NO!IlO7ktgg~PH#0M9cbP{gjezPHOM?7@862M7NCR?0JzX3_DsCkyh%-b? z<5FU15GXsmwEkYWj9SGeX!p9Vx#WH0k0*=_KQ}QM&t;wkavg)GtDnm{r-UW|MRrCR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..d12439aabe22f8b7ccdd6193a84641e624a9b403 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07M3%q*|#@0q%C!OFc2 zMG5&yfq`yj>*se~JHExt+I`l_^gy5@#*!evU$9ltlNHqx%*3vrj(X%P0mw;o?Mx_aK}-XRcFtry@=ZV_S(C`;OgTu540_t zmK9;%U^Fdzv+FsH?W@D4hTIlSoRv0nS!Vs}x3}u1AL!Flvig(6xP_m0Mv?IgX`qb^ Mp00i_>zopr0B=%LOaK4? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/ichthyic/ichthyic_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..bb9f61f9f6ad36515b5f2d7e31384a3fd1ad3ca3 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08X)>+hMma>2^I4Mhou zH_dr-|6G1j;H<7vGi&$Y$V{mwCKjL~#*!evU+5bE9Y51n|G(_P>bZ*zmr}Zi+g4fQawqRRc)I$ztaD0e0s!L@L=OM} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/knuckle_sandwich.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/knuckle_sandwich.png new file mode 100644 index 0000000000000000000000000000000000000000..f3047154bde95133d603c1323454a646e3a91822 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C^BcMI##%3Er;-p=lv zpI`M!i^p+sZ_h5dx2yNc+L{GT5&LFlpMKI<1XRjc666=m;PC858jzFb>EaktajW#q zQATD19_NcQnr_wKi_)8%_n-CFe8un6vd?{8aB64a^21LisI=^TWuw01klIJqMy5+b z4y$Hcauyw#I#=+q!sV;4T;sNLER$7Sv-Rq(m74SBJAGwn_f<5!SzdK|QFR={fitWE USz1jJKpPo6UHx3vIVCg!0Qf~$N&o-= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lava_shell_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lava_shell_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..6fbaf1d064c19572bf3fbc1cd6e7949fb5c18801 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=5%OWh`wR*E29^=^B-? zN+dD~Nh_*2GH~+=ivwl-q>ju7Qj8@*e!&b5&u*jvIf0%ojv*Ddk`HiSa&o@xU=q#D z%gSG+4gl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..b98116d53905ac2a6ca6fbe0d9034f200a575225 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08vFmfYq$;ZF3bzwPJ0 zWbS>tKXc(J-?j u*{}12HJ;8ncQO0Gk;RP_jM=J56J={&GNsn;_DTkt&fw|l=d#Wzp$PyUXGuo@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_bracelet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/lotus/lotus_bracelet.png new file mode 100644 index 0000000000000000000000000000000000000000..eac565548345bdc32b13abc8bafee1ccad26f592 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1#$Oh{%t?M@RaYD%)Kou zZ0Ow1(*lW1mUW_P9u z6B!?EWh`WhkT{c|-(b{r_F&JpAmyh86P)^#lvBU5O*o`*RUvdkC5o&($S uYoGewaVq@XY^_w*#QWsV-fE^eX~uWo#CTJAy*C35XYh3Ob6Mw<&;$Tq!%cDk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/magma_lord_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/magma_lord_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..9f50fbf0bededf17d1d36a4c445082d59c5e199b GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0B)oVP9`5AjiuKWSfYI zdCSTDzZCy}C)=MEo-<(r{leU3Lcc?Sa*QQGe!&b5&u*jvIhmd=jv*Ddk`C}O`1)*R zJmSD`%5u~HRsUmc)B_e8T2x#$S$n;!zu4wa`}zk5jx1U5A#>?3gRsU%Pqt64; V^$GujLV$KMc)I$ztaD0e0stwXN09&k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mangrove/mangrove_locket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mangrove/mangrove_locket.png new file mode 100644 index 0000000000000000000000000000000000000000..f61b25b5a4d58167edfd2e64887cb8f8ff1ac437 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2Z1TIoRs;W4uHP9{+v zI;DnYPHqw|rb;O)$~OASryc9-fr=PQg8YIR9G=}s19IFvT^vIyZY3Y!?qOx^bu=kv zWMux^DO*yxPLxL$F&lSNGIcQ`T;0+s(MvjOVtjbM2X$=pw1mOa)z4*} HQ$iB}GM`B^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..991f7756d8cb28c8b8f5d06a4bab7c3a7bcb6276 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A^#&CP3DIs4G%;~(Dq z|Nmb>M$O2=e|q)zM4%jFNswPKgTu2MX+Vy@r;B4q#jUw#E(#t{;9bU`KC^#qXD&TG fS>~He=}X3gTe~DWM4f_|roQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..6b7c4f857fce42fc09bf85215e0b17cdafe6bc51 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0A^#&CP3DIs4G%;~(A_ zS@_EYmVE?@GL{7S1v5B2yO9RuqnAo|^$(^d3eI}*~ uB}Z=G$h2kq=G|Q?+4nOAq@Qumd(ZALfx~&?iz0rYeGHzielF{r5}E)lrAP1p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/mithril/mithril_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..c385c0547657802a68fe2a5a42b5650778724483 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E4>TRHpC<>MdTxQ6B$ zS@_!@p6XxmS7*cU7_sn%h=Rl6b0Xk>?DXVXvq*Y%S*ZKcs z@_Tc++fxjS47SB5?i1*@eEHSUDC~tp*g21U1MUVk*%ddYMl9fs{&u&)JwKsQmdKI;Vst06Z>1 AssI20 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_bracelet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_bracelet.png new file mode 100644 index 0000000000000000000000000000000000000000..e5eeda4b05a12cb33d1fd7d9fd2a77bca24e4793 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9a7F#Mm)u+51fL7YcV zMM+Is#h8mzMnpiEo86u%8Ki=-B*-tA!Qt7BG$1F$)5S5Q;#Tqj?o-@1PCJ_HKFM-! z5|hH>ow-cuZR`^+23@>(F^@52%Werx>u?6i;BJ~yr{Wk^ZUsx8J-x1zn|AEN(N6?KbLh* G2~7ZmCQ1bW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/molten/molten_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb982a1fda93a94cd6295a8c7b2034093917acb GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9a7F#Mm)u+53VT+28? zoX41pQ$|EULzkNsD92b5zUEFH dhN_!SaN8R(t)8Ae#TaN8gQu&X%Q~loCIHalQ;+}v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ca8e9116dd1cdba517ab3ea8ba6ffc4e780b3d GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0CTekeFq%A%VZar*Pw^ zK;C@}42P8)?#xk=YxZK8vazz#Xn6tqlTO)X%R_8874Vg3F=RGrEtv|`sG{p4F00AI zFV4iun{#y06QB@dNswPKgTu2MX+Tb;r;B4q#jT_RYz(=*t&9g8IG8^>-HlH8@Ax|J zdzWfr2XFTF>5FuFAMaQtykC{)X<*2d)W^Etd=f&gSalmKa$l3>G_pDV#)gmgA?ruJ z4cTlG#|0(Ub>=;sv#@V>?(f*9rOD6yZtOl>Qfk?=Hgqa$X!3@|xwp0IW-`cXa{bD+ SiA@ALg2B_(&t;ucLK6TaykK4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..25eed84b182fa32a4a9b73555ee8831bd6c78410 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0E^l7iVJS6_?di(RBfG z=LjV3V_^6c$or&I_RbuoWy?csHx+0tnd(!xG0S9wmrU!fM`!tf>KIFc{DK)Ap4~_T za?(9r978H@<@&WUGBI*IIq>dpxaovHcDoklHuNsrxFK-a5m95|$(w$!TNN3=Ipa?c z&t1i9EZz&PsV>!Rmw5qsKpscHVt=KKwsp=!)0( gJ{q4dDE-X7X00%<=IRfsKr0zMUHx3vIVCg!0KFSn!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/party/party_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..9dc8f40a2cdd2edc7dbf0ddc15e06bfae7c669ad GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`%RF5iLn>}1OSC=kT>j?2b@7w~ z6*oT#7;L*6!f-6gd)Ytr6_xP{%z3V=cMY65vej-*@Ne7`;CSf3@&aXEo*yR2o8?uk{t7 z-mgA>h-+>av2V$Dcr*t@-O>a6* koWU^n+tZDIr_?=WU**JDrXzLL0%$ser>mdKI;Vst0N(~dw*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pest_vest.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pest_vest.png new file mode 100644 index 0000000000000000000000000000000000000000..350ec16ac64584c2f1aeb2b3f7c96bdcb9b7ad5e GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0E?fkua}uP>$6SbyxA8 z?arYhu*_|r1WJjc%N^_VcAxXa1bL6p#lKkQz_Y@YvMO(if wD*I(FeaZFjWWH#DHTVABZ)5wBSAUNAza;abkK0AGfYvd1y85}Sb4q9e05i)&a{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..6dec0f880520cc538290dd067feaf1484cb86d82 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b4;A!}SgOdAai{AHf znv%@F&s=}LntYrfKTwwI>&|{4#aI&L7tG-B>_!@p6YuHb7*cU7`2css9AB9OTQ*Lb zWY{tFPMlO+;;{n<(&8+OpM812!e-XXsi!x`my<`vQP=B~I|GtmY|Aesr z|NjF;v~~5a-M#n!Y50_6{s#vo_s_!@plj-T=7*cU7 z_uO?x76T5Z3k@${{d+C9^WLAP=~4f9e~LyhPIB1mthV-A))^iCi((IMatow4sP9<4 z+de^i{njPF`MPRLJ~A&lYj`ZDUp67T=~_p$x%1_TWrrG<+_g_Tb9}qXx1U=@rtdFi Y+^5G}EWY96E}*3hp00i_>zopr0B*Wj6#xJL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_gloves.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_gloves.png new file mode 100644 index 0000000000000000000000000000000000000000..9e43686c56bb492b06a57baa57b692e8a10cde92 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0EqlTlB#}$^TEo%YB&V ztI5X+^6xX(zwhJpKOyY@|NlS*QO;=_w2kzP RXMi>`c)I$ztaD0e0st8JOc?+G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/pesthunter/pesthunters_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..8b0c81675bcf825cd4918deeb9c6f314cace0056 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;A!}SgOdAai~dgt zyYJ&PC7FM|nmka7-|qW$AjMb`FVdQ&MBb@0F%={egFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/enigma_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/enigma_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..d14d6983f0f02ff6f2cfecff93dbe06f9383d12b GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07lD6Jh8TVE8X%rDW-A z=#%G^$@y4ORa7}h{IoDonz1CvFPOpM*^M+HC)Lx%F{I*FuHRKghCmLXBRA?FzTS7d z-}45?-TBKnOUw@>Gwv{U;=8f)<+A&m*G^vYE_>sj&0f=Yba%U*)E5s83$hVEdB?2s zmY(yZmz~Z^Syvm5>oIvLPSQ(?)=}6l)1Sd`t8E6O4L4KxbN%UVKnoc>UHx3vIVCg! E0JZ=`{{R30 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/golden_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/golden_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..2c384ecab562e2dd2ac5734b649b3582517f5eb2 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8RDC;mUlcCK4$MiT34 z1_mL6qGkpLe$}ud1_lms2X=mSpqjdN;YJ|ESQ6wH%;50sMjDV4?djqeQgJK!0QU?Q zR#69&&2HD%xw1L59bI*Icetss!H0}oL$hyjB@K=0CmS0ZUEeY=7th|gAfT{~kvTZ} z!I_uKBpqs{8e3N_^Hq2|+3B>d<1I;xsXgiswhA&Vj}^Wo{$s~YpfwDhu6{1-oD!M< D#A!wQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/leech_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/leech_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1c30c979a64ebbc6458fb0f6e4804b4f8b2260 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v~Pzek$t}Any(if$o zDz;>5=&|jk7YicgfO3o_L4Lsu4$p3+0XdPLE{-7;x8`&;avllbak|QJv;N-hNnXER zGSo7D@%$jF>mR$6={(EMEmK5KpFOQL<=BK9{b#0lsw**szEayA+~IWK&)WMc&w0Kb p*kfR^VfC!<6XtSlYK_QeWZ*a}y=Z;(v>2cz44$rjF6*2UngG-uMF;=@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_inside.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..6c157c5d8d9d76dbba08ea95c4606334d7e5cd7a GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CUI^73%tyZ^=C%o+02 zq}Eh^`~L_!@p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_outside.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/rift_necklace_outside.png new file mode 100644 index 0000000000000000000000000000000000000000..22183d2b0368ac47f15864389c2e7cf40d8b0876 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CUI^73%tyZ^=C%o+02 zq}Eh^`~L_!@pOcizZ}k&^6k|z{UoeBivm0qZPN1iYV@SoVrlhHJ3FI|y!Oop>WTXh_Gx;s}nPCDz*_H4-ogR`Crv6HV( q(h)uIOhVJTnYZN9y(LZ8-5B`$1>G16a|(fmGkCiCxvXgTe~DWM4fJ`7VL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/vermin_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/rift/vermin_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..9869f01b131ed61f3af6146df19f68987a60e2f2 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6#7OKNiiT;r{y{Y;(A zlyq!WMfh1Q`g$}yG%`2{mLJiCzw02n9F42>vL5bdshA`KPTVCVia=z z&)>_!EGas>_7|Uz)KzHypY!6*XKsg{>(P(jH}XEYU0ct1 Q1+<32)78&qol`;+089Z_d;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..c2a89d0c177ff9aeac5abab330250b041ebb09dd GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08vu{=fIZ|I8ErJy!h( zf;(To?)&he@bD#unEwxsd9?slFqQ=Q1v5B2yO9Rugm}6*hE&{|+ug{?;>f}5`>kZ_ z|E5~r^P&aJ326?$xmwizpK{i6+;{xeu4>`)!H+DDu({7%F|+!GgG<$l>z- zLH4)%+a@jg+OGZ2*|2hbsL!UQ1}-d3ng(~SZrUVevU|3~-h~Poy4To*&fS|a(@$ek z>E(pzkJnySH5T(O&p1{o@%+W|WUk44$rjF6*2UngAnW BRTcmM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/snow/snow_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..406df918e7f20fa39620c59f711841bd08303a22 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9cj|G)F~>%I>kdLR7H zJn_Hq@Flb9|2KtjngHb(OM?7@862M7NCR@*JY5_^DsCko;C70QadI@tW@KirW|$zz z_h>3pAwz`3WX5S>L2TM7`avQ_`V5@n+*&i6c~itfj2Mh>w6q8*l&Q>Cyv@O2dWvI8 Tn98g;pot8gu6{1-oD!Mzopr0M(E@djJ3c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v2.png new file mode 100644 index 0000000000000000000000000000000000000000..70d768b752de46dba679f4cf4c821c53752a4a79 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AVTh-LEVI(GNl#Pw(1 zeEt8;RdOPO&M5}lBA2#ZKv~9;AirP+hi5m^fE*uB7srr_TS*GS45uWRMH&(%SQdFo z|NsApGx?HHV~ce_rgc!oJ^NjjZtmvO&uKzopr0N4vWcmMzZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/synthesizer/synthesizer_v3.png new file mode 100644 index 0000000000000000000000000000000000000000..f6a1e525a33ca10d77b765bdaf71be7ccf708bf8 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4T6{y%p2+r;%}*f(AH z<|@fnv*{FrEt5yrLc*)d$%0 p!se&2rWHi$#xZP6zN(cX&G<`O@W90Yfij@s44$rjF6*2UngFf|LpA^a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/tera_shell_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/tera_shell_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..408df22024eee4da70ad9a7e94da65b527d961e4 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08{&rxGL?->TP_t6aX& zb=7=7?(HE5Ed=aKHJCP~2>!a}^>U-=ooT{Psx`U`i?d>r%*~9ywQuVK>SQbl@(X5g zcy=QV$cgiGaSW-rm82lduxbVuGee_-O5*o_yKmLSvNPyxXDrO$ckj>iT>kmB)wiX- zl|QlWFskK$&-k5hzD?{y>zx0~Z`EC$8x(uH=aoqIMShJKtDWAzbN?EA`DxexI3#XT Z>;*aI^K-dFC4n|Ec)I$ztaD0e0svRgQ_BDV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/the_primordial.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/the_primordial.png new file mode 100644 index 0000000000000000000000000000000000000000..72f35104bba23f6f4249f137d5bfce60423b33ed GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE09)D)8rQxNmA3*GcorT zm+Nxz$v0-0>BD`dP4e;TU=2>C|4(;M4~i-Ce&&)W%p6nQ)Yxwn31{=QcdvDNo4%fz1X zS<=7LTAtOO`}PvK=am}i${l-RUbW5mF;!r~mt~yCFLfv!dMxH1Tb}8bE6k;fq{lbBa3x*I1t3pBMbIx?&L|No!=@Diy825&P(p2~lZ?d`U5>`#

bP0l+XkKayd3> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..09adfdb909588a11d3a849da1516e259c9f60eeb GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DIZu?>rf%_=GFm^mBB z)z;HL+Wjg6$YLxB@(X5gcy=QV$no)XaSW-rHTO&-r;8yE(}j$l-~Ba7`Az>BRtZ_f zFO<6Jwdk>kneBfR;7hNa~V8c{an^LB{Ts5OFBMo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..19403f34e5ec1c8b8bace557e3e1597403e6eebd GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0DIZu?>rf%_=GFm^oWp zPv3#>TH%-2=N@KT0TDe{X$IS30$5y^*Ogonuba3VS+GQHY#LjI_?o{3EGci>t uIdc0(rY+ky@9t8`zMm-|{fv9wdv=Ej9L^J86!8P?WAJqKb6Mw<&;$S~q(p51 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..f5468d97341d3b993911296c8395a77a7b32d173 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E07M0iOni0?U*^+!p2rx zPrp;7R~9JBSQ6wH%;50sMjA+or;B4q#jV^k*BPAyISvQtocX7$zI~EbePLYZ|C7n@ z&E;-SF)T9J7N59Jpx^T4S4X3;7YZrdmeAV!=Rq!G@O1TaS?83{1OUiCKb!yn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/titanium/titanium_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..5b87340e6aec8bdecb6f54e5afe26b4b7cccc4a2 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1ZeXJ?g^hQ-8M*w||8 z=>tXTTD0E-DaMi@zhDN3XE)M-91l+y$B>F!$p^Tnu&_>bFqzEE%-qd1VIk8aOU8|i z9S3`+K0K4~=1>At$_5K*&3221mRQ!QK?m42X=$l9Nanby39vawNp0$7$UDl;?rL*f Q9B3wkr>mdKI;Vst0F`VqYXATM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_blaze_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_blaze_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..b1325671c10351ecf122cf01eec0ebf94989117a GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B(7Vzg&uxLCpPXBxx* z|1I4njQ@YQ|G%n{W5}>HNU#Q|g0UpXFPOpM*^M+HC)m@)F{I+w+*1bynGHFd1HGA) zf8|>ooIUsC&G*arUx&%pZ=Mrb7u+s8>F~Ss)%7B_j!!;&WibUw9}i19OrY@$p00i_>zopr0D!GRDF6Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_ghast_cloak.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_ghast_cloak.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd07a0c8ce99e343152ca4806fb6729f05b0a2b GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0C_q%8K#zJ+x`l)BE=q z8GC*H{Q0nJ{OP`5IY2qak|4ie28U-i(tw<3PZ!6Kid(tej9ko)97l{U{`-G4Hrg+N zQIGLr!=8x+;*4ICGd5a&H@NVw|HJU}w(#VAdGj{{tzqzV^>bP0l+XkKu4qOw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_glowstone_gauntlet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_glowstone_gauntlet.png new file mode 100644 index 0000000000000000000000000000000000000000..c76e4fcbdbdbfaec35cf815aa083292db820b51e GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Ffl;!m}eKGPQR`&LPN zlxCB^O0l2Xe<1j9%S4*pv?bXFsEDy7$S;_|;n|HeAScDs#WAGfR&F;dQ-c8ybNHnz z|Nh6_NxYu9JmKekpdH{e+2JS2VA9zBXWfVa=R8yKMOapnVLUu6{1- HoD!M<9V<+P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_magma_necklace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/vanquisher/vanquished_magma_necklace.png new file mode 100644 index 0000000000000000000000000000000000000000..cac1bda203818307e1281d9f132b48d2294f4a47 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F%us`O)?OR9!Ok&#h= zwDc)IHdfCI&wvt)B|(0{3=Yq3qyahZo-U3d6}OTUWEp5ijzx~zw)UWQXEz?2W T=I^V4MlyK1`njxgN@xNA9Kkz3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/zorros_cape.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/equipment/zorros_cape.png new file mode 100644 index 0000000000000000000000000000000000000000..8eeee08693e64b65c65a94f05aa4e8030cf5d761 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Ffl7B-OLDsWMqoM^YD z!r#);QbR*SN=oX^sweM&(u^fRe!&b5&u*jvISHOFjv*Dda{F2t4;TnA6+5K-?|dD% z=zH8hmi7G87*6g^bW{JBqt%|;V|VOi>alyja;$i3w_JPn`^nvch!>sL52tP5xo!FU zz>HEpT^@}yM$rz7Zg`nB-_&N%+daYM=T#OyZ^ox<7QB-K+Qs1M>gTe~DWM4f!0t$J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/frosty_snow_ball.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/frosty_snow_ball.png new file mode 100644 index 0000000000000000000000000000000000000000..308edad1181dbc6d63946428b48702615a8be6e9 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07MFyQ=W;rF|bh-1++T z!{5LE|Nnnmyu%nM!B`UH7tG-B>_!@p6X5CM7*cVor|&4^0R;wT>AUrhcO6*o`2NDv z{2l2|>S}RiulU+BcZEMr{Ql%l^ox0&t>3%eNcz)}&#c`IIA;vXHc0RUh zTP8%!Z}I)+R+SG_kmBj$7*cV|v@cMoC4l2FQ(o17<@X$u6TihUaNL{qgW@yyPa!q m-c0xUWAo}|o!gV^vGsjUOy|8;9DEM6kHOQ`&t;ucLK6Ul_C?wN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null/null_overlay.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null/null_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..8f8d9baeb2c46e5b564223298546bf5fc971f56f GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`TAnVBAr-fhf1LmD-`?)bfddWl x&7u=I*}54Qvo&yXt&z83>yc{U7e4ilVbQMg&K`~ji-5WqJYD@<);T3K0RRnS9u5Ei literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null_map.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/glitch/null_map.png new file mode 100644 index 0000000000000000000000000000000000000000..75b222726998a393f191357abdb6edde428e3121 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`uAVNAAr-f-_BFCGD2Oos{y#r% zp_GoLjpV>}b`q9CA^@j73F}_ASW_=EDWAe`MJjW}}a$&pwhpRl%dp+!y aGw*u8*Lmf`d5S;-89ZJ6T-G@yGywo@Z7h5M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/black_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/black_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..2cf0da3abf05a6ebc873eace195a52b936e09753 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E^k;1ClNQ&v_sFfg#U zx4(b5cl*rbrOn%7fO3o_L4Lsu4$p3+0Xc!5E{-7;x8|HR z>B;@Wz1wFd^DbZb4JgG}666=m;PC858jus{>Eaktacj<5L%t&lBFq=J9_RkPzmQ=c zi|Z<$sq#4X;G{oLOB!1rU98dbs?Px73;_rUC&#{$kp+xa3QzVkj|J@rm`!vmYH g@7vE$U=W+n%%Eb##4j!3cnRbRPgg&ebxsLQ0Q-DE1poj5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/brown_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/brown_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..414adeb945064850dd7635104d84cd0b56bab76d GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DGlW$>3}PSxZrv5=bK zAb$UF@AjF=Z`S&~1j;d%1o;IsI6S+N2IK^Kx;TbZ+?sRNknf0s2=m3Q$GN}nFJ#!q z;<}1w>U@?zaf>%)KezWj@cr1OMwPI}lRT&IJuo}xv4C^YcD{&+@4Qb~PrXy#@W7_) h`}Xq_7{ul?GpHCb@k>iMUIH4<;OXk;vd$@?2>?lXKC=J- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/cyan_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/cyan_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..f913e5d52c3d631fbcf76f1c9345dcf1cf5f786e GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVzOJR%a;;&t=H|>Eaktacj<5L%t&lBFq=J9_RkPzmQ=c zi|Z<$sq#4X;G{oLOB!1rU98dbs?Px73;_rUC&#{$kp+xa3QzVkj|J@rm`!vmYH g@7vE$U=W+n%%Eb##4j!3cnRbRPgg&ebxsLQ085NOe*gdg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..966d7abae7d66961e59c7e5fb05e7e68101850b6 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A`QV@xtqsC6(|7Ot~9 zRqy`c-t9A!w?tc91IjU$1o;IsI6S+N2IK^Kx;TbZ+?sRNknf0s2=m3Q$GN}nFJ#!q z;<}1w>U@?zaf>%)KezWj@cr1OMwPI}lRT&IJuo}xv4C^YcD{&+@4Qb~PrXy#@W7_) h`}Xq_7{ul?GpHCb@k>iMUIH4<;OXk;vd$@?2>`d~KXU*8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/green_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/green_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..f6cfec8032daea626ecf9c6d9035dbe4b56ff3fc GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ET-VXz2h@yg_ks+1|1 zCvpF9@AjF=Pp?a70p%D=g8YIR9G=}s19AdAT^vIyZp}Gs$ah3Rg!$sueXcDk|#i z?7V-tcl*p_NwaB*Ksm;eAirP+hi5m^fSf>27srr_TXW7D@*PnSVZONaIQRGcg$(;x zTvzc-ozL)Tk2Hc#`Mzy$5FJJQi>++Rhgd@tyYx>#29j8y?tn hecyh50)yCmW(E}_CVpuN$4ekrc)I$ztaD0e0svY>LZScw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/light_grey_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/light_grey_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..72491e87f2d5ca9925e9af727baa137ea98eb60e GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DIcvx|v|sjjY`HEY(c zUAyid?%h5!dBW<89Y8t8k|4ie28U-i(tw;mPZ!6Kid%Ee8uA@c5MjQ!^*HzU{e=ws zSX@`}Or6j2CvNek?C1902fiP>)Tk2Hc#`Mzy$5FJJQi>++Rhgd@tyYx>#29j8y?tn iecyh50)yCmW(E}_CVpuN$4fxN89ZJ6T-G@yGywo#NJ6Lp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/lime_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/lime_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..4a37629ef1beed5c11d21d988cc6da3aae9b856a GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09)BVKC}qb6d}!bV{%G ziO>DRz1wFdi%5(90?IL#1o;IsI6S+N2IK^Kx;TbZ+?sRNknf0s2=m3Q$GN}nFJ#!q z;<}1w>U@?zaf>%)KezWj@cr1OMwPI}lRT&IJuo}xv4C^YcD{&+@4Qb~PrXy#@W7_) h`}Xq_7{ul?GpHCb@k>iMUIH4<;OXk;vd$@?2>`uKKWhL0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/magenta_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/magenta_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..eaeb847a00dc349ba3e234d976e228c19363cbe6 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07LmNGW0Kn!>++gWjpr zK2Po+?%h5!c`4U}dY~L*NswPKgTu2MX+Tb(r;B4q#jQDK4f&2Jh%jH=dYt?F{z8U* zEUv3~rp{;i6SsI%_H%ph1K*EbYE%hpJjrwV-UG999t$`ZZRd-K_|E%;_0&7%4G(O( hzHdK2fkA9OGlPl|6Th^C<0YWs44$rjF6*2UngG`jL6-mk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/orange_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/orange_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..185139815856d70f7e87cdf49eab374fd3a77051 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09i6Wau(tTkpbuDoO82 zz0du_z1wFdD@zNS0p%D=g8YIR9G=}s19AdAT^vIyZp}Gs$ah3Rg!$suEaktacj<5L%t&lBFq=J9_RkPzmQ=c zi|Z<$sq#4X;G{oLOB!1rU98dbs?Px73;_rUC&#{$kp+xa3QzVkj|J@rm`!vmYH h@7vE$U=W+n%%Eb##4j!3cnN4YgQu&X%Q~loCIG!#L23X1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/purple_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/purple_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..13d7e459b1f2cbbdef76276a32a2ff6ffca005f2 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v1Nbz9nisN5jqjzei z&y)Lyd$-R_Ufv|P11QH>666=m;PC858jus{>Eaktacj<5L%t&lBFq=J9_RkPzmQ=c zi|Z<$sq#4X;G{oLOB!1rU98dbs?Px73;_rUC&#{$kp+xa3QzVkj|J@rm`!vmYH h@7vE$U=W+n%%Eb##4j!3cnN4YgQu&X%Q~loCIC~3K%M{q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/red_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/red_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..425c5645fccc89f6cc35fbd4386533cdc15e2744 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09iMVCZ6FThGsbN>A^J zkI((Xz1wFdpMU*yCQy#CB*-tA!Qt7BG$1F?)5S5Q;?|tAhI~g9M3^sbJh6grX h-?yKiz#ulCnL)*fiCYhD&9zTBk z|NsB{hkLirOm>|3Z4FS4u_VYZn8D%MjWi%9(9^{+q~g|`vxa;}6hxRWZavQZeSaat zJ{H$iJX7bh{E1t2fX!toN&a0X9TKbLh*2~7Y%YDO~v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/yellow_greater_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/greater_backpack/yellow_greater_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9fa50047eab512688189a06b94f37d8ef5508327 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09icV(5xvTVKh4YMS1Y zO+NPz_imq=+<5O{Bv6jAB*-tA!Qt7BG$1F?)5S5Q;?|tAhI~g9M3^sbJh6grX h-?yKiz#ulCnL)*fiC*-`_;8tBI4(8yTFa)d%lH=D%a71mVc`{*@Jv0w p!MC!#$85(zmm_~qPuRZh{yR}o#*d z>B;t)$@dTUzERYj36x?i3GxeOaCmkj4akY|ba4!+xRrZ0oXJU1;OGVOlcL}DCuf!& zzAkg?tGR!{vpZ>>o1V7`th9P?!|V#<86PgQ3&*9VUTfL(bs67+d-)MMD=fU?5}v8& pH~3bz_n7TC=yK%m=?UA{-G3)4%J@;#awo`H44$rjF6*2UngHBlNDlx2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/brown_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/brown_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..5784bb2f1d7938092ebd6340eaadd9b8dfb488c9 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DGlW$>3}PSxZrv5=bK zAijNO^8LfTyxND_fO3o_L4Lsu4$p3+0Xb2gE{-7;w{p*hGdU>=9KB$EQuN#Y! p2H(o|9U5@-cJz@L0`|m_W89$0z?gTlD!PC{xWt~$(69BFxMdbhh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/cyan_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/cyan_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..c0f29252a613fa693edc775cfbbf87290d8048de GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVzOJR%a;;&t=H|>EaktaVz(1IFpm2z|jllCq=*QPtGhm zd|l?&S9AY@XLr&%H$86?SZVd(hS?RyGd^5q7miC!z1Fhn>oUFt_wpljR#b?=jnP(B;VA(-XF@yZ=s9l<}jeNmfpUx`L4Lsu4$p3+0Xb2gE{-7;w{p*hGdU>=9KB$EQuN#Y! p2H(o|9U5@-cJz@L0`|m_W89$0z?gTlD!PC{xWt~$(69CUEMiBr2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/grey_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/grey_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..6a059ae0f1d5b9dbf84c9cd4dd1c26c5354e45ec GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08uaGV<{7h>eXcDk|#i z?A$&x`TpVF9~-3jfO3o_L4Lsu4$p3+0Xb2gE{-7;w{p*hGdU>=9KB$EQuN#Y! p2H(o|9U5@-cJz@L0`|m_W89$0z?gTlD!PC{xWt~$(696;;NTC1# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..c8eeca7b33243a4deef081fc21bb05dd16e1fdd7 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A`QV@xtqsC6(|7Ot~9 zRd4&u>o1V7`th9P?!|V#<86PgQ3&*9VUTfL(bs67+d-)MMD=fU?5}v8& pH~3bz_n7TC=yK%m=?UA{-G3)4%J@;#awo`H44$rjF6*2Ung9?1NOu4L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/light_blue_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/light_blue_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..d118dc2afea2adf0426b2d19ab8e6193a3e3c61e GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVLNo4El;$Oc;@6;)u zhflW8Oum1(*D5bO0Vu^-666=m;PC858jus^>EaktaVz(1IFpm2z|jllCq=*QPtGhm zd|l?&S9AY@XLr&%H$86?SZVd(hS?RyGd^5q7miC!z1Fhn>oUFt_wpljR#b?=jnP(B;VA(-XF@yZ=s9l<}je-eb1opv#fJrzdP*cmJKJDC0*_%bg%+F?hQAxvX-eb1opv#fJrzdP*cmJKJDC0*_%bg%+F?hQAxvX++gWjpr zK2NsKOum1(*QF;1q=B&{$S;_|;n|HeAScSx#WAGfR_@twCMQLKqZiCiihkRloLP4G zy3DPw=KclG?xb~Ydfq0m((1ttvnz~ee7MXm9G9AUt!2~KWqb?n> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/orange_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/orange_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..aefdcac79da9b5eceb6f7375411d0a91f2267149 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09i6Wau(tTkpbuDoO82 zz0dZU$@dTU9-2Eh5-7)5666=m;PC858jus^>EaktaVz(1IFpm2z|jllCq=*QPtGhm zd|l?&S9AY@XLr&%H$86?SZVd(hS?RyGd^5q7miC!z1Fhn>oUFt_wpljR#b?=jnP(B;VA(-XF@yZ=s9l<}je-eb1opv#fJrzdP*cmJKJDC0*_%bg%+F?hQAxvXEaktaVz(1IFpm2z|jllCq=*QPtGhm zd|l?&S9AY@XLr&%H$86?SZVd(hS?RyGd^5q7miC!z1Fhn>oUFt_wpljR#b?=jnP(B;VA(-XF@yZ=s9l<}jeA^J zkI(j*$@dTU>g8sB1IjU$1o;IsI6S+N2INF}x;TbZ+{!&0&g7&haP)%tNzrfnlQYW> zUzfS{)!e_}*`2h`P0!l|R$4u{VRnV_j1QODh2v6FueEIYx{PnZz5EEB6&7A`3D4B? p8+YhD&9zTBk z|NsB(Gn4Nh?p+{Wbr>keSQ6wH%;50sMjDV4<>}%WQgJKyY&esXqQKD$<|jqJ?N81u zJA7T{)>m`?f@gQqIyXIU6If~W;D*^1#xp)#W*3f2O}*B#>FYAS1^4nJbXHh+#U(sb r&u{RpZ0|AKanR++-_sMeue<+FRFv_fsO3(Ovlu*G{an^LB{Ts5Q+`f0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/yellow_jumbo_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack/yellow_jumbo_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..e97a3503c8614d7dea28ef5a900ed9e503305257 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09icV(5xvTVKh4YMS1Y zO+MRaCf`5Yn-Gy}29#qg3GxeOaCmkj4akY|ba4!+xRrZ0oXJU1;OGVOlcL}DCuf!& zzAkg?tGR!{vpZ>>o1V7`th9P?!|V#<86PgQ3&*9VUTfL(bs67+d-)MMD=fU?5}v8& pH~3bz_n7TC=yK%m=?UA{-G3)4%J@;#awo`H44$rjF6*2UngD10Nbvvw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack_upgrade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/jumbo_backpack_upgrade.png new file mode 100644 index 0000000000000000000000000000000000000000..d4efb82d8dfeb9f1aa1fca30b4752964cf7cb471 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=ygOBIS-4KE zgGrK+f|DGh{qDz%Ksm;eAirP+hi5m^fE;g67srr_TgeBwBb=QNALtQC7QW6hp<(mJ zY^xT+&pXN99%w9sr>mdKI;Vst06q6Ong9R* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/black_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/black_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..ed493843648ab1bf872f8dfe5906f475087b7635 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E^k;1ClNQ&v_sFfg#U zx4(b5cl*rbrOn%7fO3o_L4Lsu4$p3+0Xe~*E{-7;w|aY8MVTE1oEmRV|EC=%RP^rq zaZ&x1jGPKV#s??HdCO)b9@!uq{b?g}lEbe*E=i&jg(vqu*|YScy7fbw(pOLAxYc?2 hc#})M+=xFgQQt;VD%RwIfEUns22WQ%mvv4FO#l z>B;@Wz1wFd^DbZb4JgG}666=m;PC858jut0>EaktajUndRg~FLz^U=(^ncoMLPhVs z9~aeM$;hb?WPEU9oVRR7;*kx)(VsRlCprB3O06ZLH*rD9DU2zUXFXYh3Ob6Mw<&;$UOv_0AY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/brown_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/brown_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..4978836d154b7e1d7a6e1ec4314b7b2f1f58cfca GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DGlW$>3}PSxZrv5=bK zAb$UF@AjF=Z`S&~1j;d%1o;IsI6S+N2IK^Lx;TbZ-0JOV6=il5aB93c{hxN6P|>^Z z$3^v5GIA;e86TV&=PjF&cw~cc^rwx?Ne;jMxFm^A6rSAsWY5x%>edf!N?$#d<5uV8 i<4rF4awGo0M131csaTT-0$xDl89ZJ6T-G@yGywqP{yc~P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/cyan_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/cyan_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..c51569ac04411ba179769656cd22793eb2b56c01 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVzOJR%a;;&t=H|>EaktajUndRg~FLz^U=(^ncoMLPhVs z9~aeM$;hb?WPEU9oVRR7;*kx)(VsRlCprB3O06ZLH*rD9DU2zUXFXYh3Ob6Mw<&;$VKsXkNy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/green_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/green_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..568dc4f40607a6b2b746eea3558c4a45e47404a8 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ET-VXz2h@yg_ks+1|1 zCvpF9@AjF=Pp?a70p%D=g8YIR9G=}s19E~rT^vIyZuR!GiZVM2I5pm!{!cqjsOa7I zJhDMJ`qM_{B!^#rT#`g53Qz8RvS;Z>b?b*VrLUgKajWz4 h@g|pixeeXcDk|#i z?7V-tcl*p_NwaB*Ksm;eAirP+hi5m^fSh1Y7srr_TfIH4qRfs0PK`IG|I>~WDth<* zxTyY0MoxtwIk8BW*{G-@mn6}N!jpTS>{8q!5-0Hl1 hyvZeBZp0s$sBa@F6>IW9zzb+RgQu&X%Q~loCIE0;J!${| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..d33b2886b8c16f87d4b024decbe6afd08bf83c6e GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A`QV@xtqsC6(|7Ot~9 zRqy`c-t9A!w?tc91IjU$1o;IsI6S+N2IK^Lx;TbZ-0JOV6=il5aB93c{hxN6P|>^Z z$3^v5GIA;e86TV&=PjF&cw~cc^rwx?Ne;jMxFm^A6rSAsWY5x%>edf!N?$#d<5uV8 i<4rF4awGo0M131csaTT-0$xDl89ZJ6T-G@yGywop{5?nj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/light_blue_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/light_blue_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..609c31603fc1e2201789c7545af7dd252d85ab78 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVLNo4El;$Oc;@6;)u zhfnSw?%h5!`Sy$3{6Hzjk|4ie28U-i(tw;`PZ!6Kid(%st)k410#1!Lr~lKA6DoT5 z{kW+9N=8nFAmf7*DRz1wFdi%5(90?IL#1o;IsI6S+N2IK^Lx;TbZ-0JOV6=il5aB93c{hxN6P|>^Z z$3^v5GIA;e86TV&=PjF&cw~cc^rwx?Ne;jMxFm^A6rSAsWY5x%>edf!N?$#d<5uV8 i<4rF4awGo0M131csaTT-0$xDl89ZJ6T-G@yGywovQ9VEa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/magenta_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/magenta_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9df2515809007f59c26246d8c0f08a80498d45c9 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07LmNGW0Kn!>++gWjpr zK2Po+?%h5!c`4U}dY~L*NswPKgTu2MX&{B3E{-7;w|aY8MVTE1oEmRV|EC=%RP^rq zaZ&x1jGPKV#s??HdCO)b9@!uq{b?g}lEbe*E=i&jg(vqu*|YScy7fbw(pOLAxYc?2 hc#})M+=xFgQQt;VD%RwIfEUns22WQ%mvv4FO#pXnKWqR1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/orange_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/orange_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..2e3bbc5769a4051748f3b0203f7d1de3cd37db42 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09i6Wau(tTkpbuDoO82 zz0du_z1wFdD@zNS0p%D=g8YIR9G=}s19E~rT^vIyZuR!GiZVM2I5pm!{!cqjsOa7I zJhDMJ`qM_{B!^#rT#`g53Qz8RvS;Z>b?b*VrLUgKajWz4 h@g|pixeJcR%N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/pink_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/pink_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..551ae94afb089305a6620132833a486ef83352b4 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09iMaOz@EaktajUndRg~FLz^U=(^ncoMLPhVs z9~aeM$;hb?WPEU9oVRR7;*kx)(VsRlCprB3O06ZLH*rD9DU2zUXFXYh3Ob6Mw<&;$ToT|Ykn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/purple_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/purple_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..340a152c5888be909f460d7dc27d9e2a721de442 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v1Nbz9nisN5jqjzei z&y)Lyd$-R_Ufv|P11QH>666=m;PC858jut0>EaktajUndRg~FLz^U=(^ncoMLPhVs z9~aeM$;hb?WPEU9oVRR7;*kx)(VsRlCprB3O06ZLH*rD9DU2zUXFXYh3Ob6Mw<&;$VSA^J zkI((Xz1wFdpMU*yCQy#CB*-tA!Qt7BG$1F~)5S5Q;#O}@t0=RhfK%hm>HoCjgo@sM zKQ5}jl95v($oSyIIB(gE#3LJoqd#qAPICD5$0bR0qVVM2CwrEDRJVR;Q~K(u9Je|z iA8&HWmmBd1ChFTrO2wKy5by#T&*16m=d#Wzp$P!ct3FQv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/white_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/white_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..667f4d38ddf2433eac7c998844a47915f582b502 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E65&!0MV>YhD&9zTBk z|NsB{hkLirOm>|3Z4FS4u_VYZn8D%MjWi%9*we)^q~ca@Ppc@iqkvQ6&FTNNgTe~DWM4f>F-1c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/yellow_large_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/large_backpack/yellow_large_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..47ae205161a5b1c032e80a2470d9d9c6407acca2 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09icV(5xvTVKh4YMS1Y zO+NPz_imq=+<5O{Bv6jAB*-tA!Qt7BG$1F~)5S5Q;#O}@t0=RhfK%hm>HoCjgo@sM zKQ5}jl95v($oSyIIB(gE#3LJoqd#qAPICD5$0bR0qVVM2CwrEDRJVR;Q~K(u9Je|z iA8&HWmmBd1ChFTrO2wKy5by#T&*16m=d#Wzp$Pzfw?Bda literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/black_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/black_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..39617c8c1d783358b83f5b88770749812f03cd01 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E^k;1ClNQ&v_sFfg#U zx4(b5cl*rbrOn%7fO3o_L4Lsu4$p3+0Xcr2E{-7;w|Y-F@-Zt2I9+7ScwhfmQ*!aT zSwA9bUriL7_f0+L<2RLe6U{dAYiSDJVc##wxzOu##|xG!zGb^sPv*AK5UA&~oZ`Hq dadF%qh8q z>B;@Wz1wFd^DbZb4JgG}666=m;PC858j$1X>EaktajW-)BOkMZfYU|BjQ91AH6<6X zoAo22_SHnOdEeA?K7LbqH_>b(zm}%p9rpc_oD01^cf4S!;#;zopr0G3}PSxZrv5=bK zAb$UF@AjF=Z`S&~1j;d%1o;IsI6S+N2ITm8x;TbZ-0D5y$j7W8;B=8O<9+>OP07XU zX8nk$eKk>R-Z%A}kKa_@O*Grcucaw?hkd^!=R&W~9WPj__?GQjJ(=4^L!h3|a*Fec d#>H`e7;aQ>I6YNT-vTt5!PC{xWt~$(69Dh(JAD8E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/cyan_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/cyan_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..380b477b68bb8871d25a9d2821ed478fd6c79e6e GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVzOJR%a;;&t=H|>EaktajW-)BOkMZfYU|BjQ91AH6<6X zoAo22_SHnOdEeA?K7LbqH_>b(zm}%p9rpc_oD01^cf4S!;#;zopr0PLAPNdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/green_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/green_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..3768f7479a2ce28ef4670d13f885380e72688fa1 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ET-VXz2h@yg_ks+1|1 zCvpF9@AjF=Pp?a70p%D=g8YIR9G=}s19JR4T^vIyZuOpUzM3dD@0)tg$8Rd{CYo*J*U}Wc!@ggVbD`Jgju$Lde9LyNp3H5dAyCg}ImLNJ d=fEJE;Hw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/grey_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/grey_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..31f882186f0412e1bb7d3849395206832aaa0c5c GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08uaGV<{7h>eXcDk|#i z?7V-tcl*p_NwaB*Ksm;eAirP+hi5m^fE+(h7srr_TfHY7`Ir?1oGvnEysv+(DY9ElTYx4rc)I$ztaD0e0swd3JYN6+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_blue_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_blue_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..31f84515ecd2ddf79c724bbb6f9ce7c8c2e22b23 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AVLNo4El;$Oc;@6;)u zhfnSw?%h5!`Sy$3{6Hzjk|4ie28U-i(tsR4PZ!6Kid(%W9Ql|P1e`81X1uR|tSPy8 z-K-xGwXY_M&HJXF^YNR?yNPBS`L#3!@38NeRUig@O1TaS?83{1OW8tKWqR1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_grey_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/light_grey_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..317ac1b0874c8648912cf66f0303fb632fab9ecc GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DIcvx|v|sjjY`HEY(c zUAyid?%h5!dBW<89Y8t8k|4ie28U-i(tsR4PZ!6Kid(%W9Ql|P1e`81X1uR|tSPy8 z-K-xGwXY_M&HJXF^YNR?yNPBS`L#3!@38NeRW&&GkCiCxvXDRz1wFdi%5(90?IL#1o;IsI6S+N2ITm8x;TbZ-0D5y$j7W8;B=8O<9+>OP07XU zX8nk$eKk>R-Z%A}kKa_@O*Grcucaw?hkd^!=R&W~9WPj__?GQjJ(=4^L!h3|a*Fec d#>H`e7;aQ>I6YNT-vTt5!PC{xWt~$(698eQJT(9S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/magenta_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/magenta_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..45315fc972af5bf8cc4c6b528be00062f4f16902 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07LmNGW0Kn!>++gWjpr zK2Po+?%h5!c`4U}dY~L*NswPKgTu2MX+Vyjr;B4q#jV~Gj(p4t0!|khGv3!f)|6bl zZq|>8+E)|B=6zGo`S?xc-9)pE{92lVci8t!axV1x-0^~?if`Gj)swkxGz9ATET=fH eXj~lkhv7yAhtpFf^({b?89ZJ6T-G@yGywo~OP07XU zX8nk$eKk>R-Z%A}kKa_@O*Grcucaw?hkd^!=R&W~9WPj__?GQjJ(=4^L!h3|a*Fec d#>H`e7;aQ>I6YNT-vTt5!PC{xWt~$(698N&JUsva literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/orange_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/orange_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..883785500df00c53950e38bd18781b118b3f570d GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09i6Wau(tTkpbuDoO82 zz0du_z1wFdD@zNS0p%D=g8YIR9G=}s19JR4T^vIyZuOpUzM3dD@0)tg$8Rd{CYo*J*U}Wc!@ggVbD`Jgju$Lde9LyNp3H5dAyCg}ImLNJ d=eMJ9+>B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/pink_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/pink_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..c272fbcc00aa30b2ded98110397af484c0734af1 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09iMaOz@EaktajW-)BOkMZfYU|BjQ91AH6<6X zoAo22_SHnOdEeA?K7LbqH_>b(zm}%p9rpc_oD01^cf4S!;#;666=m;PC858j$1X>EaktajW-)BOkMZfYU|BjQ91AH6<6X zoAo22_SHnOdEeA?K7LbqH_>b(zm}%p9rpc_oD01^cf4S!;#;A^J zkI((Xz1wFdpMU*yCQy#CB*-tA!Qt7BG$6;%)5S5Q;#ThoM?Pi+0jGKYf3I& zH|s}4?W>7m^S-I)eEg>JZlc*nel1PGJM8-dD+T8UpovmQ$Qp dG%k+&!*HX5!|AD#`WB$c44$rjF6*2UngG+ZJwyNi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/white_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/white_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9cdcba953e361ee7c40d5eba6fa9f0e160d30be1 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E65&!0MV>YhD&9zTBk z|NsB{hkLirOm>|3Z4FS4u_VYZn8D%MjWi&~&(p;*q~ccZ2}eF=1p%jvj2Z9iA8Sf3 zUN`GUMD44IV)MSK=Y0I8@@}HpMt&_#!8`2xB{>&*eeQU{QpLAy*XqgKHW~u;e3nz3 eS2Qk;`@?Xfg2U;llKK{)$qb&ZelF{r5}E+eTSEN+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/yellow_medium_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/medium_backpack/yellow_medium_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..3fca5a92b62f809fb5f1a717768ef50bee3f0644 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09icV(5xvTVKh4YMS1Y zO+NPz_imq=+<5O{Bv6jAB*-tA!Qt7BG$6;%)5S5Q;#ThoM?Pi+0jGKYf3I& zH|s}4?W>7m^S-I)eEg>JZlc*nel1PGJM8-dD+T8UpovmQ$Qp dG%k+&!*HX5!|AD#`WB$c44$rjF6*2UngDyjK6d~B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/awakened_eye_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/awakened_eye_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..911ffaac12c4b196a6ede6219813749166e55734 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0F&G|G%l7=gpfpSt9+! zW_NMuJNCSMwDtc_&a#ZaL))0_%`=SudvU%nWLYA?kif>^z{DUh`D5ccpiah;AirP+ zhi5m^fSf8%7srr_Te-chjE4<)SkC4g{C7I+ebH=hAN8W?ADAZ|pKYdK^z~<2U@foO<@VrrnA}>xpwcIu5XZf53LDo#XBT#wNlu{o8{(%X)d;>MvTSeK)sYblSWB>YaF|hM%!Bluoe7 znJ235J1}+Pp{>(q8Qc8xxlwy=-?o*v9n`*PxxdwB*&M8D<)5{&$@1m2!V|X16;Ilg?fDT~rboFyt=akR{04dm9mjD0& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/babyseal_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/babyseal_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9abaf53a37e381507dce63a6668d893dcf25e8cc GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09i0^yzHL-@0MJ^GBC{ z|NaIP2@m$Mv@lUnP?$EQw=g&L=FOX?cAo$L{})>%@fIk}SQ6wH%;50sMjDV)>FMGa zQgJKyIBOA$Baib%eO=!B{}&`?99`%6(Qa|Yt54_I%KKv1CWS;UTCyPVL6!H8SYay% z6PK(N?>3qibV-`F7{;>eiv0exMV{_peSQWkY6x^!?PP{Ku)fwi(^Q|t=vW*2x=jPe6J^6nB^9g3}mhGIt=oOXAP=0nz%-P>wGw)o}WnQ>LPELG}{!{6CTgH2Z Wnv*|k9t{Or%;4$j=d#Wzp$PyS%vf#! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern.png new file mode 100644 index 0000000000000000000000000000000000000000..ef128423e5bb5cd6e96ad7bb7ec7f0a56040f04e GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E07lB7cx=PcQLUGa`cV% z2>E|k<^LY3|6im3&yWYo-n@C!)Xww&|Nmv_MO%S<#*!evU!VWTblpb7T|r8V3tZ%F-Gd&8ty+7#s_RNs*cXvmNj|^4GSu9TpZ&LyDc9&% a=?~_T0_M!nwy0E~%?zHdelF{r5}E+f8&Smo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cat_o_lantern_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..c010d30e343df6c9ffb1c4cb4da19d6ac7d1f910 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07lB7cx=PcQLUGa`cV% z2>HK9>i=Dp|6im3&yWYo#vOkD3P>@Q1o;IsI6S+N2IQoAx;TbZ+{*1~6=XIPVAg$^ zajAZ{;%)Ii_Z=Tvxboh-RgmdK II;Vst0IFF?kN^Mx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler.png new file mode 100644 index 0000000000000000000000000000000000000000..f1873596bb2886a428f684b1af34bd97b0b80c02 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0AUoNnw-e;@4fT>a_p= z|No|To;PpabT4~g9(l34e)98I-%g#qwQ%XKRX0jIfr=SRg8YIR9G=}s19Iv;T^vIy zZY3SyVsPzdWok9xah|=!V(mdKI;Vst05?Kp>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/backpack_cooler_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..cad934e7b7a7a9a5ec4e332923f4e07e47356b8c GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0AUoNnw-e;@4fT>a^cH z@}hg$gXgclojQA~x_%+>_Y9PXN zuekL8<5kl8g_D&(ia+kV_kPb+?x@XQ9xa=D#dkx|WAlamc|6>gLIv98h1=M8PW|lI zASmv*&?i;H;);S#+~eurHXda1@DZpxY;^FgivPJ__5^O9sb6}`|3p1bHmTj5@Raw* ZQKnCaxv#69YG?;J*wfX|Wt~$(6961MS4aQ= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..7dbba98cbdebcd67251f2fd36b39593e65c2a66f GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0FeMU`SzLuw-E9Vq;s+ z&%b?Ua$}guDLuXWhkI|{ylHCZ`TzfaPj7om8#6sUJu@>iRaMm`;pZxVIvGoX{DK)A zp4~_Ta#}oH978H@<(_S2WKraC2~@IRxm3T|d`@)O|7gWO^51j+UChpl_WzWsFz4MN zzM0wn)eM&Z8fz_Mt+nU2z2FsbIw3ptsl$~eg3afY8cTZS1*IsR^kI;z{le7sGC?3T zckh%Sf8&H(TZQXNS>@BKd`{W$uI_o4WM*Z&JC}Wn@#5|iWnWl}eAr&s+*0@tbPt24 LtDnm{r-UW|e+gas literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/bag_of_coal_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..5685f13102967048cff2585d482fe38881da55b9 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0DHiVDMvLNMT^;Vq;s+ z&%b?U@+m#N#xRrnhkHG}?e+BZEN#qyKvh*$Q)AN{pa#a0AirP+hi5m^fSg)S7srr_ zTe-cgNi2pu%*ipEzW#q6mRDWFb&h4vKK2)fxZ~5Ww_3-$nqHQd&N#RF{4P$`3va}~ zOfSElDD_|1Z}Aa6b4kH@ay*sdk*}7VF$lfst9d5*w%Mu^6TR=)y2&1PE4-$kUh$7B tB>A6@xpjA_)C4UF9P%PVdo62?sia!PC{xWt~$(69AR>Qh5LX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/blue_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/blue_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..ef231da0d7f7a1f72526e1d62b10976ec6eecf30 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0F&G|G%l7r%m?Bn>TN= zX%+EVPwC=eV{l4gi|f*xcIuR=o}}+q{>t_LKcCt@H~;R@>Hn`d{6EI_!@p)92~p7*cV|x0_Y$NB{>jcjDt?~QYu&cu9Y z4xA{m>86oLfOuDFG~z`2YD7f8}~f->uu{=HER!oxv%EEv~DJ zhmFsA3Y%7uq)5;@pjnJ1L4Lsu4$p3+0XglSE{-7;w|u%olMXZRIM07$RQ$ev&%yT< zTTgk;JHx>6_~Q({&qr(Qv1b%2$w?fzNzTY!2POM?7@862M7NCR>j zJY5_^DsJU=vkEaA@-VCZp7H5_{xrjN>wKiI^!4oj(09{zd8V4`%I`kK^_^2D{fw2k z+{2Y-p15>c!6n5xu8|Y6GWPpl@I90mo5EbgrYrGFsp60sv&NJy{MD^zHn}aBtP${W zM_J1~rY_Y6t-g@w5)ADIa~@3O?oc%-F?Q~^7Eh0pyJUB|rxEBD22WQ%mvv4FO#qTu BS_}XH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/dragon_egg_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/dragon_egg_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..22f6006b02f6a6b531546c7be10654be3f6113ad GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ES!(3KI9L>UDrGDQ@(X5gcy=QV$jSF~aSW-rmD|nA z#O%n!#5^bd-~X#s+ZX0-mQwlGWc{S}+|`t6U+kJMd7tokr6-W-FwwlRc&$@|4#(X) zj2ewq`3^dbjix@~?cXk_)*x8mcCS+1LPCP(`G aDPk1cB+_$DL+U@!Y6eeNKbLh*2~7Ztr%+}9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9322fb03383271042ee53af996d8f5ba094e112c GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F&G|G%l7=gpfprR_DW znk@wMq>C>V_P^-W&C+I4<#(R$7}8y0nHZw%<|(Lc!Xc~r?ZMv~pf<*mAirP+hi5m^ zfSe*v7srr_TS*7Fek@=JxEi6LAaK}WLKU~l?*H|ie4 rST1ETo&9V|(90uoE>7HDd-od7x8`W$$!jSB+RotV>gTe~DWM4fQNdfa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/enderpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..7c2080390298368b52ccf866c703ed7fb0013d34 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C79*RX1~5YUq@zEs%% zqStx4qi&WqgD^XjDt}0KiDhDlvYV%%wh4!*T)r7R{r8Y^aulroMsIkwS?FvJ9_U6Uc^bak6 avN>M6j{SA2U5*9NRt8U3KbLh*2~7ZnSxra) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..6535eff47acd07883a9c37ff2403130c9a9ade84 GIT binary patch literal 321 zcmV-H0lxl;P) zkpL-90ybv?9W@01|Nk{UN!i)i4UGpxxe+d+57n@P-@%>Vot^*hE#S5q>(Q|Yy#L(h z^v5%2-$i=^3m3hOQ!y5R7Zf=VHnWrsJs6FZsL@=SjsV@xG_= zzQ^bRFG_{`*tcmv?gxMbif5juk>|k|0);%|@+{*xK49jEvfa9@UDp{%$vqi5W8oYq zOkFoLS%}M`pnb5oIg1G&&9>P8iQRNf3n T`we^Q00000NkvXXu0mjfqw|Ac literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/fairy_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..4ead43cac057813bf3bfb84c88ea2065d1f86126 GIT binary patch literal 308 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0EUoV=_x;@}9`R+snSU zH`ryTpxz?>s~eh`xyA1voO|E3`u}^~`*Y_$*d}%7*%yvI|6gC+c-%PMP^>{*#8SX) z^AuiNi3RT%!=G)J3t?xMlr?3!QP|}NG?%d?$S;_|;n|HeAg9mM#WAGfR!;ZPMrK11 z=Txb*ZNJtRnXCBMocYaj$Uo_s#iu=6I#VxtJr;evYvrq5UF?-H2O|3~-|#nzyA^ieUx=fy%#UsXNw0=kUB)78&qol`;+ E09G7(bpQYW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_black_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_black_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..1b07361fbf9c3076b54de2d8e2cf14b8d023c76b GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0E^k;1ClNQ&v_sFfjOF z$b3nW_y4o4_Ye2l+uLuSnSAr+O;bD1|Ns9NGw`lu5IOMMsUN6^u_VYZn8D%MjWi&q z+SA1`q~cc60WJpHUUohfLk?zs=c?cT^UqJa;I~ShRlT2KX7ZGvxEAYuG42*;f(+bQ zbX>EyZd=C9pi=ev4bQVYp=-Z#);KeAZi&?9z0)?J;rTBQ{CzL4Yhw{2 z7tYx>V`A(isePT{O`FaXmtBuNbv^rwmF4<7+rJUZ+M>N30?b@vBsH^b4#E$@12I#+|S>fn)TuLyd&1X-#Ez`b_RuY wadUQ0_2mdKI;Vst08tE8k^lez literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..7305ebb53a750706e07cb0e098ef4fd8dea7e5e1 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E09icV(5xvTVKh4YMR~$ zL*`40y#JqVy??m($tIueGm~%LylHCZ`Tzg_Vg}x|3?d8Gedqw{VJr#q3ubV5b|VeQ zsrGbn45_%4bbyP&wwIlc#gK!U-?{4d|NQgQF8HldXI1ZKn3+5!D6YkNUyQrOnIHpq z79H2@t=pDyGpJO(e#7%DPw3jOoHfpjoLeHbdG9o==6?R>)T|G`=N+;B{l-bournyE yi<`51sy~lj;Ss*{B8kstiy~hf5=#F+$zFOA%VLGwbBck^VDNPHb6Mw<&;$UDzFm6& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_gold_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..1d86ec04aabccab06938773fa868e3e5915ab7c1 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9bYZM}cE_sJ%o?K6{4 zP19Rn$^XHSxhszCk|J-46T?~tkzxj3j|mx0K&6Z&L4Lsu4$p3+0Xc=9E{-7;w~`&0 zGBbCVmosE;d+_Pig)MAsZ6Tk%F872gxc$6xK~KQBU|B*$IQxW!D^#vroVu-{F>zs6 zL{#`OCN{o_Gy5bXW!WWmEK1MoJ#n+Pp>ekiN7?&0hSWI`3=>afF&hP?x22_|GHhMX d#M~myaOH$1D(O(>FVdQ&MBb@02O3e#sB~S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_green_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_green_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..8515541012fd4e377624137ef26537b7b3032b2d GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9bYZM}cEcl*rbf_V~A zl`C@F=XIU=2QOt~7_*7Uz!t1V4jCOgmMCRIsn;m%$@*Vte)3}kxRdwOa&8N)`401xm z^ykO!Y-|kPad^X~s%MOB?^g6JooKq6&!Au_)LY|r#QZkUb_P#ZKbLh*2~7aIpH@u( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_purple_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_purple_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..76d21002aefdb1bced886af965425aaad8695e0e GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08v1Nbz9nisN5jqj&0q zA@e0g-v7_G-ap(s)91f1`%7i3jshqj3q&S!3+-1ZlnP@ z)t)YnAr-fh4sbEp_OkP_7;-T4J6HYwpMQSZ1;175tm^#?Gn1zT#kE-Pi*dI&6J+4d zqT`yqb=xv-29>JUZ+M>N30?b@v&NZ`b4#Q)@12I#+|S>fn)TuLyd&1X-#Ez`b_RuY xadUQ0_2V+ltS?Kqh3` zi-^mm4UOJA?rd0{ewB@F-kDFCk#~*F4GP+r4xX9GzMv>r!DK|=`HwX eoX}9f%&_{FLEy^i``-Xkkc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_white_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/gift_white_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..1c1bcc9cc6205c746a3c321fe4a860297ece297f GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0E65&!0MV>YhD&9zTBk z|Ns9FhRmjRo|hDPZ{EDQeP;6g!@b1}y#JqVUCSV1>2gp5sDZI0$S;_|;n|HeAg9LD z#WAGfR?-132HRd%rXvO%Ed0xTAN)VRcd6Ocxe82D2KJF>??#8V?4PsjkjwN0H?hzs z(IKf}3+Mch+m!XtO+iq~aqGE9D-YB@H5P7T)va!cOj+zu_Pt}YhD&9zTA( zmO|D%-JT4dKDrI-StG{>RSWC+joTFVdQ&MBb@0EpUK1^@s6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/green_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/green_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..fab947453362d9403c2da31dbef0026db3a304db GIT binary patch literal 302 zcmV+}0nz@6P)r|M0L@}73GxeOaCmkj4ajNtba4!+xaHFwnsk_f$9eu6qvH4Vdk(&@ z*m}xy-Wdjl#~)|teLh-aCzs;pz%L=;BNF4}@G2$#Olax;0?Ac5J9ukO9S>j-*tqjW zlaXt~)2XVAx0wZQ?w+*KO0KN>!HxaJ5%0=>>mK~Spgx$_>y=GgR3_v`OY4_V@2 l$9Q0Vkpx5O0~;R(hTTbe>DTPl9|E1k;OXk;vd$@?2>@eNc4`0s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..0778dab1996ce66d0fc0bd157b2a574ac40eaf9c GIT binary patch literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0A`QWBmXBzp0()&6_t( zw{j{qGem0gJIQh9IY=*2W4LI;Z!FI7B|`I{F2nz;!dDs?4p#3@SIU{=zUbE>hHonv zcBkqs3)iW2FiA2}h}QnS5NIM}NswPKgTu2MX+Tb=r;B4q#jTtUcBW#);JyX_f&gjz{hu+9uEb?)9$x z9jRaEcpVDyI#($%iS_xODx>qE&ZTkQW?7pJS}*)I=v%l|U{RYuwY>8NX-N}{!@}Im r+$*XBzL;M*xYKXvJNd`)E6y{9+HzlE6x)0q=qLtHS3j3^P6z{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hambagger_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..de5527484f0421bb69eada7cf319d96b28e996cb GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0A`QV|0?^j@0DObC6!5 z#_(+g!>>aObKDoDE9DrAa~!PR{r{@)l?H}`x(q)i7JZ4(ylBI()XZSIm2-Eh-m-9= zBqN1d2NUhps)vDQF_r}R1v5B2yO9Ru)O)%(hE&|j=?i6YHsm-Ew&33!#_#)IzPJ?%GU zEDUQOa_AbUDm)?XtPj^lKS#B31HH&k*p9}km1uGZveed!*@{G%UlFfVNpzVG+PU-2b=jVU@`t`|^C*^e+wrts=X~SR<%;J^F z>AC5l2hbG8k|4ie28U-i(tw$Mq%@P5EJctIc=v er~e6d>x|G0TIm1) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..b46865e5ebf8c8b05a292b955c5217ad7e700d71 GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A8#&)>zymcqbrceA-S z1H+fgiT^(yxPQ3!|Ff;zXC_B8G2Og*vzePagN4P^&h!8O|2hl|r}XsPO2i)mH8Yk3 z`2{mLJiCzw=~H z{(A?rPiE(dtxAiYt6JD~ykITjj8kXl^l(;*F=s3}sMukV&(?87bJ9#E!PqH}Vt1@u z>GAUAM9nAFp>`jSr*_WVe?FC4y2Mnf|NEMIk-N_yvNrgeE9L!!twXwZ$_=1P7(8A5 KT-G@yGywpd2w`sk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_red_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..91e95336ef5959410eea01772e0cbf5ae903a07a GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9aN9{B%k>zB)k_Ye2p z-E6*nX7VXLz4iS3&D`8wY-|}UEGY~O(M(L<3=BF949iPeRsi)dmIV0)GdMiEkp|>c zc)B=-RNP8-V3J+CP<|S=9SA!{D^;l@9(?6xeCe8-_8B~ w{{6oLM?NsHNJz{$5Wu*i`=Pyr!W{+%zfR+ArzXqT0Nudg>FVdQ&MBb@0OGS_ga7~l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_teal_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_teal_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..94b4261db14895a98ba84846867c3a1aea2887eb GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0ETnH-%AI;s5{trgom} z0baamu{UqtWOZ}Af4F!1%;f*iwm$LkIi;t!o}d5q>(?hwo@BN%*|KE|i?1tJcCt`M z%_iOn_kpG`mIV0)GdMiEkp|?nd%8G=RNTrr6WVl4L4f&z>+7SFe#e)(|N60f7XOU> z^A#8Ij%RMXvz=kTW!9R eKmAXzV`pgY=6G;bq%9igBnD4cKbLh*2~7ZF>T^X7P2^o;PL7 zmMtewo_ziK^?H8(Q+j$&e0=U7?*0F4>-L$+tZt6XRwle@vFrg}jLHhX%vcr!H8Yk3 z`2{mLJiCzw

|lIEGZ*iaBBK#Nxoia!`sh|Nnnar$6f+_>|m@+^Hk5?uTe}LF_G^ zXXe&V9A@fwS~{uM-QwHatz(>Pcv!T^TD~Q)tH;QgV`&+`u5t&T_w8W+UvE#n*1GW} xKln<*D)+@RKJ#)pM(7;6-!kFPuRcbgZ`w~8Xs1rfx(KwM!PC{xWt~$(69C);TnzvK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..9a514e129e29d6497185d5c5bf41503c23987bd5 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A88&sQJD7Guk>vrEfW zkKxPZ#Qz@;+&|pAeP;6iXIq0Um~P&@SsBa~@5pLu=lTEt|GS&bbz~X-I5eIFYGy16 z@(X5gcy=QV$f@;oaSW-rm2`lMLD#31vB7{xS(9(|-}*Numya>HusEEvT-W#6hB>C{ zKeNcpBXZ9>Yx6&=Sa5wyQ&2znJ*}PL66e9+1tD8(g?``Vbh6+mH2>mvqA*4I(plfH z8JCwgU-&dz?5uvNP_mwCso=efE8hK(dN_^u^SQ(y)_1nGa^-Afo9{7Ib{5bf44$rj JF6*2UngH5|W|05@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/holiday_chest_yellow_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..3073dbe0ab5bd675baa493ea015c979808a16b70 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0A88&sQJD7Guk>vrFsl zX7ewX6aRlaaQ|@c_L<55pKT4cU~<)Cs0`+ccVyL(Wnkq>(*){aED7=pW^j0RBMr!@ z^mK6yskoJNfJ;J>F|~)4>97L_Oa8`+AOEw1Z&XbP0l+XkKMJZW& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..7f239c2ee0df63b06d9eebef08ec528e94cbfd9a GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09iMVCZ6FThGsbN>A_Q z$N%>a_imq={O9}E2M0Dcg}G+gXhj*wJIV>{yYThq&6}onp8x;S6~PRzGs!I`jOK ynF9MuzH9rJ@7$)T{S2P2elF{r5}E+dk!GX- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/hot_cocoa_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..acbc7cd321b061744db6c2472a9e134df2bc7aa3 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E09iMVCZ6FThGsbN>6X! zg|9C^{s)3T-@iUMu(>JBHOodT%0S*xPGI}YZ(FOXjtIq__?~_>pnML}{}!qyD#?;Dpc(6_GYm7YL=D u59U7UeBsRlu123kpBYJytql%5DrS(cV!pz2`n3hn5e%NLelF{r5}E)feqn+D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/north_star_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/north_star_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..349471242d5489294ce0c177fa94a3a5f621e060 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C75&M=E#;8(Y=c=G_e);j|?>`*NUB1sTJ0v0KzGIRoPy=I0kY6x^!?PP{Ku(FL zi(^Q|t=!(wre;NfV-klS{+oU`cmKh8v*Lwy{&StGkh3@Raa|0H{KD6Gj zLfPkxb-`g)54B2#m1}=Vw)|eJamZ;8(@a-qCk^WZi`&heOUY`y8`F5`rAdU2N39lmeA9mIV0)GdMiEkp|>sdAc};RNTrv zdz6t`QN;CPrBTKIuWY^XVgD1Z-`}GA{Y^x2PuX(Y{uqv&6SX;NW&v`Y3gQM|uQqG3 zIh5~GEmfFjzDc8iX_l;2=?U&P)rai_-DFQS)+u~3e(W+^;r{m6m0!KZ?^wj{w`EA5 W%`{PF^Xw9!tqh*7elF{r5}E)ngjM1I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/penguin_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/penguin_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..d30fbf51a48eebeb76a186fe9acede21f82b3551 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F&G|G%l7=f{s9w{6>Y z^XAR}NAg)%SpM${ecNqvF^OS=JLA$~ekUg{D}0_g&<&=2=|> zSD?vfZnveTS~+>!6w>q7@}IjIT03{e)a$!ut=2V|D>8Fgp0o@D^Am1^C(iH~8QuC^CmP&BrCpVW~^n`n#+tYf3)G>=j$l{ZLOr c;SK|X$x)M~3wYOQ0xf3nboFyt=akR{0A`$0ivR!s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..d909a22a73aa65233d8c5263a02dd379f3a4835c GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0F&G|G%l7=gDlFn>TM3 zX|YYQ<}>PIOJQK>Vq-g{rz85dVc=@pHFR{n}7G{^#4~J{vTubzL??vk9)6Q z+-tTunI^e4kZ+1LThWOoM>C*_j3q&S!3+-1ZlnP@eV#6kAr-fLyIIAK1aL5Omwsn^ zSAWs<+OzCu6O}B^Z~l=U|LyM{#))UXZ+w5;^E`9Q!BV+t`W;zazm*pK-Z;nUOw4!Y zz=WS#&1w|d*=K3>TxL3}uWda2NgQu&X%Q~loCIHPFdMN+^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/purple_egg_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..d8330e73626fd34f6fca4f72d2c214599d5419c0 GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0DHkD+=VBk|w#e+2-WQ zY@63F?*0F9@Bjb*-xo6^ozgp{r}zID!~ZJ||39Bv&(FWrS91H@{JTe|cd@ahFfbT( zu}!h&E7D@~2%Mn|G>fq$$S;_|;n|HeAg9sO#WAGfR%(wc6SE-?^YyT4l9T@YU%EDF zy0uj%&(w?GYrme{bEfz{!>W6;Gv_Ve$IWQaylwuC=oKB^%iiu<$N5HY%CcOhkdW9H z2L%|Ha2%|A!=MqgtvjG0&vNcWrR#oCk0tfHvL$qLF8VF{ZurUN>1UQj8cy^46(6vz f$a8!8^D*Df`+P}DBRO9I9mC-1>gTe~DWM4fY(#O; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..235076974fa929ba79ba8f477540f627ef90892b GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0ET+@QY4s?3}u3-iouw zFTQy3=I^yT@3fVaxB`1vrFAbp{i@w^p(ZKR*T&@L&6}ono;m&w|NsA=G^zSJP%~pm zkY6x^!?PP{Ku)8li(^Q|E#I^3O-B_tS`r!AFE_FMIg=>nZXN9EFbi1?n24@vWHQ$#_RLjdPd7 zTILta)S?tpzPw>>dibN^UH*>xL%-Y{-yRCRvS=%}^QK+tx({OwZ~4b7tYF>vzjfDB Qpko+3UHx3vIVCg!0IJ_|O8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack_applied.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/skins/reindeer_backpack_applied.png new file mode 100644 index 0000000000000000000000000000000000000000..327a8589cd7f51fd90a4636fbea5ff280da0d136 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ET+@QY4s?3}u3-iouw zFTQy3=I{Ui|F7M7r>&&K71+Znt*hN~;o{S;HA$hqHYPd#4#8RbLE0Egg8YIR9G=}s z19HkeT^vIyZl#`RWn?kra0!%XTC@CrQuwo&x+&_Hu5azOiQjheTI0T(Yz6OV*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/black_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/black_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..3686ac12c63dd9ffeff204b8ae7be0cf7a4058ed GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=Y;SLGU|^uE ztSlxb#=*hS&!QFvlw&Lj@(X5gcy=QV$no%WaSW-rm3)9Z!rA%ofgXWm;p;3D8a8jt zwrWXy6vmgdp>;>g)JDn9&djB(4s6vE0yJhEeD>&35Sv(|u~SUU!62Te4h?7B7#h2T V_v1H<snlKF}kOEPS11Lc`{b z*;XxykHYwpHni?&nc67X*_pYN)q$;gLV(7MgU=p43Stv$GgpT5zfws5A+Bm3twlM(6D)9 zwpB~wqcFat4Xry`rZ!4;c4jVRbzrNW5TG&R;Il`Mg4o0wjh$j*4hHc&b!a&2#?aU$ VBsaTSYA?`C22WQ%mvv4FO#qjoIkW%( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/cyan_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/cyan_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..8ffe46b3937edde07e2357c6efce4576ae68068f GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=?6dBP-n3Kv zwd>j9x)|J2+V)8G0_7M>g8YIR9G=}s19Ch(T^vIyZY3Y!j&OE9e4s}lS@=53goe!< zv#nYZABFKHZD`%mGPO~%vomuks{>p0gaC~h2cJE96vQUhXzUadb1;bKsYAnAH-^S8 WA-UPrQhR}BGI+ZBxvXgpT5zfws5A+Bm3twlM(6D)9 zwpB~wqcFat4Xry`rZ!4;c4jVRbzrNW5TG&R;Il`Mg4o0wjh$j*4hHc&b!a&2#?aU$ VBsaTSYA?`C22WQ%mvv4FO#t{_I)MNH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/grey_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/grey_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6cd1eadf38ec8bcc421299b8164399068166f8 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=+}YV#R8$lj z8|&fWVPs?!yT^7bP>!)A$S;_|;n|HeAjiYg#WAGfR`LPv2xsTR2YLjOg|D+rXxO|l z+o~n;Q5av+hSnV|QyV2aJ2RKEI({V#bupwQirF;o1EaktaVz-%cZ9R^;R8Jas-o9fCNxZ* zlx@|r@KG3F(uUR@EmIpMJ3BL%vO2I;Zz#~1aq!urM?q|2jmAzfF$aTqo;oy~bz{hI W7Q9n;@R}~rOa@O^KbLh*2~7Zy9X^5p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/lime_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/lime_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..061b4d3a5ce9df4558127a7db42e3ba481fe589a GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_trk~**-Hl>6D(^ zdVZrWHsutCLYp5;fO3o_L4Lsu4$p3+0XZI?E{-7;w~`NVM>snlKF}keDtet|Lc`=q z*;XwJABFKHZD`%mGPO~%vomuks{>p0h60Tl2cJE96vQUhXzUadb1;bKsYAnAH--#n W!8>&aujvBKWbkzLb6Mw<&;$UyF+9!y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/magenta_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/magenta_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..51aa175b239ebe2021fa4ee7493910accbb5e5f1 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=eA?&92E9{L z_}7=PbpEaktaVz-%cZ9R^;R8Ja$->uJCNyl` zm~GXP_$Z7oX+!IdmZ^=Bot>FWSsmD_Cj@BBIQZ<*qaZf1Mq{U#n1ew)PaPW0x-m3% W3CYc_mf8z6lfl!~&t;ucLK6UTVLhJ! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/orange_small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/orange_small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..d68d3fea93ff70cdc3b8e62b81e4aea37f198c97 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq={G{IJRFd9$ z7yd3IwiHDM^BFDsfO3o_L4Lsu4$p3+0XZI?E{-7;w~`NVM>snlKF}kOEPS11Lc`{b z*;XxykHYwpHni?&nc67X*_pYN)q$;gLV(7MgU=p43Stv$GJHpxd@PQtIWZ~;96B;&e z%(iMtd=$o)w4rrJ%hX26&d$uGtPX6|69P159DMfZQ4pJ0qp?#=%)ua@rw$Eg-546X Wgyd#dOYH@k$>8bg=d#Wzp$PzLEsnlKF}kOEPS11Lc`{b z*;XxykHYwpHni?&nc67X*_pYN)q$;gLV(7MgU=p43Stv$G}{24nBMID2Pq0(by>_=3o%dQ-_ALZVZiG WLUOaKrS<~NWbkzLb6Mw<&;$UG6FbQO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/small_backpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/small_backpack/small_backpack.png new file mode 100644 index 0000000000000000000000000000000000000000..0ceac3d7ecb22d59577494fdf2963f621a3b202e GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Bq_imq=ygOBIS-4KE zgGrK+f|DGh{qDz%Ksm;eAirP+hi5m^fE*7`7srr_TgeBwBb=QNALtQC7QW6hp<(mJ zY^#>UM`3(P8(Md?Ol_3x?95!s>cCb#AwXls!Do*i1+j@W8au_r91P-l>d_JY5_^DsCko;EsrixpRO=-BEEW%Y=qS z3%sma6qkhYC2g?O+&Q&T^5n@(RaOVK-K$q}&p5bj$&wH@u}0%LQ$h{|@jP{CIP1o+ XaUH*xo}fe{&`btTS3j3^P6_=3o%dQ-_ALZVVaD Wf_Lf;Ueg7d$>8bg=d#Wzp$PyXsy&+k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/trick_or_treat_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/backpacks/trick_or_treat_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..00a4e59e0cb4a2693e7c735f5a150c4ab47e9095 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|37i&^5bRRk0;17 z{AW0lFT!w$VL=#o2gCm)UA9byqb|Y>x(v+U&u8lbRWp_Z`2{mLJiCzw

?jIEGZ* zNee=drUFH)X zY;&qrJ(*OVKB~SUc;v*_(n3#RCc}3zJ1;F;ap1t!vd3pOruuR@FdG+L3R}Y%xp9^5 i<1>sK)~26h;AC)0&`Pa+;QJY9JA_!@p6YS~Y7*cU7`2b%8^MalQ z0UWYf5+V%K0z`OB*e@Pz%4}T3%ENQ8E6G^8^{`|_FN>c2qqNvt1th&E-=tQzPj2*ppaL~6= z4!e>Sr|isPV|V|Aj*?}LdhJlAn=db&7;Hd?dw0d> z#$Lxmi}hACvVET&r2v#;ED7=pW^j0RBMr#$@^oOp17eQ zyK)sbPc!QwZ`rAd5;_yaR8n{jCor0)yM{}!aW9eD*>=z%LgA>24ojQkAIFD$JO*40 Yn}y8GU4KT^0!?M`boFyt=akR{0F)p(jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/fire_soul.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/fire_soul.png new file mode 100644 index 0000000000000000000000000000000000000000..54e486380e2aa7447f749b75da2fcc3034071841 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9b&o%#P};{Usj@1{r` zi&pM2V*ak$kOGuoED7=pW^j0RBMr#0^K@|xskoJVfJ-9LWHLj`!8a)j7}7Rqt(0hx zbX#>wpe;*aN}^cG8-_Fs_T3I88<((1I7BF(3t(HV%^b(Tuu+9A{po}0j6jnZJYD@< J);T3K0RT22HBSHl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/heavy_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/heavy_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..aea5eadf3495dcafdd69ee756170d54921665ca4 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4x{e{kOU&bF|Gp*E5& zej$TFID?)NgOnans_m2NJs`zc666=m;PC858j$1S>EaktaVz-%zm?U3ElCnBS2dPQ zV_ak@(i+mN-XP($O7W=z+wRFlm7E<1Bi{wR<4H2`(Kr9b@_JU}JEO^rhnOz?U|^8q W;y1ax^MDo5JO)o!KbLh*2~7ZRj5t{U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_burning_tier_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_burning_tier_key.png new file mode 100644 index 0000000000000000000000000000000000000000..2d7de726d03c5a9ed529daaca0a4a5d1c9c31128 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3G0#XRn@KjWs+sjnX= zE33!G#>c>*Te$TfP>!)A$S;_|;n|HeAjjO(#WAGfRoe1~0*zqsboFyt=akR{ E0LSz)!TrCsZ0558v3)sJKK_<9gh|0|ECOXR$Iw_;5U{yI2J>kHOQ`&t;uc GLK6VfCNc>*Te$TfP>!)A$S;_|;n|HeAjj0x#WAGfRc>*Te$TfP>!)A$S;_|;n|HeAjjO(#WAGfRqD+!Js$((`6xW2mQQ!@(1h8sgJV9Y}cNG>esCLkye!caz!%pb-q7u6{1-oD!M< DuSzm@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_tier_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/kuudra_tier_key.png new file mode 100644 index 0000000000000000000000000000000000000000..05881759057561a411e7494b94a1db03b3b0024f GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3G0#XRn@KjWs+sjnX= zE33!G#>c>*Te$TfP>!)A$S;_|;n|HeAjjO(#WAGfRief&epCb4W>#xav!`xk@c=4rcTyR2n2T2{I?YU?8Q6A%2ny-!;(1l2Cneaz$X eUs9o$pMk;OSMZO!yySnNX$+pOelF{r5}E+zm^VZK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/match_sticks.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/match_sticks.png new file mode 100644 index 0000000000000000000000000000000000000000..376e3b09f293cf33b9d812dce6eb718efe7ae190 GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`KAtX)Ar-fhCEg^6v=|!v`Oc8E ziI*Ys+L9v;Kff~mFFt(sgn2^N%G>_~!fj8*JV;sPGLcb1oM(Z!17k+Eg7-}EHD8x# h7B}vkW)a8CaDRu&PJ4~+t3Y!ZJYD@<);T3K0RZNKF600J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/bezos.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/bezos.png new file mode 100644 index 0000000000000000000000000000000000000000..cbc9dea8b97ba934369e0f66c2cdd6411244ef3c GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0E3+7oX-Te!NNj#Z2{A zhZDYj%6m9n_C8R8u_VYZn8D%MjWi&~$J50zq~g|`o<>dvMS;UXck7>QuV1>Of$>R@ zqRnQf_4}-!q+M4{Z0a!1dU$>Xqwx2ghdGKoL~dWIsDF9MZSev|zOr_mHNRXL{|T}( YFdtVoV(fg73pAI()78&qol`;+0G|LomjD0& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/blaze_ashes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/blaze_ashes.png new file mode 100644 index 0000000000000000000000000000000000000000..fa20b32a600db14b0d8ecf9d1c406565801bcb7e GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSD~Q(B{r`V+S6A1+ol>5j zp8v0ET&!SNwQAM>AMQm(MF9Z;f2J|m+1bg;%06>F8V1zBSQ6wH%;50sMjDWl;OXKR zQgN%)ua%LBk)!5S^NzpUw;l-Fweu3ogmOC22WQ%mvv4FO#m#$JYN6+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/compact_ooze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/compact_ooze.png new file mode 100644 index 0000000000000000000000000000000000000000..79a3bc9242cbcb5921f1f5799222e7595cb90511 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3%>e7SZnaPtZGX{($| zrWnOm=z1l|tNRKo*z<|$aIKs6YAH|=V@Z%-FoVOh8)-m}v!{z=NX4z>1N@gRDVWUe zKFMUDd^AFpTjznwiYFTxjueQ6yk;?;(tAnkV2{AmvJD)EH(fXtnGhQ@)mY({WZ2q6 b`HBob()b-WEimB&8pq)2>gTe~DWM4f@`64l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/corrupted_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/corrupted_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..61f8a8101fa3162c4530ab7109a75be06b0920d0 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=5>t-ki2)Pgs4uTWFZB zg{6#=GDy;=Pa8-vmIV0)GdMiEkp|?%c)B=-RNP8Fz!h|dOJR$*)r>T6?F0{RW}_R8 zK9db51VnAx9LU(g7iK2JXz1lE!+O@y=*`Pxr{2ABaC6$ZIm%JegSUD`q$Agaz-a+u o=brHe1qZ}U;M>?Ndo+#V*e;=o@jJ3&fc7wWy85}Sb4q9e0ET%#2LJ#7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/digested_mushrooms.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/digested_mushrooms.png new file mode 100644 index 0000000000000000000000000000000000000000..d274ef38d41b9ffb6340185c4b7322deee400d36 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0F%5${@0(wbjX~GBHSS zcB@!jn^OFJGr|A<4{EJa2}|CeNh>DYOzo4Y6)PLYr}YGS!WMYEWNBS=EPgMq

@8Qz?8{H4rgon;x{rrI@IddAF|DSb|vhoLW(&8`0D(K4XD44$rjF6*2U FngHOCTXX;b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/ember_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/ember_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..f74ff0c6b9ae0498fb4202e22fb542f5c6e41762 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9Z;82*PaoHpk_Y9cVv zK%&Z&Az6*VMTEhCi%~P=*ejq4#*!evUqh6tw zMeCUV^*PFY>+c=8a44-USfyC|dZ=l4)WbKH4{msP#J(1}afDU5>f7>rGk800b7nsj vDem@Ycx+(qP_enL)}`#%zu5eL>N1Sy)EOrzR6L#vw2i^j)z4*}Q$iB}l3z)Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/gazing_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/gazing_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..216790031c635961a36e557dfa5295ae6ae93305 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7E+dA-~y`oB5$&NSgo zDT3#m6(3p(t=HpiR$wpHV5;C{@aJYQR~Ji@(X5gcy=QV$Vu>Y zaSW-rm3)A!;=R+$Y)OG@TYK)x$~!PgK1(nA-YjvlG%o#HbIPsx9eXT!r~Kabyz|BE zJcY-{=Ph5Azp0Vu-@M?!OM#%6gBWd?=qR8$o8 z_0IeMBPl6KMn)#Kghdr7%~%rT7tG-B>_!@p|9 zH@#6iuJ$zb!W`orOV1ztb@$Jor5oB#_=@n=du%GLU)ZJ*DHvtII_rK1&%V8^_n%+i dZzHoihVupE=4%=8)j(qzJYD@<);T3K0RRW%JTU+O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/kada_lead.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/kada_lead.png new file mode 100644 index 0000000000000000000000000000000000000000..9b7cb907d8339b5360a607aa48fa0b83b31b466c GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0C^rFj*F^vwddr{lmSD zVJ2s*-I9zHoYw6=0hD7b3GxeOaCmkj4ao8Eba4!+xYgU&Eb0)*I^>3 zJN0Luv(W8e&1i{ft{2Uwz5Nh(!1G*Hi;{}z>&~j`yWhP(3I=FTFi}3nvdiCQMb5mH gm0=2hE&dwUbJZ~}$TzwHG@gOM)78&qol`;+02-!1H2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/leather_cloth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/leather_cloth.png new file mode 100644 index 0000000000000000000000000000000000000000..ba311f6410c3c713777e4437f4cfb98a24fc7dc2 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0A`QW2|*BSr)Eyw%W~K zTOi3uVL|e)E}#TsNswPKgTu2MX+VyPr;B4q#jUAbfqV@CJcnf76#iG1j`R@QKV|>6 z7<;w7GcLGooE^1u{=!KYjc;FVdQ I&MBb@01($kod5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magma_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magma_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..1fa68a90468aa93cb1aad2a1d5f712f6e06151f5 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7!EnB6UvzZ}ZfCo7xI zz!1v7V9dZE1JF!$p`pva4#r{tYB>6)4KVl2?h Z$#CF}P+WK~>jt2q44$rjF6*2UngB&GHy;21 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magmag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/magmag.png new file mode 100644 index 0000000000000000000000000000000000000000..b695d75ebbeab36573373fedf4c272bbd1d79920 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3$$`W?Fy{_M2=l4D-o zs~oSkDjbcK2x#!!>mad3!pbCAKT$#|VBJSGpi;(?AirP+hi5m^fSgEA7srr_TgeBw z&dq7Oq^<4WoG~x?<S(3~({&m>6c` z$*OYHxOUMhZ4blmiGfq|1ez1eyN~B}T-@zw0<=fZSEk%UQm77S34^DrpUXO@geCyZ Cy-P9x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/millenia_old_blaze_ashes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/millenia_old_blaze_ashes.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ded9114a5d6a1f4a1a6989cae5aaf240b244aa GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0C6zmHkuiWM^krR8-W} z)fEsB@Fz)cxuKe;r)RRb{Hj%}{;w(2)z$r0{81gKnz1CvFPOpM*^M+HC*IS=F{I*F zsb4cAiviCY(`)}8@9Vv>^K1JvZJ=Jw<=Vtz0q-=G9sbaO5;Yy%Y N44$rjF6*2UngGsKQY-)f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/mutated_blaze_ashes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/mutated_blaze_ashes.png new file mode 100644 index 0000000000000000000000000000000000000000..ecdd932f2b5eedd9db3a80ccf66a2f02174ca83f GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0C6zm2G)+)XvVXsHmu` zt1BQNz_+*3f7c98Pfx3oF! zrGCwfECxJpOt1ZWys!7h&adsyjPq-@e6%u?4$uE?cxP9IrG@S19Rbt3zP#?7dFXJ=Jw<=Vtz0q-?dGsiJqO+99A- N44$rjF6*2UngDQtQwRV6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/rekindled_ember_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/rekindled_ember_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..e14a612221932269d249f3498cf7862a263de22e GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9Z?G5lY}@V}JdNet&v z6M=~a5>=)Q$!ZKPA`Avxj1Eua3xSFlOM?7@862M7NCR@BJY5_^DsCko;EG7#5!IOQ z%6Q7aD4~F1GmoUi9LFuqO3ci{9(y+jGdM5coRFCEX3ZOpAo(Q=bxb&qBFLQz z&EL9ptGjE63*$U>pd4dKkY6x^!?PP{Ku(yai(^Q|t|7{Aifx*+&&t;ucLK6U{D@5=B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/spell_powder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/spell_powder.png new file mode 100644 index 0000000000000000000000000000000000000000..cb77742acd5c72e1ab469fe8618b89e4913f5cc5 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cjeg6Ny>Gfrw8+#oO zFEL)x$kw00m}|tir?Tk+P@1tM$S;_|;n|HeAjiwo#WAGfR`LP<8$t_uRE$?NEGlB2 zF;PY=i&0EK+m|gTe~DWM4fZ2voI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/tentacle_meat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/tentacle_meat.png new file mode 100644 index 0000000000000000000000000000000000000000..483544e4697a8ad007235174fc18e2505192fde1 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08|4Y14`sGd_R*{Ph0) zE2mB^GWI&`8hyqTNi z=kzF;yL*F79Q)^l(2nIXCw_m<+WJo3F{nsdfN9d9YvnGC3_pAn^%tJtWCB{n;OXk; Jvd$@?2>{C2QRV;u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/wither_soul.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/wither_soul.png new file mode 100644 index 0000000000000000000000000000000000000000..96d0772c894c8317e405db19c1f975bcfd017c5c GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9aP;QNE`lUJ^rwP<5@ zQ+shumq%%BN_!@pgTe~DWM4ffl)eu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/x.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/x.png new file mode 100644 index 0000000000000000000000000000000000000000..e400d1a26d076d6712b895da704250e25e6e1093 GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`mYyz-Ar-fhC3F%*3fv9FVdQ&MBb@0EHwWxc~qF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/y.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mob_loot/y.png new file mode 100644 index 0000000000000000000000000000000000000000..a0572dffdeb3272d889d93c09aaf46d9a976a857 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CVZpmU1B_M5BZ|C*$9 z2Khw~8^nR4j3q&S!3+-1ZlnP@=AJH&Ar-gQcDOPgU=TRm^-s0`qoqYoQ+(GGTcd}^ yzRg+nwOOe9a!$>RUjNM>GxKa_&&*#|5vv@W$FSrt3r7yn2nJ7AKbLh*2~7Y&#WBp7$3+YPgg&ebxsLQ0RNsZ AQvd(} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mushroom_spore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/mushroom_spore.png new file mode 100644 index 0000000000000000000000000000000000000000..c1c31ba2f1828b8a137e4ae0267dcd3bcd6ee5f2 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfFHO}(0o|qfDbxQ4- znH8y_ULs4s?gUCOmIV0)GdMiEkp|>AdAc};RNSiVYh-IM)AJh{eoqu!0545jZGHvTPFTL(0a N!PC{xWt~$(69AisIe`EG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/red_thornleaf.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/red_thornleaf.png new file mode 100644 index 0000000000000000000000000000000000000000..b42836c17de541c3afbfee799967a4f3ee76e5c2 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Eq;Wi};6V~d4HdVtPU zO`||tl`K(_Fkv2>6v5pF!zCEppM;LgHgveX`){pr$ z;mnEdd4XIUN^|GRxIE(!pLbT~X(Iddbqpd8*T0Z;JHC2e*DaSh((V_cxt-29fnlqB+G+&I2uE@O1TaS?83{ F1OUHSN|yit literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/scorched_power_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/scorched_power_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..4d19fc094dc66c81f7a8a84af970c5f95c9acb5c GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F#_z3`f!>rNN@IhLmX zvlIRU!MQ!+pSmUjmb$Z9iP-mzbB;5G@E?iT%geC1m@(&n5OV;~E(T9mKbLh*2~7a(6-g2R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/sulphur_ore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/sulphur_ore.png new file mode 100644 index 0000000000000000000000000000000000000000..49d97c1e2d4d4add84865b3a8444c872277e99ef GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cjeg6Ny>Hq)w|KH;N zzYKYI#pm^9pBsA}4=*uZ(a6@Hz?f^q=(_Ozd!SOrk|4ie28U-i(tw;GPZ!6Kid)GF z3^58K-QA10XOsz*i4-vy&0!HWy|qX}V#gutmY~>JF@pmC!nFmQoi`2~*kEi_RGw`f x!2A8=RBit+4O>3WnPvK%fq6zLo5y2DhT}}apS_#^Jp!7};OXk;vd$@?2>|?ZOxyqf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/whipped_magma_cream.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/crimson_isle/whipped_magma_cream.png new file mode 100644 index 0000000000000000000000000000000000000000..3f21a446b14037efb21ab6dee9d0db6aad80de0e GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9ci{rmFL@7SI2CC9v8 zEm!Ye<#@GK;b^QxP^so#2Z=2bR*4c)AMIXk1}bGN3GxeOaCmkj4af=fba4!+xRva{ zrenZ1nR&`VHKtUV!WNE?EGsjbB;BVTvOU;yIaD;=!DRXAF57ttZHp#sJjpWQmS@wc vc?ri(W$Hz;I}|N<(!SgoIH-r}SOfle?E0#5hVcAsQ z-m8vWBBz}Xb8|~b2+eKo?e#q>dBdfrkwQlqWpUYA xRNC9|na}$d8RZOy7R#smx868tDSR`HVd)gfgWL5V&H>uQ;OXk;vd$@?2>@xVM92UD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/bonzo_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/bonzo_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f1026cb6d96f053f6ec5995d47c420588b1eeb GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``JOJ0Ar-f_PH^OHa1db5ZW1>t zC^Wmq;S|uS_`s3*ra=nxPPN)|IqzLKGk1qeFg(99>BNIY2Wv$(K4`gK$i&Itdro$n&!w9d0-L?Q%`0agP!-E1q`3l>*5Mx&F^ShhkV|5ZcoNE Qd7#w{p00i_>zopr09{o(jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_10.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_10.png new file mode 100644 index 0000000000000000000000000000000000000000..56efb17f243af4cc340a59bd5fa30e918f22f047 GIT binary patch literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}a)3{WE0ESQwK8${O>LU!9h0hQ zV!8gOvvC!>op0dWx0Y5O{#sV{R-OSCZoZc8evSd5PC;R6rdFDkcE)Z#>Si`R5pl+@ z-WnFRT2>D7ntE}U#63fzlp~o$%@{&6a#M;b`6XoD9|*k;w1%-H$S;_|;n|HeAg9#R z#WAGfR&HM?(-8#$XU~Fbcemg9-&HzyyS=vF6H qr{cf~KNwvn9yOk*n(nstA|wBC?v(4HR~G{vz~JfX=d#Wzp$Py-lW1xH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d23368d5b21340328c298950363b764dc92eb6f GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0ESQwK8${O>LU!9h0gY z$u#$^W!xok&yXl%Hy<@qD?8sn<0|&`Kb_58ye-^(6}1hlJp8q+?5#WlG%Rd2O)N#t z7(z30Q;I72C1m~_ID8jqB4bIAUoeBivm0qZPJyS3V@SoV+!Kv#haCi39@eL=c9`h) z=-uD>MvwAtpVB&!pJ104?7Fn$L;kP&==(|`3vy$peSh}i1H+Qy2De$j!rDZ%~T6EdMY`-hZ-Sa59ou5qH~YQ|4uzq1OZ n#CozXF7bWuckJKcSH%n;`MB)!l%Jdh+RxzW>gTe~DWM4f67FED literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_5.png new file mode 100644 index 0000000000000000000000000000000000000000..a2621d61c936132d44c0a0b69179a3d6c0b90be5 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}Y=BRQE0E@wkVz@349&j!r5wpL_pPO!Z=i7%`}&{G<}Th=9{y^kR$5l}@|t?;W;Q+%amKFRmhOIz0ijMo zVOE|2irNMiZoZl(mfkU`ChoqeO%t_Dt+b0jivlfRED7=pW^j0RBMrzY^mK6yskoJM zidC%HfPp3O5nE~N*?a$I=&lp~uYWXAX4XB+^evMwODp`ew`6!-9y&KW<)U-5zt_q? zn99{yII0qSNpT2}U!?tYE| zp-w?z#%?}}+6I~?mfkU`sZA42+J_-u1t{?<>DulhT`gp6|n)YZdI%LcL};UAw^ns-%Po1iHvE!dnDmbGp7#rz+6GEG z23DQ{mhOHQZoZl(mfkU`sZA42+hLS`u=#X zcEs5O^ULpLCN;)r>6$*1ZwNW$b+DwxqVw(hznh}1!f;Y&=7Q<_ ge%?JDQWDBtb(r%i`@%;}K+73CUHx3vIVCg!0H;J`asU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_8.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_8.png new file mode 100644 index 0000000000000000000000000000000000000000..211a617c032d8dfe1666ec0077b90ba9332df7ee GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0ESQwK8${O>LU!9g}M8 z=A&t1x&EiKaTU9~rk<6Dzm;czmX*DQo3B$)m}5Ywoo}Fqg{_*Ym1juQ+_#p>kxX%y z#6`^*LNjtxiYoafWJ-3Jga8d?ED7=pW^j0RBMrzY^>lFzskoKfca^chK)_jF^IhKW z^PTMbeyy@J*B97dcJAZ7AEulSsuY(UHjzS^t=vEJivErq2)HwhbF#ndrBuKsy_dDX}Y6WVP<5@PYcGD X<(w^UMp8aN2QYZL`njxgN@xNATi#w1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_9.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/catacombs_pass_9.png new file mode 100644 index 0000000000000000000000000000000000000000..e813d766df3a21da3b268a8be9b6aafe5b31f531 GIT binary patch literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}cz{ocE0E@wkVz@349&Si`p9{yII0U8#zYNl46AyF1?zUD68T2}T-ItGf` z2AU?8#%?~|F{!Cd6HVNGwM?xxR^C|)G@7v_$S;_|;n|HeAg9FB#WAGfR?aC_vBL&D z%ol<#yslvN{=Wa2fk9Bf|D8XjmrYr>sv>6^-v_x+wFi4-kALRLjo*;erLzopr0G3-`x&QzG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_10.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_10.png new file mode 100644 index 0000000000000000000000000000000000000000..832868b39f7e539eb77611df6a54f79e536bb638 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}a)3{WE0ESQwK8${O>LU!9h0hQ zV)@fKq)LR{&NuL_rL&cXzm}D~m1ls3o3Ew2pJPC%nyHmjP?)Brow1vbmX(9LnT=0G zoUyC7hJ~%XrrsqzanF#bNFF9LHipoQ+?1k9ehHcRr@OBKtzj$)@(X5gcy=QV$SL%6 zaSW-rm3xX+sKr3QC2&{!i(UHX{_1!71s!w$9oltx!BbtOnEWTcNuDfR2G1q@+l<}? zTv`_!pw>`&E|NWMht>P$WGlye(_**2D3_?Vd$%yt-pAm<%`3T|k4|{_b=~g&{E}=! kvIaT}7U@R2YWK}zmdKI;Vst0Dc!>f&c&j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_3.png new file mode 100644 index 0000000000000000000000000000000000000000..774e4f812f7081ff7445cee70b722082d0a30ec7 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0ESQwK8${O>LU!9g`Z# z!}QkD`I4TvXGoNqsg<#tkDYH|l?eM!=MZxjZz~Uf3pZayZ38VUdn?ZXO%qEE3tKZb zhR}@Ml%h(037OmdI_5wV8B2ovf*Bm1-ADs+3O!vMLn?0No?_)YV!*?C@#nX$tv)CJ z>PPae2y?A{7-+H7VZ!d{`BwMRvhIjF&j0@R->(_zI~XqQa@d&krg2k7^GsfYU4`10 zElw)sB+cQT@?Gwdc!-S4pMb!^&P5y#!nWO>JR#WV_uo1%O<~m(C%!o=MP+1Xf4R1# Q5NJ7rr>mdKI;Vst03}ylP5=M^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_4.png new file mode 100644 index 0000000000000000000000000000000000000000..1fd8ec2d158854c9f7b366a9f8ed237688d0bad5 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}a)3{WE0E@wkVz@349&F}8~E1J`KNP8l?c1Ji?@}Bzm}D~g`2OMsgRwrUB4)22WQ%mvv4FO#pldUzGp= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_5.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7fb8d15e3a3d7e109106e84f5da6d514469fe2 GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}Y=BRQE0E@wkVz@349&F-5C3xyAaO#+6cv!dMJ<~GI2M_0-p7xYs>yf*X+4pBSY%u$l6sIHhqDoI;!7dl}#U;M) f{f_-R{HmCth=;T7neazvpzREvu6{1-oD!MD#X)Bt}5_O(~0UHsEjcr1`>*|`-47qwbqBz<}PUhn#}^e~Ig>Dv1X iJyyQiJ*6$~J=;V!&Rh5RYgYs9XYh3Ob6Mw<&;$T#mttK2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_7.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_7.png new file mode 100644 index 0000000000000000000000000000000000000000..d811266623ca08b1f3afa9477b8beeb20aca50ac GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}Y=BRQE0E@wkVz@349&Zfyvxr?`zhrgDUy<^%SKQSTe0uk~>@Sl~ODo)*JEtL4?$BBn+5Uis|391) zU6c0Uy!CsNjR(TDbWNYhH-sGWI#|+T(fUSshT=najzpHptoPPGznh}1!f;Y&=7Q<_ ge%?JDQWDBtxta4S*MU`9K+73CUHx3vIVCg!0FSm~Jpcdz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_8.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/catacombs_pass/master_catacombs_pass_8.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbe1d604e7cc6f77f642c18e24f6b3cc42c1388 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0ESQwK8${O>LU!9h0hQ zV)@fKq)LQcUQ^G`H_*b(*UH1+$}>RA%HAm`%rPKT!@}0s%}34D$}=SDt)+7$57Q+* zaWgiC(2U%aqDp=Vndfx{okVsKN rLRgSdfgTe~DWM4fXU`|e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/defuse_kit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/defuse_kit.png new file mode 100644 index 0000000000000000000000000000000000000000..6c5550c909a031eed7c2e4081ac61fbfd8193e84 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E4N)$VpSD<~*f=5K%X z>eUr1R>bJa-`b$F5-7)5666=m;PC858j$1c>EaktajVB?E8_tN0V~IE^DXpzpRD}w zgUNJ3{`oNdS<_ugzpQ+_>dhWgt_Qw^O>LH zD0Bb{F_r}R1v5B2yO9Ru7<;-nhE&{2R^XM;bk0a~Rb)13_6)cX85j`2c*a0Tq=>}1EAVP?IcBIiIbP0l+XkKAHXLt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_decoy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_decoy.png new file mode 100644 index 0000000000000000000000000000000000000000..648b05e002ad2d0ac753a9cf00f5031b3f847238 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mY)pLn?07_8$~%P~c(F)bU+9 z{q@lx9d$On#|vaq?2p|I%=oNeCFjfk$ZwsC+LiVrpSSYn{$6mQvDN>U(F9JRg;(`k zj;-FP7PegdP95W+AG~&J9glP8eG+R4Vw)zz)Wh(5!4DSx+;dx)O1j<{0BvOOboFyt I=akR{01?PJ_y7O^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_golden_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_golden_key.png new file mode 100644 index 0000000000000000000000000000000000000000..9917b02bcc1fd780e5b3a956ce2f84ee6cc5d0ad GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=4@N#{atJb!VFJrWCR9A3_?O|a7SNIAwVP`|owLc08fdsme-9y5wm-M#s4MbO2{zK3`FBvqd- zOy`ogS6RMoJKJ;-gF9h24PWL&b_oian3!m4YG!hCOG`_O39t$X2z=G6%q3DKDwnk4jZ|IV!@HM)(x>+s z^YOf2bI4ig)*M-hJWc(zHj~pnwKbMcyej#8i+QInZ7PPgg&ebxsLQ0GwP<*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_lore_paper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_lore_paper.png new file mode 100644 index 0000000000000000000000000000000000000000..c5d35acd008c27b76b2e5fbfcd29fc5fbd98fc71 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CVnozqelxM^9-txJ3U z{P|>KW0M|jWB*~rT%a6dNswPKgTu2MX+Tblr;B4q#jUAbfqc$}9EayP#J{h9Fx7KI z=&k1gbvcLS)Bk?@+;Xe_W9#jT4-cHoDpqwdO&83N4cuGI(zW%|<|)j~T3@?Z{oKDf sx0xF(E0id+u;TB(_#``T-?K;3t9}WFwa!|90%#9|r>mdKI;Vst0B#XW&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_normal_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_normal_key.png new file mode 100644 index 0000000000000000000000000000000000000000..917831e685d4a4e77968c9f8a7744323e816d05d GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn>}v^>Jima9|1clKttj z%Z%aAJN|~;f@2Z$EKk4x+q@uQ&)&&AHJo+lmOpojFkr0nQg7V(ASX@p|1*cBoZ&u< Y3!a4)zG#)U1)9g;>FVdQ&MBb@05A3{W&i*H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_trap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_trap.png new file mode 100644 index 0000000000000000000000000000000000000000..9f55a84c3d6cdec21b71211ff6f014a831d95938 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0Es4bN7r{v#aYGJiUBO zOw3lut~>w~Wh@Eu3ubV5b|VeQN%nMc45_%~)62-kY$(8Fyz2k|qKQkE7AZY`^fYGU zd;fyJ){9-{gi5hDpPaq0>}FT$mCqqh_w4unG%20)g7~Dq!pT$9+H!BKi%RalDtc|% u?bF|D-QUdlcqOXy&d1f0mOM9J!@w}bmC@Gcy*!Y`z~JfX=d#Wzp$P!XGED{m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_wizard_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/dungeon_wizard_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..8eda7cec200e8faed2d67951b08e594ac118d1c5 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4T+{lD_}|IXk4=YRiG z`RzDVxYeqMZ z%AcAfFuhEmGDsjaKp@aa!1(IQj6k3w#*!evUTKonD?) z6S$T#*_RYzPr&M_p?M-`CPV8f6QWZc^OZnV#Ud{(v O&EV{&Q>0CTdfYvd1y85}Sb4q9e0LUXm AJ^%m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_bigfoot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_bigfoot.png new file mode 100644 index 0000000000000000000000000000000000000000..2f87720f91932f0011d2a7c03efdcdbf694e1c6c GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0CU$^k-9wV5tVv>xBlt zu6h0a8ei;r?a2H;?y`%ou3=mSRKZvh138Sr)78&qol`;+00!?!^8f$< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_boulder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_boulder.png new file mode 100644 index 0000000000000000000000000000000000000000..7f42982b8f923bda355cf976e4061e50822ff114 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGYdr%)u)9rOa`>c<>YBpT z_Fe(C<=s*JhsSa)4ztaECgx(;YGgQu&X%Q~loCIAj4M^XR) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..84f1efa263cd96541547bcae8e6b284b43d453ba GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4?JhyF>@%WmxUj!R!| zsMe{Z9?UN$Dk{35YepAPnz1CvFPOpM*^M+H$J^7zF{I*F@&UFRrxSZFFlnsTVNePP zyvCDOu!OtIq9M{(uyHMGf}4ACltstIS%M*aNgHOfuQZ?1Y|>t`rE%((rN#vflClm$ b+6)Zw5rV2}>gFGS#xi)i`njxgN@xNAhO9UK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_laser.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/giant_fragment_laser.png new file mode 100644 index 0000000000000000000000000000000000000000..82f73d534d395ecfa869bbbf525433e1305a0a7f GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3r-{7!oCPG`$mrKmb_ z#}sjsU~MfeB?WnYe*Qf*dO|=Ij3q&S!3+-1ZlnP@A)YRdAr-fh5AaW!qOhgVz1^^* zEKfgZy+L9^!py*RDk1k?9(Z86_)fr%J;hwkYAuGmI*WLO5@+6&%ZW0)+}NmC;+E}_ ouHjLCYOsZHVGv(0wRTn0kKpO`!Pzopr05VWP;{X5v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/golem_poppy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/golem_poppy.png new file mode 100644 index 0000000000000000000000000000000000000000..6288f94f31002f0c92a1e6a1a34bb727c0f1da23 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1#t~@oZA(Rs`&P+YR*=Y z^0F~0QD*)sXuBCG$5;~N7tG-B>_!@pW8~@L7*cU7SwYl*%R%zdI=+NiM_pyKl%nJq x5?Lf2TyG@onv}qk#wy{>yX+W)8dDMj!^!W=P4*qB3xK*AJYD@<);T3K0RTvHDN+Cc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability.png new file mode 100644 index 0000000000000000000000000000000000000000..6e90ae2998b0f22962ae165df7bf92612d691eab GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08{Z_16FY|09@~fb1vX z;r~lY=C0lRe_CcKkk42W-(9j{{8Qd@B1LO zTY1LBFZ&c;1~Z<$X_L5)$ID~-(|Q2|=_85pA}#D^TTh(eQQ6sX;%MKVOQE7=GP`co o&9~T6A}+HlTWs~qD*GSIPXZWkC<(ug0b0V~>FVdQ&MBb@0P@L4`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability_click.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/haunt_ability_click.png new file mode 100644 index 0000000000000000000000000000000000000000..be0c8cf21c9eb65716e8fb56867433d64f00e478 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CVMcJuM8xBmbC4`lz} zyVv27+k7C4u_VYZn8D%MjWi%9($mE;q~ca@cO#oipa|3KbN~N;$~}MfbA*m{qvlKY zZTm~p&b(f;@9Z1CQ*WayV!ugMzMC`gna2wC8Haitiv(gtFa9V~ocL(Y%MDkSu3;#h jQu6lWq_fPf|35PFZxXMO(-JoTTEgJz>gTe~DWM4f&f7{@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/healing_tissue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/healing_tissue.png new file mode 100644 index 0000000000000000000000000000000000000000..bb79feb46dd4dcd879b4e7a6b6f69888f76d819f GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07Km;#{h(c*x!Ha(v{S z>awFVCLCWnt67BAxmDmlP@1tM$S;_|;n|HekXla{$B>F!Ne6ftLe3p$JmA2?=h%D44LZ&iztqkMbS9>wY}#k~r5*Ikk6Iak?lu*2r-!$Z@T mPdgCtKKhb-_$I#o<&0mqF&>JVIbl1{dv z>~RdtPC!9}E|n!fim@cfFPOpM*^M+HC&tsoF{I*F@&T?JmlREkySy!DEPNy-7Q`S_ z5aKPw%f7NeDA<%`r5C5SvA2&dgCPs+QHP#MM+`Qb2sGPX@bTqX(snmg!`DzE#V<1| oY86w*!8oZXo{i0WWp1W1Y!Vf6dJ}o|IM5yjPgg&ebxsLQ0IP{RwEzGB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/infinite_superboom_tnt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/infinite_superboom_tnt.png new file mode 100644 index 0000000000000000000000000000000000000000..8afe4dd69200cdd080cd289e1675d96c55cbff45 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08YLV0yVx^v*QlzhC2j zUGuto^X7jb`1@errp?k)Hs)qwf`W2=eSMo!1p7tj&jD&+ED7=pW^j0RBMr#O@^oY)9(KJB80kJnBhp(mL#7ZeZ+F!PK&g^WvZ7 bXWz5?O=aGrB>zGUXe)!KtDnm{r-UW|FGN_~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/inflatable_jerry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/inflatable_jerry.png new file mode 100644 index 0000000000000000000000000000000000000000..ccfdbd83fecb8ed3e51d31e378504c975687b459 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0CTL=e)T(X|KFTjSMFpQXQo){uHP>%=?GNBSQ6wH%;50sMjDV4=IP=XQgJJ`w_Wgn0uOU? z=f3|3J}UlN-taHRF7ceY$itjeg_~DJ&KPauR=J?!#J)i@NF}++_hI_#7T<@*TpPJl uIUQJ?oFZ@Bv&_!gTf{n_OaI2tXY9;1jQ^~SbWQ}v?G9%=V8G#G*ed&F zuF92?z3>yOHH&4VJLn>}v^=4;uNn{E0lKts& z>DaS(YZ>;xl`inv(53!by?5e$p};pi-63kn4|uXlUiW&W&8S&6$w}GfKEu@i_Em>8 Z6Tc(}J-wK}IR$7SgQu&X%Q~loCIEWvEQkOA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_c.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_c.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8242900ea20cfb75009dbd2f70e5583a4c9ef6 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIG6|Ln>}1OBf{_{V(mX~a=` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_d.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_d.png new file mode 100644 index 0000000000000000000000000000000000000000..ae584adede9e2d306d26e92dc115e050926b2619 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&o}v?Pg_kFywI2bd~)S zyJYFiz3(?MSj>r-6`-wrb=sE6-kyyqeSCSJ3|@%zyq@$yvE$hiwp14fIr#(AzTbC` bn)c#&bjUoZXG?{FCNg-s`njxgN@xNAf>tc) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_f.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_f.png new file mode 100644 index 0000000000000000000000000000000000000000..637aca38350dd083fe350c8e0334acb26372cf5d GIT binary patch literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6+&x_!Ln>}v^<`ybFyN`ud^O?y z#A(moZDJ^9Pj{=Cvc_&zc1ft8%K9bRO3_;l#GND)=1y5ByP+XGb$LSMwmhC$?`$_& cX-{IfdNSl;$MUJCfkrZTy85}Sb4q9e0Co5*4*&oF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_s.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/key_s.png new file mode 100644 index 0000000000000000000000000000000000000000..6194ca9b332be4199f54f29df7ae9c6a0000f23a GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts&PILn>}1OBf{_{V(mXVJLn>}1OBf{_{V(mX+6o(1{*209t;SEbA6qGpRd>EJ}{z%x|=A*&P Z@cVw~mJ_%8cz^~nc)I$ztaD0e0s!|tDHZ?# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/kismet_feather.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/kismet_feather.png new file mode 100644 index 0000000000000000000000000000000000000000..72461dde28ff8124cec29cef2eb1ce65fe6b8fc4 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9bIGW?&&u-}tmzA8gK z1495O=h5kRdw>#*B|(0{3=Yq3qyaguo-U3d6}OTPu!JB35o(|*W_ezh$R~F88TedIhW{mDnT_-^H_qF?$w)&i)NZK9F1b=Sjk@U*{R_# P&_D)HS3j3^P6}fJ#m%sr~-rYMUGwn z_xKmo-41yWvq#eMUv$Hdzvm2Ew}n+~_2x{sj9&0Kq^Eb4u0`vFpqxuwewkiL+?yUJ mvQ~8lH!q&DIP}JsntIj!>{C7({zwKI&fw|l=d#Wzp$P!S9YX>D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/mimic_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/mimic_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..4c80e86d3dc7de77e46412d7c2f44b4e0bedae3c GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G#zX*71YuR;*aD zU{=%qM3;bofcZK)<@$<-hKBJR9I~>qKxHyNJ!b(a#*!evUar-!e#Vo2JuwDjDoD29|Jsb}U)WlJeME3jt9)oFzdjn8|M&dwAz<~R5dwff4r uEtZ@i=cMGIJ*xwA=+6%;4$j=d#Wzp$P!Ydr1ZW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/necron_handle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/necron_handle.png new file mode 100644 index 0000000000000000000000000000000000000000..60d66d08891c216f2a5083fca6f1b130907f2d69 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2AQL4NK|zGnWGmX_LD zS_%pZa)z4*}Q$iB} Dl}jp( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..f27d9a4e96d2a790c0d6b8df02eea75820594c5d GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0AU=jb~U;#D1!p_e%>y zl;^vTpBaIIj3q&S!3+-1ZlnP@zMd|QAr-ggo(SY>FyLXi_-4u8{}W$3u)dyeG2y_z zUy?HSl}kc}%_fBGs&y1+&Hou5*(%4AZ8EztOmXuzhmN{@)df4`4Zmx?U%SJ;jB)-~ VrsLY`Gk$>V_H^}gS?83{1ON_qI_Ura literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone_broken.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/revive_stone_broken.png new file mode 100644 index 0000000000000000000000000000000000000000..975a9a5dd86ffc3a60e0ac7b44b736ccc7a615e8 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0AVbP{dFg&wi?!_e%?d zi#bD-=RMX>CxPOOB|(0{3=Yq3qyagBo-U3d6}Q&*844Xx;9!Y#`S<_H0mH?f^4vG~ zE8CPY{=P;@}fv zU^tQ$eitapSQ6wH%;50sMjDV4=;`7ZQgLhU=|Dba1)ipdC*$AMCtI)d{-$RbxbMVs z(`+OEzpI|bc)Y!vRoL>y?b5AVC2Sq3*5-BzUP7X)8y6{r`0byh5TtCjVAjF=bL9Ph ZGM$OxROw?{pAR&g!PC{xWt~$(698m8IX(aY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/secret_dungeon_redstone_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/secret_dungeon_redstone_key.png new file mode 100644 index 0000000000000000000000000000000000000000..0651f578bb60b8fb6c86218d88f15fba9e5acb12 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=9Z+81{2BwlXusurrvw zHFyUUVk`;r3ubV5b|VeQG4*tD45_%4tiY?m<(Q%7=*Vi&d^GS#q~MW6!@@E%A(5hl rgs>o^1cM^BQ=Jw@1`@j`q%kt++Oag5-kaSBG=Ra=)z4*}Q$iB}B zs`CVS9gd}Vv$bvUSl}SxQSyp~Ev%!4LD-owgnznPM^4;<15amiUP;*2(CPSZNy3E` ywFNJ@jHi1pj8t&dj#=)a%b*>Bc!NX4yW2UZ=mfVRz1 zOf3&JQrHqLICnQ@mMt{t2w5rR(qzoB>WV3k)A^8ihGo`Fs}GpCXKJ`KY&K>(lrZBe fXR5&(r&6Hf=JE;qym^>6V1nBM+TA~!Q6O3F91|m%lf6n>7zv$iC0#;6r z|LirpxZckbo8#MdX9~--mu$Kk6NFc*@BaIQ&Gbuu!~Kf~c;B56sA%&4cjEBP{x9+C XjTyb#zRpwvn#|zo>gTe~DWM4fWS%?u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/summoning_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/summoning_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..22df56b25c4e837c8687f13c0d2274b301d43c3a GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9Z?H~v4#_GbE`bKO!8 zqH~LjiWj5_#>B*4ku!I3cG=D#X=-NL$si~zE6cz?(G;kGu_VYZn8D%MjWi%9+SA1` zq~ccc0d9-se)Aa8V&+L^axc1>H@oefFT=*F&D-xXT-3?GWpvJxL9)?_ho@_i!!ci0 zHnwFu9gandvav0%b~t9a^i$DNa|gEbLgM199$ LS3j3^P6YxKUL7w!YNe zn>YXe|NqKaqOY%S-=@vdQa0vhVS<8k>5PmLN{{q`su@dy{DK)Ap4~_Ta#B5A978H@ zg`Q|-bT;I0y(q78?%!*%%B>pTZ6dzg)xUnT`Ts9D`}roj%eL9KJ+pinH*50R1fIg= zdPXG~HJ|to&hZ!4G5*`ya&323?13)J6h@aDuB|V*>t1l5;p8dE%!}jYb>7P$d5Jky Tdgc}jpoI*cu6{1-oD!Md5NEPgr=mijFaD6pfqDikY6x^!?PP{K#seoi(^Q|tz-wbHwJEz%u@op&L#M- zZZPsOQs_zA`h{&n!=eRVtWy+I7}G2`RcAL#$Y^FBeV1_b?aMrYW{Xn`Z%JB7O_mdKI;Vst092?ws{jB1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/training_weights.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dungeons/training_weights.png new file mode 100644 index 0000000000000000000000000000000000000000..982ebfc3ffa367323c1d08c67e461054d200039d GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6GCW-zLn>~q={v~VV8C-^Q(@X^ z3!h*woz+ZR?Thp`T=xEBYI;I2E=AvVhNES|w&Jv_nkIdciR(2|>%+J&UYOn1WPkMC zevx0RPg{tY3VzZKST5ipdrBmWv(M}82K`FMcPuJJ{Uh)OA4w<_yTWE%p{7;cEXgyyZ1)=0*IjeB jT8JcFxV!p?E(^oP{UT>3Y_D?$8pz=3>gTe~DWM4fOQ1rW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aquamarine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aquamarine.png new file mode 100644 index 0000000000000000000000000000000000000000..fc87de344f89f6726f5166454246e10b1e94a1b9 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9Q8{#y3-XZ`;x`ES1$ zJwK3oZgtd-89_lo4h{}_dU_HP5}=eEPv$E8b@i>g%HF`UY^rhi+d>8-iPhof?D*1Hq}r!C zN~XQ!3TU&MA;^=wM5=vd;}wIBR<)%KZ7?_qys@tEA2Dy{L)78&qol`;+ E0Q_=GMF0Q* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_archfiend.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_archfiend.png new file mode 100644 index 0000000000000000000000000000000000000000..84439fe531c305a2450c2a9f22590aa4cd5b8eb6 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8OWyPm~&9B^+83JP*? zaM;0Mwv54G3WJuOo?Z)siiCs&P)*g#w?BXsV@Z%-FoVOh8)-mJjHioZNX4yW2e#ei z&M&u^7<3m$Kil?((}8V!dep6Ryb8xe#LwSkZ{S(Ba-s2e2?oiY)yv)HGZ}MT)(Ufw zl#JyHXcLFVdQ&MBb@ E0Nj2=H~;_u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png new file mode 100644 index 0000000000000000000000000000000000000000..2f70d30c2ac6acf9024d6d488591bfaabee16d08 GIT binary patch literal 555 zcmV+`0@VG9P)O3-;MLDcZK)%yH z^Deua1do*ifrbKdcL$Mu0%mFecx_Nd&#W!DdrQ~BGtSsM=kG%QrcmDios>zmelNVJ zQ_789;-6^xu%YtL-RtYg+uEujs3{LJdXXq!hm3Y1tZ8b z4%aiN;2Sm!9qf-iWEkoJ_qNM2?jgfI>7hM63<8pV_s}UQk}NB#t}-C2s;;r1A&_5z z3Zkgm^$aTbhH07s`(uv=hI+ug?M;JwG_X&4luwVGKwI2B3JP`GG<8)}3^Y|$lq{48 znpaSP)Kz&sg9^T3WtqeN*u#UN9&m5F=iwe6?2{h$)59d-TXzqOg6n&p>sSs0p5s_H t3pN7p6*wTSV_(mpf^V2@n=pDZ`v>C{G!+DP5WN5Z002ovPDHLkV1gU~{$KzA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_aurora.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bingo_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bingo_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..336eb3ffbf0ac90cd66ac3418b970bd95a392d67 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0>qUxR{zbR9oCI5;pH zzhlr}uBWHRpf#OArHw(pTtY$us7BDIS{g_(mIV0)GdMiEkp|?%c)B=-RNP8-VB1~p z{BnzlL3eHRuWfIb6q=)Lb#s5S2`u*T-201R!oiqFLHpDhP9(&{KC0z9li~9^hBGzg zoKb_(ngcy%63K2+%T+yin^TTIS(&hVhOaa8ggFchu|6_>t;cK^0_|b&boFyt=akR{ E09KVl+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png new file mode 100644 index 0000000000000000000000000000000000000000..89b20ad2eac7f97a3671303c01fc06f3a93d6d17 GIT binary patch literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}RBV7xh%1oZlp@$UXU_Tq2UsQ5 zPTszy5|VZI^=mo*6c#Z>W+7Q-n*b($iMZLD6};o6okAqaCx}~l`INM)&D;{!JUwyp zs`jJz80zOSB-b+-xc&b=H)rvlU$6AOA2ED1k!7>rMhBn;j3q&S!3+-1ZlnP@H$7b( zLn>}9y^xyJW+1_wu%Kyo@Xr5+;%ll;*TnyO>NxvBcZ77?mNuD6^=3VZ=htEqwmz+S z|BWeayKi=KPKl!)&n(`>Uz?UBDD_2#Sa=AZyS(Ov&4b9WCw5O*elQz(%zFAxcK3z8 zCqKJb?mvBQtK#&{LEOh{SG&u;n~QgTkI>V&UEF`oG1M#aYVO;{HLtgQT&SoZAK<)d zSK<2`tz}Cx#hx6s6#;9~+|}*`)U^Nm4E-6qiu=zUw9qu=yZfL~s%_o(h3X6B3>=Ov iEC*|PpME4%Ki}bj_{Q9}D>H$fWbkzLb6Mw<&;$V1E~pd$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_black_ice.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_bone.png new file mode 100644 index 0000000000000000000000000000000000000000..3dd27313ad9223a192c577356b09f605cdeb8ce8 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4>$-2D3f#dsYXw^6A~D*YPSG>*`x~mA!#y*;M23w}uQx605_{+3}^Z>}r|n zD4F+?E1=D4h9Fb&l3gt;8?P92w5q8#zfB4b?LNJZSK-*FPphu7H}EW*Y8?L7kike|clbFw#x#~)En6KW z^CYG z`Q;W9gYMesU)$a=DKtmh>gN7t6Ikrwx%U^tgo81Ug7&F1oJfd?eN@YJCd21-3}FVdQ&MBb@ E01K}}g8%>k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celadon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celadon.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb1dc21d3d78e8b0bb4c0f8bbc5b5fcbd3d4d6e GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0`S9XkK^;IilY);wH4 z`^>zqt-aNYYJ-A;92^|<^z9EV@SoVWCyn0 z<<6Pn;s)K>-Pgt5vpTSqPwzgxj#uGWSKqp;>}pxrc*UTjRZX?|ZBme#nL`m1gZW#@4K@!BECSlY;OXk;vd$@? F2>`%=N(uk~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celeste.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_celeste.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a0b94f6dbcbe23592414cb5b7ee62ca4009440 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9Eb|3Cl#|EB-{SN{LM z@cHxpbLZ-J><9`9a&U0a)6a|YgPxg^648tuH#iW*44M}DtiOZvZ==5ZwncWBvyx?v*Sx+k!qjn zD4F(>E1=D4h9FP!5~=o;jaLjhTGf^|yiE!!EOaPhVqjV-scwHd8sts}Pgg&ebxsLQ E05bATF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_chocolate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_chocolate.png new file mode 100644 index 0000000000000000000000000000000000000000..39552f537f891feccf0ae9bcdc9cf6c45d4d0352 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=72!EEknqWF{F01qD^x zGvr$^I5;>Y88U=xGwA8*Nk~Wl)hymsdlg7AmIV0)GdMiEkp|?%c)B=-RNP8-VB1~p z{PIG8L3eicm1{3p9oV*qXS`U)t8h$6eEn7S2A*Y4pRWEU!64bQd3yMK7Goi2<1`0J z!MR)kZE7FVdQ&MBb@ E0Gz=@TmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_copper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_copper.png new file mode 100644 index 0000000000000000000000000000000000000000..bfcfac234e8eb7ad9e7663a5dfa0543b400b68ec GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6>d+Fo2}wXer`N3rp; zbloY@>MemvK|w(d4i0*HdJ+;6Ks9$u%}an3V@Z%-FoVOh8)-mJjHioZNX4yW2e#ei z&Y9xk2Hn}+*TvqmIb?>@bbSK(M!-@2>p4Lr-H8i&6%WH6Fg9e&P^FO6ka%T!0n zyq8=7ZB{b`nUa_6YFXKM#h{~AO||)LQjnRMLlF~$`CG{iHV+Og0@}mi>FVdQ&MBb@ E0I$hKGXMYp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_cyclamen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_cyclamen.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c4795aba0bb6e8afe517b59e171af0bcd3348f GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9bvod2`z#LpRrzUD8y zmoo8KMB_%k;-H`)2L}f|Jv|8t380#ImwzXL6k|z{UoeBivm0qZPK>9EV@SoVWCyn0 z<<6Pn;s)K>-Pgt5vpTSqPwzgxj#uGWSKqp;>}pxrc*UTjRZX?|ZBme#nL`m1gZW#@4K@!BECSlY;OXk;vd$@? F2>`{`N<07n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_dark_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_dark_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..7a3117327b19c249da07fb9a684409934b4c23e5 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8*IlY@eSvdudEb?Y1) z9Q5?`3?xmo#Pn2!G$bS>6!?{aYT|S!t^rbvB|(0{3=Yq3qyafGo-U3d6}OTd*j9%* zzWh{V(4AX(^V2F8g=X)ydunbn2`GDd>b_=}aBz;)tZl~_PbA!#Dpe|VCPU}_9nRE{ zb7l=jYYz65NhG^fE?4#7ZB9AM1Qs7Xy7)K4go9V4Zf!iya3Ue*u2e1884aJ+F`TI> z=YkrHwjAg&l1Q$KTB_#3+nn-q$;pJ>Gp6+NPME{Mkm)Kt!RU?HC!jqHp00i_>zopr E0KFwf0{{R3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_emerald.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_emerald.png new file mode 100644 index 0000000000000000000000000000000000000000..d8585b05bc68796173e3863fa2e992fc91f7f340 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1alPr9F)5pbfyV{4A~ zo_hO*3FZ?*gMxw_931rY^duxCfNJh+-RA?O7)yfuf*Bm1-ADs+Vmw_OLn>}1JFx98 zcg{>sHt5dYd^PPgs{>p4^o<|a@hTka>RWe}y@6-hRO9fsoD4=1tHaOP@ugWv?Vjo= znf8(^pv`K=L!RU%61!J6UNPv{sj{@`ZBh^~uR{?N!@oF5iK@JvQb2ncJYD@<);T3K F0RSA|M|uDN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_flame.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_flame.png new file mode 100644 index 0000000000000000000000000000000000000000..2017eb0b2462c7c2bdf32989d21320fe5e1ec9d6 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4>G*S@NAe-xqgC`|jT zzuY!g$;Gy!K|w(d4i0*HdJ+;6KsCXe{8NDxV@Z%-FoVOh8)-mJjHioZNX4yW2e#ei z&Y8){2Hn}4ucp0bbzm!>zVYKaUWH>_ee15WH}EW*Y8?Kykike|b@(|uzBCr8_Nk7N zX)n0~+N@>>@+2>jYG2uS#h{~AZE3^Xq@cn=hax5hrlpeV_NSvk?qu+E^>bP0l+XkK D9?3-2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..64ce5dd18e9ba33e3b6e438abbc3bdeb7e09165c GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1gn)-3OIYReaDOIN8( z;m?lX2?`2|_v3PKaM07!laP=As(H@Oyb4G$mIV0)GdMiEkp|?%c)B=-RNP8-VB1~p zoSB?#(4D>cYT9d72e$I58$Yh&RXFzP)2gfN4Lr-H8i&6vWH6H09e&P^F^xs4eXFBn znj}|18`}&)p5!G`?JFCv7<9C%Ep2$46jWH~P{hRWGe}Z0Fm2L3pgjzpu6{1-oD!M< DBM(FC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png new file mode 100644 index 0000000000000000000000000000000000000000..afd2cc8605224278dad27f0208616be219d85a95 GIT binary patch literal 393 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}RBV7xh%1oZlp@$UXU_Tq2Ufl1 zJ$d_<-(iNkuV0sMXPI@Ko1u)UV?T#NA5-OOHqprpZW|bE=Q1!AGMM!+xXobTY+_)@ zX7FFl5OsjTYz5FjhX3E^rd(n8^-Ayi5yM9lSz4|*<^nBXED7=pW^j0RBMr#8<>}%W zQgLhP1=gY?1|rNCe0jJN)qdaqKjUi8&8K0_RgSN}d3JOutvlMva_L1=tav8(k{3=M zlUd!Kubgr%Bx**h+u}trI&Xx9zgugo^WUzEy=}FYGv>9`SHGQZkGWrCZyOj&YF$KAAGaW*|PX%@|O!+gUbHiP*?a}Cle&0G(qyq kgmv;~z?Si_CwWgZ=XxN%>(rEwps;1|boFyt=akR{04x%uPyhe` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png.mcmeta new file mode 100644 index 000000000..49a12c0c5 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frog.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,2,2,1],"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frostbitten.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_frostbitten.png new file mode 100644 index 0000000000000000000000000000000000000000..e52702e4269e70c2c10355030c843ac165077848 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4Mw{%YR;!g=F0^OXY|`C=f`UwA z?e&AqCBtkS92_(}4D|H$BqSt&YMAvrE&(aVk|4ie28U-i(tw;8PZ!6Kid)GJY`e>y zGn11Iy0bT5O?%Diz_xw*#*gcG6^;psufNLPz_UzLcJ((A2Faey;U)7~jG1~5FLRVk zo5>Z>rZz*6CwYlf`^v^E1|6+xOPk*&1?lTM6frS;W|Lf7P%m@@Xb*#@tDnm{r-UW| DcK1Mr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_iceberg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_iceberg.png new file mode 100644 index 0000000000000000000000000000000000000000..b37ae07d31001d6bf6b66030487324c6a6ec75e7 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3GG{F-?5S_!@p6XWUP7*cU7*@10$ zxpSttxIuSz_jR%NtPX7D)4NZv<5f7;)wk{{djrq1sm9@N4H=9iR)?Rn<4a@N)iTvl zGVdi zj0A@E(4e3oh6-;72M0YpJqZa3pqi=kj`jg5#*!evU+I@N*ufnlUpH^LEZ{S%r)j0gEA%l^`?(lPVjA<;pTDCe$ z=1Fn|w6V<)WJ+GLt7T>56@!jeHPz;~NkL|24n<51dMhOt-TuAC9B2=Nr>mdKI;Vst E0A+JTegFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lava.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lava.png new file mode 100644 index 0000000000000000000000000000000000000000..bfdb6be2139eb6ea5673d863788c4a6696b7e527 GIT binary patch literal 372 zcmV-)0gL{LP)+7$;z{%U%$~yqJGytP60H|>U&Y=Y7wFdvl2eM=lWB>(P00d6} z1CBlkMgRi8N()^w2azZM;e`dbkOPUFoNrwNebg*}00001bW%=J06^y0W&i*H&PhZ; zRCwB@&;?S!Fcbt(8h5YX|DJp%m83ZA=)P+9<&zA9_ign7aub5iSqK9t6I}T|(MC%>$ z&pjOECIp=`=h{6S&TU_{ zYw4_IlRKs~R|W+IIXF1z>FG&GNC4Fcu9GtYQj8@*e!&b5&u*jvIWe9tjv*Ddk{#G~ zmpf;QiyL%jcV8EK&+5QdKE3<&I$niiU484WvN!N7n`#{X){wzSVs-dAJH9lQT`f}` zCG%c#1+-bs5M)YTva4lf;}wIBRyEb;w@E=}W)4M64CZeoH`qKlun1@mgQu&X%Q~lo FCIGX3N#Fng literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png new file mode 100644 index 0000000000000000000000000000000000000000..5da8b8d3320e59f8f4e86bb40eaf2f7497bde0c2 GIT binary patch literal 311 zcmV-70m%M|P)+ApbonW{nK>t)x|9WiB zDthNJc>lxt>Mr-hG2)Q~_Lmzz00001bW%=J06^y0W&i*Hok>JNRCwBj&_x2mKny_9 zj=M|le^Y`(_3!ekljR@)LVia=u`f-W1*a6|3t#}nV8RPH#5l&BAYV|##0iMZFX)Mj z5V%YqXr0nlQ~d*4YbyUxet@o^qO@A@9bfsKu~IU&oOQhqhJ9(`EI4Do`(W6~KHPgB z>IK?A_u)TaG-Jkk`v=Tg@BYF409%1YG1lQbzVbU`&M9o!?FP!b3sRqcmvaCB002ov JPDHLkV1nu^gunm* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_lucky.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_mango.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_mango.png new file mode 100644 index 0000000000000000000000000000000000000000..93c3e7b06ad2a34f2fb8a4231e2bb45b86e23377 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1hB7rei2{_d#c-+fF^ z*D#%#$+*3PF(@d=!NEaKPftQZ0;q=V(`P0i#aI&L7tG-B>_!@p6XWUP7*cU7*@10$ zxpSttxIuSz_jR%NtPX7D)4NZv<5f7;)wk{{djrq1sm9@N4H=9iR)?Rn<4a@N)iTvl zGVdi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_matcha.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_matcha.png new file mode 100644 index 0000000000000000000000000000000000000000..704c226ce1d9314b3560b7c4d2f57f902bd2707c GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=35dxo51^C|RhNF;UZZ zszgkqa!|2cP*9MAgM*%)o`i%1P)%ll>OCOESQ6wH%;50sMjDV4p4Lr-H8i&8-WH6Fg9e&P^FU>+~_f$v8 zw3l1~ZB{cL@+2>j*uApxib2Otm8DH@lY)489g3J3{>4d3RORiI0@}mi>FVdQ&MBb@ E05qROLjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_midnight.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_midnight.png new file mode 100644 index 0000000000000000000000000000000000000000..e65a7427cc0dcfec64ea6a8c563e9da0a26bf2fc GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0uH4+I4TRVwurs1-Ok zIHW43M#@G;@|5^X`0MHENk~Wl)%>XFY5-Dp4Lr-H8i&6vWH6Fg9e&P^FO5a2eX65m z+Dop0HmezeJjqL>+E+GSG3aPjTiWn8DX6f}p@@lrX{n^T{po0sI~hD({an^LB{Ts5 Dn|?*5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nadeshiko.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nadeshiko.png new file mode 100644 index 0000000000000000000000000000000000000000..e9bd7be130ad2d99ec5475af0187d024c3faf5e7 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9b%{`hhB!MClKzpXuX zf6nIP-Saor^aTY4IXF1z>FG&GNC4G1p3T|~q!>$r{DK)Ap4~_Ta$-DP978H@B|EU~ zE_cop7dPn6?!GSep4EY^e0ulkb-W74y86~#WpChFHq|)%ts#Sv#Om;Kc6@0pyIQ6? zO6I-f3TU&MA;^@xWLL||#w!LLt!k>xZFZm@Z9U=h$B22WQ%mvv4F FO#lITOfLWc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_necron.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_necron.png new file mode 100644 index 0000000000000000000000000000000000000000..a245f8ce5a91d1a83fc8a16f6e13c15cd1897cbb GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4@kbiGXtd+uoS+{Wgj zmFX^H{h*+rWjY!T4i0*HdJ+;6Ks6qBw`Bk+#*!evU8Url?>>cCb$b>qi%yb8xYeOh&uy@6-hRO9fsg$za#yTi}fF{ZIdwQqHl zOq1jaXk(ip$dkN8s(oeS6@!jewWSSjlY$Bh9g3J3eg;WO2BuBA2egO5)78&qol`;+ E0E^B>Pyhe` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nyanza.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_nyanza.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ae029be701887dec6717e6dd4e474a89de498f GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4^1|9=1f^~?W{U;e*+ z`T4Ou=Qgg`F)t`6$icxuPft%mLIS8}tGlN@kYX$e@(X5gcy=QV$cgcEaSW-rmF&Q_ zyWBZbT-=~LyZgG>dsYXw^6A~D*YPSG>*`x~mA!#y*;M23w}uQx605_{+3}^Z>}r|n zD4F+?E1=D4h9Fb&l3gt;8?P92w5q8#zfB4+ApborSnt0G*9JyrGuP zXQ=0N%kszi>Mr-hG2)Q~cW%2z00001bW%=J06^y0W&i*Hok>JNRCwBj&_x2mKny_9 zj=M|le^Y`(_3!ekljR@)LVia=u`f-W1*a6|3t#}nV8RPH#5l&BAYV|##0iMZFX)Mj z5V%YqXr0nlQ~d*4YbyUxet@o^qO@A@9bfsKu~IU&oOQhqhJ9(`EI4Do`(W6~KHPgB z>IK?A_u)TaG-Jkk`v=Tg@BYF409%1YG1lQbzVbU`&M9o!?FP!b3sRqcmvaCB002ov JPDHLkV1gP+jcot` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_oasis.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_oasis.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_oasis.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png new file mode 100644 index 0000000000000000000000000000000000000000..b6392a9ee214a3e01a18a1b7aa2b9672339785d5 GIT binary patch literal 474 zcmV<00VV#4P)+8Gl^8oh$0N>{T$Idvr#Q?Fm0GzG>hpq&0xD}(t27b;5j^_!T z|5noTL9p`%O~VC6umn7v4T!}9HH-jpt^ks*6pX1Uuf-Uhz8tXCAj9jB;q&_HF8}wP z_rx*ckpzNusN4Vm00DGTPE!Ct=GbNc009H{bXCD7_N|a~|Z*?goHRf-`We0i_GOZ_}eRNzyDW^t>!9AmsCW<>LS`d_Wic za4>z$Gd}TgMjw^}`^)O%Vr@P+XMBJ9UmyF^@pw9)EIsdhwjh7>5kL$d&;<_y)5kpH z6CW=6uoVcM)rVu_Te#=gmTj>YJ}6;#h5!}e3><6lcr1+Fk%k`pI@h!HJlC}$fArBo z3?I-1?>f`RJmV7|HTozO=&RL7Rc=0-sw~Rle|_{#+ctGm>UnitLdd&$0#2qhL6h_4 QEdT%j07*qoM6N<$f@C?+3IG5A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_ocean.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pastel_sky.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pastel_sky.png new file mode 100644 index 0000000000000000000000000000000000000000..c8673497e6babfea65cfc3807ea8d804c8fab1af GIT binary patch literal 380 zcmV-?0fYXDP)P)t-s00000 zZmzOq5#o^q_rx)YoSd(~z=`wX`syyp+uDVh|FvMa|M#8U>+4~!qh4*eeB8}##I|^f z=W2V-<9g@IY|i_K|KF_hM1{p1F&b?E0004WQchC^GwL;@q})Hj-GJ?JUl3ymHik}FD$ty$>mp1q6tPnx#Ic~bzh4vp z5yv7Y&=doD4MC6B5HLxM^!~jb`%wsE@gg_F8w0_~O>c_f<+*ruEBdzSx~9#oH_e=f zGP@J|;fi1TV8!}iPQ+||u<|D#IQU5O;zIfI5cg7acKNq1K5u-m@o~2CQ64iNm$~$& zv02I4D{eO*qF5gyiA1aqQU2tE1|KpnE|&fo4+K^|?i@UAe4z1hx$#j~B2}GhZyJ+- a^6>`y`x|gP)1T7-00002X?HOGron)#yA{-vXop1sN5!1HY7LgViy43a&om%GhpG8T%xG~HS9 zT_{^Xo9K**OvzJrE}7kY#h_!kXn4chq-`%U9EzA2Bu_|7UFzPk0%#9|r>mdKI;Vst E0Aj{M-T(jq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pelt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pelt.png new file mode 100644 index 0000000000000000000000000000000000000000..2a041b01f61209bde0a9aca4444db3eb287a1a08 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5|-wLw8a0ggTn4h|kx zE*{1~_Qp2mIwpF0dfGBJ5)u+XHGd^9$pIy zGn11Ix{EhIO?%Dhz_xwa#*gQC6^^N>p1sN5z_U$L&-l9zgOSAUFVdQ&MBb@ E0MJZBUH||9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_periwinkle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_periwinkle.png new file mode 100644 index 0000000000000000000000000000000000000000..11212e217e504f5d786b3e1b213e5a6a57d1e7c0 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2r%{=fC$|Cx*b&z$+c zbLaCVOU_N2v?C}e$icxuPft%mLISAf(9^BeK#H*>$S;_|;n|HeAScGt#WAGfR&PiNXA>+ApbotO%(&J6R}EcdGn z!oUyN^J4w_>Mr-hG2)Q~hz%r900001bW%=J06^y0W&i*Hok>JNRCwBj(8XcJKoA2^ zFEhjR-)SbF&ARCsSIbEN2>GpqVZJo63(gqK7r+3<{yV&YLyTk03GxL_Ol&};dV%&_ zgutc$fYFQ@>+K4dwcf44{Q%p5MKRXlJHGPUG0rK>a-XX`DCSEOyWo`m?m;mZdzAMc z`2{^a_edXTozhlQT>-5%l{J(fpc|+ttrmR8SAILDl#E#p^9T4X3sP5r@SXqw002ov JPDHLkV1n9vg~b2> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_portal.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_portal.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_portal.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_black.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_black.png new file mode 100644 index 0000000000000000000000000000000000000000..2635df52a8bfdfb4aea07faece4ae2483da357e6 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ay?xfLn>}f>22gZs=(tC>tw*d z#P@)wp6&bnqxIM4OSJFrPuU0`TC&F@wqh=;`S-dFPAz}=!kk}bpU(~W zH-o!c@w`%}g?($+D#cQ%4X#YdA={k3xZdVgTPoM&`N6AW>7RC%PId+zhK`3`2Y)R9 PTFl_->gTe~DWM4fU1UC? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..7665bd0e6628fb7b68ade2accdd5f647fe8cf754 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8tZzk`B;92^{^)qd;g z=`jfZXApSK!1bGf_Z$P)4habfpqiPwdshJ|#*!evUBjE2wZ7|zs` zb43kCdk*v%NhDWAEmim6ZBF?)MKWP`gpHNdggFchmfSL(ngv-mf%Y(Xy85}Sb4q9e E0E{9+4*&oF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_pure_white.png new file mode 100644 index 0000000000000000000000000000000000000000..8728e9f69a582e07068c4354600e8b396f4a4062 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6QaxQ9Ln>~~Jp$YcGlf81UL^^QB0t$7+Z#Vk($%f8^uZyQs^ zf)lOZZXG>Pd@R{QhyOrX5E~EU?hgBg)(1*Ae<|fJ`?lr}(?#8X<|KAy& zKVUd_oMFc%hM=Gz2L}f|Jv|8t380!?eiuuC6k|z{UoeBivm0qZPK>9EV@SoVWCyn0 z<<6Pn;s)K>-Pgt5vpTSqPwzgxj#uGWSKqp;>}pxrc*UTjRZX?|ZBme#nL`m1gZW#@4K@!BECSlY;OXk;vd$@? F2>{7eN-zKb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png new file mode 100644 index 0000000000000000000000000000000000000000..822f91153bc8653c6b806e48de5041f9c411674c GIT binary patch literal 311 zcmV-70m%M|P)@%P1Q^UP zNn{{8iJYAJ>Mr-hG2)Q~N8K1B00001bW%=J06^y0W&i*Hok>JNRCwBj(8XcJKoA2^ zFEhjR-)SbF&ARCsSIbEN2>GpqV!kx73r;D_7r+2Y|2w>ZLkMHc3H=3DOl&~9d4Y6X zc+b20fRdCd?eq$$*3PcM{s7&8Mp4@0JHGPUG1eN)a-XX`80Je8yWoud?!hn@d!+Xs z?FBVH_lO@Tm9dgzUIEKFrZuD=U>nFNB`18xSAIJtrG{A!^9RR73njN(d>jA(002ov JPDHLkV1fapeKi08 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_red_tulip.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png new file mode 100644 index 0000000000000000000000000000000000000000..a1380e53563a9e74b15cc2ec6390d2e494b2426a GIT binary patch literal 311 zcmV-70m%M|P)+Apbovlbm?@3hiWop7w zQQ2Kw{Fasa>Mr-hG2)Q~Lmsou00001bW%=J06^y0W&i*Hok>JNRCwBj&_x2mKny_9 zj=M|le^Y`(_3!ekljR@)LVia=u`f-W1*a6|3t#}nV8RPH#5l&BAYV|##0iMZFX)Mj z5V%YqXr0nlQ~d*4YbyUxet@o^qO@A@9bfsKu~IU&oOQhqhJ9(`EI4Do`(W6~KHPgB z>IK?A_u)TaG-Jkk`v=Tg@BYF409%1YG1lQbzVbU`&M9o!?FP!b3sRqcmvaCB002ov JPDHLkV1m0%f^7f* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_rose.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sangria.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sangria.png new file mode 100644 index 0000000000000000000000000000000000000000..fc6ed7a4083b0486c8c4daff1a8917c21b5fb1ab GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=24XA}&~H2L%Nk83A=iNvV@Z%-FoVOh8)-mJjHioZNX4yW2e#ei z&Mz+n7<6Z6U%B>z)q!n$XvT|myb8yXl2>14Z{S&$nz{O$1%qVI=IN>PS&X@ywbL9V z1?O@Fw5iPqFVdQ&MBb@ E0JdL4ZvX%Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_secret.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_secret.png new file mode 100644 index 0000000000000000000000000000000000000000..836718fe2f630c38b158e976ebc51b492a57dc57 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0tXFR!hwZK$j-EG$e( zNlA{+j);f|3JP*?aM07!laP=As&RL8wgXa(B|(0{3=Yq3qyafGo-U3d6}OTd*mjpY zXR4|ibZ1Y#ruLTAfvtS{q)Y2~6^?cFt-H$J!1HXXarj$L1|x~p;pgo5(k!%gPIHo6 z^^h%~&2q*=mgE+VowJ&*7WX+WajPdP{hP=;hMy*&_%MFf%Y(Xy85}Sb4q9e E0G0|xqW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_snowflake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_snowflake.png new file mode 100644 index 0000000000000000000000000000000000000000..734c88c88dc072998bccdcda0f9f6f187a89309c GIT binary patch literal 508 zcmVG-&bPzo&D*%6 zuDH0Mn3%Zd=gQ8`w7|gUtEJ(@41i(Z**PjRxA*>UHQ{&@j?=m91*8?k{fjR5 zlN=}sQENHsz#SeUp1lbHY4-w)fkVRW0|qMYISmu!E@OaI5D7SiE?#pm67{=l89@pc?_4skRM~xF6JbP2CNsk(Llt*Xd y(Geb`e6x<3eaU$Q;qhF!FVdsm>-A&*pB}#p-$8nL{|OHO0000+Apbow%d}Z*32#gA&fT z1n15M;hGit>Mr-hG2)Q~-SYvQ00001bW%=J06^y0W&i*Hok>JNRCwBj&_x2mKny_9 zj=M|le^Y`(_3!ekljR@)LVia=u`f-W1*a6|3t#}nV8RPH#5l&BAYV|##0iMZFX)Mj z5V%YqXr0nlQ~d*4YbyUxet@o^qO@A@9bfsKu~IU&oOQhqhJ9(`EI4Do`(W6~KHPgB z>IK?A_u)TaG-Jkk`v=Tg@BYF409%1YG1lQbzVbU`&M9o!?FP!b3sRqcmvaCB002ov JPDHLkV1iYMhbsU8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunflower.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunflower.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunflower.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png new file mode 100644 index 0000000000000000000000000000000000000000..ce57b701d731f4e1bf3f9152bd56c609a5256643 GIT binary patch literal 374 zcmV-+0g3*JP)(qyXo+0RPMYvSbm>jP1F8*QId3mQS3_XKCehcm08c$=lkmz`)(> z>(P64XIW;qTV2Xjp_5~)`syzK_nr5|G2)Q~S6WGu00001bW%=J06^y0W&i*H&`Cr= zRCwB@&{cwjFaQHkr0&I`_rK?ck#5H=e|czAJxEGIlvQx#pEmRmIZxXO(vmpedpbc( z>$)u4mYNfgu%RW<3@7N@7`iStZ3fnJ&S*<7fK%F%OCSZHUjT(LO7c5)DLX>QfaLll zPxkOgu?KpH-j{oLpwVur-m;%r*Ktq%^`5n7l^yhp00jxC@ UE4(J+_W%F@07*qoM6N<$g1(ri$N&HU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png.mcmeta new file mode 100644 index 000000000..11433dd34 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_sunset.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,2,1],"frametime":20,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_treasure.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_treasure.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1a4cc6c0bfd4dd3d3807f099e7453be6e86307 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0^M&-!yw>&af#6_!@p6XWUP7*cU7*@10$ zxpStfszG=5YvwX1 z$yJGb0d3MV5?PX2v}f*Wx?<2F)!x$lHmOiw-=TMr-hG2)Q~Y=u6>00001bW%=J06^y0W&i*Hok>JNRCwBj&_x2mKny_9 zj=M|le^Y`(_3!ekljR@)LVicWurE!V1!oNA3t#}lV8RPHgfPaO&|i?m#0f}mFQ}0V z?|F|OD3!62WBvn{b4>q`et@kYqm-QR9bfsKv6LFNoOQhqihXI~EI6gV`=Hp#KJ0rR z<^|F{_u)REB&A9_{RdQQXaB+e09}DbQQG1=zVbU`)*5Wt?FP^S3njH3R;d60002ov JPDHLkV1oS~e(L}L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_warden.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_warden.png.mcmeta new file mode 100644 index 000000000..2ac38403f --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_warden.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":30,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_wild_strawberry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/dye_wild_strawberry.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b81fa7a496061141adccbab5f7dc856711dc50 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9ZyJ^Wv?_rLq9|ISOE z+e|rU(y~LZG$<&@!NEaKPftQZ0;uNEiX)qW6k|z{UoeBivm0qZPK>9EV@SoVWCyn0 z<<6Pn;s)K>-Pgt5vpTSqPwzgxj#uGWSKqp;>}pxrc*UTjRZX?|ZBme#nL`m1gZW#@4K@!BECSlY;OXk;vd$@? F2>^w$N$das literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/tentacle_dye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/dyes/tentacle_dye.png new file mode 100644 index 0000000000000000000000000000000000000000..9a2133983ceea8265542e49d1710db7c170052b6 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=7J)D}sW8jC^yHJganE z6CE5J)NH~OO?~wA^tknsB_t$(YLw)PX96k4k|4ie28U-i(tw;8PZ!6Kid)GJY`e>y zGn11Ix{EhIO?%Dhz_xwa#*gQC6^^N>p1sN5z%wl~)A+j%gOSAU<*D--jG1~5-(JY` znTuWHF!LFXHbbx8!*?CCB#tEaktaVz-%SA_L~k}vn}Cb*SEUA@bz(AaAieC-~y;iPji=U%ZH?V5aEX5Fpd4V;S} zwlFX|zn^3Ylx0};Z1>c-((ks+0a=?jf8^TmXPzopr0PuxVI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/catalyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/catalyst.png new file mode 100644 index 0000000000000000000000000000000000000000..76814d91efc8b423870de0f69395763353e92f63 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=62ieR}t8%lrFpuilz+ zZPTS4E6Psx9NLz@t}DZLj_ag0o$AeAb2kFjF_r}R1v5B2yO9RuM0&b7hE&{2c3^xO zFw0ivltypEg`Bs7oC$70)veMKl6ZNqYD8XS2+`D#S#mLsQAEpx_tPs4cFw8QxzSs* z7y~p?ufOuypm$DmwYmdO)WxF=sX7ftVGDOKFl^!ylm4mvV;ayB22WQ%mvv4FO#nu@ BOhy0z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/crystal_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/crystal_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..156200828a4382e1da1889f0f27038fb19a62460 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F&D>eKuCZ?A2-bh78r zw)}N-Tqm{ZROczAn69yj07^5K1o;IsI6S+N2ILfZx;TbZ+{*1~6=hc7aY=r%@&BgM zC(e6ai?z;+3hFb2^_sKhJk^}qS}S<0*gN&6n#Aor#b;V}v~X2l%5^_y_uN!->Z9rd zPmUk`K3gkbOKQ-q-48aT`I!0dUpM8h+A+m#!oFwD&**kvJ5xr%M{woT&-uL8{9<1} TYR@|hw4K4z)z4*}Q$iB}rNUP& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/draconic_blade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/draconic_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..c06d5bbc1544014f553f69c19dd10c118fbc57b1 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b|@%-P!BX#uVoni)_ z@=KdM7&sGl7#kb&X|>AA$^sSedrw&fq!>$r{DK)Ap4~_TauPgU978H@B_CjO>XnRe zZY-&EXK>zNIpN^eEmQAinR;j?y}TkS-C**2)rnPk8y13`UoP8eAB~Rx|#cDY8pXN;?>67lWs(pUXO@ GgeCwjI!HwT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/endstone_rose.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/endstone_rose.png new file mode 100644 index 0000000000000000000000000000000000000000..fd11664774469c6ce4267d61776ff3375cdfa285 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`t2|vCLn>}1OEfNUnK{$(pl`3m z(R|*L0}_&F!X_mJbO)*WecqZK{J+`2Lzw4H_|=pPdKZ*d$gin=jVKX*JqTo z&)9e37^m5d)$z>x(3pe bn}OkZT0%noMP6~Bs~J39{an^LB{Ts5a@$uT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/holy_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/holy_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..46ab84c36bd1e0d66558d09192a4009267832d68 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6o?GQ2*_&~Uf^>_mp3 z?eR{F{4IK2CnhkcrRk^WGRS+V=__3Tsbee&@(X5gcy=QV$Vu{aaSW-rm3)Bhl;vsl zhK#bylO~x7Bu8!7>5;`aVPkDk)Wa*h4#(ciT;_UL!By3|d-;kf%#u?t?M}B?$t-z! zb=a2a!reHdGvu*Qfhn}0(R%cg99&kH`>?n~O5B|P7X=J7hryb#bkNz{RD_kw~6Zq=*-t1g(FSiM+A zCFI@K+^eftd3a(pcZa2$F)R%$Sr=g|dn96Omh1H*1!k3P4cvz!S|2enB>$A%P+Wfy P8S3j3^P6!0#xW_)vpF|!rW2nJ7A KKbLh*2~7a;SR@7j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/old_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/old_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..b8b5416da91b452efca469d2fa96f7faa7caabb8 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=1hCoW6Or?dIvW18d_K zclehi_}4_6rG~otxS5$5YbnUf%(0$v38;>-B*-tA!Qt7BG$1F@)5S5Q;#TqjwwQ=m zCI^%53Co`+2`EPds$4$7ctV5Iq>NjO!RU~4tIf1#k;-XSZe_a|B-g!s8fYBV&?E3Z z);nezlcb;0Tt6oT)5d4PqH`U4KCD`L=p9eO;=`x8H$?I>T$2->{6yMt3eYkJPgg&e IbxsLQ0HuOS=Kufz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_dragon_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_dragon_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..b34c825fdc590090f653f55dd0fcacff4e0f3c9b GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9aF@kkxLd8e4+XgC8; z`K6ecn6(xRoC!Oeot+yr84L{#`LtT)#PxkHp zZpR?`XO+Hjd6VS(zNL;5+qb9c{bLBTsotzJ<74@=TfY;uf8^i$%dqkD|N0bh28PXB WRiEwQENcN;$KdJe=d#Wzp$P!gHBo~A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/primal_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..907570c9d748c7cfe47f743a4af26474a1097dc6 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cTC;UIh^M4c1ogRkm ziA+4@mpBu4bQ&@6X|;-}hD*rmK2z^s2UN#c666=m;PC858jzFd>EaktaVz-%TTDbO zlY>e3gyqkZ1e7BJRW6@kJdwd^QpTOdV5H>KdMCU=q;i{;Ti7lJ$#s&lftS4-dIa9b zddEy-lJrxW>gS|j+9(z*I@htMW8Kn2ay$u(m93;UMDj8`RTjPV)NslIpk)l6u6{1- HoD!M<+!{pK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/protector_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/protector_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..cb0bb07b4d0519e96b872a682ef7aaa3082f6cac GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5cmJ-T}J>Y+o2=FgvB zSy`!&FwNiJU)sM}QY%4H$w5p~`EJ^OPM|u*k|4ie28U-i(tw;qPZ!6Kid)GC*kU4L znH)^ICoF%SB%mA-sB-xP;|UE;lQM2C2BSmHtv1t|MJlIRxs~l=kX-ljX`pdbLyy4w zSnrr=Op<;|bN!qYOdFpCi_UfI`LJr~p?5q9iw~dX-Vn*la7|8h@)K#pDL~5@JYD@< J);T3K0RWkvNy`8L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/remnant_of_the_eye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/remnant_of_the_eye.png new file mode 100644 index 0000000000000000000000000000000000000000..051669f6970bcd922aa9e7492c3d5349f2b3cc43 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3kdi-Q`oEK|KSLxYsu z-6c#crL_eZWE55uMtuWHGnNGT1v5B2yO9Ru_;|WFhE&{2KENMwc)^y51yVBvHFPp& zF(gUMlJ07dSaa&>QLQ|MHidvAOeYeIMZ`=x8CH6V36rFftf#x!Jy85}Sb4q9e0Gs|c-v9sr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/ritual_residue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/ritual_residue.png new file mode 100644 index 0000000000000000000000000000000000000000..648f4386708ffc1b55796495d9d6bd4f1af9ee38 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08vj(+t;jofc7jxpVW+ zMOT0#b22>s04c_jAirP+hi5m^fSe#t7srr_Tcu|hxsDp}FkNu#{civ1IKQ{|%_R(# z8Q0wl?(f;~$)f4PeYLow!9K!vbqlzfvK?BYTHSRvL|<6Pa^jnbQDf12-wkX&0(0Cn cBG><9tl?!ea+}B{12mn%)78&qol`;+0Npb@FaQ7m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/silent_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/silent_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..e07c6be65a16ea0348346e56d3b147fce6fdffb5 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4?hzdd#8;I3V}X3d&a zQBjeZnVFoN?ChEuX{S&WPtdXg2~SSB2t zZ0Vg9#lt*dqG7PH=#m)^E0!-{3t-bIaq?hKV((Yjbe3TPi+rePb|Wv)9tKZWKbLh* G2~7Z!6-Rjh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/sleeping_eye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/sleeping_eye.png new file mode 100644 index 0000000000000000000000000000000000000000..f0e6568bf03abd73d4a667cc5c2fdbc96db0d3d3 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0AW8QIIgP)C>($a(53p zwpbS^!dMdI7tG-B>_!@pgTe~DWM4fU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/strong_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/strong_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..c355448b056325c6f4b722ea59a2b842c82ee792 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3&MAAWFg(#f55+g23K z=#Hu_a^KI%uz-c3mw~}eQaG2H;pSs8S)e+`k|4ie28U-i(tw;qPZ!6Kid)GC*kU4L znH)^ICoF%SCZHSzopr04Eqpl>h($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/summoning_eye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/summoning_eye.png new file mode 100644 index 0000000000000000000000000000000000000000..ee52468aa9bd345a79541434d4a97de4a9be7d19 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3qCZJBv&a`Ud@tfj?4 zjaindURIIznxR2T?(PyMmeSe+3^EFS40E`FN*POn{DK)Ap4~_Ta^gH)978H@B_H70 z5$2e2PI9imwJRI8oMTmJba+4MOr(O_g?DEKB^{1+B`7d!uqQ5&OGt>A85BFoa4lno zS9C_ibEySV^Un003lV5un0@O^s)OW$3m4ZI3s_fFO~_?qQ0|j2PhRA76KE5Ir>mdK II;Vst04$wIZ2$lO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/superior_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/superior_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..45a1d8b55b2cb3902170324d83424f5747803c28 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=8QYm%V?W@&25|wWXX( zYZ)4X8TNBBEMQ^iWngfV6wYO45cEBM5~z-`B*-tA!Qt7BG$1F@)5S5Q;#TqjwwQ=m zCI^%53Co|S2`EPdF1d7q@q`DbNg2NvgV7mdK II;Vst010D9(EtDd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/unstable_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/unstable_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..11765279aa70761c2f7499983aab4634c10fccd4 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=1UJZckD_RG=_BMyk=o z#Kc7`K}$=^Sj<&UPEJBXf{%|cKlkflpgP8qAirP+hi5m^fSg267srr_TgeC5Vs69; zIhb@$SpGaoKsho{<1hZ!1I+6JXDgw!#Jo0T-YSq@akSQ6wH%;50sMjDWl=;`7ZQgJK!09#B% zER%yt_k{N2Ndn3dfhvbjFrJtpl<`K)gz-cNk7!XmXV4SFtA>jXv7RV6J4f??~O@sgd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/young_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/end/young_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9e8e143238c986a459d9667cafb2aa32e62a45 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4^1{Q2f@$NkV9~jbJs(yrJ@k$zVe#S9+#4c!8Lr8RPJSY7I0a}KgQu&X J%Q~loCIHcVOSu35 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/blazetekk_ham.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/blazetekk_ham.png new file mode 100644 index 0000000000000000000000000000000000000000..055f9bc8da4120bf4f3587e914498e58abdcde08 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5c$ueo&T(yh}=E+6PP zzpL@++VVY1N@i9%rTI9x8>*YB$jHdZ^6>C9FaKT&RLxit|66Sa|>d literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/fudge_mint_core.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/fudge_mint_core.png new file mode 100644 index 0000000000000000000000000000000000000000..74ac23aac747aa985247676b67d6a804cda358be GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07M?mjaUA-rA-1D%0aY-T1o;IsI6S+N2ITDUba4!+xRrE(QKFII zRFgo%r;`qclO(tn6{qKYdh_i6{?db|?@naX57?knHN~oV8DHWVY_k%%&SXUzZoo-KkzAA@u!^bHC4ATZVbIXNs#zZeL`ck=`F!;nyF!$gXP1l$rdy w_04UsojWgQ;NEYtnw?QVRJ4w({_Benz1CvFPOpM*^M+HC)v}*F{I*F z@&T?L<<2kHCJJ1;wxMqevqGc6%o zCLEk>>7A9t!#rW4VW3ecTT0)K2`gF{Iuzopr0JS7ae*gdg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/novice_skull.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/novice_skull.png new file mode 100644 index 0000000000000000000000000000000000000000..9ac4756ce490b42a90fd82b06eeb89c0165b848e GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08uZasiU=ZVn3as-Ypi ze%`6efPBW1AirP+hi5m^fSfQ-7srr_Tcsx%xf%?3oG`>OM;P6*c>rn8dgCbp3w%kIYPZ-P% c4A%Dh&6>b8@k#1*kRup8UHx3vIVCg!0EHkoP5=M^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/ragna_rock.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/ragna_rock.png new file mode 100644 index 0000000000000000000000000000000000000000..7331ee38ad80feb277bd1deee0d2ec30b1af198f GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4x{e*_-dV?BLxQc{vi zevYT7r>Uu_qN1XVj0_VK(?d6p^*}|8B|(0{3=Yq3qyagho-U3d6}OTPa9gCGYcW{1 zbZK+soG#5gU+#vUlW&#uB%>UT^@xZs{G_3foHaZ7*CjoLR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/red_belt.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/red_belt.png new file mode 100644 index 0000000000000000000000000000000000000000..0dbbb27643b60a3c1710bef0cc0320237730b0c1 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E09j)d_(WAJqKb6Mw<&;$UQr8>d@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/suspicious_red_gift.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/chuckleton/suspicious_red_gift.png new file mode 100644 index 0000000000000000000000000000000000000000..77922727172d4c1b43321ef774d9601b56ad7394 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=4?hzdd#8V9dR6$K5u6 zo!fM$TisPRlPp$QFQQPz!t2k#mfSpXA5a}*NswPKgTu2MX+Tc8r;B4q#jRuq)*b~X zhXp1v4va^%3waBfI#;ww?Vb|OB>D8PezPz+1?G~Ftb8XbmGw)a( zeAlSX)D|*tDrw!Je_AXdA>k2=(Il}(o>?z;uIXmXX}`wT(d)BTNc zzh~&USXQfqPg7G)Ygq{^rIrD;CKO>s^UjyeSe1%iTt9;Pa08q($4vo8QOGnNGT z1v5B2yO9RuBzd|xhE&{|+Ow6>*^$Tj{I-%azu!we)B0cPRL(F_-uBq?&EF*sRAuUC zyRX?NpS!+o>(=#K^KbRsOVGS_?VIaiiKZ;AkE`-|zcwzK`1R+)lyip)E|(u)cA_NT hr}W+z?iIgh8!unN%zQ|DQXSAX22WQ%mvv4FO#pYqTZaGu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/alchemist_recipe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/alchemist_recipe.png new file mode 100644 index 0000000000000000000000000000000000000000..a21a1fcb403ac5df215b8920dd6c3f9f7ba8ba1e GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cjzy0<0`2F(>cdlyu z-^j4AFJ_tB{|hmEEe!vi^pvd`Y<~k4F_r}R1v5B2yO9Ru1bezThE&{2KEM|tvw%lk znB#4d#uJ8V0qaFfm@l4tYOLO+Vqjpg-pF)o)SF`ml2k-BZm6<|c!uQ&WihQxG~V>0 rfSHS-b&79;iN^^Q-YkO|$5_!@p6XfaQ7*cU-Zg(RugCPeKqv-ehKTLD$8seOa zE_9_={U}Y2K7PTpFf?*|$kt-9<=4J%mCZ~)^MGyk6j{ZY!493j9ZyBDn{Q+<?u$KV@Z%-FoVOh8)-mJxTlL_ zNX4yWhDJ^vfdiVHsXihzc?AVT&craJ#R>+_W>5Q|rkUy_k{eXanEhm(ci~4C!!p|) z&x#m5imw=cc-F)+i{HSYfi-EtvpiNVhb<1QKjaJ+Ffk-^3f)pzQE3Xag2B_(&t;uc GLK6V3heYH6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/eerie_toy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/eerie_toy.png new file mode 100644 index 0000000000000000000000000000000000000000..012d0a453aecedc98e23247bda1c4e2e3c679628 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cby8W7}Z+BYlUYRVz zjQcM*EeS)P7Vh%f-cqXSYm#Dqs^8o5$ED7=pW^j0RBMr!j z_jGX#skoJVfa`~u!^^w7!)A$S;_|;n|HeAjikk#WAGfR`LNx3DyNXj^Z3=wM3pUESYgO zLe#anfoJoR5XVqeg~biF2Q`i`u35IjM8rjM^HSr6mz%yYsfn_&Z7cf5#KyM3@(m9Q aBg4FZoZai(y$pfoGI+ZBxvXSkS3{Bwu7f7}1 zA7G0pTEJsAoms%m$Lm~>z}YORttJ)>Cpf}PdHIZ3jhL9H@=gtH?D2Fxb4TfSy$Nm13=-F6 VCH*@U1c6pEc)I$ztaD0e0suWGP;LMK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/fairy_wings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/fairy_wings.png new file mode 100644 index 0000000000000000000000000000000000000000..7333b571975751e26db6d7d78fbf4dd0c571a5f5 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DG_sBtfU%+02`D*A@E z!$kM_kE{H*Y~!Ba43uLm3GxeOaCmkj4akY|ba4!+xK-Qh$j4;Bb6Bk0_uv0Gy$-`; zM;h`tsY~(|4Zo3#eK-d$O5rI|kIx zSQ6wH%;50sMjDV)=;`7ZQgLf;Unmo^B9BYqCaH)2%HOtB{oc;s>%ZenLEJQ76WiEh z%aggTAGY($aXa@V=Q*=?wx%TCJ;D1E1HIz2R=Bp#biEmsncL{>a>id-Ywa1HlS;F) y7hihV;cU9PPawM6w(W&cEqjI58vlfU#msS1Y;%fwN-TkvGkCiCxvXOng`OE|*bK<&xyncqeeYHE7u##+~)| f6pzRr`pzuR-p_cbFK787py3Rju6{1-oD!M>5dZ@7jN3# zF?DWib$485fqitAm9wX!x|aWnnID0Q7)yfuf*Bm1-ADs+GCW-zLn>}1AK*_rH-}-- zjnk*QbsX0OiHn!3dM|MB=$f59@gobHpSXes-}m821{phbZ*49k zD0uDKwe8!tFYj$?%}qMFd+V>M`s$;Tx`+(XQOM?7@862M7 zNCR>*JzX3_DsGjYKFY}Kz~OSS)cx0bGv>m_-|Phb`SpC9yD~-pBxiJ&{%ymotEGg`MTZpmi+&K7!j?VRH0 jYd74f(9YlT=?Uv;YnC|^O(V5|mNIy{`njxgN@xNAmc&@r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/nightmare_nullifier.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/nightmare_nullifier.png new file mode 100644 index 0000000000000000000000000000000000000000..cff76367a5f2af6ea79ed4a7e63fb419f231ee1e GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4A0X%P_-o}Qk@#^-c( zb>-!!8LLTZ$qTDU2}nptoZP;7B2W=yNswPKgTu2MX+Tbhr;B4q#jWH6>@#|MeGl@S z?)!Akfl=XbLDlgk3XTegJpuwO9XM1LJxY;Tz>>nUi&Ijc!T1u(+=V>TpDbPF;5H#* r*2hZ>3eBOOH@T8ZuB>8>Sj)nYK40KWPW_^2p!p1*u6{1-oD!M<`m#P( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/obscure_ending.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/obscure_ending.png new file mode 100644 index 0000000000000000000000000000000000000000..b1bc986c2b631dff203edbf3d60481f1bd0f5f6a GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A8fsO0XGrEh+(KX-20 zyKg5a_aq(K-I1o)Z~!RBSQ6wH%;50sMjDXg@9E+gQgN%No15!E0LS5FwcEb$|G0$j z&JVqYNeiyWU#Z!%YQgsO&8{c36a@R1@AW=bAyAjN!$t1m3yYG48i8BR_ioIOEYCb< gn|}AV{}OXX_B5uJS&!oifkrcUy85}Sb4q9e06JSpKmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/poisoned_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/poisoned_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..714b76a602dd95c60f477ece3220a89b5bcd4923 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5#ZCLOsM_;^d~h7(pN zrdzFVamjA8n-$97nQm_wWS(ozXtzB3KTsWGNswPKgTu2MX+Tbxr;B4q#jRuowli}M z1YA6Lz;g1_=RV)2D)BlA&xlZ6ZEtvQhRA^snNu1crYnZb?QA^hF{3rIu`%+RJMGkTpDvxeTh88PGPzP5kmkE0xVLK!Y~iHI>xH*E#lz~JfX=d#Wzp$PyD)go;*O-)S==FjT_YGW)3@(X5gcy=QV z$O-p!aSW-r)!TcV(N&RyC3c>r?qBoY%0*>on4EVk=CJelXdV>h?`>i4A>*^t^+tQi zq}h`nab4pt>6BY}OIpL8VXIn_o=C9A$IpLWu-DhGwKuW&rF`cj+oXTYVyEhkYy?`t N;OXk;vd$@?2>>MCN45X} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/rogue_flesh.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/rogue_flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..15e326734473ae4ec572a1e7f07efd6cacee8069 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4@N#=qPsdUR^mooT{H z8>5bUmF_l?NYW7q(h<-Q;hJ@I(mkLC#*!evUY(zL)&JF0N|d>Q!on4JtZvjj3*0dhYDIHtj0p)m;36F)d|zm j6kaAMU0Up`_vbNlkhQdv%Z`SNAeVT$`njxgN@xNAy!AZ` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire.png new file mode 100644 index 0000000000000000000000000000000000000000..a63d87a7d6c0989604ada7bc5fa694326bbf127c GIT binary patch literal 350 zcmV-k0iphhP)%CV<`)i%aL!k{ZYcI;=i3TM=~fb$xG!|ByrkaYDIE>2 z2TnuzmaaI>1EN9veSY_-^`S=yMxna(P)eDcj~)SgAf9``#e$g-u03)#fcHH>ed4w;~MyTpj@Y{PNb;*2~7FEdT@h)=H>I z0O_$6el!5GWD&q#75bGg-gX^)GY>{}mi_<$00DGTPE!Ct=GbNc006;BL_t(|+J%r+ zqJ|(CMCrBz-2WEu)9r8gJ8jPy6&Ut%+qOGgOGoN@`Ps?JQ#ZS1^dLp#mJ5PphjU&}L=X~%6qHS7dJYfhXX);UOgqpgfIcEoh z^oZ32XY?7Xxj`7<{0=znS;|8n3Vi^NebCD#&q|&9ka8xx?t|2; zKB6R}&V58F1pP(8AU$9;!5MkRYHkn)_+tA9$7~X|;(ES*00000NkvXXu0mjf?mLk< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/scary_grimoire_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sewer_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sewer_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..ff8051062662ec5b8a1b99cb1bf0864397ecc204 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=5!<9^Siq#oU?AlO`=L zDVv;=8Wb2(tE!bGr{e>Z<@dkd2&5QGg8YIR9G=}s19D(=gI z5z>3e>(FN1yfJ{aLvWpr${kC_6B>y>MGEdxU-0grmr-i1d;M_;>kZRX6G+qZ95Rn-s{7UksRN{JSm3)IF~666=m;PC85 z8jw@u>EaktajW!fC=-hz2lE9_uf!#X{`&8ZEdTdu!_$1xPs-Cu_Z^KoIa_4$qT<_n zOqZ0d@IO#u&EEQfOS#Ez`XuMifg@xDj?uo_xxiihBmU*`w+544GDY!mp r(G4}8uJXe3(R(_6r~c6F`u~dMV+o6uckPZYpzREvu6{1-oD!M<-IZC} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sleepy_hollow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sleepy_hollow.png new file mode 100644 index 0000000000000000000000000000000000000000..d76d7a32a16028fbc79a56df0db717f8fdd9273b GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=1I*{ddNG+MVQB?0IdG zoqnL|PESKa6D1{aKE7X$drE;S7)yfuf*Bm1-ADs+GCW-zLn>}1JFv;j4LJ6ti!))? z=DmxA&&)Dey!Wz@N4d}Ck~tEbA(0nfn1${TUf~pEa`fyL#uFK0-kzbW8H}u&4>y?{ zZoIWjW2M&0vq1jjJ9FmPIEwjr7N5>ZV33}2lX2r}W)EcshW`E1EoV1hiUZoo;OXk; Jvd$@?2>`u)ORfL_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/spooky_tree.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/spooky_tree.png new file mode 100644 index 0000000000000000000000000000000000000000..bdf9254926741d05d208974defa79b33b3977539 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08{YZ0U=qmliMT`1AX1 zbzL^+JN;`wQO1%WzhDN3XE)M-oCHr7$B>F!v0aQ@%!WLNb9VmwKmB@(^c}S>rz>RpsGl$QrrH0S$ENstx r9;L6ghqM0Rg!{~o!%r5TxcP~(Uyzai>Pan-8yP%Z{an^LB{Ts5@hwet literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sweet_flesh.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/sweet_flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..7878314f1d3d26a65862053274b51dddbe1e90bd GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2^SW*tp++~T5;6)Vx~ zB9ZSa-EAU~q$3cdBcLI|RkQbGB2W=yNswPKgTu2MX+Tb@r;B4q#jRuq#yJLV;ys3p zPK71w<}fUqygJI(agCX>~nih%(GL&75o-uug>tAQ3Wc)I$z JtaD0e0sve?LG1tl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/the_soup_painting.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/the_soup_painting.png new file mode 100644 index 0000000000000000000000000000000000000000..fcb3545f21f49579d9dc6d31bf8caaf11f12c643 GIT binary patch literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0C^m;h$XOrIVZ{Wn?Gn z;N~@bzPPj+zpUET>wV!V7SFysw{C1+bLDhnum6&D={BwgYHDg5=Vv4*C!3m@CfkUr z$#9;#IqwC~AjXm)zhDN3XE)M-oN`YW$B>F!CEd(S&W=1Thx3!)*Pq=rc~<^R#=oim z=1hN@d(6Uaif7A4{WXdmt5;_QuK4A}^wfie(XNg$`*CE#vg<6lp(kW5cd2e#bY@Gq z$`dV-Qr@E*enc4xZQEsZ%F<2l)iy4j?cMv=X>aD(<|E@|#V?ugONt@;0lQMf1@Bg% P6Bs;Q{an^LB{Ts5I*4F3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/wet_pumpkin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/great_spook/wet_pumpkin.png new file mode 100644 index 0000000000000000000000000000000000000000..a2038e5914948d51c746cb0c8bcac9ac2cc87e90 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5d~c|Tso@VHBMdmF=% zd=bO$4GY4!O;a1|Z243IvlGnN^=_-iNTC1# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/dark_cacao_truffle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/dark_cacao_truffle.png new file mode 100644 index 0000000000000000000000000000000000000000..bc95f4f834f06c6b7bf38668a8f12b6583065dfc GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6lN{%@)9H<|cka-v;x zh_QUi)&dvR1WQ?N+lfBf!VW6@22xxdJw_}*rHmy(e!&b5&u*jvImMnXjv*Ddk`J)O zI62EYn0QYJs^sW+_-fIkI4+T-;-Iw|fm!|u8*~EW17C$0&UD;#M|028{p1Rxo&9WOO|t>m%g$?t+Ksvu1~c$HKcze%&uB@9~IdWawgH V{8V@SoVIVTL68Vop&27I>P@_qltD~u(k z(f7VuJIpU{=|8jntJpmG1KO_+?`~X?5uoOgbf9uy;$y8qM{lG0Cvp-3FSQwZmN8mB T-&rCJG?Bs6)z4*}Q$iB}Tdg-t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/refined_dark_cacao_truffle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/refined_dark_cacao_truffle.png new file mode 100644 index 0000000000000000000000000000000000000000..b24ce6962f4ef5b24e94acb73ec03978e4221ae6 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0CU?XjkB(+8kn>U@5z$ z!vCd|)DhXIJX>x~Vc4{Zfx$;x*g%TQL52VSyY!bEq>eW8%yMO#8{hZ{sFSfI$S;_| z;n|HeAg9{X#WAGfR+0jr0n@EX+{|oF5)F$4?7QFW&nYfF{6ASq>s+|BF|$qTBdr|a zCwi8yVG6U(uvof@_%!yG%+v`n+;c!pTW8glz@I0YnkQsjzT3CAXvy|Bw+r7?Z|}eO z=<3a|cQ*qb-jukQ9^&jh=f?51{;S^nuX@sJ^}nBcf)AV4=M(k+fzDv?boFyt=akR{ E0H!Hn-v9sr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/steamed_chocolate_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/steamed_chocolate_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aeec53844985dec0c4b789b8ba3250b41b2547 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=81!u06J>aARlij9kA0 z7u9SR?F36%A8la+DK2>dw%9K+yMT%qOM?7@862M7NCR@hJY5_^DsCk!u$(%mvYF92 zld&UFEECF0p%Qb8n)z_klcFhS~N)O8>6k&Ij7S;OXk;vd$@?2>?nHKgR$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/supreme_chocolate_bar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/hoppity/supreme_chocolate_bar.png new file mode 100644 index 0000000000000000000000000000000000000000..71369165210902422b9514b8326ac901cb25d884 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cDrT;&z{B(`j;cA|x z-WMy)mWL}-h1^5O~gWjpZv_2ixbyM@OUs p-lcT)c^Wk^rYKv<%?adV5PB6E`eM%X3qbQ3JYD@<);T3K0RVDjF~k4> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/bottle_of_jyrre2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/bottle_of_jyrre2.png new file mode 100644 index 0000000000000000000000000000000000000000..79441bd75556090395f5aa2e5795e16a445972af GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;hrvzAr-fh53sr&)VOgkgyq<8 ztD*#nGwM@ibTb~IRQdDGQHhe0JYYz9fJQQSy85}Sb4q9e0QsOehX4Qo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/einary_red_hoodie.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/einary_red_hoodie.png new file mode 100644 index 0000000000000000000000000000000000000000..751fe4e91c95bdd6fbd5084d6b91ee62be2b7900 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeLVCZ0A*ucObUB_Us zom+{4;s5{t@1N{XXJELX&p!jGg0UpXFPOpM*^M+HC&|;rF{I*F?&<4{ED8clf$gRj z>kq3>7p~7QxxL@>Q~U9m_wPQRqj}yy{mePzFUc=%)QKboMp-j{jSF?!8g|-Y*L2z0 z8&u9cvN>8bBVfDm@31vZ&3_aUbsc5Ws&l3I?tgp4%9q5Xbii%}$gK>Xu6{1-oD!M< D?KDU} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_compass.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_compass.png new file mode 100644 index 0000000000000000000000000000000000000000..9c5ae718c9ae706c370251a480d23f89c5cc8a89 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07j17BF6~6?otM6$3-Z zzXq3+*8fX-7BMiiGcf#D_PoTvkj%iqo^`MgsFblJ$S;_|;n|HeASc|@#WAGfR&TE( zAF~1ni|Ce9oBr45FP%~F;;5zJ34V}v31{qi)1V!y9*dJip>7gT@!xGtgkF}L9qrYc*vb4fre7(8A5T-G@yGywn* C@kP1- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_of_learning.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/gift_of_learning.png new file mode 100644 index 0000000000000000000000000000000000000000..811e3155e95876d2cc2db16bb89b7953500422d6 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7bq{=atZ+V<_+`}V${ zIdf*z#8dW_Tce|+xzcZo#%&bxp3Sb;&LCbYCcwIU`HwoF2F8*gzhDN3XE)M-oI+0* z$B>F!$qtO=vJ18>=9p0?BK&0+!=vRKX=mqf3yBv`nPd5y>9DBddetW5^m(Z}o|zU; zTl{1uTU+)`<8-|*oO}rt)AnRPo0xLhn&*w@we&+l@Ao7ptO(;XJI#2Br)IWK|J6p{ ky4q)!N3`rFSTHd#EO$~5WLMg31+<*O)78&qol`;+0LhkF^Aoo;nk z-AuArWxa?3Po#1c3-9hNj{|@z7)yfuf*Bm1-ADs+LOop^Ln>}1AK(&cRoIfXAcJFu zeum7dB}^$AoYGxvI~ybxHhDc&VDnxv$-9zy!oer&o){@Jo=6DMJ*kt;VCd3(N!x)( pOn_PC=mWV)cDzX?k?LWy8UN|>Keu1KYc|jV22WQ%mvv4FO#p+;J?sDg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/hilt_of_true_ice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/hilt_of_true_ice.png new file mode 100644 index 0000000000000000000000000000000000000000..38f3f981ac2a8fbe5735e1e196b1ef453229f32d GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1(({9kzZ|D>J&YLH;aRiAh*PggFNLcg1!~Wh%quGPhfN0D7;_=&;SNc LS3j3^P6J&TG#%l zS^6cQ{-%EPrh8B3ngHb(OM?7@862M7NCR>_JzX3_DsCkoV7er#k}P$^?ckY6x^!?PP{Ku)%&i(^Q|tz-wb zg$on9zMe^We1SnhR^!>EoE)hG2NHESl5!IsXs~aZlEx^x@aeH<>gf!UnhTF=TlqIE ziD^>ox$vb!)K=lxl@JZ(qO6a7ed~C6?%Y1yU0%B8-hl%L_U^9vo~OXevb$W_nvp@+ WRiiPQL2w$-S_V&7KbLh*2~7ay{!+>S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_golden.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_golden.png new file mode 100644 index 0000000000000000000000000000000000000000..1757da221e9cf85605954a85ac79780fd2700b6c GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CUA9MhQUb8vF$?L|Dl z&+`2L%kyMS*Z+STHkb3ndKqSi+xXk59lAGf7Emc;NswPKgTu2MX+Tbzr;B4q#jVm4 zt&Xe)0?YwQU*Fm5hyIv#D)!#_=?PC3PEGQ>-Y~_fC-K4tMqjV`E9w(w7nQ{__y~31 z6>G8Z*lIeRH>Ib7ML{6f!7_oxhA}5#Z|@b(z05KJ>GKU%PJV3t^;U-bXYRktS$sv8 SitYy5$l&Sf=d#Wzp$PyHkWhL6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/jerry_box_green.png new file mode 100644 index 0000000000000000000000000000000000000000..0963b82e58703fdc94f6d8a1715b1a7f4aef01aa GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CUA9MhQUb8vDg_hAO! zhYWoG8J?`^I{1Gw=Uj$ZFT?C`8-F`BD}A%`K&6Z&L4Lsu4$p3+0Xb=&E{-7;w@Od6 zICKOFw>$~FT?C`8-F{sHxA-0N zP3A6`HX-MOq*=Dq!-8uEUaeg9#C+8}y_1ja@33^p<|+8p$i9s6Voy3Ql$kA4Y1V#^ iqe^XSn`+93srDaAm=Et=A+j21HiM_DpUXO@geCx@XhFFE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/party_gift.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/party_gift.png new file mode 100644 index 0000000000000000000000000000000000000000..825c991d7e698d72390527b0500da80686e9b058 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ESPu~tymzB5NjSX_#W zhu^1gBg2%9Stc7k1@i7=V3;G2_@q--Ysu7Q%R_886_|SX$}-&d18QR|3GxeOaCmkj z4aiCMba4!+xYg?u%H*KPAv_~?_y5%R=Z+#(O2u1SLOO_pws=N|TIIL}d>ZeC>YvL|GRJmH^Aoo;nk z-AuArWxa?(6$`IF1DpB&r#wIvj3q&S!3+-1ZlnP@VV*9IAr-fh4{$a4Dwa&xG|_5C zzRn5}DZZ2zDK6=i)0!o`jxE$vVA~y(vGX*GLi1LYEjF7OPbBaa<$s>RkR-8kTSb$^ r8wECxu7xgpRhg5v95-2G#>}u>MsVu#BZi(p8yGxY{an^LB{Ts5m5@GG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/refined_bottle_of_jyrre.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/refined_bottle_of_jyrre.png new file mode 100644 index 0000000000000000000000000000000000000000..96954b413a66394bd2f5d9423160c2cde52470d0 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|9|a_R@N)Hb_Cm7vN z*l#F)<5PY=@t5tSA3IDrEaktaVz-%cSLNALXUu}qCxl76P_1NFdhjI zF=R5nF^6R;Yp6qyfU;}4f$|yGfU6=)tV|;VRYZ;?c=HBwGDuIECf0S`jiFV5bER|q RGmvu_JYD@<);T3K0RRK0GWGxf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/white_gift.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/jerry/white_gift.png new file mode 100644 index 0000000000000000000000000000000000000000..e3620804a0b8d9c4e1874088677bd8244fc9223c GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;C21oyLbQJkve|- z_=*)PE-qy6?CjiK$t3gkg%VH&V@Z%-FoVOh8)-mJsHcl#NX4z>16(|DW^Rw$F!$p`pnh%Df7Rpf{d z3<&UGJR)FJ7{=l~Yspf}=BGx>Q~j7P>Rk3dtS#HXbFS~gw?58`}PR($TQUs6|jEZJ)d-)ItEaBS%T2?x;t%aCry#mbznzHb`qfu=Ed My85}Sb4q9e0ExXeUjP6A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/daedalus_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/daedalus_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee1259e78d027a1904b102c8657bef4b200818a GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`5uPrNAr-fhB?KNkdc<_-N%l4) z^Iz+iE&4D&=d8YYR}-&-cX30%_Rm>!W!JP#IorXoc=}lmhqn2G3`d`3US4K6W7e!m tImR)@nrsW$B|MZfw=tVKnOv4;V3^|R+bt-YKN)BTgQu&X%Q~loCID@#G93T_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/griffin_feather.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/mythology/griffin_feather.png new file mode 100644 index 0000000000000000000000000000000000000000..56bcc83e9382dd34a043545a006108a56225985c GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=5pqeXAmE6I^sHG^GRQ zKTHJ*F_r}R1v5B2yO9RuIC;7_hE&{2KENuHz@w^h_6bL-hLzLPke&rhY66U`it36R zyc9)UH*hSTU_2u&$V8Ckw80Du#|-gw*AmdKI;Vst E0KZ-<(f|Me literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/bat_firework.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/bat_firework.png new file mode 100644 index 0000000000000000000000000000000000000000..a34542756e48ae5a0ca4f51419ace689dff102d7 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3%>eA#s7;x#R;otm06 zH8n#V^;@K+9gWp;#l?-)#C1hDce?&)2C8E$3GxeOaCmkj4akZ1ba4!+xRrc>PiBG1 zYSk%%LY9m!8&!9-h%I51l;rez<Y<;1Untqaz+7cEPVM{qu*FH!{ zc#sgGv8#c3&D@KkS$y5Xhx0g+h0Q}cs+lJpWmvIZaOI=|!$Ux87(8A5T-G@yGywo) CR6(r( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/blue_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/blue_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..368f555f3f8e6e5ea698ca26629e5fda17880acf GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AW;FBHk#`~Mlk|6L4r zi(X3f-WLp;b=K7E22hHzB*-tA!Qt7BG$1F))5S5Q;?~^mMqUO(4kkv?@ArS0=GHaD zITc;#O0W7+njC%nf@xuB9I)6K!ieNY2$X>{8 gIPp!gMZp1Wd3_Vc-#6Sj?}MD->FVdQ&MBb@02Z}BYXATM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/echolocator.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/echolocator.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d7c1eb44e2fb5396cd77eea4210e9c9423de03 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F$myZ-+(hD{HH{_kRV zyv%#rS&fd}N{_o_E0;+f$rp)g`mWHpQ9A9@*&UY0-h z^Wc?h=hYuRnU~5+*ZGdk2)_ca_`Cbu{omQ@q&eNFIeBrjAV{fVq{bVTEO7x L>gTe~DWM4fd^uBL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/ectoplasm.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/ectoplasm.png new file mode 100644 index 0000000000000000000000000000000000000000..1fd9955f46d77343bc0330a1e140e6696e85e838 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=2VFJX`MU(3Ne-h`2{mLJiCzw#Bjlt8^&t;ucLK6TSEh|p| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/gold_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/gold_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..85845f715681251f495af5cf8fa92247e685e7c1 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08YLV0yVx^!NAef4|26 zy5_YhMUc_;vldW-u_VYZn8D%MjWi&~&(p;*q~g}x?siTWMjof+)Blv?_m~|Jmy0Nn z%l5C27TWYKLVlyHnMnQ>C!70QTWbW)@rf;{op`X7kyBG~=`Y7X{$Ffo9MwwQLxX<@ Z=>OTpxJvC^=6RsW44$rjF6*2UngCNxJFfr$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/green_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/green_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..287684988f6470f7faac2777caa0c00e5ec2455e GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ET7WT;#w_5T^e|6L55 z9tKT2s}a@6zsjb615l2!B*-tA!Qt7BG$1F))5S5Q;?~^mMqUO(4kkv?@ArS0=GHaD zITc;#O0W7+njC%nf@xuB9I)6K!ieNY2$X>{8 hIPp!gMZp1Wd3_Vc-#6Sj?*mO|@O1TaS?83{1ON>rKUDw# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/horseman_candle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/horseman_candle.png new file mode 100644 index 0000000000000000000000000000000000000000..31ce87bc098d7e64b6e97cc734cc858d8c4e5a2d GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1HbCLdZ9yl$fZ+$!fO z1y-d|y3IOUQk)&KRF)*k%n1;yHC9tSw*MYTKVwOdUoeBivm0qZj-RKCV@SoVWCupx z0IMac3_hEsWQ|%4ru2j;@+hhrb2tay;5`-4XvE{YN3q9OZTCT*caL;8EB3sabXDNk qmn@Csr#c+XiPzWg3b2`b2s5lYAgF!CYUf#?$qb&ZelF{r5}E+25F!$p_df^bI~VWX$W%uhaul&6efwPkl1_ux{73*KZ=#7u=BDA1?km&4yvs)f&}p z@83qUwROLLw z9RF`&_))~LCVqSWdY~L*NswPKgTu2MX+Tbpr;B4q#jUyBjl2wo988R&-|zo0&8=&Q zb1J&fm0tCuG&%bC1=GUN$n7Cpi^Y~-`@U5+GyTj1w%Jo;6=w!JbpCcc6~S)4k-d=H haN?U}i-H5%^7zi+s6-Uph_;OXk;vd$@?2>_xXKzjfH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/soul_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/events/spooky/soul_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6420f1cf2276f34e195134ef82f5eadfcd1c09 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=7o|{GU1Te`mqTGV>BY z?FfcIUt5hJ5pF3pUR?vAG-FASUoeBivm0qZj<2VSV@SoVE_ZZVVc-yq%U&D=Kvq*|-nsJa&yAcoTU2Dgl6z8K{2F<#WD>*e-lO#2r f-zJ$kY?5H`ujOB7wQ^w#&}0TrS3j3^P6m`; zbVG!-)rHG}$K6#iRG?Y$V!#F2HC8OgID*82*o~V)Th2I|tnTjY$Y$(F%vqB&iy>*o vj+Pk>5{mDZK2%lEzQlcl`^ITOKL!TAdjf`vTQ8dfZDa6s^>bP0l+XkKO*}bb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/box_of_seeds.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/box_of_seeds.png new file mode 100644 index 0000000000000000000000000000000000000000..cd216e6c37a268d345d1c3e695da6590b1000091 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0DI*5X%lW3bm4Nh%?i3 z=5Z-f$=qPU@JL|I28;Y66?svvP)F5En=c;$DrGDQ@(X5gcy=QV$cgoIaSW-rm2`lW zA@_7EFSCJwbKuRy8};|(rXBw8skndB`Jgzo~J*|zM> zU8w~QOYKb7JBEH*!t|o#zJq6zQ#~W!FGemezKM<#^-t9>M66~?V~dsg3$%#A)78&q Iol`;+09?LEIRF3v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/chirping_stereo.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/chirping_stereo.png new file mode 100644 index 0000000000000000000000000000000000000000..c37e1a8b8298b14f336d791d3bedc0726f6d1bde GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2cuZ(l47-ke~`(=ekk zNUg(7BgIjHJt0s}PtRVRUt63Hs77@k<2)e6SQ6wH%;50sMjDV4>*?YcQgJK!0RIj# zhnG)7xfQl7;GV#`gu6UH%qZ@_0nxZk)#cUS*x2%}7xeeNigh^VcJae2+szF;?{(K% z`_E(Q^mrd(oDNjL_D=Vnwm);GLiX`21>Q8qOcn-)$D0%z{X{+7ffg}%y85}Sb4q9e E0D=re1ONa4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/compost.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/compost.png new file mode 100644 index 0000000000000000000000000000000000000000..6b1c1bc8ac025807762cabd80fad7f267eb66fa1 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0FdwkO;Do$a0a0_b_Ts z_ujIy`1ZwR-H{4wQWb)H1axG09oBIs0o5^<1o;IsI6S+N2IS;;x;TbZ+{*Q3Wnxj_ zDPmsp_y7L%xZ9InzTfcP{)}CL_6Nq9kN$b9Wy};`;Pr78k2S}HtBsC12aXs%P0pVz zXqWUP&yKO!U9O%t{(e`?3*~f`_x4E~F#&eE6Pq$bFK$mtw6otRD%}}z%lRLWQq7H05F+*^PMhe@a$etFK zP^JbRGgn8~$t()ZS5J7HkUWyW9cIMIYA6xp+oZVbl9TVH2!~?^OO_h8G>KS0*dV~L Y`xDod?Z)ypK$96fUHx3vIVCg!05UQ(_5c6? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/enchanted_compost.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/enchanted_compost.png new file mode 100644 index 0000000000000000000000000000000000000000..3417e137caf04a9966c134d74a33d30d8985205b GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0Df@aoLuY#al}4)}$&l zr+c?Y=v8>i$9ouMxkv>02n5+kco|3pYICWIu-0a^fiyCf1o;IsI6S+N2IQ1_x;TbZ z+zL6(D#T*Q;c}5z$LzwL|Jxo*onQTHe{sm$>!1G~?_T9JiEVC(DVysO{!??agoGA~ z8rL#EKJ(SyXwQwX2E*kY-Nw>k87qwZ53T9CC%k3Ws?5iJQfV*zFV(7FP!G&$P(R3K mowHWJ`&Yaq_ za>=ymlUkmwN;w3SU@Qsp3ubV5b|VeQ@$__Y45_%4tiU3(z@%Ga%0mqihD9-vBE1eg zVha@%9YYlkdtL|$xS`t6=o;v8T6WCvF_QA*vzz=uOTvu4|%Fvl{MOG3bkN VhOW&Di~t(S;OXk;vd$@?2>_JzKZ*bV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/honey_jar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/honey_jar.png new file mode 100644 index 0000000000000000000000000000000000000000..ef5671930a8a6d8f9a58aac3dfaec96f7834c814 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3fZe*b@2ck}r-XVx$6 zUVGvHM6m@O4YB=)uIEcc)Gpo?FI|_LZW-62?wZ2M$@#59xfiI1u_VYZn8D%MjWi%9 z$kW9!q~ccc0q#8Apr}&DBNgS}-|uBtaO?E;{K=?rw)*|sz1zzjmGaHc@8O;%wE5n& zn+!=Dk^YxhjC<15U7ICyjV~+k^le#btl(B&Vv?{~kYPoGZ0qFL2B|>P89ZJ6T-G@y GGywqm3r;`) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/jacobs_ticket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/jacobs_ticket.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe8f8c633d061b7ba73b9f0b56cad530d3c3d89 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08YLVA_--_;RD@g^9wy zu6h0c`=I38rOiMI#*!evUlqG(YAJQ6b~(Ea#-*^*yLjLZ|B7MrZ^Ze%?2iJ8kG!hw;4Tcd%KA?B!TtBSxP QVW2$>p00i_>zopr046O`i2wiq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mutant_nether_stalk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mutant_nether_stalk.png new file mode 100644 index 0000000000000000000000000000000000000000..f884aa113cf6fd75b87d6c60942bf2f202124868 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FdR6zde0U8ZWV&)&<3 zfgwgzYWmxcc|Zxqk|4ie28U-i(tw;OPZ!6Kid&^Uja*EQ0!~*m|NOVV7vrJyNbdNZ zRT}dq*4_Uswb1I3-1QHjf2N>Qs7yjEexKnelF{r5}E*K;6fPy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mycelium_dust.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/mycelium_dust.png new file mode 100644 index 0000000000000000000000000000000000000000..4f30213203bc5cc0cf6ca6fc61228e74cba54598 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09)IH>`+F39xlpTvl~r z%5+C3KgNl9AAk~!B|(0{3=Yq3qyah6o-U3d6}NJGxVerva2$R1chCQc*9Dj4tZbMd zU^_oJzwGM#^(|{p-B1vVJ;UV{vM8r0QR|_lq31-2i!$e?8ZwHW7y4*3b!W~I@$W|u oHtIP^8uq1Bug_ri`E6+brXD`uxTKx-I0UHx3vIVCg!0B+Jk#Q*>R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/omega_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/omega_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..323c5b1d59f9147e71ed0eb5aa639028d86248f5 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|37r}_^gFX!rk0l z%+2*wRFtHoq{PL6Qg>Hf>;qDaB|(0{3=Yq3qyagRo-U3d6}OTPa9LR?n7C&}FweO7 zN@^CPm`5QeD|cZFhgPFxZsW6~SyL5M9hW{#o0;I2p)teI^p436-Xk-_mPoOL9iDk{ t+C?+QlnY!)5DCJ;ob`gsZ{ZcoIpz$JYD@<);T3K0RS8PK{o&Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent.png new file mode 100644 index 0000000000000000000000000000000000000000..8cd2299d72adb356fba1820c469bf9ad1d66a4f3 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9b4;A!~PE2sAE+4SI` z16&a@ z3wZi?0~jawa3;8Q-99rjfvq~@CzC;QsHVuN3zl4o2B&018ahtMw5)ba-q7y6wfOuT j-i?co>Mow#$jI=}K=A9`ha8iDMlyK1`njxgN@xNA#eqh> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_max.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_max.png new file mode 100644 index 0000000000000000000000000000000000000000..278f6103d1ce01cdfa318197de1af60505cd89be GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G#?W)ZRUtR<2ku zX=2y^gs}R$@_pv|;o+h4)#T#@`GIPB9#o3~DaMi@zhDN3XE)M-95+uF$B>F!$p^S* z@GjuF#u>nvdY#GO@XaNAWX?Qz6|t4^%ma_t4Ms(N4iY^^?5qk(M(hu>E=a`02E3i~ jbgF=LlW)vnNeKo)6`>FR#ecT|O=R$N^>bP0l+XkKX4*pf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_spraying.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/pest_repellent_spraying.png new file mode 100644 index 0000000000000000000000000000000000000000..d9e248600566cb470962f5807a1bb55912affcc6 GIT binary patch literal 89 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`3Z5>GAr-fh6`w?M`Zv2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/plant_matter.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/plant_matter.png new file mode 100644 index 0000000000000000000000000000000000000000..776d8cb72f02727f19f7eda9eea21f9f3e81b251 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=2hB?3^)kMtNy@MoNaS zhp+ehcU?eH#*!evUbP0l+XkKg1brS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/polished_pumpkin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/polished_pumpkin.png new file mode 100644 index 0000000000000000000000000000000000000000..666ff504ec3127637254a58353fd9edc0b1c66e1 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9at9r%Bv{qZV>$1_Z} zw=o>a7g-R-U1!UeV8*_5^MMIK6^tc8e!&b5&u*jvIfHqU4V+yA&dREUK3VsOFKNou9lLj=Gf2M8 zmDH0IbvV}Zt!GP@pF(r7TV=KSjhu5cjT=p57#O_Qi8r6nY?KFD#^CAd=d#Wzp$Py| CxJTOn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/prismapump.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/prismapump.png new file mode 100644 index 0000000000000000000000000000000000000000..3625d6df88f472bac84b581147d18a03fa149938 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DI&jcGc%CvoX4>!u9D z07rE@v*x#t_W>msOM?7@862M7NCR?$JY5_^DsF|Ia};7$;BgAvQ1h<-$*vbB6J`C? zo7J|>v#5L;e5h@)iGO+IfrW>db5)HKCKz*j2>ks1?a-VB;`&q4zlT~KX#KiW^J|s< e#+BPXypErLhB4jRL$wfSI)kUHpUXO@geCxMSwNQn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/squash.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/squash.png new file mode 100644 index 0000000000000000000000000000000000000000..53e6145d54f1f9f36f887619728d01c84e7bb081 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0E?9=M1lRmNXDic96A- z(bV!#m@_}QwB9*5S~IaOXtnJg2cROxk|4ie28U-i(tw-9HD%r|RVC?tS-*^bWuBWhjp4uC{LL1UZ?()78&qol`;+ E0OIRN6#xJL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/super_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/super_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..deb255d9f4a2c9faa16c81d70bdc035e50b0dbcc GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07NLv);V4_WrrqeNE9H zo*gU64pf%E43c0h3GxeOaCmkj4ajlzba4!+xYgTpk?Vj0&k>XK-~Z>^sJBPlIIu@m z_j=w*&q9??1+C{MxlEa~O7UWm;VyZeKP~%Y+26cx>z?_}=tlW;*WXVVPkd%9oU0$< Q2{e$w)78&qol`;+0E10FIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/tightly_tied_hay_bale.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/tightly_tied_hay_bale.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab4e5f561845acc0def865c079f10aa252d7459 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6Rt8SGzexOtAi>Pf2S z^IhgNFf9qxZpaWQi(%-rmWXm=XiLqn1FB;z3GxeOaCmkj4aiCNba4!+xRva{CTkG2 zf!k}hc+(LJmRROkmT*SNcMiK^HZ(TwzUyibQV_+=+#c?}GCA!T8{0d*sa@MnPHqf( zC+n@EtJ|pbR!jTVGRCV0Z(eCk+`_UdG2sSp$Y$xBZ&{uOyh6@pObqYZ8bg=d#Wzp$P!5gGmtp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_beetle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_beetle.png new file mode 100644 index 0000000000000000000000000000000000000000..3f300c98c21e17950fc6af32078e8f393b8bf7ca GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A_J(5j2|i1Tn{O^Rih zG?m#gU}|B&+=>`|d8zh&mVbdN7)yfuf*Bm1-ADs+!aQ9ZLn>~~?P+H`tRQgYf%R{F znb;ith84fI<=t!&f0M5!60GoL>vJxpm)9oFoMYzCTD3|^D>R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_buzzin_beats.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_buzzin_beats.png new file mode 100644 index 0000000000000000000000000000000000000000..250abdf15c068167ed3bad659a2f7cb2048487b1 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0CVXz_5dXAzu=Y(u^fRe!&b5&u*jvIewlljv*Dd=Jp(CWOn3fnPU5Q`)lt- ztxwsx%1-g~=gFH#U7Cn4@AEI g-TBPo!iHeG3&+@wbR;{*0!?P{boFyt=akR{028h~4*&oF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cicada_symphony.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cicada_symphony.png new file mode 100644 index 0000000000000000000000000000000000000000..5a164092d8e0f73b4f3ea8663be9eab9a32aaa3c GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=0uF+~!uq%rCN>S{P6l z>(Lgi8|UGe;-cnkpyjSDW3DExFE6De%C+FR4j)i8V@Z%-FoVOh8)-mJjHioZNX4z> z1Kc~p&ahlwJ#FUn^K%%Uy!Yb^;?z$`h}d(sggM zNK9NgIjG>seAUMC$wC@f#;FsR0jsV)j;OXk; Jvd$@?2>{AMNaX+k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cricket_choir.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_cricket_choir.png new file mode 100644 index 0000000000000000000000000000000000000000..6d4f434a4913a9c8b938bc63c8ac7d7360110953 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4dXVx|@bB~zA3Mh2A|D6F;%2*QQ7tG-B>_!@p6XWUP7*cU7`2cst zxic)6Wo=JiO7mm*?#|MMVGr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_dynamites.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_dynamites.png new file mode 100644 index 0000000000000000000000000000000000000000..66ff787935fee0c637ec22800a52bc5bc9ab2aae GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4dXV$LS%Of3wki}jf8 z;1K8Gn5UxRY@nqtFZKR|K_E~CV@Z%-FoVOh8)-mJgr|#RNX4z>1Kbu?RtHMlSFg%) zXJ%&3p0#wn sBHTLQ_Zdl9S!4AEo=0;mh4=R|$np!T&O32=6VMI@Pgg&ebxsLQ0Bo~A>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_earthworm_ensemble.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_earthworm_ensemble.png new file mode 100644 index 0000000000000000000000000000000000000000..6614227010cbcb4da994f543a255303f76a459a4 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08YN(pnuAHPgW%&cktT zMND0+$JD}rJvlkCVq*QF><54<7)yfuf*Bm1-ADs+f<0XvLn>~~J!2@u!pPzhXp(mK z|DoSgQy#s1Qyco`b)C+=pfs&VQm>Y;nz!tsK+ZbfBEcfv;=oA@-mLmo`ju_J_;;7Q oH06t7ml96xD6@Ngo8e1gy($lrMyJjTf1vRUp00i_>zopr0Np=DBLDyZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_pretty_fly.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_pretty_fly.png new file mode 100644 index 0000000000000000000000000000000000000000..499556df86898a7bc6da90593807e568fd1dad76 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08|H!|=aN_J6o+oQLDw zikP}skEw+L9}JoG<)xerwAM0+JTp|=2~@{e666=m;PC858jzFf>Eaktacl0`R>8vt zJggV^)86mTHtc+8|BPL%pS^@>^Q{)(R- zY?pg#o5qr`Tw?M`Q=XExDUYWFC*1ds@^~z@Ir-JpX*t*Wq}BhtW_lzjxLLB=HyUUm NgQu&X%Q~loCIF#}OUD2J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_rodent_revolution.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_rodent_revolution.png new file mode 100644 index 0000000000000000000000000000000000000000..1af8e408aa0c051826264e5d2cc6b11b0f811e62 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9Z?Md%8G=RNP8Fz&(Sf^}v@i zl3ilP>I^?+QymjUeR+6G=eJan$%l#Qyqs;Vg2I6ZSLR8H%)0mF zzyYJ;wgpGeXga)IEheS8Hj2ThgTe~DWM4fythNo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_slow_and_groovy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_slow_and_groovy.png new file mode 100644 index 0000000000000000000000000000000000000000..6f66bf08282127548b5306bd9648c61816d9fe5e GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=8DBWX|vNm|GDuwJ@MI zTd^+IBhJIo*+5HQUh25Sq_sd5j3q&S!3+-1ZlnP@F`h1tAr-fh4{%3JRXR{IVZnqd zcV=eh$w3_(J*!xmo3pxBE?DJR#q7MJILRSkQ#FHg^`@1RRu!&dI^1KFp8Qy0DJRby x*|%OzP7@v88mF_YJU55IsH6Cq&mS`;2FWeL%J=*l9s})R@O1TaS?83{1OQOgM1cSR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_wings_of_harmony.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/vinyl_wings_of_harmony.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f68a7762189edcba00d091904bc8ff82e1670c GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=6qX9>05LgTe~DWM4fbUafJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/warty.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/warty.png new file mode 100644 index 0000000000000000000000000000000000000000..f69e0510bd578636d758e0e9f32ac474ce08da94 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DGj5lUB7aFdZ%9Rl|Nd`Zo_N_bbP0l+XkK8qPz~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/wriggling_larva.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/farming/wriggling_larva.png new file mode 100644 index 0000000000000000000000000000000000000000..296f3871cbfdd8f7150f3a7ddbc468e7815d8519 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Au@OJDAF~066XWGuzvq|P zcRSx^e&fn)^QW^d`aX}qlJT+1{S{YwFW(Cg xOyVxJxI8B_{E46Zv7Yny7qBpGXckOlVAy|3_<3*5!&;zK44$rjF6*2UngE{vM?U}n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agaricus_chum_cap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agaricus_chum_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..eb8c23161eef5813d76c6df02ea516284ef9ee3d GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E4)5V2rj*v+8d#i;#} z(f-rQJ>Qxax;U*`1(ahf3GxeOaCmkj4ajl#ba4!+xV5&&k?(*3$6=WV|Lyf+Mb*CA zot=J7;86aFAJW$hjG01D*2V2;ln#9Ll}A7$h}Y!Ryi2L;Sv(Tn7jIq?IYaZIGJoqV Wo`U^LTBZYyWbkzLb6Mw<&;$T?968JY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agarimoo_tongue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/agarimoo_tongue.png new file mode 100644 index 0000000000000000000000000000000000000000..2a150e07bd128aac58e51d0a063988dfbd80ece3 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=62Z?)lcd@FS!BZU+4> zM(s=n5eo)}D|NGbfO3o_L4Lsu4$p3+0Xb%#E{-7;w~`fvHY`(hcp>0!YT$k1#t~B< zod<8Gh4CfLkXXJ{yg}0GWy02+bBU}1cUL|zopr0B2w_p8x;= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_bowl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_bowl.png new file mode 100644 index 0000000000000000000000000000000000000000..f1eee1c2e19718c59bbfe8fcabe58cbefe14ea0d GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cTH2gmlaJt=gWxPS3 zuU?V0cBrM2v67_hzPsW;X~vQuzhDN3XE)M-9D7d}$B>F!$qIrSrcW1dc*&J~y+B~K ziL$AQF4GB(vV3pvuMC|M+>+Z<7$jvB_15L`DqNLSd?+jMS624NS$2jQbNHe=^xw4u PjbiY0^>bP0l+XkK6C*SZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..49a0d2aed1c9475316e107ddef5c60ecad312107 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07MgR9YEtP-Ly$=c{+R z-S+>Xfd6+IjFlv3{t!|JN;8%O`2{mLJiCzw

|lIEGZ*ay@Z1ku`vWb%V@`xBGLx zI=%I@6TYyCog=EvV!MX*6|3nTo3x8Hl&mM8b9(t9dN=b`!*~his9i?FH=F#*RvBsK zdTM3gUS+xI<0r}NuPe{mw2Ie<##ik+9KZ48#|saGqPP9hjd{KJ>+Ayk{2FGSJ}dL~ T{$uq(>lr*<{an^LB{Ts5O=eN~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_helm.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/bronze_ship_helm.png new file mode 100644 index 0000000000000000000000000000000000000000..22093ec4624dfd91f8fd3b6b8826a1a0d5643027 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F$wr{VvhfYa@^E8`9N zeD#W~wL>kHjFlv1_uUl-N;8%O`2{mLJiCzwF!$qH;sraDV%E_|wxCgEHZ znGsQ0IaAuXvodm3cl0bv=arj1DxQy6d`wacXqSY3@X|p>)yUyq6@Tx!PC{xWt~$(69BRZK^_1A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/busted_belt_buckle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/busted_belt_buckle.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7859925fdd91147d21067a31c8fb20ad13a7fb GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G$3y`kXm)*7uao zD~O1y*6s>7kByBj^3Zb*5Dzs~G*J|tvyQz8sFblJ$S;_|;n|HeAScPw#WAGfR`LNp z3#$bsivyTj!uYPU8Ai2Omx<>xaJ7`@C){{-_`m_%+b5c;y?L3xe>*klZuDJ#gEw0G z^J5>?wKX=TS4TekW~|`5`%+kA=DX0{*BW}CMi&2KIMT#yvqFrSA+ADpqWk>NwLse# NJYD@<);T3K0RTe@QAYp( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/can_of_worms.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/can_of_worms.png new file mode 100644 index 0000000000000000000000000000000000000000..e74f668c250ea376977459ae6fe507d5ef99fdaa GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0DIgw^vnFjpNhw(ULQj z5uPsQaHFSZOC*NQ>w$V0OM?7@862M7NCR?; zJzX3_DsH*<1#W9K;9x$g5Td%_|6M!(m#^pUpE)L+a! z`R&z2u}!OX{F!j7N8$Wu`wa2}++ zmE}HDT2{szWEHyi`RbXa1QuCqhgvGBdE49wY>EM@W-JNv3ubV5b|VeQ$@g?|45_%4 z?7)`8o3N_6v6%5Nk3#az7Ta`-%?&*3UI~4F%wf@o3veW&5x9;y&4-HS;}Uv=4X(!7Q3_e^i;-_HAxRL8H5xL dY-PB~$sjML=rZeoxFFDK22WQ%mvv4FO#tTVQ~v+} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/moby_duck.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/moby_duck.png new file mode 100644 index 0000000000000000000000000000000000000000..28389897820abf77781974b0267792cfc0d5da54 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0Df+?b@3wz9*0G-@bkO z#`Q~XEVG(9bLO>1<(|%(;(`?Wid`!b1PqfGMn^|ShIzX_!@plkVx_7*cU7=>R7~=;>Bo1_d6Mz&msQrXSsU@q4ka=HD&1mi6;2 zjCBgwWVv{wFHKpW&<9Viw3j5#czAKsrCKo<^Seg`!)BN)+~~=~l{`Dn9R! hP35VFy3O_P7+qUf&a;0B-Vd~q!PC{xWt~$(697^MSfu~} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/old_leather_boot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/old_leather_boot.png new file mode 100644 index 0000000000000000000000000000000000000000..df9c57f7d73946eed96b5e6570ab9ae87324f4b1 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08u(6jc=E4K-CP^3dxF zH;<~;j$CaJSD@+~Ag*xvNCZ#?V@Z%-FoVOh8)-mJvZsql46j>ZG@~}R>`h4^36Ib-CF88jAYAacs zbBJtGDp(RZ@SmFX)oB`2)6V=C=>gTe~DWM4fTufa8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..2384e775dc4879f8f4e2b6b7738006ac9c67cc9c GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09+6w(*(Ll2z!Qwz9m> zSFgxg`*geQ%6Nmkqx1hC3iyAg!B|PsEG011QpvbaT^*=_u_VYZn8D%MjWi&q#?!?y zq~ezA8CRwT0|DniHObZY{%^A|+5KPZwr%<6+_z^~T*X`>#E$y=tv2QPbx34KWU3^8 zk4Wl{sUHs{bT#m)%1Ll^Xo#qN{>6A^N5?fKf58k!^L^!ofK3uh#~ v->-hrcCM1T&Fj0DdwzYZ=3X7Y>ledoC+5aCivN>=?qKkA^>bP0l+XkKs*_xL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_hull.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/rusty_ship_hull.png new file mode 100644 index 0000000000000000000000000000000000000000..15f766a5bca40f821d8b03f43de0eab0da4f6847 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cTH2gmlkau+c>2}++ zmE|kr4IElZvkKk&eD%yy0*kD*LoJomylsq?BtvFszXEDtED7=pW^j0RBMr!j^K@|x zskoJ_!1l(DIW=c?=D?p@tjRW5$GOK7|C^6izOh6P)f za;z$E(MxzR>yq3x!Cf_s%!f}-NxQsCYk}K5;iXGY>o@p3sxJSoXSSN*&~2qV@Ag|n Q0BvIMboFyt=akR{05OMDod5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/titanoboa_shed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/titanoboa_shed.png new file mode 100644 index 0000000000000000000000000000000000000000..2a7ef81e110d53718fd0f57b224e94d00a777ccf GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0B)KH!1J*p1vk#-?;(_ zZGQ70tqZFk>j5PgOM?7@862M7NCR@hJY5_^DsJ_5ZDnL}6gbRd{c8W+^kZ+PNNi=i zy?^7QNtT-L?QVT9QYhSaU2*m5%sAe1Zi`xz9gLoP^o~@htPh>nzh|?2>x_v{$}UWg joV)*!gTe~DWM4fo(MuG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/torn_cloth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/backwater_bayou/torn_cloth.png new file mode 100644 index 0000000000000000000000000000000000000000..a2b10785b5d342d8ade04d1cd52e36f2ef122ee1 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8!+ua8`9(A3m4t1h@b z(>khJJFY;rAXGcaUEVoB+|yXlNQtY@O2`g`aC1y~teRoB9iB9~1 z1HliKY&I=O(}wxwX{4_Vmd`cfGT&TB|QXEj3q&S!3+-1ZlnP@VV*9I zAr-fh5Aa1ykx}4LR~6+*?w(}cQds>xPC)dOLHT!Ig|k`_^IjS;9ueR>{et=AhS^-- zJ~T?UCb1vrN&3vgvG~-o_J^_^8%-V`*v+nRY?ko~F=mFx-$iR>MCCxXGI+ZBxvXEI&);auzQ` z07Iz;)Birs|I6+FA1pWCXE1T%#7+^B%UW7rzI?fS`7%)bckziCK#H*>$S;_|;n|He zAScAr#WAGf)|6ANyax;foG%)vKmR*jw>dabwbP0l+XkKjC)V( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..5308a876d99439af9559cbade0e01f96c0d0334c GIT binary patch literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lv99Dh%1l=0tE&|P6mE6247(Y z?I4EMB!*2E4E7!j;SCH8TN(cUXZSyjVN)eTs{(_z4}mR=uDfFTfk-#{jZ{O z?zyuUSoxR(Ib1J3*!KVHwcpGWclpebek{Ag{;RlL-(_aojt!LwOBO4yt3N5L{ENZn zuC{=R<<|)fhBgA3i{(yTZocZWqjJO4O-AeMU8kP?#b9?=n`6p~F98S4Y-T)_?6>ut V&h6&5jyVSu9-gj#F6*2UngCF_cWD3s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/corrupted_bait.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/dark_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/dark_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..4cde083d475aaa4dc6833659573067cc7359f3c3 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3%>e7Su2^2CV~iwlb{ zYiUJ=NBMgCc8ZAD7#Rr)3IY`@du)6VNHLZK`2{mLJiCzw vITO!#%|5z8`bb3F&V=u50?AjkLb@5>UK09#ySrf;&;kZeS3j3^P6J$-~IC0|MN!<|+HZzNJSDPB|b90%XsS#VAV&~`VlMpB_E}mv4YpbmZ)VpB|&lMoW zSQ6wH%;50sMjDWl;OXKRQgLf)Pcx&7p#W=q&hr0Z=f9sVNEh3&(IUC#V6pN&Q6>qQ z%D3Ma<{PjnJgK%{le;#maNP&tYnJbGUfa8s9<=r{=$MkUKzL%3&&Q*SH7t*t^D7;m hAl|2(p!@B*uuB88!Q$^>cY$^>c)I$ztaD0e0swfDQ>6d^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/frozen_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/frozen_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..4e4e026af7f787a211cc3b4f22ac4a7c5847d0c7 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E06|(nEz(e|7V`~-}~VI zoB#j+FSq}Hu>5}?=jAM3ZfRn>_TCw7X6T-MV1^5x6r%a;$_)sq40Vk`;r3ubV5 zb|VeQiSTrB45_#^wYyc6SyAM`z6a<29lkVgH>Co*%Q~loCIDv~Sh)ZI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/glowy_chum_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/glowy_chum_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..f21335cea7f305b28162d70e7ecee3cc48667565 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3%>e7Su2a>M@v-uHG* zoH)^H>n8o_GpBndUe?kQEiP%Z4=6RY?-UX7l2rjJ)_#!E3#1rJg8YIR9G=}s19E&l zT^vIyZY3Y!o53Qgz~kzu$dNp0fm%yp@v|5X<+5j?9L=Gc3_hE~KQ_M%J(~C2(Zs*X z>sqzI<2w(#zI;wN_SyLNzviXq4FCLZIGe-}b3x?n+52I?fCe*oy85}Sb4q9e0O{>c A?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/golden_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/golden_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..d183f9ba555109827f3e57aa3749770cc9d44383 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9ciKl}3K%d2CvHj+ysV|wDIx+?aPaeURv^V#666=m;PC858jus}>EaktaVz-%U&Is{ z1s-)(QI6!UN$M>di=OESh@J{CEw-GHChB8cuE}87(tLQ6qfySXCdoSqZi@<-XH3jV vV@phtNH=)HW*Bu?sw|(u(8?-6myLn(r=Xm|M&VaL3m80I{an^LB{Ts5qeVm3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hot_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hot_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..b2d604800bd3763cd345695434f80d9b93bd0382 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E06|)%a<>I`SRtmme$0H z6FWsjo+mOa^;F9>QG8hyB(0@pWo7-Oj3Gdr<^Ng}B_$;T1A}H|rcHVbANm+XMa6;z zW=R8$U@Qsp3ubV5b|VeQN$_-W45_#^^~_O5W&|GMiMhj0JR{3AI?^XG%# zi@uwGY2_}EyWN#e6}&oXB9-jLMvcUx@rxj;ovo@d!1&glW_Q_uYqs^F0`d>|F} lo;}{F{l?w>5p?u%_#V}4p5ca9b0cu!Y9mvv4FO#l{PRLKAU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hotspot_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/hotspot_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..ef6c894a612c13324d571b4df6aefaa0330c14db GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3%>e7Su2^8bt#vd8~V zoH$Ws?&BvG4VSgFb}1+KNqBdPh%j>S0G0KNTFwDdj3q&S!3+-1ZlnP@!JaOTAr-fh z5Ae-k5mn%EbyPI4UFaFW?6Nuh-HR7&hRedwy}QA+#In0rdn%KIl4Z6~#lfuFXBG|; zN1q8F;Az%c%@i$gxJc}}k3sX!hJ`bP0l+XkKsmDed literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/ice_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/ice_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..e69b663f890e11b28b09d989c8ff2c4f789adf01 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Esz;lrJ;U;qFAe>scy z|H1PA%k8S}c=!@f{fUM{{6LDaB*-tA!Qt7B zG$1F?)5S5Q;?~p?M;Q+o@Ei@OZ@2udADy-?&;QHfIYD+6^-1q!%$1L<+aPII@@+H2 zg!7fA+-!k&BP6;@HJ09-wTb8D5|#>C7uFSXuRCs?vg_AUu`WTTA9)^SHbBD}JYD@< J);T3K0RU|RQLz93 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/light_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/light_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..88dd7eb98e71b4d765af99e6f838c9b57b4d9ffc GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3%>e7XPf&gILOx7;{2 z@#yxVB{L>YoOoGF%QGdWQ$z%)pkTQpNIhdokY6x^!?PP{Ku)Nqi(^Q|t>goIGgx^Q zc$^&*ITlA=U^*0W@gnOYC&^V-)0i{EmYS45W)g5#Rnd`FIs9zZl#{$^Dl2^$jDxP+ vQRwkm?$dTx;ne7Su2^0lLDk1Z;k zIC0{}&fpojewVehvR$-0MMQuK3fS$x0x8ClAirP+hi5m^fSgcI7srr_TgeCbX0V7V z@VGiEaxC@?U_KOa@gnP@OA?E$rZHujJuV7g${=u9MRl)~%HeluF(-M`L}vRi7<=8h vtJsq@-K*`c!m%x1ICq;jNEoLtisE5-c17?+iG1iSpal$`u6{1-oD!M<(3wVH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/shark_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/shark_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdd1676b278c1d65d781d9868e05b6b92c4f9f3 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3%>e7SP{?&ZsuckVql zXXUYp6DQX9tW3;qxvZsS=aJYcA|fg(3RLE`Sv?X+F_r}R1v5B2yO9RuBzd|xhE&{2 zKEOAFl~;ks*)fqLdD8;b8P9H67Mso3XjA>nY=grKqsMDld3aV&o3{QDZ#=`3>ER)3 z)+Qu8Sh12r_x)QYt-?=Qx$oC98AXKLnttbP1jD6mNpD+46WFdZ2{bV>aOp~aPgObm Q31}OGr>mdKI;Vst06dRUc>n+a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/spiked_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/spiked_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..bf5f265bcacb7257785114280bb0f696831abb83 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Dgi?)9YbJ<;Yh-qQJ> zF8*Jda9BxB(rNZC2gQ)O6?>PLKb$ymVyB46Wi72QU%p(ve0f>IEub#z|Gkfa6k|z{ zUoeBivm0qZPK>9EV@SoVsV9yyG8+mUaL|>Rb+>+f;e7Su2^4fj3Cr+H$ zG+}98W%p$*t>Bo}WNu5iETYP;u=r<2l!U%V+w%_(lM~nu zuM8D%>%S_+ZIGPZ=ld;Ipt(Bw#XWAGgll;s-Ha2gMdrI7ZJY|Ufx*+&&t;ucLK6UL CY)Di9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/treasure_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/treasure_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..3f0ca5c60a228a66c931e9992ff15f30b3123611 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3%>eEI)&&gILO|6k$G ze)jR_dcLod`DKs)pEz-%%G}4tGWjlRX?2Q-096LWN3H}?j3q&S!3+-1ZlnP@A)YRd zAr-fh5Ae-kXkPZQX(nVnxV=ZG;g{Cg&xJtZr54bXfBPgg&ebxsLQ E09<)Y^8f$< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/whale_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/whale_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..4652ee53d180a4e1cce026340cec63a97afb906f GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3%>e7Su2^2y`-H?Cij zxA5}Bi4%J|YwRm_UDnbvOkODM*3>B?B4C^ zW@7%`wLGx={rl8}1jGEd5gYe2Yb0%2ygK>sEp8qj)oXXR|7Xr*`!?z7cYBAPowbZv d>iQjw40kRn7EcOjmjhbL;OXk;vd$@?2>>n=SN8w_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/wooden_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/wooden_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..990b6f5457bae6301105a80d5bfbd6adccf5c791 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE06|)%a<>I`SRtmmR6^T z$i#^g3nu9XWa{KJ7<&7t#DprQC2AIBY34*2S4NvB2I_{mskvCl&SnpA1nOig3GxeO zaCmkj4aiCKba4!+xRs>9$gpb~w{k<01j~Zb?Hm4Yh+jRYwcN!+vu|H_l~@+z+IKHl z&*$H(&bb5dQ_7TkHOp0)K7L%`1LY}pCLyW~0c@CThJXXWiMWd0+!Nv~pl ca+0yJc*;fQrFVdQ&MBb@02?e&Z~y=R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/worm_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bait/worm_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..bf06f73485bab969709bd0e0e99e4e970aba497b GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3%>e7Su2^2CV~Q_}h` zYiR|0rFM#l7#KS73&;XxU!6Si2S_oN1o;IsI6S+N2IP2qx;TbZ+)6&cH-kk~fydQR zkwe)dK=hCXFK@fS8Ru?Ao-|eF6=r%IQ`u4rc9;}2u4ohM=MiY$Y`k=JvZzOzTh!rI gtO{(;eL}h!3$%Hb>wY=D5NIrer>mdKI;Vst04cpXQ2+n{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bobbin_scriptures.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/bobbin_scriptures.png new file mode 100644 index 0000000000000000000000000000000000000000..802e0ef40ed3cf8b4051f28e4fb45c635e82412b GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07iwV3oG^*7OJ$G<4ju zW$ES1$0tl^Xcv_?4bRBo5#docU4OF)q>Zs8$S;_|;n|HeASch$#WAGfmhG8~Ow0-_ ztq&VlJ^p*Yygf7aYyHvZbI;7VJta>1<)-f9cOFkIEh_3SY3#6h_mkN=>}mCP{*BC~ z{Sn$yLR`sfA1oIWb(-2?($ZCWHYiqPT2XoP6oZ|+6I<3^XcA)z3G{XkNzHl^AFm+J VoPBtTkRH%x22WQ%mvv4FO#t>WPw)T$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/chum.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/chum.png new file mode 100644 index 0000000000000000000000000000000000000000..0ee873f7390d25dbb55f846d9fcf8e058811dc02 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=4#mo2Gjvw%G@in%aBG zsxX8bECq@(mIV0)GdMiEkp|@Wdb&7mdKI;Vst0KT&{D*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/cup_of_blood.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/cup_of_blood.png new file mode 100644 index 0000000000000000000000000000000000000000..9979639292d21f8fe1c878c445710baff779d7df GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=69RQ4S6+ef<1}h9=qU z?23vify~Sj64F*oO#J+UGcD_P02MKo1o;IsI6S+N2IK^Jx;TbZ+)6&ce&f<5qXRu> z5p;OjSYI)pPS2M^=?bkA$v0U`jFJT)9NI!C=a%gq|&;at?0Yle}(q pu_-hkKB~)|RC0Y4Ys6X>hQ2i-Pu~9tUJW#z!PC{xWt~$(699foJy8Gv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/flaming_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/flaming_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0d4a2d2efcf682ea2367df268632fb845ac18c GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;Gf~&`-Z>w8@}pd zI32^#XU0&X!4M(MutQ4yGf)L%NswPKgTu2MX+Tb#r;B4q#jRuq#;2?aS!%nztva5S z%#{+8m?*X=iz}^VmR7SQ xkLod}v;?=z2>}*2xV{NYWm+-!=?OgshUOolM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/horn_of_taurus.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/horn_of_taurus.png new file mode 100644 index 0000000000000000000000000000000000000000..455f55e00a30ff56ab6c3286997771c71a0de54d GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=8Pl`o8E_yBj66)I_j= zhdq*w(TSBomzhB^c)b=-nz1CvFPOpM*^M+HC*0G;F{I*F@&Wb;XJ&<-1ze$Q2G$WL zrd&NDa)QIqFqf~8i=m5S_qMVbW(=+|K2{b@jXYtB(>tb_2pm>Dd-ksEi3E*uzvAr- ol1DDii{TSt*l1<7A(E3}?;fF(edp)i23o=3>FVdQ&MBb@0MaKr#{d8T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/brimstone_handle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/brimstone_handle.png new file mode 100644 index 0000000000000000000000000000000000000000..4dec23e5a695106cbe63a3964e0339974e014602 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9ath8$jEyrPlqo05Bf z0^?y0ja(zfS=`FmoKmjrLIw+k_W~6$mIV0)GdMiEkp|?rc)B=-RNP8Fz?F8c!D!mf z5(kNx(=loek-0Mk*jBrWwIoIua{Cx}7wa-yc4Q6U4CFYgvw|;Cg3~dz>+C|Y4dM%K a@h~KA=6cmvI=KL79)qW=pUXO@geCyM`8LY{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/fried_feather.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/fried_feather.png new file mode 100644 index 0000000000000000000000000000000000000000..562f4f1acb9398711a40166f256c901b87d30c29 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0B)T5m*yzc(&H-;*6AT z7X@d<8MlF=j3q&S!3+-1ZlnP@KAtX)Ar-fh4sb^>#-3{}WC`G5zIbun)%uesKej(q zf1F#zI_Yq;rH=D7q?F>1+weXl$$aOeJM@#4zFe1Tsj`|`SfPxid_$2|HEds_yh Va{TP8AwY8(JYD@<);T3K0RRYmJe&Xk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/scorched_crab_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/hotspot/scorched_crab_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..3282fd27a8a22d179db482e70b8db656973f305e GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1f*EWW#@=Wu`Cq^!Ut zP7Ga^%;hHRk=i^?a%=`-tf7Uoe*hIRmIV0)GdMiEkp|@Wd%8G=RNP8Fz-^UKV%c&u zP-+%mT48C(nVk0whG|pU+FHvQBsYgmDLq$^pO6q?neDoB@AW(f?Nc|;p| l1WrdvYOp5h79LDeX1FIOmL8+zopr0F2{HtD23eEi+E;Jd_911? zq(}bTyF%{lQJ1*sxyLM-EaktaqH}* zZm$CdBFq72AHSOQ@BjB(N_VZ;nUs<$bQ7fucIeyt$?q%;xw3uTChqH(_%E5Azo)cu z#y++S6Iko6eQZ3<5h3$_k36G|*hRP5r(bh82tH2yTi&<$Z{a*St;FvKzMOa#7;mH0 z>iR}*tz?v3{$=G$pBhT4o_rB-{OjBw@@WTuZLvJlk)+$UEX(h{fBY$<>A911l$_w# bYB_lkPPTx&hp(>zoyy?p>gTe~DWM4fe?)7Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lump_of_magma.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lump_of_magma.png.mcmeta new file mode 100644 index 000000000..ede09bc90 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/lump_of_magma.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,2],"frametime":8,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..e73a7eeb6f98f1526b861bb5469f5393bdf1534d GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E06{PB_*XNWem>~8FEb& zPsW-4nc1||Q|)C{kd>A7|FtFo;w+o=7@C!t3=9lD^f8Evis`PI05XoTB*-tA!Qt7B zG$1F@)5S5Q;#RG9E8`Idj>E6YTi)2e+3j7Zv`PG`ed8MSaw}7<{8{^!PCm9`m$$O; zl6ySSI~aMt$IqFW%PQ~Syfy1F*GYPSy@>d7#IYIvnVMkiHeE=mC1H}OaM}hB|(0{3=Yq3qyafGo-U3d6}OTd zSbaDR+yrO%B<)zlC*-ALxB0jyqsp7O%4bXg4Hqk)ui2@fdgl0QtMg3~F;m-fd>nb^ z1)rMDU-=ooT|G z^cb3znMyU7tgNgJ3=9IqS(KENL`B7b%364G?0^(wNswPKgTu2MX+Tb_r;B4q#jRuq zRv$(KH=!9kNjny?332&YZa(hGsPbl7U@(#%*^(hJB~c_ zg0*IIIrK~}PU~)vbT5}TVV_+!>v<95jKYTJdRG>0Uctw}@U&6#(yxDcw}2Kgc)I$z JtaD0e0szh_M%w@Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/magma_fish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..eb263b8346b379ea63374ea176599fdd8f8b4f0e GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#)=gynwpx5 zii$SrF*GYPSy@?|nwlCI7zBv3C@Cq4ii!bMu6k-U6G$l`5#}TwlHWU8BUE(CIb0 zjy(5nYqhI2NNm5hPLS1j-Q1loIL*HDy?@M^aE$d{c|iBOg;op}#~#Kbg(gyeX6fof9qx9kH_j3q&S!3+-1ZlnP@8J;eVAr-fh9oTj+ zH2JQ@;hmU%e9c`Shqf;|y~{$S8+jhC6gxYy&7tk`B+<=VLK=D&>lvqORWeKJt@GYI zXG%klacb(ibqdVemZjwzZe;A-@h&R2gdt_o?^U6W35%J}y|Loi`j%&tFhl7YdDf}l SngxM&GI+ZBxvXH zcr`-cN+{puVBSkXycfK<&N^|Nwr4+O&34j)?Wn%#3PZCtb?p)*Eq75d6Mlh%?E7~D ztz;|-@(X5gcy=QV$SL-8aSW-rm2`lSA=QVO>4<~C?9FGbZl3(Vzhcd9373DCYmd%h zP1-K>W%6PTF1x>rf;O?)pLnFG-Kg=Gft}^5=E>Z8ma9jEHv6(ORP5EaKA^`qtK)6O zE+)w<9M94jbQ^k#lY*G!G*VZZXsNFA|6hOe!yd*Nd-yiJ$ZL22w4TA!)z4*}Q$iB} DK!P;%262XQXARr)Ki|o8EGuYQ~ZvzhDN3XE)M-oMKNG$B>F! z$qsDBqO1-g%O?fzJjJ458=E{axbi6r+q*ucsiCiA#U*xx&lCw=W5t|u=F6)WR-2`d zY=|kW%9iL@XsK*%B64QNTq!Q0$V|)MFSg|vBp=;+w_4BO!@W&Wh3VgKa`W))*|+-L iJ=RMO1>f~H2{Y&%*LQaNyZaB&dInEdKbLh*2~7a*KUk6g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/orb_of_energy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/orb_of_energy.png new file mode 100644 index 0000000000000000000000000000000000000000..7585ec715af9cb4fc0ff30690ffd27a3fb80b456 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|9|%E*^2-F&z?Oi z`Tsxvjk|Fb#~GGvvI>}}U=S}LZOz83^lrn^G@w$(k|4ie28U-iKpa0$7srr_TgeCb zca%H7oV!_J&D^K0LDCLAYo9u;=4(h<)|$39iaF_wkJ-Ch%qbt%%(*&^G09*~)Qi23 t8D=PM$ugaBusG|xWJjlsf|M`=L$jx38DIX+BS4cGJYD@<);T3K0RRojOke;2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/pyroclastic_scale.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/pyroclastic_scale.png new file mode 100644 index 0000000000000000000000000000000000000000..51aa32d7a8ddecf7c5211d3ebf06adc2078bea06 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0EsPBB{y1@cClG;~u@Y zTfG)ov0Mt|{q?%2SBtZhm$y|^)EKN;-h1X5plZgFAirP+hi5m^fSeFd7srr_Tctj& zjLi-L-hNRf|8ol~u1}WO)&A7(2}kJ%_KAKCvt}8GzA$BND4Mw2kl{i#4@2AEB1LJzX3_DsCkoV7ei+fXB~J zBYUaxl%r1t<8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..0916ed8b905fd027a97147b4294d058340c0d30c GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FFqGdz)&aHXx``i%a& z8I-p zvw!t<6vH&TA8dHKe@(sHHQuK+u1T7Lerg+)lWzUq7|r3c{P|CFmtD6igC^A|Y;#e| rf7$JzDcO)L!aXBT(ayB#YqI|JTa0tJ*cf&IEnx6;^>bP0l+XkK@-#*5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..f8c9b1171ae8306d6e04527a0b4dd79989acf60c GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3glfBSg<_Jr@Ro*vqD zcf&HTw>PiP=-0k-NGQyl#p=$t|kQ3!&nmJ7tG-B>_!@p zli=y%7*cU7`2eGpn1f{Z(gRn{*mfp~JCtNpB(hC77`aF&>K=EB4?i#OeBMbjt&F!6 z$xnEu^VhaGO}0ZY&ayiD2QwSny9=+%)twu8_FdX_`T4!Zp6Y$??=o-LS(CuU$l&Rx VWRTv{a2{wEgQu&X%Q~loCII*eSBL-r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f6e31907c79105f97e6f0337802d3e9e9aa9e0 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4@N#(%tj``0zEr-ycZ zIAC*k!?No$`X4P6xYE{es!8BPTEd2ipam%^oo0rT5)!*M8omYUVJr#q3ubV5b|VeQ zN$_-W45_%4e1OqP%t5ky>47U}Y#SGeJCsCKC9+I77`bRt*gftPAAfJ}`Mi^6ni;Px zlArKQ=eKQfnrz3!ILqqjU(9T5@3y=uSHIlAvv1R`%g^sM_EhhCf0uc~&YA=+MuxmC WN~h#@f4>5>i^0>?&t;ucLK6T_5n9^- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/blobfish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..1f860647e2f6d838b1ae649d53c6e26a69cb0e00 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1hy-@b9<#?wQ)jvYI8 zcf+#lGx}GoSaGGTVZww7C(;s%ii$Qw1jWV0b($GUN=UqlSXu?t!&nmJ7tG-B>_!@p zli=y%7*cU7`2b^DUW3uLjOLYnrmnBV9ZE7Hf>b9QoTwu+%S`-41~)J7Yo?Q1%39La zFkg~cx!=m_lS9vjo^?wT`6VQFIBmW+mxI;lN6=@#xz+4O?{4lY=Rff5Q==ve1A~~F WqU_|>hqHlpF?hQAxvXMv+Vgc3{JcXNlq75{-3@ij6oh4f%6yk(MFAjX)S3j3^ HP6;f6%^i}1JFw<( zC-7)bP0l+XkK DJ}yQ? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/flyfish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..7339cf6303b1901c5c892ff3f2c30cdbdce2e613 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7EN|Gs|x`sU4>pXIoB zcXwZKH_yq**NX4yW z2UZ#B1fG13vv(e`3MGlW@QCD1(kNeI!qu#zbH`>1k3-M2Y1^bW^!2DXD!M8(SI=Is zX``aYvD=;(A{bA+IJ;sFvsrFr_D@EG#~D8)JAT?ENHH>G=!onxJ*{sAw1&ac)z4*} HQ$iB}DgH`= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/framed_volcanic_stonefish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/framed_volcanic_stonefish.png new file mode 100644 index 0000000000000000000000000000000000000000..23ba98e18a3b7ee7953f5c746c6de2badd112cc2 GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08WvG1{^qX>M0wv4du_ zhh~DYoFWHXg0^CliTG?!mG_AZ|2u%H7}V6%PHio}daz}3t<&=>vvVSB?g2#^OM?7@ z862M7NCR@ZJzX3_DsGwhvI?~r@c5Wku|NFpfAkVlbnNT{-T&q7a$bu?B(Gj$*>cr> zMQ4A@^{CyR;l@+lGt}Hv4pxRmnRo5y5Ion?SyXUr-eu(rPjr59J!DtC{`2Xbr-43cN~ U*af0$^FdDcboFyt=akR{0E`r3c>n+a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..88a8dc4e53d98076f34a137e9e4a38a60ddd097e GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b2E&BU4{?|3H4+m@> zEfjcO6LzXe;9!*5lIV292|; z7*Y)mO1S39I!rpc(8gjh2m^!XKY_}v5i=$OEn)C<^>bP0l+XkK@Onmz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..fd2e3dcbfd5bd4107dba9d4b627c308c391bffdf GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b2E&BU4{?|3H4+m_# z-rjt)P(W(m_ESv)g8j252lE3Jh+DOW04c_jAirP+hi5m^fSgEA7srr_TgeR#EE;E* zF{BzCl<-~m)M3)mh02zD7)}%f85_@M5GoJzI>(}2AY#0l<)Thgr&9u3bk~AkEFC@W z8Z#cQy(GmMHajKIj`2*yG&|uWo9kL^A`A?^=L9OwY(0_#w1mOa)z4*}Q$iB}T)9U{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..a282943e24abfb3f9057dc4a0acf9f26a41f7005 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0CTX%zvs$;L$>XU)Q|; zevSYCYY|ZJ!vUKV-qW9fEXI-`zhDN3XE)M-9Dh$2$B>F!v8P%E4>$-o1*Uv=`pz)6zmFgtwH$JJlvv-xtoTcBMni(C-`uNuHm*kr@-<}J2pEoFdmAd0~ h@&&QZ@IN2!GadWPSm3wvN*B;*22WQ%mvv4FO#o{tNqYbQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/golden_fish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc5835acd0eab0261eaa277497e79015fd43dc0 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b2E&BU4{?|3H4+m^k ztXT1Ap}>R*6HYY=Ob+Ici;Dv)DEL;_2&5QGg8YIR9G=}s19BogT^vIyZY4J~uxOlJ z#*k`oP{McJQ-?`M7b;usVK`9`WNaMIAXFaab&g59K*V@8(?y-8PNxL6=&l97m^ymg zHD)|qdr68lY<5cEK87qCc?lF{a;|U8pj-Cpd}2Ru6{1-oD!M<_6bNy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e42e13511e6155c9d184648d22c387c2307a0d GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0F%zD0an}_y6{Qmoa?* zU#D_#a5V5TgfK7|Ffi~iFvMS-mTj3q&S!3+-1ZlnP@;hrvzAr-fh4zM%Co(X4S zR^)KKSg9-cZU6l%nWv^dU&Z0gkzK~}E@!ac}SRnWy(KKJa9`bik|G9B2iDr>mdKI;Vst02P8nP5=M^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/gusher_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..a0513d65c05860c17936274b296fbeda4b00a06e GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A8gbZJFJ#j#_@y1Tny zy?VvL!O_6W5W>J3~YF_r}R1v5B2yO9Ru#CWA4&NFEh?nk(#}v^6ekX2RCk?n`P7lEH`5oO+(KT;^b4;QTGlB{*F_A7~GQr>mdK II;Vst0DmbV;$pzrR~H8)y%M Mr>mdKI;Vst02Sm=-~a#s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/karate_fish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..d07c573de4a54c717098a68d6bce00146ce40ea8 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G$6#{{QpYAGSqo z-@bj}!iBuMUuG4Ra8EdsoSf_%8pfWoMBC61sM0X)-D@DlSQ6wH%;50sMjDV4`8mwm&@&-RJ$)LGGS}A{!(2A<7sVcn5ZU6uP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..cf7dbb0982dd6be5504893c24cb23636852e77d0 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DgOC-|w~`u{E;4PnkA zMegMWEGHvaJDr7J1LYV?g8YIR9G=}s19E~rT^vIyZk6_2XLMrZVVZpSz(3*JUrYb> zg-vg|w`hymgcEA}zMgJef4TRHqqla$R*8u%6Q?(2Y@Z&#eagxx>kUSeW~CT1&8slH j6TPnLQM-70-5-Y4{fte430#wa#xr=j`njxgN@xNAt#Lxk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..311be34e0f1878d11c97db0563d6e4967426434d GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3glf1B|A)&E^SUT<%H z>bKUuaztw1_S<=aCnH$dE1Q=auoNkBYY21B+MSvSRLxitg&AKs{Aa5ykW(nU*CTXxa3)3U3kC5n15FlfvbVc^l8`2lDJgQu&X%Q~lo FCIF>COI82? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/lava_horse_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..ca661b98827d8863a4b41624de3fa8a717baeb27 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4@N#{atJ^?#SohXXc` z77Bdow?5S*a63=%WCZKvVE*L>EJcdk8p51b>}~&nsu@dy{DK)Ap4~_Ta>6}b978H@ zB|9)?@&??JIFw*~uI0i>^D}BKO%bvu#e$C>Ou9VDtVwcCQ`YPy2YQzDOkzz~DeDv} zP`u;zmIEf;hc9Xv91bkebkWk#l36tEwCt*BiJ~414DNLz{I~WU+6A~K`|w5`gTsM2k}g`B+RTflon~G&Em72ifk9}B@a-R8`3!(oFnGH9xvXvGCE;?wmuYV-d| zH~))^iwjBnMr6hA2g)&)1o;IsI6S+N2IQoBx;TbZ+_LTA6k>7YICQJw_5b=kXHuW} zbiEROpi{gvZExOt-qQVdw*FR+(EL!bNr$VteA0orccnMv=vGCE;?wok>+Q{} z|G!0T{x2>rKI!Iv?JGwlH|%4tY!;ICT_p1M4Nxg#NswPKgTu2MX+Tc7r;B4q#Vy}{ zcA+B%9L$a#A`kxG-&;Iiqwr?w^l2QHE6?T2T{{>TKW)kDnf9z}B@;G^WCX-qpTjQr zcdHXe$ypAm&eH+C*Vgep*l_P1o4_vC3vGCE;?wo^!vUMW zU*n@T{}&e*pLFy8qlE&engk{X^9xD)9=)%j4^+xn666=m;PC858jw@&>Eaktam%-# zUFe7b2eV^`$b|Hy^8c$@xC5QIrvaV7;OXk;vd$@?2>@QSS-t=O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/mana_ray_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e5423a17343288f297105fc196f9f75ed95c43 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ET+>vGCE;?wo^#EBCh zKYonb{9jyLeA3PT>(;HCJb7|TN{W!QugIURPk>4pOM?7@862M7NCR@pJzX3_DsK7q zvkM(D;9z#_5P9(b{@&vG8ihAYr%&UsTzM{E?%Kh)_-RXC&$MSb)iJ*K-6Ootvm& mZT|Soq*bS4*1vgsQvQE63wNLs_cWjr7(8A5T-G@yGywo0I9z1_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..9dea4ccbb699362656320c823d428a2fb681f214 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3rV*DaWo(o^G|nr@X8 zZss4LALeCgXRl#zreUV1q^l;YC?lHMdXo*Pl(8hpFPOpM*^M+HC(_f!F{I*FvIFZG zHiI^UDTx{)43F5}%zHJ7;nA$MYuGOGxXru#yg~HMoXDMQE}M7imfd7dD%ipqCC^|O zWOJ#kS+XzlSb`**`7<77F@eL47n^P}>Zo+QVqlOA6`JH^aqbAv5(ZCKKbLh*2~7Y} C&_Z4S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..9034b12ad646125d46eea18e5a42f0f17326c4fd GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3glfAe~KQ)=J#)O4$) za5Mh^{V*>}J9`a#GYvC6C0#XHMH$gkhl1t;l`@tD`2{mLJiCzwbP0l+XkK Do>W8c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/moldfin_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..985076bdc7ee1c647c2b2734137a6f17317c6f9f GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4@N#(y|q^Jt+!PmOnK zx>ZuRnSX$On3tuUy@tJ+hMAs{u9~c(jOg>8glM2@#*!evUBO`FeX+;pn^1DoG|cprbk$@PWkiE-zh?xhW-JNv3ubV5b|VeQiS%@F45_%4 z?7(`4&7jR-N}|RThDU01BE_N@9?g3Hit!?kTcGx}Ceb-jSGS70Y;Mmlv*b=H@Dty% zlObt}+qC(N#!aVs4;b-0JTsL`N5PF@vg&5$2oKJyj0|fWL^eny=n4ZZVeoYIb6Mw< G&;$S$u|r`1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..48be3ec5f53e16888b0d73466887ee9140089ef5 GIT binary patch literal 355 zcmV-p0i6DcP)5x_ zf5dgYO|6X~?+pqwFhGt#s{xJKJw?45G=N=mYutc&b8M@%vL~+uPG-MWbBN1h;U)+B~aK@6=v489%=;bsiJmJId^4BCneioy)qoDBRxjThD(0$IRV z666=m;PC858j$nY)5S5Q;?~>=>|G3w94zMQ$N&7_KaX2UT8}?-)fKi~zu)Qp5jb37 zetMJPllta9NePAU1@D>7(!Prv-g1yF;QF52J&eVLOTPX+5GTE%Cp>Nbx!K(_WW+T1 z7^Bsub$o0+TypR4XVdDhh30D~dj9jYGB%tTGjSikf-%qlFDIqaTo<>bFqzDY?UlJ6 z((7~f%`+F@xXXl7PcfuZGfAe#@c;Yd>*4a{o8Px5{o{WV5-3>A`rGb7K&ijs8Fsmj z(zVAIvab?zkNUDOPI^awc-Z{&K;U)+B~aK@6=v489%=;bsiJmJId^4BCneioy)qoDBRxjV4=GmjNlp zk|4ie28U-i(tw=Do-U3d6}RS2VDDmZhBd&&}?hAtR>2 z#~7_Pt>a_s;gWlQKbuy6Ei_*{(et0Dm9gQ(n2G!N6^wxfcsVJR=DN5gg~?=IY_H7q zkY1m&Z=SjM#$6_ydWs>Pnn^M>hX3CuUk{fr-~7Hk=^y`_kU+s=*57sy0!sZ2&#=pN zl&(F#kbRYyd(@YOand{b!^7sE2U;&%uEW>p4za%G_Hp*iTYMtokJ+aKz02U~>gTe~ HDWM4f)9H&u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_gold.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_gold.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_gold.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_1_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..d5985866613d4969d0ef1259e24ff870b36364a2 GIT binary patch literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}ludw7h%1o(`0?ZJ-Mg1AUHYHl z|5k?o(-<~2GBj2)v?eiZ3SwyWVes`}2sdN!wPdhYV9-`%P!wj+=49XpYFxg2!#^O! zSQ6wH%;50sMjDXw*we)^q~g}x3G7`AjvOrJ>c{{5-#?FANm`FTbJZ2LUBBPy{t-A_ zVSaj(;gkC2K1m6M@CEOg&CMx|3oKQTrmC4m>eo@0UOSXWI9_ zX2n*@@8#Gfdro-%h7n4 hZ2;N%|7-mpMuQ6WuQp#cF#|b&fkprT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_bronze.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_bronze.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_bronze.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..b155a8d7bcf510063da3afc8be17264468c2e8a3 GIT binary patch literal 352 zcmV-m0iXVfP)tWv3fN@_S$ge%P!> zJ%M2Q>+N`fw&Am|XNb>P5+D%qiqv|C43G}mnI(&ajhvAMh`eXi+Q4YYzO5NNA7=q4 zWtT;OWZxJ-K+jGR)0c1X*MIP{Fec6CX^AwNdBtkI!z4)u?V2{t!seWuMn)c!wKg&u zHnugB*W)bUq77RF+VqV9%=m3R}I%r4Hq8c_zK~W%b yFR%O1{<@FjaTah;yDkE>tQ&s@5@04NeE_>y-xuDssR5;0D%<%P7MGt000aC006|q zTi5^q00DGTPE!Ct=GbNc007uYL_t(|+MJRJiUlzUL{plrx5T>tWv3fN@_S$ge%P!> zJ%M2Q>+N`fw&Am|XNb>P5+D%qiqv|C43G}mnI(&ajhvAMh`eXi+Q4YYzO5NNA7=q4 zWtT;OWZxJ-K+jGR)0c1X*MIP{Fec6CX^AwNdBtkI!z4)u?V2{t!seWuMn)c!wKg&u zHnugB*W)bUq77RF+VqV9%=m3R}I%r4Hq8c_zK~W%b yFR%O1{<@FjaTah;yDkE>tQ&s@5@04NeEab3;?~QrKL;&y-xuDssR5;0D%<%P7MGt000aC004fc znfd?#00DGTPE!Ct=GbNc007uYL_t(|+MJRJiUlzUL{plrx5T>tWv3fN@_S$ge%P!> zJ%M2Q>+N`fw&Am|XNb>P5+D%qiqv|C43G}mnI(&ajhvAMh`eXi+Q4YYzO5NNA7=q4 zWtT;OWZxJ-K+jGR)0c1X*MIP{Fec6CX^AwNdBtkI!z4)u?V2{t!seWuMn)c!wKg&u zHnugB*W)bUq77RF+VqV9%=m3R}I%r4Hq8c_zK~W%b yFR%O1{<@FjaTah;yDkE>tQ&s@5@04NeEa! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_silver.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_silver.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_2_silver.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..46942b23f1a79c0d5f2453170ae9726b04af1aaf GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lyrbkh%1l=16@`IprRmGh6Z+q z1||kg1_rh{919wOa*QQGe!&b5&u*jvITJly978H@B^_XA*m@~6$wg7XCD3p2@B0NY zQjcaz{(CjeW-Z@^-L?UTwK-V>9tBpbs6M?acgR{$@q--4*03PgYb6^^twQzQ{8Mh2 z)VJu*XC3w#m*pb%2%Y<0*s_-My@2$Fi0p}4o6_WZPg<$xf47^(+>^+^<@5gsq8)7> t3wq`M^@~MiTV6~#Yw@q&ardkLh5Y88O#C%`e{X?&;pyt>wOSEB#` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_bronze.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..8a6fd887e4a33d9f224eb194acb768decf8e7ccc GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}luCe4h%1l=16{ATHx-U%p@E4(la&Fe4T#uw=ucY*RK!>k->86Z+DX+P8P9Z}(`~ttfZCoLPBN&^5uu zFN{qVoy;(}z%p@E4(la&Fe4T#t}Ewk1F6)~0s`2{mLJiCzwE#a9*o7S#X}cV8_3fnn%u0?)9YCWK6KW@z9Ws<$Sw^-LBIw6!twSt2yIe ubLQt{yI1VBKI{3HJzi{88!}_{t7QJ2|Csz+B>$O$yy5BU=d#Wzp$Pz`3tk-n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_gold.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_gold.png.mcmeta new file mode 100644 index 000000000..6aa1f3c45 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_gold.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,0,2,1,0,0,2,0,2,1,0,2,0,1],"frametime":1.25,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/obfuscated_fish_3_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..34d25e2f8d05d149446fe522a4dcd7fc15483553 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}luCe4h%1l=1Kp1wKknYWd+E}p z>Snyd^!Z9v3!Zb|+mpd!YSAirP+hi5m^fSgWG7srr_TU#fwiXAcFaQXb0 z^Sk}~T@0^pm#sQD)BK?<+qntcW(h9qrg=Q*nb4Q6)V{q-eY;1?ZbiBC<;=>Hg02ZJ zeqn5~=wyb$1^B_!@p7*cU7*@4x^fX#Tu(Gw>QykSV&AhAJ0yCH+s zopAy~cT=JVN5s;^2IdyUtOZZFu4O$~!EkL!%Ar$23`rUi5)G*mQzS!}7l=t3B(O3( XQe~I-lKyxcXf%VTtDnm{r-UW|M;SaS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..914814e62de6d010414123a58df5da2fd2e564b8 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3gle_Qzbh1c7gQmd8= z7FFe~*|ira%2*QQ7tG-B>_!@p7*cU7*@4x^fX#Tu(Gw>QykSV&AhAJ0yCH+s zopAy~cT=JVN5s;^2IdyUtOZZFu4O$~!EkL!%Ar$23`rUi5)G*mQzS!}7l=t3B(O3( XQe~I-lKyxcXf%VTtDnm{r-UW|n-V(b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..11df845dbdcb7e5a05358574f4dc7020fdc4fed5 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=4?iKlu5v@Z;Ht}1JFxl~uo=%ddg8=^HwhAxT3*q9Ijciew1$0x?O01XhMe Xs_gP!(jSiljb`w4^>bP0l+XkK3u8H_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/skeleton_fish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..29744a4f701bc03bce845829997edbd6d23324c0 GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf65~~=?`agP~>%#Z)1z~SfeAml=sPL9v|>Ipdp*STcw9%9hSJ-65;;*`tsrp~pt z;XTdvXYysO=jllspFEh~c#b(tV8?Z3yHmeb@G{KUl67PT|6yLBWelFKelF{r5}E)4 Coj2J4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..14bb2aacb1f5bc7fb4e8307ebfa271171059c764 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9ab<_T1+zQSF~kv?@P zLpXzLCWERuP+aK4l{O&7SQ6wH%;50sMjDV4>*?YcQgJKUf%OcVL7UNxBol)mM$V00 zOIPh+V~~89rj?~I%Q52Q$+Z$olw7Y`>=ig+5X>dwCB|TMXp+y>LylgPu7q4V(8D9T u^%2vC4xs=|jww4>xf>+kEM39Jz_9%%-@zk%`iFoPF?hQAxvX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..64fb0a1c520337d7a36e67ca25cafb6cc341987b GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=3glfAe~KQ{m`Vfr`}} z=~Ee8GZ|FPf#R!W-cABij3q&S!3+-1ZlnP@v7RoDAr-fh9aw$14BCWeB!vVNvT_=B ztL|o#W{`ZAwJuL#mg5Okl{Fkol&(fzopr0Q&+!cK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..5953af002468becf0d8190d355e9dcfd4c63f9f8 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4@N#=qPsx+z6apkg&g z`cwwjOa@hRp!icQdw(FsSQ6wH%;50sMjDV4>*?YcQgJKUfz^l0piOv2Qb<4{E2m+% z>TWh^2FYhx>+%$4Ii65eS;MhJ>1w3rUV#$<#fBoDLJUS{f~MR(+ si<3&bOj#+!?mCMu9X*8f?Unu>FVdQ&MBb@0N;o{fdBvi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/slugfish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0f097acc1596ae2d3a67839664c71ef2dc7194 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G#nL#)=gy1S(c@ zq)%mV&16tD2a3l;xl934j3q&S!3+-1ZlnP@v7RoDAr-fh9aw$14BCWeB!vVNvT_=B ztL|o#W{`ZAwJuL#mg5Okl{Fkol&(fzopr06YCa$N&HU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..f0318229f81eec8002cc8a852b9dfaa47fd5b3ab GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08|(wp0V^K6OT zzy90XgwJr2+`WBr_hbGW4^6C@UhZW$+#_^x<7v*4IeCGv-=<8du3GoYp*&&YQ)BZt r2i9x4g%~irVP{qCKHeSr>nQJbP0l+XkKa(+sl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bce4d21de2f52dc4ea9c70ec63e109d4ff2bd9 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Es&`-AqCBUx4b9n)4W zSiNg?M8Nr~3aNeD-2&pK6o%abs$eV$@(X5gcy=QV$O-XuaSW-rRoios>wp0V^K6OT zzy90XgwJr2+`WBr_hbGW4^6C@UhZW$+#_^x<7v*4IeCGv-=<8du3GoYp*&&YQ)BZt r2i9x4g%~irVP{qCKHeSr>nQJbP0l+XkKy*5cy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..dc6125b5c71e30349893c480a7fd15eee6e87435 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0F&CHU7f^o2;t-j%h0w ztlqUcBH(;g#iNA+ZUJ#qt`~t+FqQ=Q1v5B2yO9Rugm}6*hE&|D?YYQxz<`5!w#4pV z|LtwUXE;gj-afheG5?K+Ce}Ii`t^4Iro-pyLvH6<= q>owg%3>e<9v#NFrE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/soul_fish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e3399bde65a3bd2b5250a853e242da17b28e2b GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0F&1;lqs^H?pewJEpB% zuzJ_(h=B7|6?^vVaSMps*TpjrsDiO1$S;_|;n|HeAScAr#WAGfR&CEkt^)=f%(EqS z|N3ul6F$R9a`*Ph-H-WiJT$RpdbyY3aF5W%ji)(F=Hvywew#9-x@z4ohw_ApPmRsr r99XaE7Gl8ghMiTl`*?TgucN$c&M}s1L`PB-1w z?y<1k9w^B7rgIyRVk`;r3ubV5b|VeQiSl%D45_$Pd%9JS!H|dfV1)Yb-|K(OJn4M% z^oqYS1-z@Cd|A2d%#~NO?%h~=bY^P5T9V}BlNk?l=7@d@Qt7p8KbK?_yPB#T| zrS@&#{QHCUl_Ttx&4T^2L~rad28uG41o;IsI6S+N2IM4ox;TbZ+^Ri&m62Id#3j(} z!aweFi$2cXU;MCj_SS3noOORrxfY*&Zl~V#IowY}UVU+m-u8-T%5K+|WJ~c4Yx$o% zl{>|CF{J$V!FS(XBGns|P8MIhyrECClj)G$u|xB18HyG&<>y}!UIVm?!PC{xWt~$( F695UNPNDz+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..39c59bbcd1bb8efdf466ca69ca21ee38697301f4 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0DI;5(srrEDF`>PB#T| zA1xI4`!)W<0h`Ie{HK}(w$7N63lwE63GxeOaCmkj4aiCGba4!+xK(@lDkHO^h)bZ` zg@4@V7JZz%zxZM6?5)@CIqUwMaxFgl+)lmebGV;|y!zrAz3mmxl-;f^$(G_9*784j zDtC(OVo3SzgYUk(M5;F^oh-h1c|)IOC(|LhV~6J3G88Rl%Fn+dyas3&gQu&X%Q~lo FCICbxPY3`2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/steaming_hot_flounder_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..96835b79daa4c56d44011dee011db2450846b51c GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DI;5(srrEDF`>PB%Sv z>=;mF!h{JoZrms;Dq68(MO<9mj!1n@peSQWkY6x^!?PP{Ku&_Ei(^Q|t=jIRj0}!E zOy&pHs{FlP{q9&kn}>bo+E~|$yS}q;t=M|(RNU%jEjjLfjld)wrYlEUmd;&yjyF}7 zLD~OM_(axo&AuL&<)6Ji+9P@3-;66~?ntUQZr;NGY)L;)YaUa7&aVlJfOau>y85}S Ib4q9e00-Vo;{X5v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/sulphur_skitter_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..a5e8b76026da8ca940372fe97abde2b73e1b4296 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07L0U}z0sU6{*vu~+c< z3X}i;|G&Jw>F%kC=eK4mDk=gM`1tt9vTy|}=oIPLdWtKXa*Mu9UwIKI!B`UH7tG-B z>_!@plj!N<7*cU7=>R)J>={;}1_K_}z*A~F{{EI1Yrhq7KW$QK_y4zitLxV9+LM=m za|_3`%fFr_%rH6cA5n0a^FHgtzQF&C#n(zZ7iQ{yHzF%kC=eK4mDk=gM`1ts+WS3}PIkNfp2dRDA1^Z{M@aWqJlwd3g@(X5g zcy=QV$Vv2caSW-rm2`leA@&TbP=f&vYv3uh9e;nzi?!d1xSuvDwfp~DzSVW>ckRi` zzqy5D+T~x*5@wj3_m3zz%z2;nVPD{X#^P(GoeMK{zZ;Z3cj9?#@nzbMMWHOBryQd~9Dk=gM`1tr#II?{>VDtBD{G){eE7SO^&wY9Ylwd3g@(X5g zcy=QV$Vv2caSW-rm2`leA@&Tb&;bJu){AP~rN6)1=fqAjI2N5Y<9dDk`VB8WFS>mC z*ObuB33h9~^R;C` cPez{MQ)*`pIkF%kC=eK4mDk}Q;_yE=T`}?n0vEs&!8xtl>h>MGpjL6;!6lE+4@(X5g zcy=QV$Vv2caSW-rm2`leA@&TbP=f&vYv3uh9e;nzi?!d1xSuvDwfp~DzSVW>ckRi` zzqy5D+T~x*5@wj3_m3zz%z2;nVPD{X#^P(GoeMK{zZ;Z2cj9?#@@3kNMWzopr0NSQnO8@`> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_bronze.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..faf24571686de74d5a1693ac404126a55a4b4d9c GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7#n{8{n+|AC`d>(5@D zHfMd(@-2HJn*+j9HFTZCrPO)0B^Ut}F_r}R1v5B2yO9Rugm}6*hE&{2c3}14GdL!q z;k@}Uqs~3SJJT3aGR|;_v0mhnYikNjU_IEhY_o&O>WxoDIFu`v9cL0y4!E*K_>6&h s-wUSIrfDxD7}6vRDjm;;JC!mp6n61{Ja~M9Hqd+qPgg&ebxsLQ03bC)fdBvi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..65d373399fefd68dc58e4b2448935703fd3119f9 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3gle|z@k&w-;?z24rO zHfO!mzU_M=n+5x41%#z)=sJl@sdt&%2m{qImIV0)GdMiEkp|?1db&7V-?be+Vd)PuKQegag-SQ6wH%;50sMjDV4>gnPbQgJKUfz^l4 z;FyqxbM`Xkh&{?FSqu{v?o@ISbuq56(sXSWU81pb9oxkmy|`|Lo++WTq#b%(3^zw6 wwCyZ>ma`!$dD=|r13b)X`73^Ut>9x|xF{(Y`P*pcDxd`np00i_>zopr0A7|xe*gdg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/vanille_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ee362a8cbc3eb0f8ed7db793d2c4811fd5ada0 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7#n{JC-C#(|?(SFBhu zZO-}$6DI75Yz_!Z)zEbkmr_4el>8g0h_NKdFPOpM*^M+HC&bgmF{I*FvIDCRpTRK^ z4d=~=8FlUn-kHXbl5vJZjP)XqTw7CM0_(x1Wt$yLR&RW&!l7KT>==`Pa=?`>!eDUc0@WbywW&0 q{mqkt&Lyk8w+8Fao7DOE8+%3$n|{NGGcSPlFnGH9xvXSN-hQ2%i8I>Oolts{Dg9t zJVm29vvL>=i?q_$vPo~>Q*)KgAo=;4y8_ia4w^7AFx-$6xBB~)cR$b~22WQ%mvv4F FO#sAPMS1`L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_gold.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_gold.png new file mode 100644 index 0000000000000000000000000000000000000000..34a072c29a0ea7555cd42f43fd32fed4ad6826f0 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4@N#(y|q^Jt;K{|<&z zO#<%|88)Q|&h}JkG7(SER#fC*1FDHH_&5uhTPMtfql1o9>*eYF@$#6%SpO6ld z=hh0&Rrw5tMONu+*`&8GO1{cwkomAA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crimson_isle/trophy_fish/volcanic_stonefish_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..19c96dce3e0479f7b65c7387aeb5548712ddb721 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2Te+*q+<#s3b52@@u~ zPh==6DvFDXo9(I6WFnrRt*FSs22^v~K+pk5F_r}R1v5B2yO9Ru#Cp0ohE&{2c3}14 zG-#8UkyH{O;>B>WFSIv{RlzMV-TfzuhTPMtfK$)zA`Y?ZFdWVj>EPe_N! z(=?iMRX&4Zl2!UzHtFq)lCQEEBtKtsSD<>wK@%pRBQwMs&%X=u23o}6>FVdQ&MBb@ E0Pn~{iU0rr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/eternal_flame_ring.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/eternal_flame_ring.png new file mode 100644 index 0000000000000000000000000000000000000000..dc77a8e089cc5e4289b5fe250201d227ac25e041 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0CVY%=~VO#Q(dF|KChJ z=AvB2!0)@w;0aKIu_VYZn8D%MjWi%9$ouCK9m*A vF$kT@(pu0G?0|QX?_8&bHfQlGPg8YIR9G=}s19GA~T^vIyZY3Y!N;}tb>9W;9 zoo^jmww&QqXmgJ~HibzcxhwU!&*TDy#HFr#9Z=VF)*u%A4qLzzb*#gQu&X%Q~loCIA#AM=AgS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/worm_membrane.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/crystal_hollows/worm_membrane.png new file mode 100644 index 0000000000000000000000000000000000000000..ede5dda526213f8b9a29a9b1a062c01d792bcf97 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE09)IHxKqoO-buFFm$qa zOfolcay0RfkkaB8kexewPXJH_V@Z%-FoVOh8)-mJyr+v}NX4xwr;iIVI|?`jCLVh_ ze}hBW`rFIv_IDlcWiB|%wltnOa`vZ{-7f{}o#iH*eX}!l*Wk@M%2{UnxMhaa#~=Dn zCK|8j<_-AOBD^?mb@#M7_5;T?)$gCQZNJ*jz!b)mQQe*w2DFO7)78&qol`;+0GmTY Am;e9( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/blue_shark_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/blue_shark_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..63015ce6542657ae8dd1e79048865984f9c55c27 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=8Q%KYxAa#I@sF4sV*X zWO7Y@QlR(Ky|O?F#*!evUh;K;R#&XrKm!;&UHx3vIVCg!0P^27 A!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_shark_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_shark_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..89f086883557f2aee1bd4707f683961ed5bbd9ef GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0A6?x#sYuIj`@WxORNY zxA)KUlL8s+-%bQdFqQ=Q1v5B2yO9RuczC)vhE&|@Ij1Ogz=4DLqMumNe`WEjtRaPy zzq6kIpIlzS+s-QFKf%CJiGPC7+Vh^KPAx}dWwaJ~$H=aFtbEAqt?+Nzo&zilsn;1f Uc;x3U1e(d<>FVdQ&MBb@0Pos4b^rhX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_tooth_meal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/great_white_tooth_meal.png new file mode 100644 index 0000000000000000000000000000000000000000..b4a64d84df33571db3682592caf5628614c81115 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08|CY0i?#H4iWD{`UTP zeo`P8t9&R>l(8hpFPOpM*^M+HC(hHwF{I*F?iqG5CPyBo3k(ncxyx1FDE<8*_}QmN z`C{Jh`74}SitkB0Qz(*~%=ql)(^LGO7qnhIV`Ef!;Ph!xaFMjYtM(7onSW-cY8rMO os<@*T+$z=ZgITMrT7RANf$gl}2QB$u0c~RNboFyt=akR{04L%`Qvd(} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/nurse_shark_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/nurse_shark_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9c5f1172c3a8f64a01a2501a7c136300296a73 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=8Q%KYxAa#I@sF4sV*X zWO7Y@QlR(Ky|O?F#*!evU~HM?p%Mfgx-w+ZO%@k=j5b7(8A5T-G@yGywqW Cl`^pa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/shark_fin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/shark_fin.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f873b2e618b69cc782d813c0dfc28459710469 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07M3%q*|#k54P_nYwbp z%DraR?gr&21%VQbB|(0{3=Yq3qyahZo-U3d6}Q&*I`TCb@EqQD<>vqSJfgxb1xL3> zLHN6Y{{!{dNP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/tiger_shark_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/fishing_festival/tiger_shark_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..961bd8c0a0003d3aac5036d68ec6606c94d95a3d GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=8Q%KYxAa#I@sF4sV*X zWO7Y@QlR(Ky|O?F#*!evULh49 zVG|4};$=2&@^y|mXmoC&-Z4f8w%OhhS}q#8jk>yw-7gt#ALp#io~&sDG>E~|)z4*} HQ$iB}3FR~h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/diver_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/diver_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..ab630e57679c5b883c94ba8c0a93d0009cedeaf7 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08YLV0yVx^w%}7JJW>! zevRLhBG|Kxg&!!vSQ6wH%;50sMjDXg=IP=XQgN&I#CApo1s-NcmBjb^4K2fKzKh#^ zzP2$}1JFx1g1+;CBVrqG) zBE>k7lj|(YWxqsY^#+N)N5+amU916n6L|u31qG~pFEIOTX6164Qjo&oe0AGw2T7i% cEBF`~B<^z?%xl(s3N)0#)78&qol`;+01w_b=>Px# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/gill_membrane.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/gill_membrane.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2d73046be24dc0265490286f745bf1ef07e6a6 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5`}I;vZ%%X(rn8Zy%A zf&-FcB9g2<)12*{^!2?pHMFIHYT|wVC;%zOk|4ie28U-i(tw;oPZ!6Kid)GC_->p& zD002YXzM3VhhtqF3thH)EojJGJY&Hu>j{FEnagg8_%Ap!=gj1p!A6o2Vsk%Qnmxb4 z!uIXRJ=xD0CDkqsT3wNJXz8taPpmqAYxUE^t6As$WPQ0F_ b(#^_!@pJ)8*|G&!PC{xWt~$(69A3lF$Dks literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_book.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_book.png new file mode 100644 index 0000000000000000000000000000000000000000..db6227597e008a00f8072d3685f940382b9b13a4 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C5@@KrS|5EEcE_GogB zo*0ld@8~So?_&3R^(}Z zsHRr>?H~I*D_Q9eN(%S=9~UzG)0Eu5=HBHWmn?tjGQ9OUKS?NU!IGl$f!jJt6~nhr z@k~1tFeQgu!c=Ki+|k2Q4>YH*buF0c?bebco~Lx}!WN14IqPft@^4-KdB3=u>GrA! R*>Iq>44$rjF6*2UngF-lQpErO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_water.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/galatea/wet_water.png new file mode 100644 index 0000000000000000000000000000000000000000..28e5bc98f56b2bee491ae00665f392e94b1a9de6 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07Mznz#J=o2s2xZ@&K- z*|E{sqe<1UKtjRy?;*)9pfqDikY6x^!?PP{Ku)r!i(^Q|t=Kc{Oe~5V&VfP(1^b#J;LLJjj_f@|XCq_>F;lSimbd>jn--MYzWHO!fBw50i`uHoHP>vGLyS2sa z!GRZg`;!lEDGNB?nj!qBZ?=z|-=0~%_J=w4*2xJ>XKIwrOu7QJj=|H_&t;ucLK6Tu CF-Zde literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/glowing_mushroom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/glowing_mushroom.png new file mode 100644 index 0000000000000000000000000000000000000000..492546cb35341645390df63ce0d1e561323aebd1 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6?Po@)4i;J~#tOU~DO z-`mx)GSzD9CjIF%MT<+s0|Hju3V07x#8?vK7tG-B>_!@pqvh%17*cU7c>!yHZuIJ8WxMX^rOE&E=AtOzbdi5b z)SLRlZ)>ckyt&))zEI+Eyt}6AliR5!40gJcoYwASIk+*)TA#sZaxT;2?K75`f0=S1 w=d3W#LT7pPlFoTu)hQ<=^2%razW0s!(?!M?;*)0l2U^15>FVdQ&MBb@08`LP&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/broken_radar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/broken_radar.png new file mode 100644 index 0000000000000000000000000000000000000000..27f71452939b9d50770b12d82f76062fe0bbbaeb GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E07Kd2(YxYT(M$BQ&SU= ztF5i=@9&?QntJ2LjXnwQCl(F6l#?S@8^jf;N{EX~{q$H4RK!>k%E0r|2ZBw`zKm(v8zk*75;4xs-{mC z6qZbJshD~~>|}d>XP1hq_}-;gi}*u2j0@MX1Wo+mE#s0b^4x*x`45R>jnBkXZ=d0{ u6D_!ry>@S-rD9s~ccsU#{zP|nf8(2Jz!n&&b^8v`6%3xPelF{r5}E*Kv0Wbk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/half_eaten_mushroom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/hotspot/half_eaten_mushroom.png new file mode 100644 index 0000000000000000000000000000000000000000..26aae8fe5961d99a861dfa912fe2c2b66002650e GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1#w@Tx^`jB`6KnS&Rm$b zcKyl)ssFUJ9tjB@kyTqMBz3m0M+>Nku_VYZn8D%MjWi%f)6>N_x_f4bc^ZDo1n zY6G7sEi2;<;tEvzeD%yy0*kD*LoJomylsq?B>TdyiUBn+mIV0)GdMiEkp|?rd%8G= zRNP8Fz<;j9;pL|e34_Nw3bkh(jMB-uRmpIq!({!57>1MrmuV|jH%Qdny*&AfUW3Tq rlAx2UudB?@zSTRjAUgYFGzUZ2Y~hM~)Ay?bjb!k2^>bP0l+XkK0_qfOYf5wWa zrq53-8eH;Un#AAQrJQ_0_^K6TRiLl3GW`^$* W`FLMl__N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/lava_water_orb.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/lava_water_orb.png new file mode 100644 index 0000000000000000000000000000000000000000..5d26ea864530508d064d56ea5f3ed594edd407f1 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cb=l_`JawC$x*1}?; z9!si*Mu4=mqnMZ)H}@fL>qMXm#*!evUswBxRm*P3yho%ih4|E<}d3s!n?-u7O9cw!Kfj;ZLfRcX&k8j5}~$y|H)fN{yB rs?!V_M_g4nCO0T}Nk-rJWS@GYgDYdt`^*_YD;PXo{an^LB{Ts5>gpzmo6znM4vD9}y@Pgg&e IbxsLQ02x>^Ms@63{{q{2A`5IZ{?DRbTI5VI35|>QgmA|~azIb^5ZMILk Xz_4@GyWf#OV;MYM{an^LB{Ts5=CMIL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/winter_water_orb.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/water_orb/winter_water_orb.png new file mode 100644 index 0000000000000000000000000000000000000000..226f8cfe37284338631eb0636135b19f24c886a6 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0A7z_UZx6VxluUv$h}H#OQ2t;_P0NmICuFYs^}F3>!|KoEbQ`_*WY@1H;4`MwW{X ScQykJWbkzLb6Mw<&;$U6fIc_? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/bouncy_beach_ball.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/bouncy_beach_ball.png new file mode 100644 index 0000000000000000000000000000000000000000..f7a0089a4c0c1a01d29cf0301b46294f9f98a5cc GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G)S0_5XXJ2hLx9 zzuJD@x=sJ<0|c(TeN=70IR7T=Rw2R0RsR_n4vUCfT)puzPy=I0kY6x^!?PP{Ku)ly zi(^Q|t>gn-Wz|j@;;ENC1kNtndc#GP@yLsSU3DiJPkhJ_3DOTwOh^h~IBCqN$h??g z&PfKbXOWAR#Jy%nT2u6K?`#GkyT_ltNgjET{C>kN9){410*@KDMav)Rw6YQFb$O{qlW`t{q)_`p)ys=ikKkABtIVaV=0AV@Z%-FoVOh z8)-mJk*AAeNX4z(9@ZpRMVcr@r%At^51j){9lV%lbv@7M#5jy;-tdqCS6JYD@<);T3K0RW;zWWWFb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/fishy_treat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/fishy_treat.png new file mode 100644 index 0000000000000000000000000000000000000000..7ca33156a8177431518fed77dedb0b374b5b9a91 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E@p3lg*Mlnb0@`|v-* zf&X(q{AVy~*33W1YgqIr@f=7SV@Z%-FoVOh8)-mJu&0Y-NX4zWosFEXh8)bHm;a^w zZ>@K!VE&>|u>51sndO_`t=lTFSMB*GM=q6juARTH?tLe(uuW-dXLIs|z7wl#LJO|% o;NSf2m(tmdKI;Vst0Kw2lG5`Po literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/giant_bouncy_beach_ball.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/giant_bouncy_beach_ball.png new file mode 100644 index 0000000000000000000000000000000000000000..98ed1bb21c98831494b076f306cd69eade3012f1 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E09*x)pv@BJuD*fpMl|j zeE{oLq5tY7ioJm0(7Z0DiH@>}Lu b|JcWHX%}<%o8lr?pp6Wku6{1-oD!M<8)78&qol`;+0FQD-OaK4? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/loudmouth_bass_divine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/loudmouth_bass_divine.png new file mode 100644 index 0000000000000000000000000000000000000000..60dc2cf81ba6dd8d17310b8aed079084f8274a69 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=8p5o?UZb)$HB5Q&;vC zPEL%e@IPRxw?b3-KLdlEx0AG%TH=G7Hb8ZZB|(0{3=Yq3qyah6o-U3d6}OTdSaUc7 z*fxt!NtD^fpfgWw8f%hDbnCmQy^KdV?r!B>lMs0$FJIv7)Lq$&r!#kK%-Q}xNFcc~ z?Ajz%g~n6cLbDQ7wVOg0i0Sw=M`^HbZO>+$!NicQCH`ckN@Wqy8U{~SKbLh*2~7aw C*haYk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/seal_treat_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/fishing/year_of_the_seal/seal_treat_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..33b5c941ccb0ed59f549caa58b45ca5b5e7d2e89 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AtkwO-7=Q!a3tX8u8j z1OIIw{+9}fHOQ+ue*F0V|Npmr{kl&7UNul1V@Z%-FoVOh8)-mJlBbJfNX4zB1H25W zr&#%z92uN1h8%leAAhXzuG@d_?4PTnigyK7eO;=p`gG&JTNh602(pK0X|Bv|h*~dk zn04EQ=tAZzir-lE8aZ9t6Y>{yJg`f&KX&w;%|dP-A=~!_ulMrLTF10FzdoV>Xd8p4 LtDnm{r-UW|(Nj^s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/agatha_coupon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/agatha_coupon.png new file mode 100644 index 0000000000000000000000000000000000000000..929b83032db0e888994d8e49e40a6030fbb6a82d GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08|@zID-AzrxA70hu~h zK5ELk5~o})+yP23mIV0)GdMiEkp|>=d%8G=RNPwAu~G1Vfxw}Ej5q3^%qV_pXW}s{ z{#iP&%7R$NCCiuAy_s^wx8t;JtDm>mF{|skZcR%+OgnLNSLNMnYMq(sX`gcTO=M*F XIE(TB6{d7fps@^|u6{1-oD!Myr zRr(&`vkfT9SQ6wH%;50sMjDXg<>}%WQgN%)w^@*Zk%#-c{LkDcSK5BK{{C_Ixc(i5 z&w&DWm9m`X*1NV}J?e1OCP?I<%h!1`>a-s2i){$t`DKt$<(H&=sZj2}x?34P!wa4Y S?GHdx89ZJ6T-G@yGywp5+&BpU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/fig_log.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/fig_log.png new file mode 100644 index 0000000000000000000000000000000000000000..70b2325ef31d85ac7399f71ca0e78949a293d48b GIT binary patch literal 517 zcmV+g0{Z=lP)z<00001bW%=J06^y0W&i*IcS%G+RCwC$)VHA^M-T(i0%pE)nSYR^!&5tr z)2dH&0{bjf0?Qus0AMSUw&qS1EO@u+%zT?n;>vt>dplYqzD40?u>NA16PjG zs<9g*L`twg%-z_8gII#Bs;Oy=5JKU~xnS(ZV2r-)u^R(|3Os?ByD=aYRG~!}yKzxa zuz?~qHI2bYfDQ?BH--eF2ndYb*wIOl00*Y-cBv>Apu`DNH~T*n5U3PC@v8N6`H0k_ zKy>Vvw}7H`9C(}F&ygcU=~85x{n`&4oEU=N^d=Si1c4*E9f&VL0blC(K1PAVdg(-UyKhRuHB!idd-%h^Y7c2PhmQL?rbd|3G{d2-SQ3 z0{}=60(y^sPz2DHA%fo1A8a8A7XgCPx>Taf4%A9$Od#Z=1*G@%2OF>=fHI*sBqE9f zp<|1Kh**a}+`DwGNc`~+932!c5WKu<-T#8y?RLA}ZnwdEMF*@v>SwtD00000NkvXX Hu0mjfL!!?& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/figstone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/figstone.png new file mode 100644 index 0000000000000000000000000000000000000000..3f28bffa3cd65a2d0e738ea96601cd580942c0ee GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=39k7DZW_X^EOS5ypvu zx-p@O-aaZJZfbsx$}SeN)&|nakxOp^)iIU?`2{mLJiCzw*f_H?7-96w@y{sfydu*Vwga3*7EEO^$x>} zo0FeS$y?x)z5KzDZlFgV8=c$-8Fc_sM V%zWv6A{}TogQu&X%Q~loCIE=+NX7sF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/mangcore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/mangcore.png new file mode 100644 index 0000000000000000000000000000000000000000..7c62164ece0557f5fe6ecd8b31679b7d11138221 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DI)SN5}4cQI9p^3X{S zGDuNTj+K$i*U~MwG^uwo(NL0zFPW_eRL58n+@w9jFw*lRi;hX?$;%Q)5)8}r-bZjHX=v^)UCU+^p}sREk u6oj99!QyTBCeAeZDGQrHw)uo(EDT3=MN`sUmc0WS&*16m=d#Wzp$Pye5k$ZM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/exalted_lushlilac_bonbon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/exalted_lushlilac_bonbon.png new file mode 100644 index 0000000000000000000000000000000000000000..a38f4facd71ccaefe593e78eb7e0898d34c96f24 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=72c&b4;C%nRtqDbnh3 zE)9>7EjNns_Lp>WlSowd)H4v0uiCT`sE)BD$S;_|;n|HeASc+<#WAGfR`LOUt1>@^ z%Q822TOaH(>z^x`uux2Ox`{xuvggUOJA{rD1bLdQWiqk|zSCly-Yk)une_Im1KahU tl|_xLjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac.png new file mode 100644 index 0000000000000000000000000000000000000000..a20cb12912d2097b7d104ceb8896ad6ba53ca281 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09i9_AEDwnHSK}<6OEc z>D-0t#|4vga~ce-eAEImb+(93>;o!dED7=pW^j0RBMrz&@pN$vskoKfbDZ%&0Eg4j zb-&-wKBxQVRPaRkw;u2RhJ9_XN=e!6Ij`;I%*bsWub95ycz#zV;KYUW8>;NJF3*l8 zCK^?ZA77(A0K@fM8w@*1a6I)eJwcat3QKG0uK0cME7AgQu&X J%Q~loCIBsWPRalP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac_bonbon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/lushlilac_bonbon.png new file mode 100644 index 0000000000000000000000000000000000000000..219c9f6091bba356e7193852d69295e5f35c46c3 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09i9_AEDw>2WTd7tpaQ z>D-0t#~b>bn1B+DB|(0{3=Yq3qyafzo-U3d6}RSe9~EU#;5oXl~BL^PvZtRTmcW-C}LLwUbZMVndnu?@~YJ=fPs7>#MrWS|nQ-8U92G UI~!#F1UZGl)78&qol`;+01Wdu_5c6? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/oceandy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/oceandy.png new file mode 100644 index 0000000000000000000000000000000000000000..a7abfc4debef9c1d67444c5811367594702079e7 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3YJukK1Z7um6KUO-1c z*1R6)QoGQea-$eykETRrPgTQ$|CmdKI;Vst08ZURG5`Po literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/prime_lushlilac_bonbon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/salts/prime_lushlilac_bonbon.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ee39e7d99032c15803e1c33362f4395a078b12 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1I)AMZ*!H!q+gr%0>E zximaRw%jPj+h5YjO(Id*Q_n!iQ`~GSH@6f}DPu{HUoeBivm0qZPLQXIV@SoV*NgHlnv6FyIZd{NF02&ZfbD@ w&$~;TzW7WKIs8sCwV2PKA#!)4i5dgL9DU(+x7y6t0!?S|boFyt=akR{0MW-pdH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/shiniest.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/shiniest.png new file mode 100644 index 0000000000000000000000000000000000000000..9d61bc1dc11a7e7edb8f2918852194aeab6f8d0a GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0DG+vCf(s-Ls>9)BW{o zo@$>a@8JcCGL{7S1v5B2yO9Ru#Cy6phE&|jJmdKI;Vst05Ir8asU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/signal_enhancer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/signal_enhancer.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ede6996939e6882c8ffab6cc095727a5d3bf12 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYD~Ohswz08!QNVTEl_Mh~ z$6NJK4IcmXKESQ6wH%;50sMjDV4<>}%WQgLfa&rwDeM-GndJ*$~-?Il|D zPNyVxg3!nQZ?o!E)@n|QSJCo{oZ^sh>gA@Wkj<=}uZ}Fg*{FAeA^hrs_)S;01O)~^ nJ0qDc*K9eH_YBkI7Dk2>Cm7csKXT1sty literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/stretching_sticks.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/stretching_sticks.png new file mode 100644 index 0000000000000000000000000000000000000000..2f80d6b744c86a58c8696145971b4f6c37a47cea GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=8_}Ms>JpUYt^ft6HNpgBDN&V@Z%-FoVOh8)-mJf~SjP zNX4yW2Igs;JOT?WtC?p!oA9N@AWHr08Mcc)>w436JMtWtG`#MxDpDuZZ!I(D3Ln9H ze;L*st;|z9&p1Ks{A_WBs4d?QZ4qgZFg_UNFv~H@p+R^JD@%pG!3PFShHn>SpIv1< R?+vtz!PC{xWt~$(69BSaPCEbq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/tender_wood.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/tender_wood.png new file mode 100644 index 0000000000000000000000000000000000000000..0f9b8879f38b0253b0acc67c9869f859776c4bf9 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=39k7DZW_mC@#DiJCbP z#)*NtF`?Z%}`3OyyN z-#Ha#ZC<%}iMH^OjFlO$f|$BC`j!X9M{Z&`abk{TcBY6&@QRf$pF}E{CMF#_$*s`y zAjCj9)I?I{@B!1CI-+M1A|%B)r!aD^jcUy?Wti_P@htBB%^ILh44$rjF6*2UngBlp BMfLyy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/vinesap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/foraging/vinesap.png new file mode 100644 index 0000000000000000000000000000000000000000..a243a5a131ed31bd2babb9405a306b265f72349b GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cjUjOmA_THhuW78c9 zCh6uh7XsUs#mdOtXIK3IRLWQqswanmMl*Q2`njxgN@xNAz=Jy~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/concentrated_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/concentrated_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..68c7b5aef9e77f3e65d5688428e9a28bad817cb8 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvi2$DvS0J62mlqKc;qBw^=;&x+ zZmz4VtD>TEY^JL-P>!)A$S;_|;n|HeAji|w#WAGfR zE1qUnmmc3c2@*OAYf{#*9Zq1pXd-Sd!N$E}ht=%E1`!TxZT8BvIsS2c$j4*A#W15= VeQ{ui$rqrZ44$rjF6*2UngGeZF){!E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/control_switch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/control_switch.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0df705e01682b042ad4fb368392671bc2ab019 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7bqyqSIIa__pm|8sKw z2L|S~t^Dui_Fr1sH8j`A!oR!o85>X$V@Z%-FoVOh8)-m}x2KC^NX4yW1wI2WzXpRD zM~n{YoXd2&tmC*QGp%d&C8NfklZR%mR*Pno)D}K!IN2?_od!Ql#+V4MC9)24ayc* zB2EX>~!c)I$ztaD0e0svT^P{IHJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/divan_alloy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/divan_alloy.png new file mode 100644 index 0000000000000000000000000000000000000000..b823498d12b4d6b1d6611e675f2b317b97d3808f GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07KsU~pt$cz-(5kb$Ai zfFVzwVWtDag*=828{iaFPdXN*`q}&=%|HQR8i7- z)j;M1u8qH0W|*H&_>gk0^Ld>77hCt-xA!Ke2DqmewZxnfmc24-irLDoQx6%)4;$mI z&ow?=qkJKcVWtB^uPtkv0fQj}L&6EQk3e;dB|(0{3=Yq3qyahRo-U3d6}OTVSkex? z$TB!;dHIC&nHg)A+~H0037YhxtwX{sm%(`1sx;>>1>tMk49y&RZ~7jvVz4;FJxfu&64-PfjE**wakZ%*<9pj=NPm@gGnFV@Z%-FoVOh8)-m}ho_5U zNX4yW2gW(V3wk;y1uzQwu4w2!&t#Ci*y|LtL34HgY;%`)SA;p5m-kgO&$#%NLFr&3 rx9PgCOfAnkTe)QF8B+HoJFqfjZsq^O63Y_}G?T&8)z4*}Q$iB}+;lQ8P1JhF}H_Ic^4B2FV-W=KwV@mIV0)GdMiEkp|>Mc)B=- zRNP8tXk_LQIIx&GRVK)qRWKlE)@6n?+u+SM+-V;%}bHoAZtam~S7+knR8oo0zYcViHEfM7@iCdxqw1dIZ)z4*} HQ$iB}0zW`Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_gold_hammer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_gold_hammer.png new file mode 100644 index 0000000000000000000000000000000000000000..64733728fe36ef0223eada6709be6cbd1b1885cd GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4@N#{atJHEYNDmm5Xz zOcO5dn71iKurpmfB%vt7Pp(vh$Yj3q&S!3+-1ZlnP@;hrvz zAr-fh85)_`I1caj|#JH%En+-GJBVPN>FCHO~LOe`2^1%s!npUXO@ GgeCwIY(o+N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_lapis_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/dwarven_lapis_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..c38dfa761f3e3c5fb2ac7558a2cfd9bbe604559d GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=6#2oG+RFs<>lbRMVr* zboG#gB9pko8Gdpy!7HR}`#sG>&CG0BRgyL2xYJ+sD*`nzmIV0)GdMiEkp|@Wd%8G= zRNP8#U|1I#a7-w6MZ;wM5QnEsW{oCn>y$P)6dfum-N0owb5azWf%63!4Tfo_8!z0k y&165&vzGr{Lu=SqLxVYthG9;jMl&7WvNL!u6WMy@$bAi<(F~rhelF{r5}E+gl0-rP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/electron_transmitter.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/electron_transmitter.png new file mode 100644 index 0000000000000000000000000000000000000000..d3f4fb264e0f82d68fd677770be569e19b3c1597 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=0*h{+ms?U0psgIle-s zWUrrB0$0>R8%u9ZbyE&@u9Y=xCxL1hOM?7@862M7NCR@bJY5_^DsCko;I@)dFlpcH z%0A~a^=D;dP~`c;k+Ohk zYDamZ-ud5r@yyTkj_VcF9?IcxekmoHS#$8iB$=>(H@v6xwRw4DhiRONIw0iN#Ynp$)GfFw{6V@Z%-FoVOh8)-mJrl*TzNX4z(K2|1XLk<>w zi{Jm*#aC{xo^;0H$uId7*8H46!#!8mR#Z(ZRFl~3Gj;dL1Bzj(X;vIDFWX&1SJ>Iz zYl`TKHrmROE|#Q~)-Psgdn$Ch5Wn)-usvx;dzQWU`!4(54j-n7eT<4zSi%HDlJ@{D OW$<+Mb6Mw<&;$UWqe?;m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..3cad29811bbf2ce008af23f2f110ccbb2fb5451a GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=8iSA12l8jL(=FkTTgf zs7T+f($prJOFl?U+J!;bzH+0K1yB)VNswPKgTu2MX+Vyrr;B4q#jWH6{9$VwF2pQV zgTe~DWM4fgV#IS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_green.png new file mode 100644 index 0000000000000000000000000000000000000000..e9bcb2a883f0b07123242bb1dad725cc9817fe9d GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6P;FIcj#zHxbb>w@^? zwye}9YxitFi!ed80DVn&hNLv@l|V&|B|(0{3=Yq3qyageo-U3d6}OTP@Q1B!xDc~c zkvG9@cV+*WGI8DtDnm{r-UW|#iKq- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_red.png new file mode 100644 index 0000000000000000000000000000000000000000..3f6828150ceefb547edcf166f424d8c651f123c8 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=0`u%Xd~LO^wf(oD@*x z8(it6A8l$AB**0B*-tA!Qt7BG$6;*)5S5Q;#Tqj{;;(T7h;ww z@+P?L&J19iaWP}n6V^qRGE=AA5o?&jqS-plL1NXyrvYvjGY&pn5*5dpWS~>5IiJbP0l+XkKwjn%8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/goblin_egg_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c2f317c6c35ff0c8123fa21cf49e33596ab7b2 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1g1O*(V3aO;wsb*lp> z_UcS(_Ak#cP7P*?^XGN9WH`L}`)r^h#*!evUkS{1rK+6CC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/helix.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/helix.png new file mode 100644 index 0000000000000000000000000000000000000000..97736880d5329219ec4e1da5eacb5e314ca32c47 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfkXRZjBU(w{6=E8Yt zZK06@!#nL2bAS?zB|(0{3=Yq3qyahco-U3d6}OTO@G<0ew+b>l@Ekrj;eP!Sx71II zr))lHy=-2kR=QdCBkO90G~DG_n5NdaGU3&dTo&QE s#m9ub{jZtm^{goSZFrpF!TlJ9A9op#TCR(m2(*g9)78&qol`;+09#E)KmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..90aa2a83b1ec356924b0a4ae3293e019979c0e87 GIT binary patch literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE07Mc?6S19v{&Q`)#KL- zV5nozax7v{RaJc)!n9VL;s0!p3-*lv@6GssA#V;V!~fR@9n=e_m0bRJ`q}@#S2y>4 z&i7yaq^bpI4g+IJkY6x^!?PP{Ku)u#i(^Q|EnlCbj0Y5Wj@(teS%0PN*WPnCnO#!q zAH@8b|8Zx7z3M)-LsAY)Z#S@VG@E?5Eg@VmU9VYY75n=_o9%Oxy%gE<yQoMyd8+a{3JLZo$Otw~%6olV b=+QLxo@MOCFN-yrL5}lu^>bP0l+XkKYM5)c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/jungle_key.png new file mode 100644 index 0000000000000000000000000000000000000000..11fcd5a0b6e5f4a8c16517d127b506660285b437 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1_aQzj(^)`z)i7Ba*; zm?%atC_a8{0F+=X3GxeOaCmkj4al+dba4!+xRtEHyJDw9hTFj@EMn#g&7LL!S9Jp~ zG&bJUJ)sg2pwrl>dh_V%Gx@_JgT5@I4iHD5Y9J%JQsNswPKgTu2MX+Tc0r;B4q#jWH6Y!S|f z)f*%)?hbp)!ku$EYOl1)k-Dm@t85k6($BuMUGBicS9&&-Te^W~TG+v*+FTAiiOG*$ z1e#-Gj?@Zv98}a>vU3UJlGVW%W0`Wkq$EG~+aNl}__Vr0Brn6M25Ij%QLFiY)-iax L`njxgN@xNA0-;5= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/perfectly_cut_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/perfectly_cut_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..8a99e58cde8a4d937dcfb682708586b8d22f49d5 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E07i}s`~%`|H9udyx!iF zTD4r^=vI-q;QE4(2Z3^oB|(0{3=Yq3qyagho-U3d6}OTUq#16BajSGJ5@5J_@Bgmb zJHAeyZm^io=*Inr@*%z9xn1=!a*GTOmF>1?t)3M(f6F!vd856o%N+jBeU$g?W4RX# m^ACB|2OsoX^ADV_WW1=t_Gc^qm6JdV7(8A5T-G@yGywn(FGp4Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/power_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/power_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1c0474909f02292ff8329ea04e9b939846a285 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F$wukhM5*PV^_b8<}o z?@IU&1n>78oqGE#P>!)A$S;_|;n|HeASc1o#WAGfR!J`_Q-gy56RX+3|H+oS_s+UG z>z|#?&d=vE9-VTI;oYUR-f5;lsi2IK*{e3*B?Xz$KTMWx+0&Mw7^AXa2UnSeYDejo v-q&}9Z>c+*m56=cIOjN12>+3Yy}S&Iiy3qN2Qdc#?PBnB^>bP0l+XkKP4r8L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/precursor_apparatus.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/precursor_apparatus.png new file mode 100644 index 0000000000000000000000000000000000000000..f482c555b42f8ac148df08b4799061cd591ebedd GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08X>F`Jm^vSC8RvenHC zEByBU|CfC0d+6dTJ}TOx-p%De6^tc8e!&b5&u*jvIq{w@jv*Ddk`8b(r1m)SF*|Y` z7GZw#;Xi-5*OkMo?&MfDd^yyiC7qlWv(#KEOyg7B!K-V2yqmjm_QVBcmy-{^VDPUt zGB{j0WoPSA#YNT|Cv^W1RTlr3xLDU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..adbc666d06615b67e68bb8fdca0d57d248f7b881 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Df3hoL`}{r_QxE!7PF zAIyBYnBo8b|F>`7o;GdT&Ye3my|`!DyB-FrV=M{s3ubV5b|VeQiT8AI45_%)+wI85 zY{mdK II;Vst0IU2>$N&HU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..fa6e183845321a87561e18f2d6f14587f9529e0c GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Df3hoL`}{r_QxE!7PF zAIyBYnBjj1!|f7=X}%0Q6B#nSxF1jdCIVE)SQ6wH%;50sMjDV4@9E+gQgN%d+mVmi zkc0WU+HHnE|Mze0P`VQR+)VlRPw_7Kc1eqKR|^guXUXETeYmUDq&nXCnvRL0A@_^} zu__xi#I$bPb_uNc@Mgp2S$DXWzY+Ppqa$FFo6U5O?>4_!-)S)2v_0|f4A3eDPgg&e IbxsLQ0OLPSC;$Ke literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..ae928c2df91153bb06f831b79ae7e8e2f06bf3da GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Df3hoL`}{r_QxE!7PF zAIyBYn1R7}8bir#hK~OXi90jBxDW4IeGRCNu_VYZn8D%MjWi%9-qXb~q~ca@w<903 zAqVqywP>b4|Mze0P`VQR+)VlRPw_7Kc1eqKR|^guXUXETeYmUDq&nXCnvRL0A@_^} zu__xi#I$a27gvnfx7j(xRFZ4COP7V-ovBOSoj+Rq-sTtUdoiZF>Z_$T0Ig#1boFyt I=akR{0DNUj5dZ)H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/prehistoric_egg_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..728037ae1cd0af228e0a74f97622f26435dd3f5a GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Df3hoL`}{r_QxE!7PF zAIyBYn1SIx1H)|whG`58I~g*)xFbvdtpTcIED7=pW^j0RBMr!j_jGX#skqhK?a0S$ z$iaMF?KZ=o|NFOgC|!wuZl?VEr+AlqyQIars|AOSvt;qvKHSx6QXOx6O~*vhkbA~~ zSe1<$Vp_Lty9CyJc(Y;itUFxG--!I)(Gf7o&1SmCcbi|V?=+Zh+Mf7#251$7r>mdK II;Vst0OaUQasU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/recall_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/recall_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1f8a30ec13a0fc0962b8f2a6362bf9a3c600b9 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5%P{lD_``@FyZH=loV zX8lrzU;n$;Uf{d@=}NAr@TR-5{fAb%t4=o;Yp}DO22{;h666=m;PC858jus`>Eakt zaVyz@&6wXIW7!1(j^?LlL|05X%%*YJ`RGyUHOrhMZ%7@v@G4A1n}Ku9tpzit@g=Rf z@n9S8k%W^PH)7e+mTaA_|C-I{#_Y3~tiqa0LYJhLH1?+G-`^{Jl9S<4i^LhB@cwl` Pn;1M@{an^LB{Ts5gTYvL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/robotron_reflector.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/robotron_reflector.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e8cef69bb7cd2cbde020bc5119bc9edb245e47 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9atFr7Yq`u|eaS+i#S zPiH7AD+>t;xhTV6Wn~4Fy)C%!D3D?-3GxeOaCmkj4akY~ba4!+xRrc>=?3?L9;3@_ z9S(~Msu*V^X3S#~du&otBr-3KA%(@?a7&3NyOGm!$!SZb`z9nr2#VP(y})xK;RV;+ wAQ`@th9k==^cZGeoodOQ^=lPt#2Yq-Lm^^wB3{`11X{x2>FVdQ&MBb@03Js~=Kufz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/silex.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/silex.png new file mode 100644 index 0000000000000000000000000000000000000000..6c91819cf56f1e4a23b3147861c2f3992bbf6124 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E5QjoQ3m;)4F>Biol> zIkoHVm1D1--uwRbQ)hMYqbKoKfGQYEg8YIR9G=}s19BofT^vIyZuOiw&e&kU;~W^1 z`hLFw*ICO?`Bj?7=O-<-Ua)Gz%%U_kgQg_87wl53&m1dMgicH}i?46_?GSJ%G*4iu v!E?F9wAm{RuTIPhe$}*4Y+~_@I93L4d8Ro1&l947b})Fl`njxgN@xNAICe_> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/sludge_juice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/sludge_juice.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab4657ab49e56ce7800ea5dd942c4164346d7f8 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=1(~o$I;YRJJd-a7}Xf zME`&WPuZx{ZlDBXNswPKgTu2MX+Vylr;B4q#jRuoc@Bq6w?qx+3m%L<#@f;|8zgnS tPU$7Et=_y@vqdmTiY;)?tZ5Br0~j{1V=2g}aRa%5!PC{xWt~$(698$FEnfft literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/superlite_motor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/superlite_motor.png new file mode 100644 index 0000000000000000000000000000000000000000..e27dc0f9faa6a6f137c2c58f3e4de21d3c33c89e GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=7bqyqSIIa$eg?vnjV_ zO7^Zc6Lk&E&DY^JvheqoVrJINzkTiMQJ^};k|4ie28U-i(tw;;PZ!6Kid)GCxNdMS zC|Ov+*ditp!oIO<%8~A#vyDAYieHnIeHD^7Et)VfOMQZ&>dAmoFSQAVTUA%Go|$2{ zRdeYU;U#XHHMUl%PB>_Jaz*ts7B+)y)d_5y8%&rO7;5Ci-P1p}p95ON;OXk;vd$@? F2>|~dNpk=I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/synthetic_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/synthetic_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..836dc577048f5e9eec0f25a54066ff1654734326 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07lAyLEi`e>b=PIXV9W1Fs+3@n2dxEi&Lg1H<0sQ>t?k^fi<>zw!DF)X7*9Uh?~yV1dH?+%|D}#9cOFYLrHYywi}N{zEZyHa g^Y3bg&-rs1jHwoh6=dELFDb6!t3`t+`L;gB-@ zxr>K0=JuCmjSL!L+6@&E7dDoe?=_A1{ddPIDIgTe~DWM4fxQbKA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_1.png new file mode 100644 index 0000000000000000000000000000000000000000..af0de1c35a0894d71c752d3c81a8f0edcef6adaf GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0A`#GWYkg4RCVIPmV3h z&z{)VvwX??GGk*iIr&TjgT9FHLpzqtpW4_|n`5S~Vvv2V1*nIyB*-tA!Qt7BG$1F@ z)5S5Q;#Tj8gN%n2c$@>1Bp2vz`*weu%Q=RNp8vN_-)#~b?DoLvqU70yGdD`TsO`DW zq_U^@+*Y^u8UgjsW%yP2YTvbR*W_os)9AQiEtw}^lICJ?dCf15$#o4^mDcXPE&uEx Wi~3T(8&W{a7(8A5T-G@yGywqSnNfxS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/crystal_hollows/wishing_compass_2.png new file mode 100644 index 0000000000000000000000000000000000000000..af448bb8f037ec9677156b97759726cd79a3c63e GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08u*S81xv32<`EPmcBX zvMtKbp4iv3e98PWW8=Pva5FjiOap^MJC@9!+URa&ey{mwHBb*@NswPKgTu2MX+TcA zr;B4q#jV~GTN#fSh_D3KMi_pHUz=F^;KJmy-1^aPHfr%5pU#rUGvRNV;j)l!N!NF0 zcTN#mocrMWoXc#1yI0)J_WNMiv-5VFrc&@SXAZ{_KT**Kb*D<#aXmCnd>E^~&WY)C TVTk`Hpj8Z>u6{1-oD!M>tAhEsI06!8Y_{K zlCsx9A}}y;i-eV}t+T$qd7^}rjEs`yvq>9)N*POn{DK)Ap4~_Taw0ul978H@B_H4_ zd*5~`H?P{ka^moh(ZHp&#Nq1~?4m_b!#5-Z*Sx;4s&1@%bJbIL3mCe_&@W~u0 zzDbY#Jp0zLXg<4{Be{?5NP@-YJ+F9zh2x@6J_Ey{g9&dA?3CjK P8pGh}>gTe~DWM4fKL05x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/biofuel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/biofuel.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c15afd746fc904c240a6cb939bf5bb2cf977ff GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9aBGO`!Be+>+b>9KvK ztLs&0xK~WfG*rRN%xo?LgOZX`Hqa1W-n$!RCj(V8mIV0)GdMiEkp|@Wc)B=-RNP8F zz+CbEkc72*!P+R+w70PuGP@X#?9$%)EQGgXqd~w0kwXF^eELNUhCR-wuR8QRUg-Bq rQ(7GaYPi=SiOd>R~Ji@(X5gcy=QV z$Vv2caSW-rm3)BBf~Qsb0FSeyW3s?m9gY+U2FW#TO^1&0D!8rQSZLmH@anBwcWW6> zB+R^cYp?v7fZ4_GVV?#PIfM3-^~3&lFsk`J+Roz2k;I*9YeJ?j^x1qCC#+WZmz zzg>0XLk1PAeG0D?Z5bvzD@s=GKW+K=yTai*0p+6eg+Iiv|2y7#ElY0aoKu@h7!FOA VkkzS{y8yJ8!PC{xWt~$(69ABRR5Snp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_gemstone_grahams.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_os_gemstone_grahams.png new file mode 100644 index 0000000000000000000000000000000000000000..1226374040aa912f517659fa06d1c7cd83199886 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0EsfHCx0arP8Y5MON`F zr@mzMthaAJt0~X{onD{YguwT=bYM9!f3-oE`@ zEUtT_L4lK#=jUSSO_3`9|2X`=>UdMTtpccyu_VYZn8D%MjWi%9#?!?yq~ccY+3SqX zh8)fp6#@_c`@Qd8t$jc5AGfc!cu)Pdzb>Bgtoc;>$ED0?Y-XptNyxjV%fOfMnA_v( zZ4U8wDW@_*4QFF_r}R1v5B2yO9RuM0>h8hE&|jJ$seWL6O5D z@a2vA2h+EG|Ev+<_w+Wy!_4xVj-l#B`;X4oa@nC~94xz2Raju76PvDsic!x6W{z@u z1wl6+WeuT5<^#GO%pwidCpq{P?@v`+@cs?!nvG1`qR#Qg1Fd23boFyt=akR{08BbW AbpQYW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_tankard.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/dwarven_tankard.png new file mode 100644 index 0000000000000000000000000000000000000000..400f1e2ff670aa7ef3acb308bef4eca31b4aecd7 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj{`>#q(bs3kuAW%a z5NB2qVHO@9o*iry<)UJ5Zy#zUFS2-{1yCJhNswPKgTu2MX+TcAr;B4q#jWH6OgmVo zu07b(d#de}v_p?>o0pnE+oX*rz7;7X&+MN3;**xb;_O=~YdK>a+_HbJTAFa|%F3B( z0d8eSN+!$_y{)7i)+n(%t)#5+>_a{Mc;1aU-_LQLC}U=Dye~ULp!z*O&?*K`S3j3^ HP6F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/filet_o_fortune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/filet_o_fortune.png new file mode 100644 index 0000000000000000000000000000000000000000..2a1fb614dc503282d254962949f250bafd3756d2 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=5%PU;Y2a|KBysP50OL z?5Mvy%_wVbbY*2_N=k}Jx@}-!pslU5nx~q+zPY-(&Qp=A$ANknOM?7@862M7NCR>* zJzX3_DsCko;3|9Hc1d<_g4p+-zP_344Ly@(Wo749H}qULwzf)t&umzBZq82WBPXo) z{ywuiorfo9-Kmpa$6j*s@H8r=9?J}MSh=)mU214{V~@GFOZZw__LL9%t&5-CWuI{I ee1AGzA&Wb$> zs-_(clNYJF9B{P|)=790!zopr0IkJFQ~&?~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/goblin_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/goblin_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..d649b4ee92f6f34268a6f66b530df5b4a036b90a GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07NLvo6UF>}!hNytMZI zx!E6{9b0aclLnMvED7=pW^j0R1H|$2ba4!+xHYG%k&~H`hiUJY-~DS`XZ>N&cR8nA zC7UoUk9)Vpf7@vFeXK$MLiiT_vzz3xP5xrV`Xu3(EG6p~9aYdimCw_t#Mb`iT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mining_pumpkin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mining_pumpkin.png new file mode 100644 index 0000000000000000000000000000000000000000..560be2ca657bd262b6e83266d735c7acd87c1e93 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C6#SDCfr{E_Eh%*jGms#_;t(y6nu|H9a@lhLBMXUzhj Oi42~uelF{r5}E*IO*&ry literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_gourmand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_gourmand.png new file mode 100644 index 0000000000000000000000000000000000000000..d45377db4b4d970c71ccc56f2b3f4ba81d9b9454 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v_@OKT(&1+jZ`_Sd% zAKv``|6f5y?aqVOwm>eIsTa#Ih*#${SYnR`0L)mozs1nWicJ%^nW1f?^}@4WSzsA{a;t|GM`53 eim!ezl;ii5FqRvve^LrGn!(f6&t;ucLK6ViL_yjB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_ore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_ore.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc48a273bdd6e6da21a2927e369a624940d8d6 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE08v}@o|fcj4v!~S+S*{ zch;2sCwD%+{qoO`MBdBIKxxL3AirP+hi5m^fSgoM7srr_TfJTFjLZ%kOt~Gu{bfAg zpR9d)o>VcRbrGrDX2ezvhCu9sn$vzqBq4Vy>@&_V`JS3j3^P6oIs4G%mL>a+ ze|X~>nj4kZtstY;&NAaZP@1tM$S;_|;n|HeAScMv#WAGfR_UogE@lIc=7*A7PyY4a zW7U1Z@&9)HC!hI#B=5L;#%K3S2Yu)Atmu*>i94sslm&^2ug#5_)Z?JfmLw>cXx0Bi k@M+|ZNIOk~H(l%Z@vt%p-mdKI;Vst0Mwd7djJ3c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_powder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/mithril_powder.png new file mode 100644 index 0000000000000000000000000000000000000000..50416efd01ec8698ddef1e86ffbff7a4eaf94708 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7bqyqSIIa$eg?*U(%e z3x5R}we)V&lRyc^k|4ie28U-i(tsRKPZ!6Kid)GC_#>DX^dy9?XjtUMG(%7&_|qz;%-j$4mt&VFre!&$&wj SGxb4+GI+ZBxvXpy$Le}=S6<}>~S zLH*wU7i3ywfD())L4Lsu4$p3+0Xd$YE{-7;w|YHW8Ce)Pm{`Bv|M7VjuaJNHeS3e8 z8_z@p3PMb)YWD6IoM<>f*VJ7;Oy%2?gOgTi&rrJ>%VJceq9WvTFy!6j-<8ZQT#Ovb TlFs%(Lm50>{an^LB{Ts55qUY4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..c08a6cf3c4cd357b20b1de5855e374d11584df5c GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07i}s`7e!bK&n7SO0%g zIJ#A8)$;%U|BJ*0Yw6zJ2b5+k3GxeOaCmkj4akY}ba4!+xHYvaRE#;0!`XAf;eY1Q z`e$F1Keub_h-EZ*xcpGwo33`|xqEe%y=(h0nIoS$IegMlzOM#syoX#~)PCN)^5+X@ yD_d`so4Iq$&mQRszx!To!kL^_^@c0||1kKy5ad4D{B{!1CI(MeKbLh*2~7ZP$xrP7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_mithril.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_mithril.png new file mode 100644 index 0000000000000000000000000000000000000000..1d18d7c2d6122a0b940fbdf87ed1e73ec047f868 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A^#&CP3DIs4G%;~(Dq z|Nq~}!e2o~tx!+v2T+c&B*-tA!Qt7BG$1F&)5S5Q;?~rzaIwP%Jcl_>b-u5^qqjQo zc|N!Q1JC~qJO6Im@H#uSK$dmlg1o14=_^{}`gXP5TAT6dl12u%vwY5Kx2mtN&g45S tN|4AYdp5<$uH$@0!=a7*0>5Wk|2L96aB1?rwLp6qJYD@<);T3K0RR#BOdbFL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_titanium.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/refined_titanium.png new file mode 100644 index 0000000000000000000000000000000000000000..be1d6397500a3e289a82e145de51de7337d177b6 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0EUK(+`V@wXm@*@9gQA zIlHL7F{`9hTv8G!_5Y5=F(AcQ666=m;PC858jut2>EaktaVtrIl|gD^vI+~6K-(e~ zChhP0*Y*lYR%y=I!~f^s$u)2OS~A9+5AGAzoUG;XX^y9a&GAs5i`7kCA`UqpL``ll q`(?Q6Y=}sbN?zynOztK7-*fkTWq#~$T^jSsCS`;^gEMY9+6)uWu;F4OD!(Ysxhs#aI&L7tG-B>_!@plj!N< z7*cU7`2f?7a%ai5ztRUxHWwaeTM?3BK4qfR#>R(c0T0j3?A*59`kRqKj+wBC$+o== zDH7aVQukO_?Yx+)p;OCv;=$e8n;)1WZr|Nqe$ZsP*TqRp0?qI5%zn)0QO3-0XtGRr UjSsCS`;^gEMY9+6)uWu;F4OD!(Ysxhs#aI&L7tG-B>_!@pljP~* z7*cU7`2fqY-R2GwXN2}IbP~H8uyU@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/sorrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/sorrow.png new file mode 100644 index 0000000000000000000000000000000000000000..9cfc523b63dbdc196ff3ffe88e5f2285c763e028 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`UY;(FAr-fhC5}9J^8dfaj1&Xb zMVtrS7(VeVzQa8u>4%7Nj_Mm-A5Nw=p>O&dfy8?epQ9Fg9sCXmO;NBG;M|qKwaRtI cKUtvRA_<$mO%!>w0ca|Nr>mdKI;Vst01i$o!~g&Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/speckled_teacup.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/speckled_teacup.png new file mode 100644 index 0000000000000000000000000000000000000000..dacb9acd427e82d241ce828169c5e6f12f6b2443 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0DHtTN1H&AD2y#L}bbG z&OMU?4ip}_t(?{pRX)cID9uIjNhC8$2Bh%{$lZLid*BI4$kfix8>C$uAf@)nng(EtKQ?=`kR-` uZO!*T;27Wfh#}I8U{~SKbLh*2~7Ypq)7w- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/starfall.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/starfall.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2f975a223b31ff4877892b480ac88ff91fdeb0 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=20&UcJxwnm*@PRL15l zN>4hpc7>@!38PV8Iz(iSOWSMhw5rBVq9{=(&P$@%VvpX w(>bjhB$7nmb}F#7yED6cGk08MI99;Ga92~zopr0KwHnegFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_alloy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_alloy.png new file mode 100644 index 0000000000000000000000000000000000000000..17adbf9c57998fafaf9e058a6d3bdaf16868112c GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7D~NUg@f2j#Vha0RLv!=m zRv!QGX7-`W?aL4R|NlR$q_n8Mv18`!^3EO$8{4p$SZzIh74NMvKs}5lL4Lsu4$p3+ z0XZ3-E{-7;x2Bxk%E;`%!+ao}E&G3JGRL&Qa<}jP4e^QR%8xQ{c^1Pm_4`uUkCs6n zw-)ZIde8jaJN5gyq@V{)Az5pmGhOFOy)vzctz*fA3YAp8i@c8eRCJe!Oo_@od0av? g?Bo5a9t8%5b&FY6M>ej%2egyH)78&qol`;+0Jln5@c;k- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_ore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/titanium_ore.png new file mode 100644 index 0000000000000000000000000000000000000000..789c168b5410c4672b242dfa78a9067260f2cb97 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{PZ9RPp8{4dsQcpks zu$b76nX}jLJHS=FauHCDu_VYZn8D%MjWi%9(bL5-q~g}puH%i&3>=3u%--04eCYkY zGtT2!9b?Cii?5b-v8=xAyuza@O;+LVh3Zq?J~5mix?=HRlbA yMf&XyJD(J|)tna{b9APAc+`|&y>mC`ePFLPW!ks(rs#W+vpik>T-G@yGywo~ut|*o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/treasurite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/treasurite.png new file mode 100644 index 0000000000000000000000000000000000000000..b5b8a3615b9c7e3b6e7e25b0763d28876c031316 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09k261p=@_~k~?zhC3u zKlfc#A-dboTtwf>Tr$;+v)tIl;KY9W`=bP6J{*X)9+9a>z^KLeNd6} d!5jP2Y}>vv#wuJo@*ik8gQu&X%Q~loCIFLGKf(Y2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/volta.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/dwarven_mines/volta.png new file mode 100644 index 0000000000000000000000000000000000000000..e9bd6e2e739d9f1508d15299683cc0fbc8741652 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0C_=`yU9*XZ&YKyTsn` zfBUWf&0Ze2ff9@*L4Lsu4$p3+0XYetE{-7;w_JQ$85tZom_okY|FOQ-njz-%7t#M( zdoJhBTF7iU*I>5ei@Nz;5}|GLTUL}BozP`$6`7dFDy}?dPJ*1DYlzrSgM`#+i!J9o r?4I}Z%4Gkqs|0h|q%SQncvT$ z{~x*-Tfnt<@pGYh^-ce^T{qWp>#o@U*r7S_%&kQeL_4y%5>9F*opsw=DQY0yDLHp; zYtP{mx85w_wTk+lvC!3Y*@ROMcIgTe~DWM4fnNe7M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/amethyst_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/amethyst_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..32f3ec706af922ba31873c7b36ae6d4adb6f05c9 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{7D9-m^-J5mh-|1)P z7kmz}?E3%r>g36jPn?jIEGZ*3iWAaWKrZ% z_UwLZ|4#DK^wkO*zi2KkU%5vx%J3ia&8I)rr*FzxbBL{&xBHGjLr>fswU*}Hj+!!$ zbCZ|1Gw;+);Cp{!!P*OoUfzZ#hd6cRq8ABoKc}s;w><5(`=W%Ws87&%gSr a!hTx`k7eSA*G53w89ZJ6T-G@yGywq7c3Ld} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/aquamarine_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/aquamarine_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..27f6f4d3055b76e2785480b4651ecd5f23cfd7da GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ETnQ=wFn7Ib>g+D~t4 zUOl?|^G8EN!}|5>@7=q{{eJovpbEy4AirP+hi5m^fSfE(7srr_TcLjJVoU)XUXAwe z>L0#n<^4YGxPaP>n!n*)-Cv_K9RJF)OKnlg_C2UAVEm*kbEVCc-l}5p3B1R*q%D6~ z`1nIq*`05J*=H|0b!RPk;8oyL_kL~I^jfax?~2cDJAcCNyKB029n)PGCeOvjj{AVN OGI+ZBxvXcvT$ z{~x*-Tfnt<@pGYh^-ce^T{qWp>#o@U*r7S_%&kQeL_4y%5>9F*opsw=DQY0yDLHp; zYtP{mx85w_wTk+lvC!3Y*@ROMcIgTe~DWM4f({RWOzW`2{mLJiCzw5}4P4BHhTc*^EgL$u}@g?q97S?dpU`yzh^ro{9ee!2B g7*;*=S!2e`u+UFPX1AeY2GCdrPgg&ebxsLQ0MsKyT>t<8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_aquamarine_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_aquamarine_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..6d88db83570db6940d58dda66c8785708290e678 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ETnQ{lX8<=Rhgf==(b z`}0T5t49Sl&MTFqNyh~KVy$Nds$eV$@(X5gcy=QV$no`baSW-rHO0r3sX>9E*zxcG zgIHbcBtK^?&|n5nS3j3^P6ouv$+!K~ZAK9lvUz3dWKkzhDN3XE)M-oB&T3$B>F!$p^S&fWXnDd%~nm znT!)2YP?B$B*&S;VyUIQySz!F%S}sA!EM9DNtrIH9!ESauP`6cF!Wrlah}EKMy&JY jAoT{GS)42txhxD(9fE>Ixevbr&1Ud)^>bP0l+XkK+s!~Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jade_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jade_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..863ff89a42cdc4ed84ed49aa35ad00c8a53891ef GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|G)JA>Zbeadv?@k z&5gDxu{KG!)eh5B^Hfu`mJ?PMyjdL}2UN#c666=m;PC858jus}>EaktaVz-%S47Oh zEsKLJXFSw+^Jo{t5e}0ezMBk7B3q~SgzRNQ9VWvDl1*TWg=?bzHooASKMe;PXJRp6$1}G|&PDPgg&ebxsLQ0Qc)hA^-pY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jasper_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_jasper_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..58d28608be8d0c627ad4245e352946041ba31153 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cbul~QN^?ya!U0?G< z)*8XV!3*Vijg5_)g;~=?*fcdY{Uto-U3d6}OTP za7Dx{*fP0DWyZrL8Y!C?&j^?WG8#ismt3#1rJg8YIR9G=}s19Ad9T^vIyZY3Y!zI5rd^?@Fv>07)6 z&dy8939@56@u0v@+n?R=)|r?~ryPndUp}pM>q-O9xlP~H4zjRK2$-c1z@Q=`V#t`Z jC`H{an^LB{Ts5D!e`c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_opal_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_opal_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..8a09aeb920c414d0e4a40bb3db6d8c01b12956e2 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E07M!uBn@{eCzH1>yG?e zz2eWF?_VGNKl1ngp}pU~?YZ~=|FeDnUmRS2_~QNlhx(W8`1617-~R{x|NpuE#GSiN z>rH|B8B2ovf*Bm1-ADs+Vmw_OLn?0dbRA_pV8FwCc+QM(@mtUApH(~Qm-MD%&(oKw zy`R6~+BJEH6FrOV*`7!QbreXmwF~6#XjmAkcQdk>Q94QUruEvmCx5ly&i#Ha?t#L$ iKi4bQR!UC1$HEY9$&%#$fyEqX4}+(xpUXO@geCyDC2g(% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_peridot_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_peridot_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..62e4111a9e37f946fc84203faeb4e1dcfbd1d9c1 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=6qn*B-uIFz;Y=*Fu~0 z9^HUKDfF!$p_dXoSnH3luX#vSb46xzBLPAFiR5V&Sd$`YQWDH@X6t5O&wb+z2Q@)QL5 uwqMzBg-u}bQBxD96AYWItQt(z7#Iq81tlkjyw(I-#Ng@b=d#Wzp$Py?sXiD0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_ruby_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_ruby_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..edc17a6a8e59879218aaeaf646448fb3eb9a938e GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0ES>VC`fOOk(0$z%9R1 zM5~)ewwznKnOi2Afv1i^pp1b(h=D7EfhU)N_qx5;Mh40C{3_cSB>y)p{eSi0bKl4& z<%AlbDU2mSe!&b5&u*jvIa!`Ajv*DddQZ7Bu_*GmTgYUwA;<{~p00i_>zopr06qg(+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_sapphire_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/fine_sapphire_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea1b4ea745925fcf5f673ca6d9a3d2bb69f6ae0 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A_v`%S$5oKWJXxexvW z!PQUyGxq%ybeSZns=ILColu|(#*!evU|!NgSt+3%cU=$J^PV2 zp~^L3u}0L@tH-(O_lwsbaopbP0l+XkK#1zC5je zcp>}Z_Q(S>9XIq_%_`EZa*>QR;q6HgZUU-fED7=pW^j0RBMr#$^>lFzskoJVfbGWV z)7%GooK%-;Y-m`}?fsHXp*c7-V5jV%0JE8li4wcdwHU-)UfA-sVtRa^!?pk=?#&*3~wyOl}>9lO92gL@O1TaS?83{1OSHHNreCa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amber_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amber_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..abc23c98a084c995642a49b92e8ae2045ab5dca3 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;Mto0=L0`2V|ZB0 zurrWhh8#mDD?=tbLyF+4mp~PaB|(0{3=Yq3qyag;o-U3d6}OTPa773&=y5Pz(J)ES zMZ@Fb5!o{yf~8#S7jxY7j-?7a^eC7=4-#lrzG}&P=7EoY8MC*ckGB4Kme-GbcxN*h g7C!S?W5&#IwVD6kzWoc@fd(^py85}Sb4q9e0H5JMhX4Qo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amethyst_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_amethyst_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..b3cd86e35ccf676f970ec00f7ab4cadef69dabbf GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cjUj29a+4%*ZH}`$+ z%{r6szdFRS%Tc4)k#p%spfqDikY6x^!?PP{K#sSki(^Q|t>gn-F?SS9x+fGd&3O1C zCy7x^z%Yn2kHIh`WKOUm&(jM*2F{jOw(=ZFFfR0MHgY<2FiXPg@@b_5&k9-?uQoZl cvxm)QWcB7h{)ykQ6lg4ir>mdKI;Vst0L(Q&B>(^b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_aquamarine_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_aquamarine_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2bb1ebd53665a00cc476f6791e6fbb90aa40c9 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ETnQ{lX8<=Rhgf==(L zdG)B^#(AZZH0hW?_b=VYfYOX5L4Lsu4$p3+0Xg2DE{-7;x2E_WWn?lCP`>qUzX4zP zyeH!O|1b+#NWOm4tjcT0H09elOQ-CE@p-3|mOE-4h*GwA^1(e>SBCfX%=@1k6ZzlB dmq{lwFq}_doVRCw`U0S_44$rjF6*2UngB&wKe_+_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_citrine_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_citrine_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..98394a547e8241ab57c1bcc2bb8039f0b7dd4934 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9b4;O&L~*QS5iS9Whw z=-~|e)loK6Jq)Y$loJ#s{2T4Wfr=PQg8YIR9G=}s19AdAT^vIyZY3Y!_UVbe<6yFR z(t=Hy%o7rqXuOe{$eLoowQ`2b879Lyb9{{*dj!%`x1Z5dP_{UtqAPSHqg40(n-xq( n7KbjKIxW_~6UE9>k;}rc)nDj|L4(*9py3Rju6{1-oD!MpBlbD#kRYRfKH}c{U<}(3?h2KsvY0eXR6SR@x s$c$GPFLI_8=)I0$HJrumlFY;~?>j%!ii9P`K=T_?>J^cKEK% wy2dDwoc`>TsI&vmyV%&}if+a44`vxNEMpT6kZW}61e(v_>FVdQ&MBb@07w);4FCWD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_onyx_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_onyx_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..0b1ae6d64e1676995a33907a9ff35f7c768cb323 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4%B%xrBaEH5pHkBbZq z^0Kiu*V0swmJ|U>#ismt3#1rJg8YIR9G=}s19Ad9T^vIyZY3Y!zI5rd^?@Fv>07)6 z&dy8939@56@u0v@+l$@s))|qbryPndH@9fry3)YoclDdvL6!-xR%SLiFir>vIKtA= jxoU2}VoUXet%3~qHwx_g%)i|jXf}hVtDnm{r-UW|ggrt* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_opal_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_opal_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..3c3c60954d2541be095ecea7c860454b685028a5 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07M!uIXR4qi)Lbv#GK!LLEft~4>I$L%cDC#H( l8y^*%B{W(2&BTZNtogSDBo6%Fb`NMigQu&X%Q~loCIE)@N-zKb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_peridot_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_peridot_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7e9ccd6c34f54433421ece91f3b85e13f73046 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ET5X6{;ObNF__yo1rN z{@2(PFZVYnzopr040q_&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_ruby_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_ruby_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..5f30abd9aeb24325ecf8ca19c3726dcd53a4cba5 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ES>VC`fOOk(0$&#w~1 zz?Hr^rltR{K78&QIrC@NCZIaTk|4ie28U-i(twy&OUrrl>3fs;{Vjf8$!yh zl@4nEL{>?AbSN&;acFC}C}ZHF$#^2lwnbCD=bP0 Hl+XkKjiX33 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_sapphire_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_sapphire_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..08dfd27024c00bc1ddab25daad3965763936928a GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3eP{h#~bf5yI_j%&Y( z*Pj#3*)Np1N!7Dn&}EW_ZLFlK?pF7*GeC8WB|(0{3=Yq3qyaf0o-U3d6}OTPa7Dx{ z*s?glV#Y&_H;aN8(j>T8eHl)2aPQn%)g-Y)GQ=x6v?N_mP6^>pG wD_wtsA?eJETUXiA3f@O-luj}+?>NT7u<^Czopr0M-plk^lez literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_topaz_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawed_topaz_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..a8da09ba32d187571a827e9e27193d3e3d49d60f GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4@NAO7}s$(N_~4=-e2 z+#Y#grsIZwt64?5RW6dTCcHiWn=S(tF_r}R1v5B2yO9Ru_$=Z1gd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_amethyst_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_amethyst_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..3411f0a4fc55e85cd47fdb1f402c2b3f0f0cfb3a GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cjUj6^<-oMk&&M)}9 zx$kpt)|q_&)ghK$jvB=YD#u>{RWOzW`2{mLJiCzw5}4OYdz$+e*%sgL$tW@g(k87SV9kU`yzh^ro{9ee!2B g7*;*=S!2e`P$wzav^Q`=KG0YOPgg&ebxsLQ01fzpg6L4Lsu4$p3+0Xe>&E{-7;w~`MqUOIJ9Bzo2+wi&Z^ zGNv#liAZsEI!bu8t>kr>Wg8MbP0l+XkKdW=CJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_citrine_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_citrine_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..7478e9d8159f745b8e269a4983ba0b29d18fa519 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df7DfIuf=^yr$9nP@- z|Mo()p7QD_o2ed#35pWyA9LLYs$eV$@(X5gcy=QV$Z_>_aSW-rHTQ%mBZGm!fdlCu z^mq6aZ+`l~c+Sbnr4x_W9SyAD6A)5WOX_CTxfL%b@&8bT*?fUVg4eh*HyoM$^HgTe~DWM4f(?vhx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jade_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jade_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b3545589fda9e1d10651abf98ca77c2c2cc334 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|G)JA>Zbeadv?@k z&5gDxu{KG!)eh5B^Hfu`mJ?PMyjdL}2UN#c666=m;PC858jus}>EaktaVz-%S47Oh zEsKLJXFSw+^Jo{t5e}0ezMBk7B3q~SgzREKPzw`yX)vo~1JD8nPgg&ebxsLQ0Oztt761SM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jasper_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_jasper_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..62a0b1cc9cb457139851196948c5ea9e865f6134 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cbul~QN^?ya!U0?G< z)*8XV!3*Vijg5_)g;~=?*fcdY{UtmdKI;Vst04V%JQUCw| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_onyx_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_onyx_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..77953d74080eb21c23af00545a492ba5de85a10c GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME06{PX-N?+O$8fk^Z2;P z^3sB7I+06(qKqX$e!&b5&u*jvIli7Qjv*DdruH(jIS2Bvq<^aVFKr&(@5=bUU(`tG zbhVxA&d3K0E0h*Ks!(L&5xDzz-It`aFvDBoo_QXuQca#(1-rr-oG;ySI%Iz;xNgBe VdDTZ8#kC;IJzf1=);T3K0RYt&G@Jkc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_opal_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_opal_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..3c0cba4f272f13d2cbbdf4b80420bf75f63dc1ec GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cjfBF5t@bv%s|5ry46(`V%7Ki3YI1KZ0$RY}>FVdQ&MBb@0QV0@@Bjb+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_ruby_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_ruby_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..474110ec50b357ad7ee1ec5ae18f52c91c5f6947 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FGF5KLm?+0G#OI-%~0 zocaHzrT?!!)MH@H{T^%slx8dm@(X5gcy=QV$O-avaSW-r)q7$);{gMnBM!And;cFg zw^C%+;Tbv;TjuXR#aH+4-KL7j-E)^LdMdU2t-|+$xBqx|_|4wsKH+dBo9Z)@b%tV1 l)eqkOWe_U(X_cP5j#q9KlSpUu+ytQM44$rjF6*2UngH4eMUwyk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_sapphire_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_sapphire_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..c36bdd5845afb3c0058d857a14f5d463be4840f3 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G)a_|J(=vGxq&- zT>DMD{+v+aCP9};lB&7~Wy~dkDi}+G{DK)Ap4~_Ta)Lcw978H@B_H65a9&ulAi!#d zphiwg6hoSX7OQzfN{j29(@G9Jf})SN@hCL=y58JjD|{p%%q+K`MKjO$y~b>Yq%Eye omp4huTy{!#>UqX;aRvi}>~;Z*gs{w+K;s!aUHx3vIVCg!0MrCQqW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_topaz_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/flawless_topaz_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb30a3f9b6f66dcd98cbfbe4c436c95db5c838a GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cjJ^B0n@VB>1zC5je zcp>}1OverVR_!@pzopr0M3C$kN^Mx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_mixture.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_mixture.png new file mode 100644 index 0000000000000000000000000000000000000000..71c5752fc90bbb08ca159adadcea4e2950442ff3 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E09)DvNJFYF|`c#^9l_P zOV3O%-SqhXpND~U=l_2yGWtBn=9IB&Px8e)w@p_T{JZr3@sexH%a&yOH@Iuh_$r#S z|IgtEqT-s9c-_7L&0;JG@(X5gcy=QV$SL%6aSW-r)#KYN>g*^GQ#<>5eeK4%!GC6$ zray>x)V9~XUfTTX?q(L>%Vl*=d6%|U^>Tc%k~pr#G1KEt=j?fWQjIe$YWCeJTrN8) zd(Zna7AX_apWH2*EX3Zli=SRG(V@Vsb-KpXbWN@D50Zbkq*X97^k@p!@11nW9cVd& Mr>mdKI;Vst07&R)l>h($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_powder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/gemstone_powder.png new file mode 100644 index 0000000000000000000000000000000000000000..b537ce9e8c30471853894edfc36ffeebe8cf1cfa GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}a)3{WE0Fe3YvR%`yRzWll55NL z7+A}eWN&IU@NaMzc9@#P#G^gqt7y)Cod`osP0hQ$<_qO{f6T0H7H0joeuAE;^qG}D zQ(~oq7`V1GNN(=@^XFmUpTiG66&Zb=V-u|{c*HpQ9 z9rgeJ|37i!#N^47)jZYqPmbLRRKZvhYZzp{B{KNF?22=8vhrcy} Pwla9S`njxgN@xNA;+Rzopr0CJID{Qv*} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/onyx_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/onyx_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..0ac04690714f8d5d3e1aa9eecb127ec5f4609315 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE06{PElmX*YxDBbg7~;d zX-SbKix*6uJo&_l6aWAJ&yz5I2~@#Y666=m;PC858jw@u>EaktaVylPm61h}N7=Lc zt^GU6OVd{?Z2Y3Rw0z|r!6?Ij%r~F@RG+>nXU!qDV&3jM0u4QJbJSXzcROmzJkCvC z-p;&JGlB2@i3MvfD0+DtnjGTPm5W{^y#1WE&ffC0^D^ZOYp-96k}ba#8a@B&s|x#V WB|MgiA6^@QTz`V)7KR-Tvy)WcX3enmRT)U_)T4^lV@wX0uJiy@T>gTe~DWM4fWQuCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amber_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amber_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..da177a939e639b0823ee6e5bd424140c7fc7af80 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;Mto0=L0`2V|ZB0 zurrWhh8#mDD?=tbLyF+4mp~PaB|(0{3=Yq3qyaero-U3d6}OTPu+4}NR^U12V5)KW z1c%NN4V@K9d}5v^gbP0l+XkK|Gz$= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amethyst_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_amethyst_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..8703affe97f5622f2f99076b27d6cb8b0c008a01 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cjUj6^<-oK|e|DAqz ze!=I>eV==?&gA>A4zcWV)F}RZFT)0?h_NKdFPOpM*^M+H$KTV%F{I*F@&UFPmyHy7 z+{CA|87N;g)!}lH?&4TARgb~whD@x}Ek&NI7bFwfCTq7Gd?+Txl-M%0s_CkM&-*!n ntY+=2lYTLETwEQNxK)ZFB37j5NFH|q&}arvS3j3^P6fzpg6L4Lsu4$p3+0XbowE{-7;w~`OA&5)G1bjp#(ZJS9d zuYj_l=LHRB4{0uLsm?|To>sT6mAnqKYy%=pMa~q6d2urv$AsKD;N>;Zbeadv?@k z&5gDxu{KG!)eh5B^Hfu`mJ?PMyjdL}2UN#c666=m;PC858jut2>EaktaVz-%+l+`9 zMIJZzr9}pZ18*KJWtt%$g>`rm3mvFChX1uPp1cff^V~g8YIR9G=}s19GA~T^vIy zZY4V~`53S%XKPFm%$dZxNVJt@YAk<4MB}=J&lK3EC$8}RVIy!@^T<}AGX;E{vp4e{ z$?!aDQ_HucqV@J1TYiV0+jp1y$1)gJykAqvZ8+<@9J3h%!;PEb--{JiYz5lF;OXk; Jvd$@?2>=QONc;c* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_onyx_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_onyx_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1e72b0098120387926a8e9c0cf203c44ecd6fa GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE06{;B}KF}6>O}{=;5gr8c^R`b-w Y$aYyUX|J|mdKI;Vst0APDI;s5{u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_opal_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_opal_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..a4fb2077577584f19ae6207a5efdbf1b1f9dd36f GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9aP;LGp-g{S}5Uwi!a z|J9P7Pw&>BxYKj=f8UC~{mXXrH~p@gvOFZa=J~qw(|{TnOM?7@862M7NCR>rJY5_^ zDsCk^Fs(6QOLk|UGBM{G!y;x^*29|)D)qXZx~DKpIdJKY6y}b^RdGhLM;@4(&)@fn zsl)JY@voKa3a;kfS=Sm%_eK_H$;~)ep7o5m2H=Aq1$1u_VYZn8D%MjWi%9+SA1`q~ccc0k$)zPpda% zlnGwn;3Lo-8{v7B_e6r2iHM)?S(dITT}yYlq%=w@>Pdw<91AfP=SZHlx?6b0#xuGe zn#@buv==X4oXgm;QD?6W_X&ngVQZN#&0t^<$rSgz^0V0iXbpp>tDnm{r-UW|a3Dw} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_ruby_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_ruby_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a384ae17567c89545d55694b0b2faa164bd8ce GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b4;OfKwO-o-V)LoG? z-_9V}$sm}-#G}W+`uh0vn?MzeB|(0{3=Yq3qyagxo-U3d6}OTPu!S7H#C3p2F?o7{ zz*(&|OWs^NaNvMShK5MiEKU(mG0sxXeiox37iWbYp-}N~{s|$OE4@8fIxbEVe03{~ wGo@f#c}a*5gQUq`9a#+qp;?y2OlGSYL)VGQREt?(2U^77>FVdQ&MBb@01THx`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_sapphire_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/perfect_sapphire_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..be9941016eacc21ca3a021c5893dae6d1c190c21 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|G)qF|J6_b=RWwK zvG1qj+Hd0Z=Y$eB3A#*@RMmYcx@s>_5o1Y^UoeBivm0qZPMD{QV@SoV1zC5je zcp>}1OverVR_!@p6XfaQ7*cU7`2gFDOP7QW z^th-l^$<8K_Ttf`T?{7zLB~TG#NswPKgTu2MX+Tbqr;B4q#jQ}ERz?;@9%aw& zxAyNOFHK*qu%~5M<-tDL<^Efwo zc{}q?%>=&pCl;)|py=goXmW^CS1x*y@b+`sI(y60&dZcDti66MO1At~X!QK6uPW@f XmGD?5et2yJw4K4z)z4*}Q$iB}rju6t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amber_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amber_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..57b59bf9ef8db3d845d355e67329a9e3c435ddf4 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CTc$FMVy;bASqr)3QP z&j0LR=1enL-#)-o9|c?fGMHhp09lwP>cG-J}ND|7F!RGlw+ XU?F3@#?#;ipqUJwu6{1-oD!M<4vRc* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amethyst_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_amethyst_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..caca1e30906bf478c3a38cf993cadcc1c969db1c GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9cjUj29a+4%*ZH}`$+ z%{r6szdFRSOUfp=4JgN0666=m;PC858j$1b>EaktaVz-%-;GO`6na!tOFJ4SFS2ww z;A$bGlkj8?SK1PZnaji)SYmjBFFP`=T&R`6*tThczy=2A%195!mWgtFhST<%FlGfy ctvbqZa1!4d7xvF}K!X`PUHx3vIVCg!0Dw3@CjbBd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_aquamarine_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_aquamarine_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a783ba5d9f6ffe9993fda6fc2a77dece6e00c9 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4qa{#g6zP0g!E1vkzI zo!;ZTYo+#_3Z;^?$@6Bo0HqmAg8YIR9G=}s19H4PT^vIyZY3Y!zI5r*L6g~wHe@n( zOjKEsBEpxnR6|OetCd-D=`lU0rdJMZ)vG3NE@JTrtX}CI!Q62%EN&iSTEPhV=D*}P~X zbBp4NB}{1+lANoXGQ=Dc9~THThX&phJ!DW;c$UTRhSR0P=}i)IUS8H-ePCBu*qJ%3 lX$89LV-7GRu051x%)l4H>%?Q+D+Dx}!PC{xWt~$(698fdL;?T+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_jade_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_jade_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..a2b48bd6ca80f340a8a42bcf9ec50b9fcb361c33 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=5@DukYDWpEWnyro>u1 zOi$5TPFPv+u4o|#P>!)A$S;_|;n|HeAjjR)#WAGfRr+2Fm?orF$pFl_?K!o%m|O`yKBdA{xkQ! TI9|ajppguou6{1-oD!MgTe~DWM4fT3$g~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_onyx_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_onyx_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..f18ed360c894d78d05b7086bfad12793a831532b GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4%B%xrBa%u0(34f3+F zHrLWrkd_nyic1!+3I|e*B|(0{3=Yq3qyag;o-U3d6}OTPaNoESqtLTN;j)Op**pme zsW}WuEVH;)Su#kb9z3+rQ_P{Qdey{DnQRjTpUj&!Esil|iN?<5p*VFA!D}e?xc)I$ztaD0e0svQ9JAwcJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_opal_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_opal_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..b37bffdb9b2d23dc5339e7d1b2aa4ef9008c454c GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|9|%W$Jy8aPu}~m z{=}XBWjpGoEDy=9kto0Y9w^ON666=m;PC858j$1d>EaktaVz-%zmv1D!j?%3Bs$WB ziwcEUI8|3^a9N5mNUA#eHTgYqaGSj;yQ70`!oi7ILRqgEgYHgDk(qXoA+2?(sewa; dY=tfhL-i|OF!$qGU&v(*}2nz%mX5I8HQ zvm)gdLy8LL%o$6XB+j1lJM~V1&3(gWPpgiD7X)WbW4w5eO^m^_?7?<+2Bl6OfymUo RDnPRsJYD@<);T3K0RRMrH%b5i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_ruby_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/rough_ruby_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..46100940ff989ce948d4946e2904a80ea90239cc GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9boKK$Rb^to^3dVZDd z43eD;f=Ns~K@41a46NZt&2@n)7)yfuf*Bm1-ADs+0z6$DLn>}1AK;$R>#WG5?D&*n zL&Ks)3$!`{v(}`rh-qo_nuQs$8!cOY)}xTka9QZIo#_=#E@|gS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/ruby_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/ruby_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..5100cb54d439550cfa9ea9693737dca2e8ba97fd GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07N3lWY?b-6Ep=KcnM| zv{|93*#B9x8X6kbuU~)f-n|zW)?5H8Vk`;r3ubV5b|VeQDe`o245_#k>eI@|qR6A{ z+5Oi3o#dtIs}(kW(Og=-a*tq?;Xme^Pk*XU-;}fF5L+>C_Z@+Tp13(`EzP?fHDw;> zCNFPi-l>_u_x{9!wHFkTG#5B@u@ z{r3O={}U%pOrAVh)OX=}>xM3%3dWKkzhDN3XE)M-oGecl$B>F!p?>Xx%!VA*i<370 zKXfs+fNSsK=R))9oBnINZm#3jU9tbMLv!GnTZ<-$c4TuUoYYD>>$bO2)IhpZa_-#L zp2H_@y;;I*74Bq>|MbjxJK?+MAEsY7n3BId{H+PJ OmBG{1&t;ucLK6Tf5m{^i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/topaz_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/gemstones/topaz_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..d9df02a66a11b16d7773bef6a898baddb2d7aa39 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0B&g;hj~adtj#Hm#6g) zFJxD_NdEu#Wb)+6Cr+IB|NsAtDgF zdv?FIeLX;ImA}X+kHo%p(k#RT1)e8M@^Z> zxyj4hnRjX?@V!5=VC@A(FKUSh)ZI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/claw_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/claw_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..e3325c9bc9c02c6fdee4968efbc2014ea730883a GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0FfkXRZjBU(w`xX>DPe z3+HUs?FK+m#*!evUZK{)^b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/clubbed_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/clubbed_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..bc1dd847d34ffccfbc253ae1d57ac2c6e195570b GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0Dglwy+{xenpe3hdy(f z3+IpRKPLf28B2ovf*Bm1-ADs+Vmw_OLn>~$b~y?$C~_QL;QRmo)6|lyF*BB2as4_W zWaG8i9**d{b1vi-?G0Ej^jcK=K`_seyBoF`Kl-v@Z~y5_A%CqS6mH+z9e9T)_@Bs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/footprint_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/footprint_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..bead595a94fb6cce5d09b9ef05771d926095fa88 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09ie;q=gFUeV;be`Z`o zxcsHHg^ZqR4nPUUk|4ie28U-i(tw;uPZ!6Kid&_pT6viRM4T=v&HwBEZt^YxTl1K@ z_h;gCu7B}3ZaDcygtnq?Q0O;@1ewI9TMfdSb%gKmTRS+dmnu~gh<;)hQc=M7J7QY4 l&7|p1b#3*wZ}^%YF1nHN)q;}7GeAoiJYD@<);T3K0RW;OKGFaH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/glacite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/glacite.png new file mode 100644 index 0000000000000000000000000000000000000000..410f421b92d2f3418fefdf9da6edead5837c6424 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=0`Ry}R)7-LCtuXRLiu z(fuQ-!{s9W`xwA+z|6iM4URn?z7a4SVPtB`GYd^iQ-8A>ZzOuu&3ts)Nop&(0YoU#O0&h~ubt8wa z^d8-6J!R>bz|~PU&LL~Bsn6I2G>)+($S;_|;n|HeASd0^#WAGfR&U2u#)bf%BU$W^;t5hAV|b^EPN!kX`=GHkRojE}pj;=uN>rgiU|y7pZ;4oP}V z##?+Je|UTDvqt(&72j>|iz2Q3H?1w%dnfhOC7bzX^)t+#sB0%Vviw>FVdQ&MBb@05Ne@C;$Ke literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/refined_tungsten.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/refined_tungsten.png new file mode 100644 index 0000000000000000000000000000000000000000..d83dee91544b50f92bf74ccf50f7c26618616883 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0DIfHY+R5^7VC{I=N;4 zo^@+i%~&+QPhMUYDAh4JBNIq5mIV0)GdMiEkp|?1dAc};RNR_+f|HBMK*0H;%H}Kg z{_k1DTk258D^MZ-zvoLa3(LIqf-B$TeT?2~6dSQPCe$+^HLCsAf=yx3j>mX+DXF$k q_;vV(bU|T<^5VWXm;v_9h{P>!)A$S;_|;n|HeASce##WAGf)|6ABV$2FWE*Dc&-qi2k+W0E} z<8QvN=U>=8j}Be)`|H{~FSVbObfQDbZ0>!onPIrv^xKj%%fd|kI~^FTm$*2{B`~S5 uA9=Rw)=`FwuRlcAeUUh#>LB-#fnnMW<`3^`=HCF?#Ng@b=d#Wzp$PyUm$yw5gufb_U5#2Ehyl9t9b-7035)18QR|3GxeOaCmkj z4akY{ba4!+xHb2bBi~^K0q2YP?WHq*-`^Cwy-=c6_{mA8m(2Mx-D`P^Pu@E^@4ywq zY5$(h;wk#~)q8@Qkk9;6O7j|+Y(*LcC$a>YANjLOUueg<{u}E{UIp@R)r#A}cqUU> U|CpKEaiBd6p00i_>zopr00%-*WdHyG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/shattered_pendant.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/shattered_pendant.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2a66da321a4dc38895240455082bef8923dbcf GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0AVlWVA4}^bUxOEJ-{! zzklAOnwkaE#iS)V=ge^p39|8Wk1HxvH_%a1P`7rE^9E{QED7=pW^j0RBMr!@^mK6y zskoKX)h_C6$ibZX&g^%;v}4t$r$zqkB@=C*d-ZLc{CdvjZ}-?aHycQ1>@?-H6l6$k zdOs&^u98yG@|Sa$&PrMT?56LOxh;|1hbj_N&DzB@c><@p&YG1pq3NQiQh?$Hy&VrF r6(s^i)uyL8JTWZze!D?Lje)`IAoF70XFT;lM=*H0`njxgN@xNA6(v(7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/skeleton_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/skeleton_key.png new file mode 100644 index 0000000000000000000000000000000000000000..d97ebc171a39333ab59853668d7c5a4e09b616f4 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=35-uRk}xzh=Sod6R0& zO0!}z(!2vAt<9a77#VdwUAqWW!B`UH7tG-B>_!@pW8vxI7*cU7S%H^jrBg=O*J&&U z%}W~&D@RB25X>NLtZr4Jac?YBKO$uEdWfOFIkFT%m)X6P2*5+lUSz4M3 z(vl)JDhfIO?o|WLVk`;r3ubV5b|VdBu&0Y-NX4z*?$9O|Lk^bhnHBG<{zt#N?;~`~ z)+_Yz{q@`p6|U)W*FOE9)vfuw(s)kA3WvknR{fIDI$bPuBF8@`Osq2RR_RRcRhu-f zZjuw~JrH4hD|J@T>Aq#TQyY3t3t334ly>rX(|D)FVvRAoaLA4HlC9PMw)EvZWqp5G S%$Eb`1_n=8KbLh*2~7aZBx*7M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8f6281273a2a70a780c5e265293b6daf8927ed GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0DIfHcLs4^7VBsE6tiZ zxn=FD85hqT1d6X$xLFFM7)yfuf*Bm1-ADs+(mY)pLn?0doH)*S*nr15aH7VOf5Pl# zuM7(&-n0MTFIo3;qm;djzxl^4YH4TOeA-V<2>RHgahmN$smAe1$JZQ^yOAQ{y+(UQ za(DR}W+~sYyU*qYp9tQn;-E5T@2PkD=1!{ZKYoFcA%%;Xt0BT)7HA`br>mdKI;Vst E0L)}dV*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten_key.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tungsten_key.png new file mode 100644 index 0000000000000000000000000000000000000000..4ab7ec92bc499063498826310aade0a0e26436b5 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=3R|x0ID;`TDwATblv7 zF75rwK#H*>$S;_|;n|HeAjjO(#WAGfRwJA(Q<9^~O0%r3&AQmHD*>e$OM?7@862M7NCR?0JzX3_DsGjW4dgmtz|s70c+h6_4f9`c0k9|X*o=rVw78WczNo>X1#GR+?-YD(%NT2Pe=~kj>bArLa o)6esGg;&uXdy5+Ot?b*EGkX7J$~T&DE&}8lPgg&ebxsLQ0R1>b;Q#;t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tusk_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/tusk_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..02804a374999194b8206ee9b8f5257fcc4b780e4 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0C@TmrrxyT+!ruX>Fm0 zJ~PkipKE}kj3q&S!3+-1ZlnP@{+=$5Ar-f3Pc?ELaNuBZynFdybl;@@PYjk0HymGA zo-bS1abc4C`j^>^mpB&bD;Mlx*(}TYNPLk(Z|3&w74lPVi{wT>>eJJhX=hZca=(sY YQv;*Ni9+Q^K%*HvUHx3vIVCg!0FdQ7f&c&j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/ugly_fossil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/ugly_fossil.png new file mode 100644 index 0000000000000000000000000000000000000000..7d7a2ca5e511554ba414d7a6984236b856928112 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfkXI|0dS`jY4e`egJ zwS{ReoQeIymOu%{k|4ie28U-i(tw(H3a#5FU8}D92b50F+=X3GxeOaCmkj4ahO~ba4!+xRtEHE5YTQkv36**`WDkW9U(j3nv;H zBO9-pxOk{GHiq6f*{Ep2sv$0Q=zzc^uUV`NE#9mzqFd!>0F7YqboFyt=akR{0Kix- A%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/umber_plate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glacite_tunnels/umber_plate.png new file mode 100644 index 0000000000000000000000000000000000000000..d39c418a601303d5e301dc6230eaf84c4d8ee7e1 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4d`A|{mjHK#bY1)A48 z8&;TTMChv7s3?57)9nb9W-JNv3ubV5b|VeQN$_-W45_%4?7;YjHDH&Ctkd+CrD6@4 zm#>IS2w1qGyK{3UGjsc*jgu!vu?H-1y%50TVq9Rds&tAugQTjcZ0br;2j9GhsSi^X xCSJN?u$^l|rQSkO2gV88cocZAu`Lp0U=Tef)|}sr40xCwCVrp4L%iVQj)&nb`xkd* zzny+tM%iK?W6_%C{0lq!%nUhrdKNzAV!v&+?X63g=T4ntT_Lg;7Ro*|+M(-}d4KNi j`qBfh|Ia@Akcq+RCfC=KRSffhmN0m_`njxgN@xNA00csP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glossy_gemstone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/mining/glossy_gemstone.png new file mode 100644 index 0000000000000000000000000000000000000000..bcf1a1da5628e3c68edb750277bc1f2355f0f62d GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08v2s7@E#-lBVAgZcjp zasOY{|Np%9&m=}6ZlD}vNswPKgTu2MX+TbZr;B4q#jV~GhD=NbJWhcPH-6vWAtWaI zd-Bu9=V{0OJ-2*rynDqm&nHS(=N1-AsI1N7eSWmS{2pJ=;XL1YXN4}Vn49y{TxEA& gkIJTuJ0EU||9QoGfJ2;hF3@ZSPgg&ebxsLQ07*k80 zh0FHLn7g^TdwFizRNvq%C(k5peVYefmh3=vj3q&S!3+-1ZlnP@A)YRdAr-f#o;c2U z$U%hpB5%~+EA{(13ijMAuD*QlN!|3xm4X>=PnNar-xwr!;GJQb+4BjWnFbM3FMga< y-gfY!>eDM8?1dYmE?*SbTlZ&v@c+q|KHD8S!91}#(WwV$K7*&LpUXO@geCyWM^PRC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/aatrox_phone_number.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/aatrox_phone_number.png new file mode 100644 index 0000000000000000000000000000000000000000..6bb7fc4d61e8bc183a9b133a41a508832cb2d9bc GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=80xaqaIET9hu<=Ek#3 zTeiT$T2fLHD1LZ>pB#{4ED7=pW^j0RBMr!L^K@|xskoJ_z_o;xi%V-JqvXTZ)R(SO z4sBHvH%<&+(7@Z1o?%c%5z-Yzy UF!$p=`O5_$qO&RPkc z;+VrRwOgl^E5wOK$Yps~Q-<006Al|Vx+h!BNaM{3D`eJQIp-qVvUERwpN5PyeTR)= Z47aZFtjgBjz8PpBgQu&X%Q~loCID{IJ*fZy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bag_of_cash.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bag_of_cash.png new file mode 100644 index 0000000000000000000000000000000000000000..af61fe362321d2b5596f284e73eb07d1c8f8499d GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C^rFiA2}SQf5xw%W~K zTfj+60?_7m+twY1F z4Ic8vU;Y)iO}x0&EKaA%$jU>tpG`pj9WJ?2S9C%B|(0{3=Yq3 zqyag#o-U3d6}OTa7#t=)p2**>ySz6lfe zXXyVvHz9`qUF>@|x#RQFcz+kFIHcv>z827^ZvKa1GdoLDecH)5phFluUHx3vIVCg! E04|+mbpQYW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bingo_display.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bingo_display.png new file mode 100644 index 0000000000000000000000000000000000000000..399ae3dcc34a3be7566546ff34c9c7e4809b624f GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnH3?%tPCZz)@&H$efS0D`n|Nq;%{rmoEV*NoC?uU=Fyw9%_!@o*94EKh^#0HDdjB5j*UVm wd|6j9zC1BYN{Y)|V0mtZ#E&^0{f=@B3~?v4XMKBk{U*o~Pgg&ebxsLQ0QM#YWdRH?Up77gDq<-K@(X5Q;o@6)misi2AK>ZY7*cU7`2hbdA%&7k z4~ZE|=e?48#I}U>meU=l*aj!I+=Y277bZF^e7SO6?#hJ@$39(|(6uRKflPX2#*;IB pY!hN4C636flg#8X2xB(mX7ra3@lh&YkOefG!PC{xWt~$(697VZMnnJr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/booster_cookie_box.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/booster_cookie_box.png new file mode 100644 index 0000000000000000000000000000000000000000..010702d0f6c67b12dd31bb9c619b33894d50506f GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A_ER|{~|^Rm(U{~-D1 zWZ#Y$r-~5!XgAYTZ|gf*|IYzcFqQ=Q1v5B2yO9RuM0>h8hE&`tJ#jpd#ewIrgZ89X z`xAq!Eg!c3{C#o7a^;J6&1b(n*7|D#bFJzDu@lm+GBYBZuKndwdSSDE1LviA2U#P< xABdis*I>|iyh*aXsbFt{r`v6l>*s3U%k#G|m$`~1NrC_X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bridge_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/bridge_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..28845947870217a7bde0996fbcb5055f78d14c5b GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`-kvUwAr-fhCC(&>lx!*g<9ANmgk_HXRZ%HAAbP0l+XkKAu~G1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/century_party_invitation.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/century_party_invitation.png new file mode 100644 index 0000000000000000000000000000000000000000..0d771e2c6bed01de4441d4fb1c8e74f661320a53 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08u(k>WXUCDhJX^!CT9 zaJLLETh1BVzyD8kF;rU{FZTZ=+qrHjc`<=1UWTne)r=)Ue!&b5&u*jvIa!`Ajv*Dd zk`8b&gq~|}@;d2Kyce1|C-yWTQ|x~gau9sHGlTmOYgPTtcKo|er^joW6fHEHHAJCs?r{O4g) Z{`ekdwUc&A(C|*Y#5DR=xkYwa}mG<2;d8{%I%7oAW0=a60i_eDX<`O%p49 z%L*f8nvO~{{be`L6kNQcS7kokYA=Kp+#^R5h? z`uhA?|JnVIG1x9LHnwMDV^@@Hcneg)R1)MD{GZ|Jb^|XU&)?ImdKI;Vst0Jy?Iga7~l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/copper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/copper.png new file mode 100644 index 0000000000000000000000000000000000000000..18b35a4ba870e1bfd144ef9bcc4fe90658fe4562 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0FdqOvw*-p5v@G=;Gw$S;_|;n|HeASc<=#WAGfR+54|gVaQB>9&Ou42!ne8^7P5B);O1#u?80 zijQtb=6bkH&(@r}MCA3&cP75}c8VMM4lsT)d1%D>kiUBE rvunNAR`q{2;lKOkYiD z90ZsHH%)T=^?v#s_PPJxNi~xd>yzsn*=?$&fD|d44>X@>a)gW*OW0UHtyFwE;eP1@!{!9#WgZ3AR Rtw0+YJYD@<);T3K0RVGaR!jf@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/dianas_bookshelf.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/dianas_bookshelf.png new file mode 100644 index 0000000000000000000000000000000000000000..be925fbaef642f4c5bb5c296a20c6dcb94822329 GIT binary patch literal 566 zcmV-60?GY}P)C|J0tP{_W>agm24ZqI?R{MBy)fy z5Qi>Rq3f59czb(&^$aP=2L@r&YXZK1yuEscR3^s*4}z|j1o-;;`qT_*B19mHpzAfk z=g;@IW}u01y-=jQ8-kpJZ^vmO6*J~32@^6R{gOvn8GP_<& zfD{q+vToquC|RuQwS<57V1$b3dP$J2iRnyw&b{k3!Fdmmr?IK&{T_h##iM{2s(e;ub&U+yGH1|cXCpg9okfeZPm{BO!^nVFR6pG!Q;rMvQ4^ZQc0E;j+01^k; z`T?wfz|117`+s!(IX|EysDUDxVnmf*gj+wLnW#>7%LE6MjG|YK#N|u1Nw%(Mfab2UG-)#hHs_-B5&kKd6=kz#`Q-)sc%} z>jyYro@Dilh$w=sA8=sa;q2FY>jxJuT)1%I!i5VBzx$XNnQeiR+yDRo07*qoM6N<$ Ef~3;GbQsPSvk@~)amRqvn3-1bcF`JN-O_)KD^-^#G5 zK?1Hv#A_;S7d^c;i@E0w^X`s~XSOFFnEm5#+r1v=W7(8A5T-G@yGywo%2uWuE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_1.png new file mode 100644 index 0000000000000000000000000000000000000000..c4458543f3dfaa72611d955b6966c43219297cd0 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07iy71h+#G%+!emzST) z%F!b5ERP zY&H;KzW6cT;K-}}cT}!1ay^)9@@Q?M#KWowhno-nZOQ(#>63Kaf>Tn*1B?6ivaJ4d z=I+c;Zaw>%69sqcJFMQlrkZo|mFGLXAAK{t_lsH8gN3t`(>V`l1%s!npUXO@geCxt ChD00y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f53eaab8782c562ceccf1b6dec2a04b89476479 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE07iy71h+#G%+!emzTe< zr}sZA>wf~n>BIZ}|NmbJ)Gj3cznNhc2Zx}vV!}kt5TFLek|4ie28U-i(tw-@PZ!6K zid%C}9A#ux6kxv4vzGDY{+s&NnvLb13DZqIGEPR9tjK;@F!g@zz4+^_X-m#pug}a^ z-mq!@XDeN$Vn%;^LAiJD>lg|`Q&&g1C`TUusF!s*y85}S Ib4q9e08(T}W&i*H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c37bc8743d21d1bdd87508ac8b6ef938df21a57 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07iy71h+#G%+!emzRIN zd-sL3v=1LXta5bZ6%rSeR!nGlu?VP$u_VYZn8D%MjWi%9*we)^q~g}x69*ZY9XXr= z-45QoQNP!7iqN;Y4<4`GobWQ;SZ2>(nM04=KT7*$sGZlHc5V$@SG3AppG^(v-f1aE s{;)etKcX6%T)O?;-0T0oMOM7#=VD_%+|;?*3urupr>mdKI;Vst04DE6n*aa+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c071ef20c322240bd063c996b0937bf10044421 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6ogHSO)~O-xLtGBapu zY6b`~C$VzL%gY<_vWkj|@(PJBu=ytmRL58nHTZm*>vfu-j!@+wu}_hzaJL z-JqPq%$#23ZqEMQZ^5^_Pw&axO=vF5e_(Kz!Ep9%*%J*MN;f$emYkJ&85*%85NIKT Mr>mdKI;Vst0Ph_}s{jB1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/dungeon_disc_5.png new file mode 100644 index 0000000000000000000000000000000000000000..08c138eac6c4f04550655fc510217630fa0dfe99 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07iy71h+#G%+!emzQ5| zs3s___$Nv4&+O1-ad}=L@s;_#kAaF9OM?7@862M7NCR?$JY5_^DsIg^ahlOZk;f_U z4FA^uRq1g~obyD*_e3#2(t5ejIeO_~lYc({e8jbEu01`syGnGz!sWMZl^Tuvckhh+ q&KTf%OkuOZs;=ttsZs9^tmfyt#C()vvYj^2bOujXKbLh*2~7Zq&_3}1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/revenge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/revenge.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe949a7a1a931b68145b0e684b82da3e1482a14 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E09)HRCI7~2n-BVQ&Tfu z#o+UwK~PXo(Rlj?pd4dKkY6x^!?PP{Ku&;H(xgMrTo0Ul`EFu=pbhVeGhY^7Z+a4{ g!>GSaYR6RuAyM8f=Zt3_2b#^`>FVdQ&MBb@0F0MFa{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/spooky_disc.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/discs/spooky_disc.png new file mode 100644 index 0000000000000000000000000000000000000000..765d47c3ce2c7097ad0cce54847b4ae2aa682b7f GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09)HRCI7~2n-Bd5XJrf zVc7peDUX+V|NFo2@dQ~lH8nv&!N5%-+kxsBOM?7@862M7NCR?$JY5_^DsIg^anzB4 zfyepc_rja?!FQStOWxYCKYqWJz+XP))@d6pHI`mhd)lxqS$0mu3X}G?mYZcQjQ85? vy)mb7%efto7n>HIR9MF;f7|`{{k=^76XmSFZ+LMHXgY(ZtDnm{r-UW|z+2w||0yf+A1d3W16kOM?7@862M7NCR@hJY5_^DsCkyh%;CT3+u2n z2(&cadiIz9wx7}GR}8h`4QcxmzaBnzNnNbi+OT`i(od}Q+S3n6vC?_LQ|>xtYb^S;&R5o1Pni|L2Crz<@koV{`6nU+J-@{13i<-cf7WcbcD&uTN! OKn71&KbLh*2~7ZSIzIIP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skin.png new file mode 100644 index 0000000000000000000000000000000000000000..fc79563df74a49ef28aaacd6553fc55fe2a483ff GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0B(mm@p$^!-0wi4;Fm* zapK3z1=*j0qKqX$e!&b5&u*jvIpLlzjv*DdeEV7%4=4yQE2sYN?e^xYoQ(t%bmc)I$ztaD0e0sza}L{R_$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skull.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/ditto_skull.png new file mode 100644 index 0000000000000000000000000000000000000000..ae52076d0c95e427265c791d126d6435ce9b2973 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CTMu^~cY!hwnh4;Fm* zapFhVs(EriQO1%WzhDN3XE)M-9A8ft$B>F!y(gL(84P$_F0yU^e`4#~Kk0tm8D3Xi zOhcCho!O$ntn@>_S$^R|FUE;84slv=bo`Az(EaQ58QTs2Z>l5;aY^nHn!YBbZaVYU XuZ*VV6;B@l4QB9k^>bP0l+XkK=*>T@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_attack_speed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_attack_speed.png new file mode 100644 index 0000000000000000000000000000000000000000..bff200bded14d69f7751174fa87e10ac894d9672 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv^#Gp`S0MfW|HuFTS^xiM_j^gsSdiFBy( zWB7HlmfyQ6xq|0g#e9a1jwVUI*BCmg=gj52<}hWZ-rO0X*AD2^Pd%E$+i+z5-UQy9 zEcMV`uS^==vdb}UXk9cjn&UlFoTkNwpL6WW_!l<$b2Z9TEe&8$y3(@Ys_@32|F}0^ iJ)zsQe{Fo`&3NYZ1yN^Q1;c?(X7F_Nb6Mw<&;$U^GHtW~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_critical_chance.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_critical_chance.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e2b89f1188d3f21fcec4f3ea238e8b5bdc5f3f GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv^#Gp`S0G(nSR5MqKP4q4CNkE; z#nZ;p*3!~aU)w+)2&CmjMV)|ZoYwa10V&3kAirP+hi5m^fSjYAE{-7;w~`e2T8vtl z1Y6Fw_{uq4FA-%BXkEaQwv#JlLzCzV2Ue|^liU9l`Zugdeo@k>C1YtAv*pyf*RL89 zKfL2q?_vCN@c;|Y%7e-onj61d6ld!Gw=n(8-X)>FE42DJHfTCbS<>hjRK^}471?So zkk7!av2zLI+?NMTycv)3^sPDLS!B>H(a;wX6vUv^!nN!S=Vtjcb6O075}7ZnE#u|k zDqzfA@Q_QoL4>D(`REo$5hjDe#Z^6=D;zmpQ_KSnv#~KeoN8U9Y;m{?=phDAS3j3^ HP6Vu>PhbsN{)sE{p_Iz4(>mLo&b;i3c(~-xXUUIT5B9Sh zc_!6jx|;X2XaPsg&3z0P1F|LdpORTnBzOIcXj%dD&BW=)e_QbV@C>zx)>&2Dp!H3b z``Lo*lUt|E;@0)x3p#YKZOUf#z>*C)(d~@8_Jv9N3U0KtxNl&zW$L>JjE2Y9;uHNj wWwxAkR&ipVVzu@BgjT!t8}9t!R^G!Y7GBXiwlbx z)=S1j#xgVsdANAmSla4q8!$NV%1g@&_}mHxDrGDQ@(X5gcy=QV$T{Na;uunKtM~jy z-=hvZ4T;)sLvs>lzABX6?!>m>BUfDGztD9rb<7NWr+f=L;lmNlQ6wbZ`CrES=OmHF z|4SDbUSII&Y_iLGhijpWZip|~XSBX@=Q+lRsC#CKGn!{{*qewM&TZc9)$MZkIm4R5 zq<1dLcZ9d8+FP#KC~3cs^+DO8&4G8hUGnbVUGb=l>Fz!IDn*|UkH1=U%;V^M#bD~^ z6!ai|#ojMMAA(xRW)IW3l;um=@DQEdp zcjqZ~B%YPJBgH<^)A{0^+cgV24@W+WyJ6gJ_}h8TO(FILI*i&AVlP&trGy*!+&Od9 z?O8)DWA4*SE3POvev~nESQ#BJoo<`K#H5r_ef4T!|Kz%vU0`2(XnX(w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_health.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_health.png new file mode 100644 index 0000000000000000000000000000000000000000..cb70f7d86c85edf4e086cc9d6cf16ab25c183eed GIT binary patch literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv^#Gp`S0Md=&h`I}e#M2w{~2b+ zM8f;hg8jvU2L^L_cD08`njxgN@xNAcKmJv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_intelligence.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_intelligence.png new file mode 100644 index 0000000000000000000000000000000000000000..9059fa0986c2831a4515581a224581b2d4f82cd5 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv^#Gp`S0Ekp@IS-<|HXyH3={sV zq}+{(jMcC|KLd2RLWQqRh>+S#=Jf%X@!dAlo9YjR{IXBKP3G`Tbfb?(nwQe*gc`lMen z&0Iz`F8vNcLg&vj2dF&T^7n$BfcL$1ku!cRP&>5zjMB1NhLBC_TwfX^{#MIhVHY`_ zbL=KpRKz+_jxg)>3ma2+u9bI~={<9Pzc&Z(k>3UZynQX20UXsI%IDWETvzk?duCSn mqZ@||*69ZH*c)7a06{+hKR_QF9{@l=JUKl`L`mB# zC^G;600DGTPE!Ct=GbNc007iUL_t(|+G3y{08};~2oeGz00g07^D4vtKYN%io64;1 zkU1RFS-#=m-|niQI-T7!&js$6;*q*hGESrhP7)MbTk>(t!2>CWN6Bn^Z!F}VKKx1t1*$W z4C^O(xOkpRd^81U7Gp_}UoeBivm0qZ&H+ys$B>F!OU^U4GdW7IJ$U|mo8FOytN#AC z&)?2fC|kbU*j=bW*1RG;LGJzQ`|1o;&GXXv7*4o4t>1BD_op+>CMKNjtehGi&)F85 z-+F2Ac~`z)+fgR<(9rn(&K$|X?VD{6sVwbUo$TCxz%!6hv3G^9wv(vV`|#6U6IRVF zIp|m@>=oQDz~B)bucqzO&3b9MwG$U>$t$OW)%MY$&-1e19$)Op5W$)0_QQ4ef%e|~ o?9EA+^bWAiZQozmaMu~=0owp;yZ)|O5kMw`r>mdKI;Vst0PJ*q-~a#s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_strength.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_strength.png new file mode 100644 index 0000000000000000000000000000000000000000..e07ba70bb0697133cece595befd9915d3d97b2d6 GIT binary patch literal 325 zcmV-L0lNN)P)5Cvchm#J96EsdpDAaI)vkSqFIffcT&a-GgJkzNJ2LWaUl z1PLOM{%7Aw@2k$;7IoVG1>ChNVU6ep|0CllB7I+g)-mU?Pt|j9SwgQtvO5PYBKbaK zk)r2N>vpPWt>@sfw$~Tp9{^stQe8^OrMx_llkos7{Gy+`l%DrbOpH9h6M%#j>hiWM zk2WRP5Pu;7<`L6&Tf_9h2(umhGk}P}{lpu{%-l^Ab Xe&v3Wj>pRp00000NkvXXu0mjfYY~R* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_swapper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_swapper.png new file mode 100644 index 0000000000000000000000000000000000000000..fa2155917a1fe154459f493e4bcffbec1e67947f GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AW$Uw!!hKZgJRneTln zE-YqPFUjybVg)W}#8OMr(O*NMOSw-ax#mp#DzP&T%DV^)WKM1$6bq%Qv4 z;7LcPeBKdc-le$g%k-_iHz%JqR9m>1`OUK#hH@EgQHgK=l|Hzfl`I-48p+O}zi;!T zPii|1MLZ+RY#G*he?0TXb-{#~T^qg?9DS(ky>`-V)}R&V<4yN`VpY4%rs$qMQv>8J MPgg&ebxsLQ04$th-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_walk_speed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/enrichments/talisman_enrichment_walk_speed.png new file mode 100644 index 0000000000000000000000000000000000000000..08a4a6aee8b97ff7ae902b1330ebb0009e8e865a GIT binary patch literal 378 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy-T^)#u0UE}+u%P4`~$=P_CVkO zgh0~44oKVC|Nr+7C}0N^v2*zM?|=QoY4XzYHkP)G@s(LPmnb(=gVhzyjoi>^WNc$3B$h^IY(@^Uz>itX_ZGdgW36} zo|eywXWj;#V%=%S6TszkDDuK_pUX08IaB2r%9#{YpUl}%Y?me;Byu2p&hOGcdw5@z zTPrFjOStcP%`SPO^v?qK35$L#Qx`G_sZvr7t>P+mKF_=5GymL~a`*k7g?a!z%HZkh K=d#Wzp$Pz=mz`z+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/desert_island_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/desert_island_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..354f8aa7ad2043a6dcea91953e990dcd861a4e27 GIT binary patch literal 283 zcmV+$0p$LPP)a#x^q$iZI+xx%xMU5q+6Z1sAEj_%v_&Cs!Br{B3ukska^ZuG(HIOQK^S+&psXEd hHTXm6K8$@`YFXcj18!bu_VYZn8D%M zjWi&q$kW9!q~ey#=~mGL1{^FGk_vCv-(u3w`_6n{E_?3vzGAsshR@yQioF6eo%N=9 z-!<5>;Kho}KHgvPS=Z+A-j&KJXV0;bP0l+XkKc1~N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/fishing_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/fishing_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..c65c5565aac40086189cd8b79dcade26fc06af5e GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E09+9KVuSq%O(G1RMTgX zxL}2&TfN@iy!!v!!rw3c|NnpG)GooIs;Bp_$xNK}{p%+ew&G-<9>$U&zhDN3XE)M- zoP19g$B>F!uBTdg4;b*U99Xb$$Nvqii<#Q&mmb-fFRdLH9^kgfRg6=xg{i~zvsl3? z_Gz0RmZ~Xya^v7^XULG{``yUKa6IoqA1A}4=NEOh-+RU~CwSVj3&#UKMXoxLzPRS; n+V#2jro0m0=*b_uyy~yvYp%?vE&ToB|NsA2PVEvbs(O0=n#{ym-@kq;yyv0@)WBF07dZZ;2{Gnb(wqJtr*!(2_}(|qp(DiM+bUmErG@-P11 az|62Wj)mLOdwxC8P6kg`KbLh*2~7aqr&PND literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/mithril_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/mithril_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..94254021aa32085e458eab5b5e0eb936ac12e3eb GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A^#%~g<5%WGSC{KK2s zhc1i61uGog>h<>K)&JiX{(kZQ|Nkqeb_o_$J-vTTX5y^xUq4;&KYtUbjj<%iFPOpM z*^M+Hr_9sEF{I*_Yd5>tQ3Z|zE@mZn|8Kef_p;Tb_SBEHsT;r4hTnSi&)@m3PjuA5 z#nn%^{G~hGZvB3fAog;Z^&Q=e`0qT|bCp-z3lC=4=NdZu^jQYh4hh#QE)zPl81vY- xv3RgV{FcrMf5)}8k~!+M+13)Zs49zJ%&DcUE?IUv&jVe+;OXk;vd$@?2>_v*XqNy0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/nether_wart_island_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/nether_wart_island_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..a8f968d7c39d652866fd74ee74bed765e8e0c655 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F&G|Nr-|pRWG@_VoU> zg}+~1Ikn5{?M;QFTV*EB+Gp=2SX8x4)j%XJI7U>;Pf)B%CHxam4`WG?UoeBivm0qZ zPQ9m#V@Sm*yC`Cjo4b}w!1a^8l@yZw1}Ok?T1SE3KQ z&xS8CPPnb3Tf0ca*lTaghmse~_gd9Ywr?>_5$ZI!rDpgxCig(xPW3E?PkQNZ#SG5f zQ)?-0H!ycd_)^N3eP%0re`D|S=gmJF`{y%qGcf4f5q~s$S5yViDGZ*jelF{r5}E+l CXlSYc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/resource_regenerator_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/resource_regenerator_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..63fe61258386230f3fda91f06156301376489db4 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|Ns8=)7Agqp5DK< z@b`-=r*?V0y{T|?tIWh%f<;v#alxN&&G-OR$5;~N7tG-B>_!@p6YlBa7*cU7`2g1p zkp)|xsjza`-V{1>X--beJxk6b2BzydSPX4?ot=*^Z;*Jl^pL1R+w{uT%A-OG%B%Mr z+LJ8Vv2pR@MbbwSPTvdMtJ}zUhUsF0*aSBQh6|e|nBO|@S^%_y!PC{xWt~$(69B8^ BQfL4G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/wheat_island_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/wheat_island_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..12fafc53c9508f887a61eddec8d7865eb1b4ea88 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F&F^^?rRSy%sm^Ll$z z;pkS8xZpdxQ~&?}zwq}9!J?|C_peWmAL00xdj0Fs}z{V=M{s3ubV5 zb|VeQsq%Dj45_%~a+;lqMUjKqA>`Dp3IF$hQ@Xy%)mW)E$V=~kRQ9F)+rBMd(;MmF zV(PgvAaQBA8k^Opg1PYt@BEX09%4B0*X>Ybv#`rCtMG3Df{xcWzIWI$bJd1bGmkgs z*uPuVm->9_4rvzliF1`|X6N=V(C*~psp8dUV0d literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/winter_island_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/floating_crystals/winter_island_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..fb779342c54bf180e24b89ac4894a1ab6d6fcb15 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F&F^^?rRSy%sm^Ll$z z;pkS8xZv;q{#`k>>*@V#f<;vef4}(u|Nn=-f3LrPzv=2#@!UhJfO;59g8YIR9G=}s z19FNzT^vIyZrSuQay1(Wu%zoRy7lVmfBm(h3RiPp6dX9mz{$)he68`F;D%tIfcmdXZNw{I>lEp!E!%u6{1-oD!MNrdnLny*_2ZSMcL%>V0^3=}yFdYqpg;tWyY zoFgD!s=?%Jz-^_@R_MFS$kcwM#PHk;u z31naj`0-}P?r-t;BJI}w+{<(D|HLDwC9L{RKRc;9_YCK(R~$ELy5*XG?t7uk+B{v& zQ-Ya=MXFG6`3K3Uo9|SOVx1-(0&F_S3j3^P6R?oL774tZ%rG;fm&)^7{!%pQY;V&*$qqp0004WQchCmsn4dE>Xne2xim`LTAWV?G^z&q@};2uAg3E&5Ldxl zF_f8WU-kfQLlxNR`tRENJ#!j8z5Om=eOP(r+|gVGeNr6F<=T9Y5T$!D z9cUdwzY~EIIJS^_aR>UFWGi2^6BPlr+KKkPc7hS=(~-Y)zk_@ULRm|RcmMzZ07*qo IM6N<$f|13TDgXcg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/giftbag_of_the_century.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/giftbag_of_the_century.png new file mode 100644 index 0000000000000000000000000000000000000000..40c6cd1436f077ca8db8606e819a2c8af6a5dfa9 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07MgGyeboe_~?dv}w~C z8yl;_-HsnWZlWT!HeT#px77FliT_WsHLT-W2~^5h666=m;PC858jzFj>EaktajUeq zm6th?=cv@Nzt7(;FFNmJ?SJa6)E0hcmU=O1vk&Qp?I$C0^S7pYZE#*GA=Ftim$l=R z!s`~EORv_Qy2q%J6!F#K%>kBJp(&M2oQ&y4=5vnD@c4Y*z?6I&(yx1WtTr5vRK3Uh0~l%e0N06H=Z#q pbPw}8a=OF&NAiR-!2y5G^b=PwOJ4la5&^V}!PC{xWt~$(69A8mV4wg1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/heat_core.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/heat_core.png new file mode 100644 index 0000000000000000000000000000000000000000..831c2af5a24cdd3a4e063cfb08a4e2b036d2832d GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cDO#FY>@!b@OV=l_` zn3>BM_=}n>;(-#3B|(0{3=Yq3qyah3o-U3d6}OTP@W;d`m~=0gz&zvOiZ_e6!~}$l zIJp=MTSR;39^?^C7By%NJ$h4Bg>i|7#gVJLYr4-KQDsaDh?1(~W{j)gnqF?2q?6L4!+!h(TY{E~PMg7jDF{NMBK|Lo_#n{NC_ zJoeLb^^a6{zb!xs#*!evUCp+a;Na;lw5$ V|A}tA{Xjz*JYD@<);T3K0RT~8Jf{Ev literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/island_npc.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/island_npc.png new file mode 100644 index 0000000000000000000000000000000000000000..50b6c96b6882e98a8d05423051fe94ddcfca5bb5 GIT binary patch literal 385 zcmV-{0e=38P)s9S{0@W7cc}fQ%EC8zQwu&qs zX{*rnvWzIkCbiJh`;#p|gT@R@hB98o9>f({F>2Awf(HTXTd@VW5EzEPWmUK+B@84U zrKX=2`Aq=xpfD@od_X8}M#bZd=pWosm7~$`^zPXL{7U~r0INZynrpNhQLS8ufYpDJf9+!& f2e;i10^5y?xM=?86r*Mr00000NkvXXu0mjfD;l#_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/kuudra_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/kuudra_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4592a1e2f0a096c92f5a27f4d40d98a88a2aea GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F$wE9Q3{!~dl!Kot%Q z3{O*8PTRA`Oq!emlw&Lj@(X5gcy=QV$O-UtaSW-r)q7$)V}pSJi{oF(egFF`AD-ND z^IQb)%k66(c^9YeVGZ3B+WOm7{gu##oRyjLE^L`2V(+-&nX`IN4+HD*$ozyu*B(y` f`1Y%NQ}^3rIgCp?B~BOu&1Ud)^>bP0l+XkK00ToS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_black.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_black.png new file mode 100644 index 0000000000000000000000000000000000000000..47ef4297e0a8a76bad2a0f6e46c0877ca46ee9f4 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09i3PHt^&UAS=J)Ka(H zaI^XK0oHobwg$4Hu6l|JCgxh=`RPj|{3rW+l}JgbTbKt53W$}hh+YoV$ygHP7tG-B z>_!@plkMr^7*cU7r|&4Eb07!H#EOQy*XuW)ET1pTqji17&Y9~hPiSpgt2DDSibYGZ z@la0Gb%BlBN|-Kg>}Zo>T|Uz-#6IYOf(XOv=GX9(dN2|KBRXY->ld&YoFPOpM z*^M+HC)?A-F{I*FPTx^R=RgjYi4_fZuh(xpSw3HwN9+2Eoio>2p3vH~R%vEu6pNN* zjE3Ml`vi0*wH4%x_qWvh<(rl1rdhT&9Mub4PS>$FWbMie^+k&-;O)?f^&*5 m`Q?O*<8XZ`x}@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_brown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_brown.png new file mode 100644 index 0000000000000000000000000000000000000000..1fac61f51e7ff956a54bff6aeafffc95881e66f7 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09i3PHt^&UAS=J)Ka(H zaI^XK0oHobwg$4Hu6l|JCgxh=52nVSY7SVF=agcr*dJ{gU?`;$E0+t@$ygHP7tG-B z>_!@plkMr^7*cU7r|&4Eb07!H#EOQy*XuW)ET1pTqji17&Y9~hPiSpgt2DDSibYGZ z@la0Gb%BlBN|-Kg>}Zo>T|Uz-#6IYOf(XOv=GXlW+j2(nCeueY)lQEYes_=XrDk0Jy>M>);U)RA3jKa_ m9{$7`X}$JrdE48II~jBYSZ6N$ZtnuLmBG{1&t;ucLK6TYcUs&4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..adf41c9e00324bedb0fc7cbec069c0022cc87b19 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0DH!_gJ`ap`wCGZn)X} z`hcmWZlSJvwg$4+deY`v;!~DyD(ak;Q{9|YSnL%U)!N#coSfWoal!?lPR5cTzhDN3 zXE)M-oGecl$B>F!x#wCLn;k@$1MVo-|4*I0OVFZv`Ps@-b7S9c^k~SrU+}@AMVy2E zd+deaTRJzsf1lLw?FsAJ0(QG^Th1unWctXa+UYUF@9q)4)Qs!D7tW18yd-~Crr&SQ m!=E@Kt=F9`Z+m-jCxea=>&)hDDGPwMGI+ZBxvX2p3vH~R%vEu6pNN* zjE3Ml`vi0*wH4%x_qWvh<(rl1rdhT&9Mub4PS>$FWbMie^+k&-;O)?f^&*5 m`Q?O*<8XZ`lW+j2(nCeueY)lQEYes_=XrDk0Jy>M>);U)RA3cY@F l9{$4_xqHpo^0v1ZcQR<-XPx=EcoE2V44$rjF6*2UngC(?UC;mk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_light_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_light_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a731038507e25805a66dd6d4ba6a5be9eb1ce8 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07Ki_glDdp`wCGZn)X} z`hcmWZlSJvwg$4+deY`v;x{iHIeuW%#x;v4PwmOdO=@jzO-@dheZ;#6sFSfI$S;_| z;n|HeAScVy#WAGfR_?i0#%2c*=72lO_5V|6?-I1AUVgUn)ZEzj8$B9w?iYNpXc6aN z{~miG_?FI%@82gie0##Wwt(I4+m=NsdjqI@Vk42FE!)(?}c;Y4=>4|mFf4J m^YACmNb7ZH%iG>w+{vJ0#5%KiTgn2Utqh*7elF{r5}E*bI$aR} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_lilac.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_lilac.png new file mode 100644 index 0000000000000000000000000000000000000000..5806fadd2385a1b8dfa1e18cd40d66aaf3833fb7 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09k2ty#Emp`wCGZn)Xh zQnyf7JzE3W`Sk(TdeY`v;(O+uUf!{NPUYH(`AaIJC$_e>CMPG~`Bc#W)X7*9w+{vJQpLOQv;zc0eF?hQAxvXfe!&Ne7I6;t z@39wxZ|U6l{(Vxzw(larIzJ$&H=)X7*9N~^s{~L7QpYl|gSF5~o!ljj*E(||k&M@%p`E$WA zQAYBP?M~riAAL49FD|qwI`-;7*yO{$F+xWkd8i1o`CNK5@y(_wmv&|>be2k;cJ=JB n?z8`V{4BP=-E6%oQMo?k2U{<<+vP7nTNylE{an^LB{Ts5Y#m)P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_orange.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..c98805003148f5bc6571f21a0dae2c9a24ba5cf5 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A90&aiOdLPZ6W+;Fq` z^#M~$-9laUYz<_s^`ySQbl@(X5g zcy=QV$jS0_aSW-rm3yw0vDra{IpB_R{r}Y2y96z&m!GXXH8=MCMvsP^`vo5?TEscn zzsFt(zNK^H`}au=-=46pEnv6%w&jfCO{R}*s+}G){O%s%OU=0cd*R&p!%OmKW%~W* mJp73>(t6$5^0v1ZcQWW0vCeGXma+h7D}$%2pUXO@geCw6CR|hi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_pink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_pink.png new file mode 100644 index 0000000000000000000000000000000000000000..a2dce3a62efaae68144a8a9ef93b85c95c9300f7 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0EscU9fQBLPZ6W+;Fq` z^#M~$-9laUYz<_s^`ys)g*vbnXjH90x?<}Gn|piah;AirP+ zhi5m^fSfE(7srr_Te;_28JitMm;>%8*Z)tQy-U!ddimMPQ*&eAZ}e!$xnJEU>&fMe9_v&Xy#ZIjya&$;ru++cdI(IvGoX{DK)A zp4~_Tafe!&Ne7I6;t z@39wxZ|U6l{(Vxzw3>p`oF*F)7kGF5F2#kRc$|SpfXEYyX)k+N(7G+Brys4gBk%&Hsd-%{DFN zRNZ98FLyM zsz(4&Y7`W-v_)CRgDkW%LJkjUXbexis9tHo7r%q<;;jsDW5MC^7$>k%xeHC z624lsGN@F_)$$OYM!jEeHtV%|!ylRU-Xc}1PQApHZ1byK;`N`PN;J|~5%ERoaX)_D zAM!J1(&;3bF?uv-@mHU~Vh)eN!#83GOeaWMj^X(LZ=VM@7Yek800000NkvXXu0mjf DdN7aM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_red.png new file mode 100644 index 0000000000000000000000000000000000000000..1d79ed7aaed7a7f06d8c3d52a72e3acdb65c0fad GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09i3PHt^&UAS=J)Ka(H zaI^XK0oHobwg$4Hu6l|JCgxh=|C1x{csg9N(3_yBu+>nrSW4F!IekYNodY>oCRQ}uyE{~V@I15>++dyA@)HJ6hs(SH^(k$Hhdj2y=?#5{$088e>?8n3(hIN m>~B`Gw}1JYo%R2ljTlmb*y6VxxFig;mci52&t;ucLK6T0L{}^T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_white.png new file mode 100644 index 0000000000000000000000000000000000000000..d268b0447d67deafcf09904d8ec8386d3676d501 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0CVKe*MCQ3l$Yia>LE$ z*9S~3bqjUXvo(;l){{2Z6951I|BoL(9z1<|{PN}2*4E_Y z2mc4AeMZ;zE@>3z+2hc|^pJbbugML6CO51JWfXEr;lKOH;%idb?%S&p>tz(ruJgCv dzJE;>^Y0>7H(tw!pMlmfc)I$ztaD0e0sx^nTiXBt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/lamp/lamp_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..a9932c0be7263e54545ea8fef9cf5bde52c21e10 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0CU7CAV;I?D-X&;Jz5HzDskyQ5H+nSW+%NcG(IU>l z{yp|W@GYGi-@i|4`1XW#Z2`O8w=HKBZ!&#kQ|OLn>}1O9VZ5@_+LGz?)yT zKRW!M-yyNXWJ0emqt=lvOgbDBn`X7HWJ$9YxGc=TuusXlaHXr+9-w9hPgg&ebxsLQ E0DRFRod5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/magical_bucket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/magical_bucket.png new file mode 100644 index 0000000000000000000000000000000000000000..ea46c1b3650e9dc7696368f44a3078aecbde2075 GIT binary patch literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf63_V>OLn>}1OC&nH+<&QF#B3Rp zK+A>?8V(LV)(4sdG!>35W8g?skz?gBQ*#J(aAjcVIIVW_>(X=^pk@Y7S3j3^P67=I0!HtEVq5V|CUWvQ|iaW%l8=?WbSysc*vsgN#TzWvya1xZ#&Lh zms|UN+w|sZt6Fbm>E1jjaoB0z<{ipU!+*8OGBCvGGWp+J(X0S8n8DN4&t;ucLK6T3 Cp-Y1R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/matriarch_parfum_spraying.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/matriarch_parfum_spraying.png new file mode 100644 index 0000000000000000000000000000000000000000..b28c096ea3fa3ec8e10130082b7ec77534dc5bcc GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0Dfwrt|;b=l|d0^8Ww0 zvDfkN5@XIg-&ZuUu`Mj=Phe!Ijbw{om}|tyU=Yrrr^Fzo2h`%Ayl*>@Vk!yp3ubU& z@b6gxN(ZQd%%Im`C>B9yZt%JT9aGre!aW?r?*AmQQ2AvO+~WpWjsWcn6p OK7*&LpUXO@geCycFis`_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/metaphysical_serum.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/metaphysical_serum.png new file mode 100644 index 0000000000000000000000000000000000000000..df3e27ce24dea21adf252660d7477335ba1cde31 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0EUL*9VfD&%c>%Jo~uo z@ikU!vhV%B>UFhy?FFBOyHYN^4_<$Ais6(iPrtjlxh2Xb>ZX>)_8&TT(_;@%8)He3 zUoeBivm0qZPQ0g!V@SoV+Ea~e%#J)Q4}V_vE$6oV_BVbr!`v{LmyY!=HE!t(yd7d5 zcKjC*SbpWGhY_#QCazWKA-f+I{@%vD=t%j2ApL8nWcG7QFKm-Y){>69T(s-qhcCCi d@2-3GmqG5Q&|+(aOdg`TkZe= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/budget_hopper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/budget_hopper.png new file mode 100644 index 0000000000000000000000000000000000000000..0a6d5c54a0c9e3011b2e8125798949cc2e4afdf7 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6vOHZJLn>}1Es$d{v0_tWIIJKr zN9(nPi~9+az9(icuWz$eV*1P8bno|(>+g7HiMelFztc`;r3%^-JCLT0SfBVuv zH!wr$!FTbt^$asSPUuA##P5A->fmy!Pweu=dzUZX2O?$W|5rJG>{)6)&F0yApsfs^ Lu6{1-oD!MB0{DK)Ap4~_Ta`HW0 z978H@B`NSRWJz!{cO*%)u&wxa>fhpd-o0A-oVD4}U$$K}wT)gKymliWLs8Yl245v} zm(V!^J}0Z|Ic}=X4~k;>t(B}h zI~gWsGfYpM+69zgED7=pW^j0RBMr!L_jGX#skoJVfO|$FkF)BEh6M&KsTmq789YfA zoLo{(k>?J&bsbW2aNDqX^jo` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/compactor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/compactor.png new file mode 100644 index 0000000000000000000000000000000000000000..fe03d5a26518de93688595139cc509bb0747cd78 GIT binary patch literal 821 zcmV-51Iqk~P)7bJ9 zYI9Gf!>4q^`OvoHutPzLl8kUL1XNj|asyLW_X_(Qh- z0E3C{a7Gu^#yoIbu4YdrW4zd>!_^+fa)w(DY$+{&`04y=Q>&YMQgO0_ZbHgy6F6IR zB$AtW;QaIEakaT;V9I#}UaE#=!%RBV;ME_!{Czb$G%nHe0>I;le&m(Rzxa{Es~Sf7lc7(~PM;>o#re%tz7uj3?$lqSKW=BSPSeU`$2E@Za&+8#6sveb$ebdDlCdNm!i4ph=X zeQ6KWb&AN$tJBD%73xGZprAufhkQ81!(r+Rdl0^iF@TG)QAZaph{Sd~iBGUh_Jqxa z3Bb5uY|ReKvzjoti{jz9#O%l%ozT$?dV+?t6%mBY*2p}3;^)mLntQ^X0FwbAyMt(; zt%$9q82rRiW=D|47z5^OaYD&LoLZJP4SACrPvb={$82EV@rA2 z@Sh{MJYaxiXGnQ~AB=)gFbYP&C>RB!U=#oV64oYze@}$&00000NkvXXu0mjfYW0Kk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/corrupt_soil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/corrupt_soil.png new file mode 100644 index 0000000000000000000000000000000000000000..47e4a2ee6b0f42be58b00cd6a31e9d941c6accb3 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C5^Qr5Mw1Tx%0!@}z8 zr|sEO8EO^jpkt*eqb)0ZcLr|&P>!)A$S;_|;n|HeASc$-#WAGf){;{j8IKrnI0vfu z@Z73@&|J**ePMO{jdtdO?wIZ!qUSHO9s^0jmnW3WYvcbFq|)Z0 zcrRKc#?9-}gTL9gs&DwE-{+mIys1}ar|qSUTX;U7b^dP9Q90$<(|$9ix}>`d=ZgF? Rd4UEqc)I$ztaD0e0stzlI1>N> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/dwarven_compactor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/dwarven_compactor.png new file mode 100644 index 0000000000000000000000000000000000000000..8d474b3fed850fcde677a961e66ebb0a66f8ce3f GIT binary patch literal 824 zcmV-81IPS{P)S;=k#xir>Ll?nz+wMS8jiQfB*mg|Noc&*Z}{J z0K;7yAt52Ku&~9&#hu)<0ssI20d!JMQvg8b*k%9#0-;GnK~#9!?bO$rti}>V;T4%R z_8i%M|2LE!KLeSe4ah;uU-$n-n{^FUxK=0uby8uDzq*?Uz&rU9>MOm;jzra%d?-odT<$0v5u_|l998f8x)V(quawVF|A@+ zI(^m4_{gQ%ldhG80aW-srrXB&+MmFV(T(dR6ANDJIzdz3C*6=rdb{hGO44gNXL150IyMhWFh18jxbs@9FpWO#d zf-JS72Xu}iJbLR6T31xkL5Tx})IPEJR-+q@4%`XdqDeZqsk@J5A8z&ng-`C9+9zY9 zjxJmfiS2e04eOGlusPWZwSB_anma7d)r7%a6zO%CgQ0BPq%5li=`lN?g%OOV$@03A z*$a14s5&vo?jRayD`IIW2FW^^gCL8@u(}!~5<=B;1e7Ejx?r6-8UjQ`6iLhoK<#J? z72N(09-_v!$?OFc$e0X)OaYD&LoLZJKbRuciKB4vtrTuc-?rqaE(Z`%lH`|sgxH2T zkcQ^pUL==?sB8t4pturQ!lHxzFnhZHNCPwh^fgO&l)!x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/enchanted_hopper_coins.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/enchanted_hopper_coins.png new file mode 100644 index 0000000000000000000000000000000000000000..4b1a8b133e40daad2d3f0968a9ab8e604a254bdf GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`5uPrNAr-fhB_<|_+?lENN51Xk zr9aP)M_I6aJZbdc{q+iidsCEt%okB_HaU=Cpm#Olm;b8C2hINPdd7Mv!P%qG=%wC) uMT|M0PxmfT@VUXDBQ?RW(9pqync>Hysl|7yK7Iw-!QkoY=d#Wzp$Py^>^Q*y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/everburning_flame.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/everburning_flame.png new file mode 100644 index 0000000000000000000000000000000000000000..da996168dca1f48ea6e7844a97f7464887d1b54d GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cjH~s$>_y5hr|92f< zU-o%7MdI)h;}wl;$6S>A6Bu)i80RrFmof0`7YnWfs%9(+@(X5gcy=QV$jS9|aSW-r zmF&P~!@hv$+-8AUZx7AMRGzYg$Pq)r2pW7&OZr{1$cPi=z8)iOLd%k3* zih+SedYrLwG4rZOQ{AH~#ikQBZqd@sbv2)`(I&uStIUxHdEq>3Z!j1YmRBFm>yX{u cXu`z6u%lAJZc5fYZJ@;rp00i_>zopr09pf9$p8QV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/free_will.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/free_will.png new file mode 100644 index 0000000000000000000000000000000000000000..b563bd7fd82a3d3233cb0cabd1d858a66c568e14 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0C^m;h$XOWvivi7*w)x zeg?Bkdf)7ImU+F0)@}pJZcjG)w8ZD_f%4mXR)2kU;p>a#YHDi9$;qasrpY#)sC@;kF|G5R5H_&1RPgg&ebxsLQ0K$M@ AMgRZ+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_clay_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_clay_12.png new file mode 100644 index 0000000000000000000000000000000000000000..1184c8a00c22e5e7d50ef9cb40ae98e0fcfcf1cc GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0B)M=`F3D;NTLqaQQ}6 zDH{=f`Sm-mxf>Q+s>d$>|2gpg^C$m*i_Bfbkez34>9T0{b{3!>#*!evU3NZkcwNmr_7yN9eJ7$`foa!_`cqE1xNNl@4NP23w+d%b}}elPdn1aw9+bQN{GRO zq!S5yn`cCvaey?vMw@R+G z#GJ$Xehb!4W`-t+DKRe$%Wq&+p+M=HaBA(Q%J9SKNvlYFiA7)i3 zp0hkGSvTzK;Riiul#VxZ9Q?zi5%l(3#`>nOE&dM|dUaGpDk?=RwO-@!&W9m(`gf-i c$t}M3VonP%{Al}N4s;TOr>mdKI;Vst0OPrFTL1t6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_revenant_12.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/generator_upgrade_stone_revenant_12.png new file mode 100644 index 0000000000000000000000000000000000000000..13e44ceeac4649e8ffd3804f6176a7ac34a68de7 GIT binary patch literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0ETuB@3aQ)moI!eQ(NQRL}v)y;D7LjwJ+j%uKl!*pv_9t{-p3;(9cnG zIM-0{v*D<^;2Q3tRjol?cQgepH~$OBJ>}3B<2hwzPfTm>5yi*8QxLw4Ts|DOZ@KY#N7cXQ8#rE53-|NsBV%a=#aT}n5yzWYhQ1*ns;B*-tA z!Qt7BG$5zL)5S5Q;#R6ZJCm~^i>gZfZH2goob}+VO*~|rs96bgT7B#Tm_RDX0+2qLO a#>h}T$Hqw1*!&^TNCr<=KbLh*2~7aKXeS{6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/mithril_infusion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/mithril_infusion.png new file mode 100644 index 0000000000000000000000000000000000000000..a34e4e69a990071c8a3fcac22517bf68f326fd69 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=7bqyqSII^1CS#d2K7V z1_T~+QSJ@Oat+NjvhbhB%v{D`QO3Z(b)R=0P$^?ckY6x^!?PP{K#q^6i(^Q|t>gn- zA~P27bh>ezRn)k`kY=)~B%>+ARZ+43rIUiBpzHTdtO{*y-M5kioC6oz<{El*C1&5$ plHQ; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/perfect_hopper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/perfect_hopper.png new file mode 100644 index 0000000000000000000000000000000000000000..0778bc04a092eaf8d599c78552a9d9f1013aff11 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A9J`-Rurn+iv_O08Nh zGjWz+QI$ws@Feb+EI>KNk|4ie28U-i(tw;GPZ!6Kid#KBj(kTPI1ZOFH~#;>!&q#p z#Wi#Hw)^Hu5~WuJI#;h+=vB+^UEyWc`MExD+kN%6oGGqdGU*p~a6 zXPWS)6v0vrrawQ{{{0&N>zdcgjiMrP!Gc9q3P-mty-->J)WBF0A*ZQ~wsv^X}Es=d8_+{<7_=scrP?;I$k17>cSUHux%; zyM)dW@Htss&v8?Aeoz$4AOA1*CoJEHJ>T>FV7tK9hQKGsJLPZdZmunP(4f!LwAXBd iMbFH;iS2*RR@95He9jeG+iIz9*nQ~ook!UUbM67PF_r}R1v5B2 zyO9RuWO}+dhE&|D?Y_$Bq9|~rVu$hH@aiXbp6lOS^K<*-3N_ET^X`%9)8`qqJ=9^^ zVzy+;u43;E?Sh9bTh{byPM=g=UMzWr&ntWDcT2;L7{O%jx@k%JTc@3EDmQX_pDb(} iy=brUN$p89?pre!NV01B?l}hX0E4HipUXO@geCy5{9l&< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/potato_spreading.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/potato_spreading.png new file mode 100644 index 0000000000000000000000000000000000000000..5827c090f1b07bf85da6d3f963807daaec643708 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=0aiHT9bqGz%FNBN)1` zCxWCHOM?7@862M7NCR^0JY5_^DsCk!Ft8->q`7efA80wq;bP2XVPM(d>NCTa=KznG zaQccQcCijA#dJ1xRsrr+O@T)p1r{BWY_DaI(qZW@`z}xeG>O5})z4*}Q$iB}PV^|L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/solar_panel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_items/solar_panel.png new file mode 100644 index 0000000000000000000000000000000000000000..ec0f593e16979061f54d8b03fdbf5641a944849b GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9b2zdUn%!;UHO3ue_- zwC|o);#gB0?H<;Z9-w3FSQu!lqHYu|e2i-|P$^?ckY6x^!?PP{Ku)Bmi(^Q|t>gn- zEK?VJxhSD(P^+{hnRmj{3X^9?W-T_<;)!yw3&^o-7M{Q_5}dBlw4yLwBV5F0qnqc_ zIf+ISSeI;;OjDb#y=qGOyEKN42TVFx7ai15=w)E|BBpf0tZkT~j)fdH!sH{rH~Lze*9@UFm5zyMff7GAc5Hp1 zgGw%2o7ZGId`vf-mbN8_9V!yFgq(Lr?oQl|t((^b;wT-sey3L{(5tz-g-ZTbM!m|a6h8&c_Z^XzGr#! z?Psl?$J)CgP#56o8Q@Z8wq{pH`)4)NGDXuH*=v8xi-|__b_cD6 zN;;^o-3RJAMr7v2Y2?ugbs`#2(4mJV@0Pe*ruO%N!sjsta5gsT=)wh&*ls8B1vZmg z!sg5bV4N|wW{2fjO&Huoad+6n?1nHpp`#h}1Px~^A_$qak-7WA_p1-=hTu+s$pDbu zK{U`-#M)8}zGGAS!$cO_6wEn6A|X^gBcLSN(4S$`?1zxfU@{tTp#-p_ja6`7#^9$f ze79Qr!$bv4;AIFD;21H~lI+qHZ+O}iw}gY2TV`Hxm_dej)L9#QXJire|!6+C7qhJ(_f>AIE0Hh)%JC!uJt^fc407*qoM6N<$g2hyT A*#H0l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_storage_expander.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/minion_storage_expander.png new file mode 100644 index 0000000000000000000000000000000000000000..da607293e5204d087b2b0605eec15ee0d58c9d76 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08{S@t(P%dVi*DhM(N> zJo(j?x=WWXEh{V2kmLUU|9`Hpb+=txz}{p{8pzIp?KvlE><=p>EF>S}CPi7ruWx zsY0l@&7thj0p8GvP3C1y=MBDpefwbEv(V%t37u}b>gTi**(>LsFJ2uH`j=PmiVc%d b{13*HTi(GTY;vdZqfJzxlg8YIR9G=}s19IX#T^vIyZY4Xg zok=qY`@~`}`K(dpEY%2w%SM)rF2z&B{cdw6=>!JF+vYL_D0l=M&3^8uaM<(0(QLJd z&aP?`^$8pA*s6SC@OXP^!Y8>6ny1gtv1CY_(-?V#`I#~UgVhsp?q^?Mnt<0sqr04q= zb+{|8j5oTyv~ho>pQQ|UX6T89K$VOoL4Lsu4$p3+0XdnTE{-7;w|q}9axpt{IA1)L zacAfMR_SbUwT2(}pG$qH6EvLOnmd6z%AsS%JMprMk;iu)>#51(*e+Gy(UIi!q-%9( z(z2)Q{;At98T%OPKG>${F4uJBfXDXwDIwa+8RjG#t*O|jc6jeceeuamWgjOmKL)gv N!PC{xWt~$(69As2Pa^;T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/necrons_ladder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/necrons_ladder.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef25f1043459cff04690b67b68a76e25a7c2b9c GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9cj|9|x8(b1zv1A~KY z933?^HTn7Z&vHv>0_7M>g8YIR9G=}s19D~ZfL3ABj8)78&qol`;+04wc3;{X5v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/night_saver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/night_saver.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7978222d22ce804db31a3a49de4ec3fedaf847 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0FH2F1~VV*VFsgwk_$C z5EGM=k;%#F{QmV*SXl1n1rzgQqij#bvH{gGmIV0)GdMiEkp|?Xdb&7^iZ+@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/paint_cartridge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/paint_cartridge.png new file mode 100644 index 0000000000000000000000000000000000000000..65a4493c02face213d7e2f0319ee52a4b5c6aa5d GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07iv7SYz#w|DUlh)Ahm z|HqW}pJD5Nl{ZfRuW|mbWc$y?W@=%R)h`HA%2*QQ7tG-B>_!@p6X5CM7*cVo^lT_o zLjZ?Mpya%>|F&nxAiB_^NnUrKC`W};vZLipFC&Y*NV4RhU?c~z2&fMcJ2oz+lF(l zzuU#PNbXmAWPik4_6%SV+B=$l z_Xpg5z_>A&pYb1a(r^2zre6h?S1>MW;`sV~v3iSwJZA^TghS>YZJ)VqEzD2d+TQz7 z`dD&)4cqdS4VOa>=I%^9>w9izUPkuh;_s|#>5P*%H=T@p$eF2T@qCJ)$5D_2Jzf1= J);T3K0RYvJP#ypP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/parkour_times.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/parkour_times.png new file mode 100644 index 0000000000000000000000000000000000000000..e214e7d3e2599ff85f0f1ab023eea4da19fe53dc GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnH3?%tPCZz)@&H$efS0D`n|Nq;%{0UXNNFTD(u tbxcio4s}Ga2{kgYG&8p6R!B0h=4PWrTXmF@2`t{wwQT(z5H03t$a1=vhWP^rMIHO8pLNkpHghN;mGG}yG0irnpd5; l=*jZ_hY3&I#p9~yO21mjB5AT$MG9yygQu&X%Q~loCII8lT%Z5| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/pet_cake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/pet_cake.png new file mode 100644 index 0000000000000000000000000000000000000000..397d8a9af4ee55c0734f499c27323f00efc249dc GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj{`>#q(bs3kuAW%) zp*ZSzqRNg~_4N_TFHB9B2P;hXl*`R2YZzN$W%l(S|LpM+lV@Z%-FoVOh8)-mJ zk*AAeNX4z>18fn?cla?})R{J2SKpdJa$PV_YwYp{)^*34S|WOKozvsYSd4m9((mm_ zd2`@E`V#A--#49PX4`l6l%LwUI(dm7ev+D!k#m`iwuMK^+HHNu%zXIumoI&x&l}l3 o+4`Th`p=lc{{R1f2Pr;=ptd7#2eav4t`rG0o9@+NTBED9 prP-9>j0T53!|XFr3_=H37|t*VUaC?(tp>D$!PC{xWt~$(695f3Lo5IQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/plumber_sponge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/plumber_sponge.png new file mode 100644 index 0000000000000000000000000000000000000000..58d70237f9afbeb49e42d653eafd1911bea1d591 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=0^62cA9Wb#Ra0_BH-< z`zEaktaVz-%pGCS~ zgMk`Xv=a-9XtR355p`)!DPM+8X?9IcKZY)AZ7r^@+=K@vfnp-wuNjP5dPOeZ+AS%u zLzwmGuJU{aqiIXa88sDdY*m&{(lHN^(Pm(%JR-^x#Vqg`XbXdy hXHJrP#3$skFQ22WQ%mvv4FO#obKL~sBA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/portalizer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/portalizer.png new file mode 100644 index 0000000000000000000000000000000000000000..8bc378cb812e6d02967ea37358179cc51e2881bb GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0CUI^3t3kKTT@Q;lOwQ zi@$BoHem#cGL{7S1v5B2yO9Ru#Cy6phE&{gJ=w|0U?|{p@$0MoPeYkHV?N)nDZgav zf4oX@!cHa0S96%Hr~FNw`%S8pXGTW8-v?id87_a!Hs*4unKEQLn5qefscexgPB6P2 plmF`C!L0m}OV2)?>Q-J~FZ7r3{e#ygcY#(hc)I$ztaD0e0swg(MnV7p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/potion_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/potion_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..38fa3134a1d67865adc1975265815e2a921b099c GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPD~Pt1Fx6y??LV~n{F^IJ zzw4fgHDc&`_@Hg2yQ*8og;d>BZ4VcoS-*6;x!9Fl&sqnQBqIeUImXNTI+yiDHDm_!@pQ{?I57*cU7_rz63W? z6g$`OgI^dcC012%Juc6DIcvh1hAGQ51*J9${I>ksQa*8~w8Aou(#C>!EkN5DJYD@< J);T3K0RVl~W(EKN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_aqua.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_aqua.png new file mode 100644 index 0000000000000000000000000000000000000000..7310b55aa29da5496479265308ab2c0eb3ff33f3 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?^^>zr7uTlf zK7A^F>5|BnEkg6=3UsvdXJ$A#hVz7k7#pN2DwuF{35y;}0cv4jED7=pW^j0RBMrz& z^K@|xskoKwz!Y;je+`rIH0$_p5e!LNH0(k$84R6RcwM<1dW_s1w=-;*b>Yhf<^;Ej zRJ9o!l@=GP%_v;7$XNJL$BQ|vX@B0li2BNSzr7uTlb zr!S50pX~2d;^Y`^VIF8~kgBd`tEgZiC7~`TAjZul+%@&EE>I6+NswPKgTu2MX+Tbz zr;B4q#jRuqrajlg@39)Mv)2E%hat%)&}M}Z;}H%)6A?`Y!&5S>cbN`kIbA+1*C6@u z>dk~>XV2W+eXwWx)Xkd}drsV}KG<{L`1!rR3`u`>?ETI*gTe~DWM4fn7>#a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..e17e267f070b3662069716a823baa1179c1e86d6 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?^^>zr7uTlb zHav~Wx!@Xk+{1OBjnz^o$8dAgS;hvbI$G6=3MSlK!moEa2m|#nmIV0)GdMiEkp|?X zdAc};RNP8-V7hbL{|%e*Hf#BBHyDz(XxN2hG8j6s@Vat2^ccB2ZfDpq>%x}}+zDzr7uTjd zm>PeoIbcnmQ-8E+k-J8Ut)i1-cz~glu|cY$f(bX5@TNa^_X71WmIV0)GdMiEkp|?X zdAc};RNP8-V2U}NzlO42DiDyslghJx1=1+Zi^@y6|NKbAnq% zs@jZ=N{frtW)v=3WGsBBzrowxsA zT$_?~Vrr?JQPMKC07(XtE4WiX6k<#pwD=-K3O(13k|)bx_=ya{d9 zscJJeDlIMsl8YA^3m^LMVh(HCpEoa}zA_&9vAO7)l)>ZsGmD=e;Q3en{+{!i|NrGR a7#O1OY4qr?xpo3*BZH@_pUXO@geCyZzgg7) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..43f98d03e9e8b8b73746e2b5385dc14f96963bac GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?_03C1o}6tu zeqhtZwJ96dES@~Ir?$R4D>o@L+|S7|+}I#hQNe_pOSr6e&0(M(#*!evUyGJ+v#i>6&jHiO|A7TKd*4n3D#4u&vqka}EjnKz-W zGF4^9Mx{l?YBM%2USuqEXv2#+tZ9GVyombBc;v_CqH9tHkMGYcetv-GU-|oc&TIbv cm)Brm@ZF_h7reUlAJ9eyPgg&ebxsLQ08*%2#sB~S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_green.png new file mode 100644 index 0000000000000000000000000000000000000000..758f2516f4884752a7f168b7c4db92721e97d3fe GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?^^>zr7uTlD zKWo;sNvwRKWJ05uSF*5uu#l5uxRDc|u|cY$f(bX5a7g{CGN2yDk|4ie28U-i(tw;a zPZ!6Kid)GJOfjeP*Dx7RvyT53!H~2?!!9I~!O)3?*Okkm$H?7rJHv)q7rty@PH?M8 zRhzLqaIjKW2WjD-(%yqLq9_UFxusIQDie(Wu}mSynx{=3@W2YCLKzrW|a=Kp_r b4F-l%KaFP^2KQrtHZpj+`njxgN@xNAE~izB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_lilac.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_lilac.png new file mode 100644 index 0000000000000000000000000000000000000000..75a17eff39486107e277273bd1233c1389901e91 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?^^>zr7uTlj znRj}5$M!juYbWL}X-t_}89g!Gx5mja+}I#hQNe_pOZe?Ek2s(n#*!evU{Os0#*!evUyGJ+v#i>6&jHiO|A7TKd*4n3D#4u&vqka}EjnKz-W zGF4^9Mx{l?YBM%2USuqEXv2#+tZ9GVyombBc;v_CqH9tHkMGYcetv-GU-|oc&TIbv cm)Brm@ZF_h7reUlAJ9eyPgg&ebxsLQ0Ly4w?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_pink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_pink.png new file mode 100644 index 0000000000000000000000000000000000000000..345a4ef8dc6f64fd3bf6ff3ab5198b424be92796 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%sLg)!!$pfA2l_ zs4eFqQ=Q1v5B2yO9Ru zqzr7uTk2 z4Scb{^6C_=Q_VVCvQ(BhIff_6%rQ1d4G^nUR50P@5 zNL8D$QF(E(+Kj@*i;RU2b-b9voA&3;i+g_=kNntL{7ui`@%>e$uMhD2D}R5_dCmX- c@)`^bo1!&WvbXPB544fN)78&qol`;+0H{@3M*si- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/repelling_candle/repelling_candle_red.png new file mode 100644 index 0000000000000000000000000000000000000000..ac51b080187f10f19d1624f475e12a2136933eb5 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cCo%s7?^^>zr7uTlz zPma9f>2S$HZ>yo^B6TGv$M6Y?3dRPh#Zpp=3MSlK!j?8Qi-39Yhf?gY1r zRJ9o!l@}MQ%_v;F$XNJL$BQ|oBlpoZETS0=+`r3#gj0B*-tA!Qt7BG$1G4)5S5Q z;#ThIgM7^n9Ih9C&k!rP^zVQBt}t!G!>h_!)hqw_Z?aSgGde%hE~+j6W9Ql9OrJY? z3bJ=B{l|9mvUJ7~1F4pliyxd0>|C(xm5o$T(_;m3f%J_!@p zljiB-7*cU7*?}p>d;MA_<7wOC^P?G(QY>sgc`z8NOzARVa_D)Wwls}#gOp?NL*9h8 zj3ufwHlEQbR-3U=SLd?OA%W9#SkwOaoR0d+c;v_CqH9tHkMGYcetv-GU-|oc&TIbv cm)Brm`1Mn5jgD@iKhQ=7Pgg&ebxsLQ01%*DMgRZ+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/rock_paper_shears.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/rock_paper_shears.png new file mode 100644 index 0000000000000000000000000000000000000000..f53db08dcce945ed58bee1d606d081801fd9b2e8 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE09)H)G{`<=g<1jV7rLj z|JeV0hV!lr|EFrQv9a^mw3P!@FqQ=Q1v5B2yO9Ru#Cy6phE&`t?QY~cs=&kSTe|Dd z|NpPNmxw&rn0)4r<85|#W?tVR4MiyulgQu&X%Q~loCIIVB BM?3%k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/flower_maelstrom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/flower_maelstrom.png new file mode 100644 index 0000000000000000000000000000000000000000..7616bfe3f938a65ed7e2d1d466061e900a57f4c4 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0Er=s`=JHXSR}5i8Awl zR|l_t4Fxwf?E)>eDAmx_x_|zBTDNZ9%U7?Wl-dCo_*!Q-{ZEL{r%UJSqs*2PZbC#^kMpP?P%p;uiynsAMW_KBarjeM;E5M zoW()*yKe>Nx2tDnm{r-UW|lhEaktacgQfD^r7l0L#N)|L<>& zeKT#(O%MC9bL?qNPMd9YG-76Oh^|+k9g$*VdB8zNO60>D10h3gp9ijn+?#tB<)zI_ kb5)*Xy+b3TIX;{}Dw1hN;)P9GK*Je4UHx3vIVCg!0DV(IkN^Mx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/poorly_wrapped_rock.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/poorly_wrapped_rock.png new file mode 100644 index 0000000000000000000000000000000000000000..3b204daa616a451469fbee992104b0cb3f6cdda4 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=4@N#=qPsx+z7lQ&FK* zgDFo?fMMD(6`%xTNswPKgTu2MX+Vynr;B4q#jWH6{4;nLY+20FlDguN3Xhn8NTCQ1 zgQ3XWkd}iyqOOVQ0?nbWCne4#a0D8avA#~?Hu7zdI3m?>--+R!2D^{%<(x}E!x%hW L{an^LB{Ts5kw!5= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/rose_bouquet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/rose_bouquet.png new file mode 100644 index 0000000000000000000000000000000000000000..2a168e567459b3494179758e0f044fd666ec0e3a GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4^1e0urn_1~}YFE@&= zTet4cG~v+Iy8m4ry!tiX8tCj-)ts#)RiezS;HDPv>4q6l17k^$UoeBivm0qZPJ*Y4 zV@SoVWCzAO(q+vr8)BDV*I_UW$$w+FmGMZxs<_QkE}ON^zP+`X;fO$0-F9x3qber( zzhc=0oC7>H8IBkPiG&2PUeamvTBX1kb~J^#X`+ zZWO(}Nche);Y}%mr5a3=A77aURKZvhkkeVwd+9Jk#{z(1X7pHb;85k&XPFuU)N}Ww!lu4>K?i5fz zV@Z%-FoVOh8)-mJtfz}(NX4zCU5B;EB^l1-g_&9d2hv4PR^NcAMoFD zeR6vCiMVrKLTA>`%|2$89=un3LcijIeY$byUsZ44dM54tKJE#E9w`qBcIO>C9Jr&u fM1Q^J*KoUTIZmF7=~>%=7BP6b`njxgN@xNA->6dE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/wrapped_gift_for_juliette.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/romero/wrapped_gift_for_juliette.png new file mode 100644 index 0000000000000000000000000000000000000000..4bd1bf3bd543ec49c3e666d5c9d53cf7a164cf23 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G#_p?(yTtSFBjk z+1dHmx$UmH*?JL$Di&VhI!`U23dWKkzhDN3XE)M-oKQ~}$B>F!$p^SZS{1fbEvzt{ zp+6&R-4dP@jZW1rami+hr%hh63T(wYCl$IgOgNabFvaF7VI7?d*UTt$7_Fz7Qgr(#H%)mmmzzPv9Cmnr#Zt4#x;T&0$piAyp0*lY$aG3B=|W zA}n`TT=l<<_Wx;f|Hoz4ne*jD8Aav$gs5=N5fHbDw$ikaFV$e0HK`^KsFSfI$S;_| z;n|HeAScb!#WAGfR&7sfBeR0Y(G!PdzsY}F_b&HBjq&}P`fWMFLx7*#^R>-=>ksYTF-+?gCQqp3n{joH!?h&6#+!Xvtvg-S h!uPv~v7d4O$2hlwS*s}HSQXGl22WQ%mvv4FO#n|~S=Imm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/saving_grace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/saving_grace.png new file mode 100644 index 0000000000000000000000000000000000000000..be58c3a3d938fe5ae3b2f4cf6894ffd0638a6e6c GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08YLVA_--cxRgMuWMd^ zzsCRmzTISIhd^8)kGa9!z3EIq6^tc8e!&b5&u*jvIVqkljv*Dddb-<14;u(L1#3Is!n7!4(yCSAF6VArKNv6mzi)|mVeV`A9N#HIEz`zX*f O1_n=8KbLh*2~7YlEH}#l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/shiny_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/shiny_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..9d856d382df9a3017cae358bad82ca54f7abec45 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u2V+ht{+t;rgZp#)T z#JMR&@YTEU+lz#!O`Eo5^JY_1)6YNCuC7;nbXRp|j&f0e%&+L>7l7IrOM?7@862M7 zNCR>LJY5_^DsCkm;Ae!kNgL#YVV@&KXdu2XYy!_@SpXT@V?F+@5B{k<~ysMn8EE&!;le6EaktaVuGYs{{zn&EZV( z@h%T4e9dHd=k#goSq(iepE|UOO-R(piMnUVdmV8siw}3}i`)MEU(#WCkjJvi!#dGk82KIoPQ2N6*2$BSl=mq+mdKI;Vst08uhTVgLXD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can.png new file mode 100644 index 0000000000000000000000000000000000000000..383d92a1d00ad1e547d45e75944b5ffa1e37adfa GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0C_QE1xv6D?B_@rhTIQ z-jfVg-ue3l9~_kY|1^B*e=DV2hAGMXSFfB(=4AVy5O&o}XXT0od-rTw^QB82sF|@O z$S;_|;n|HeAjj9!#WAGfRGq+vgxs2FjkQya^0`l1PA{7Dm}gJ%*(;@-f0(YmN$NTYG?>BD L)z4*}Q$iB}XF5;y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can_spraying.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/spray_can_spraying.png new file mode 100644 index 0000000000000000000000000000000000000000..737a70f2187022e21f2d5411a53e185c1292dc36 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0BKm>ec_J;a9JmTKeB= z@19K$4oa?EvA}-s$^89-lO}fkPYA28E0<}XI3=0?s+mrBc&Jh?1A~=!GAEn7>C!}? zex{NjzhH*_y1vP(Kwglii(^Q|ty+F&rXvP9(bDQq|KG1N6O%s8y+-}td*(Sx>lJhJ zMJF^|nJ>tsV1MvaLsr=9m@=jvxgDwc3YOhp_Bt52_w04Bj=g&8v@(Oss_EYS9#zbW U$9Sq<0ZnJ{boFyt=akR{0NE!{7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stone_bridge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stone_bridge.png new file mode 100644 index 0000000000000000000000000000000000000000..c1706374aa5d512c2e3550e6eba1aedf3ac05194 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=1bu9eKIAiHV6pK|#jG z#%1A)bb+FbB|(0{3=Yq3qyahJo-U3d6}OTP@JGlj*s{2Tc}7`a5YxtpIV^KS9g@yD z>{~o(5r=cf=B~+;CUt2$Z|K~-aZ=}IO=j&0tV@_B8gw{#Q(Buc47gpAnHX4Ad3e6~ SOMU|y%i!ti=d#Wzp$Pz|Ts4pY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/avaricious_chalice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/avaricious_chalice.png new file mode 100644 index 0000000000000000000000000000000000000000..688196929c9b4a405d42cf6b02d73a5dab0821d4 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0ErlB6w$-@ULrL6DLkQ zeE9IUZ{L7|rlzKUzs7$KsY+*HSk1*%s=?IeJI50!!B`UH7tG-B>_!@pli=y%7*cU7 zw5M5+!9alJe&PSO$8J3oWLuS$RuFK%;GM;@We-avFU?t)DyecUVCp8`Y0F$Pq$Qj= ze5Pz?oN1Z1jD>y49FB*K(yt481wN%8(33gY^7Nvw(#Pi}`vNl$EMV&KWGa7fO<*<9 OE(T9mKbLh*2~7Yb+E0Q2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_soaked_coins.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_soaked_coins.png new file mode 100644 index 0000000000000000000000000000000000000000..a383947f1f291327eedf084565fdd9fe1e2775d3 GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AtxXJ5_5^>U-=J7eQJ z(}Xvr2>$&V|L4crU)Q|0YHH@?<;BIt`S|#_F)$bz8Oh7Zr86)rZk?V9)X7*9CXQR`>lDBLjTDw*#G{liF`D>%k-s-?IW5w zqO!x6Y!B6*xJ*kt;eF8gH63TT8+!6~opOj{H2PkbG#{WQx$#$5LzpgR~mUHx3vIVCg! E0ArP0KmY&$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_stained_coins.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/stonk_market/blood_stained_coins.png new file mode 100644 index 0000000000000000000000000000000000000000..65c4682910c95ab1b5f4a434fdbfd6bee7ac405d GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4?hto{2n{?|3Hmm5Xz zOcUOeBAAz#7Z(@j!7aOMK}M9_gu?eLCfvI7 z-Qn0f@x-6&zcWj2pa1>N?ppa1FaE~uUjLnc!o=c5Rqy`1AGz8 z3wjiSIb^dU=CMr+5ScQEZ&9-_YxvomganQ-ZSnc4k_QiDh3wpvwNM~nN%7P#T8i8Y zX2o{1m}i+VNba638Y*?*Siy`E2VSbP0l+XkK^h`!? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/super_magic_mushroom_soup.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/super_magic_mushroom_soup.png new file mode 100644 index 0000000000000000000000000000000000000000..652526a0ff020be10a0408a24ed77c349cb67d6e GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=1freE9n{{?|3HlP6EU z+$dT*S3Mpm%2*QQ7tG-B>_!@pW9sSR7*cU7SwV0|g8;_{sdl!8j5Jl%)MSIxM{h_d wslGU%#F5CrIOE|74F#sO4I3;h9+=8AxCyY_EV6u40yKcZ)78&qol`;+0N<4{j{pDw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/swappable_preview.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/swappable_preview.png new file mode 100644 index 0000000000000000000000000000000000000000..4b03ce7d289440ea9163614de64c47221bae5f2f GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6ygXeTLn>~qJ#Wa%V93LKz=(TB z5$^(l9rIsLx4J4<8#Lvs-R&}Vk4XxiH{De=*Y+|xPckYGikieyUo_9c`c9l~auVMK eOLdLcnRd(v7Ri5`ICm@1R0dC1KbLh*2~7Zis48m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/talisman_bag.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/talisman_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..ee332aa61d1b494ab1614f9cee6c2dbce33a79fc GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=8RDC;mSyd3j&wxo)Xt zeNhb=fwc}MvED|74(v%r3TGG?T&*SMFfo~GGCIjIwlsd;4AjF|666=m;PC858jw@y z>EaktaVyz@Nye64q37B@^XCdY-Q|+}2Z9bRlubCcejDEgk?4P)zRElFggjo8uOPTB zA$hgDo?e363vowB_62gu$?l@+f^2;u$;s;Pb+veGau+U~T(dsI$Y4&U_v}TFo}6Sz lnQQrSi4kMc`!h3n7%IzE0(Z*2F92H3;OXk;vd$@?2>=&TQ+@yd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/tic_tac_toe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/tic_tac_toe.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb7d91f25003f9deb19fb96f708fc2933258fbf GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~MLqVq;@BHn#tt&v4$A zp;KRYWB;dW);*Bl0#w9U666=m;PC858jut3>EaktajWNaEAIgX5!Z|A zH`4!CzSb3Zf7GAp-;tZ2-#yP*8z_{YU_RS#gZvA>96{l040oAMf3G~KdSfTEzRmwK z#)@}B`gTe~DWM4f D_oqkU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/titanic_exp_bottle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/titanic_exp_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..797be50baf3a127b525cd4e513972a562cc3db2f GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DhNBr4E`Syz#%XoK1I zCs8N=Pn>neJ90y~LG4@JP(8t1ay+wr_o_uCG{spx)t% z@}Z+E7*DhBI#BMivz9fk@bb5*YL~9f-ebQ!WdZM@jIZmAtFq(p#<7)yfuf*Bm1-ADs+;yqm)Ln?0N_A+uYEASjS zb9U9Q|Lp6xv6>mkI4~`Jd-nMv`MKw!f_AETYzS!UeAMFn!)tv}bDPAoU{-0V2bMoVudw@2@vgn-5i$$5Ebd@# z5z}YcEW>(Kn$@+T$H7rSfYqppmzA~E%7N!}r<2!Q2e(a6l@{^^Dpt|bX*2Znqr0NTRf>FVdQ&MBb@0KZ2>!vFvP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/arachne_sanctuary_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/arachne_sanctuary_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..fd496d9ed86deced73daf771bbcded956f09ce18 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A_o6f&0;zIAuipFf|L zukhG?u)Mv)(pFg_)lMhcR9Rhw*HD}{%uvZiQ|>+|Nn2g z^n(LXh_NKdFPOpM*^M+HC(F~tF{I*F>8Vy;76%^YgEGd)Uhcn=-X>a=@++*G&y?QN*?zWq x{7WJYD@<);T3K0RUhlO)9zW=;#;`5iw)!i(U6$S9JfFwRi>7nOVv} z{fs3+e!&b5&u*jvIVqkljv*Dda!(v(JfI+QAmGl!+y8c7+q?7W%KJs1{xP0w7m#}r zcZD-~j_y)n4)=b&seAT0DoHF})Sbnw#&Dpq>_4Lgv!gA;v7e7bda6~pb0gFyX^ zB|(0{3=Yq3qyafOo-U3d6}NIvwelVg5OKcv@3_FZf4j}jh}~2EZ+E@qaYb{TOxr`Z zzs(FQa@Ak&;`L!rf4zHEB>##-lLPLrV-GS;Em?K_T*Bp-ts5F=7Bm<<7KJNZ;G1RspjPmZq>X*!4-UD--=Ec0Dl6Tun-jHx Z@th&^rp($0-+`7fc)I$ztaD0e0st&xQ-J^g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/crystal_hollows_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/crystal_hollows_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..90d9e112cc83325ce164b7faa0bf9cb5c404538f GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE07jS+~m0Sn|S@XTX$Fe z`SWS{3Xk><%iRadEzHerN~}}ubfQg_Fa5vTv!njgGKPn>3_AlEZf+~y(cl>o5#i|Q z*qe3c{DRN<{;RcaC4~cxV=M{s3ubV5b|VeQ$@Fw_45_%4+tn(_q9|~nz`}gZf3Nzt zf1A`cznZ3L`CYW>^S%0|A13#`?GTLe68g4yiqVk?&pP*PpJY76(8YBN7vm|bRo@w= zxi(#F-D767^d*B-p40qr%~rOS*EagOzUh-wdc*EF-2cq*x|Ow!-%jEP&{76ZS3j3^ HP6 zbo{i8;s3KWm;PVv*-_t{b!P5^|K}Hc{&)JB5s zGOvH`{F!rKehXj|T8KU)<7fx#Rze`I0(&+}q}7pZsm! zVb}7(?PGJ5uH}54rR;OUihLHwRw=tpiSjyAz#7Nxx#Uc=@FOL)vMPIpxzTT~9jZAM xe4lSYy5LsXcfqE?7un}*d;N~*-trIW?rZc|yO#OOr2}nc@O1TaS?83{1OTjkUZwy5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_2_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_2_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..a79b2a53d80363c4204deb0ad6671fa6417a0437 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0F&4=hLmbtG?}0+kLQn z`3jGB6%6eimXG|*Tb-QdXi22n=@c0mMVl(8YG?$CiaLsksdIshJ;}bw9!N2k1o;Is zI6S+N2IM4rx;TbZ+{!(3l#xMEz&Y@as`LN7>$E4_uIHGor=?i8fc5zw_g#x;b#0xk z`L*Hu?98c;ueQW?ZM)9e@JDaQtcJI|58Kvu3OR(cGn?GXZ;Vw+&3@mSd(NZzb^Gi& fg^hp9zwQu?&SW{hxG8o9&^iWBS3j3^P6GnNGT z1v5B2yO9RuBzw9zhE&|jJ#&=tfB}zl;OWG+zva5ci*MI6O6gT3$1UjH`pxy1bF9X5 zvCsdQG{rC5wJnxht?~BTJBHJt1$z<_Di2#EW~MQIxVV<7^Lq3G=ORDOgk51->n!Rm hIXT=e;T~8-dm_c)I$ztaD0e0sx@9Sz!PG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_3_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/danger_3_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..f6ced8b27b115d1b7fb5f5605c55b75089c7cd41 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4^1e7bda)$W7k%U5`` zcUZ2p+Y=ujUt=&o)lMhcR5@6(#(}RyMNwOWApxlP(t)~%K#H*>$S;_|;n|HeASd3_ z#WAGfR%Sx%y#C#;zt4Vc$~SXn4Q3ImiF_g4Of~Pn9bCi8rNF@85v*{& Tal)=vpj8Z>u6{1-oD!M<-rH4j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragon_nest_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragon_nest_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..0552a08ce13c4e50a7870626986e6c284d450370 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7D~QXG5G+}sj{!HZ+UsSilTOWd^}L)O1nKZ2J;>GO1OMOy@7njk|4ie28U-i z(tw;qPZ!6Kid&^;jxshFh%jH+Wv=;~zuVem`yTyA<_D!eGvuz>`b<$@YF1I6*?a#P zi|2eZd^7inj@Rzm#!k!Y%bwhmo**3Hui)*NYAw!jrm6JdpU&dMiLK|RXD^wOZtq)S Z#OU&kCBDh$5)05W22WQ%mvv4FO#qUBQTPA= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragontail_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/dragontail_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..9e719150720b2db81095e0ec944e2deca5b4ad18 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A{PVpZkhuvS+LFjQ9( z68NH;{`FX^{lMXrpl>yI&0RfsjRGwkB|QpD8dNT%vciS z7tG-B>_!@plke%`7*cVo^h79AO8|$%MeiHGn*Qcr`Z@2Noyngm$Jad$z5TWJ{@z-< zI4vWd<@YU`3Y4Z_e0wML=@K#P;9Pb+udl+vfe%6swykq+nJs1JdpT!o!6KH`9LsGu u!V}+}P72(SEmgc(>cgk3MW6J3Jmz4&z`jYOIb|l$Y6eeNKbLh*2~7Zu5?(I= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_1_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_1_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..ec0a8004f415a0eda72051e09040172efa15bf8f GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0Df*ch#RipO&xi*nP0P zy~C2fV~^ylbD<837TOX`nNIOu+Ri1W*N>~upJpCys+?-4Urkx_Nr>1n+N~987*IZ z@Rt6EYnI<#|FygM86I+~U`RBO_u4D}VW0ejCyyUD|F}_pqGp?h@xFNuN={5QCHYHK u&X`wl88ZA85qQ1rOm(*Im+u#z?`HV>kR{+SJNH_kjSQZyelF{r5}E)MqhD+Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_2_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/farming_2_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..99ca418d74e7b9c20c033d331f33773081196a96 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A8k!sFtuu4C&8=lgNr zy0rNDlide0lrEKOuL&12+wwwk);a!;J^Z;Vt{#~dZK|AVr^6r7+TLNg`(XK>Kc8;h zT_qd79%Kq*NswPKgTu2MX+Tb?54p4SV)dt4wQ*O! z{pF3hUm9CKnf+;&uW{sUxdm1;vrlJb3(hO>udp9%HZkh=d#Wzp$PzCBW0fe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/foraging_1_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/foraging_1_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..171995e2d9f64e6110565db7fed0513c2a45211c GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0BJ7ciyeTt;g47&TsQv zzQW_y-Bo}7d}{Bo+-U}H^+m;k4?-FsF|@O z$S;_|;n|HeASc<=#WAGfR_>`*L1sq=r;BTLU##Dlc)s`I|F-+jvo?HVJ7)DfFGX(3 zl27x*4zW2GotiE1`c^E5W8ks%?e`RqEO@cjux-YAS+~;@YEJI0)?WK@tNgM8$?9OW ksf~Lr8Q%Q9asM~7Y$Qu*ck0`1KE0E3%bh~wT)t^6~map*G zeXu;$PN%)YvhTPkwr3fV3Xw`%m(3^6Xhy@3sAE@MfMUoeBivm0qZPQIs$V@SoV(i2A+4;wHX za7eyzX2bt^xih|AZoDqlb%B-RkVJgP9gl)*+v*pWu&!8ByiTdp-aC~Rl>wVM4SyxH=lz_tmCsIvlkvupjJa37)z8#8%>3`m_FZSw9xRss XUC7pvcbn@X&}s%xS3j3^P6oMKFqD6qGEn_M6{`Ls-4d6gXQfVmVf?yx^;Ke@)aIWF2$&*s8k6@&jjjc zED7=pW^j0RBMrz&_jGX#skoJMidBqBLBKWeq5q|g|F_;+Yw~^1;roHFB;*a;-`Cch z5P!R3?cBB3*bjtUNIUyfEqeVJ*9s{jp@O1TaS?83{1OUO_TA}~| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_castle_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_castle_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ca39a59e8aa32ac6a03ec0c19f28e1f65edba8 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE06}VyV==S8W>2hB=goW=C;V~8q&e1(1^0dn zYwo>#N9)*q-KDHsCLMbs5u_Wuc+#bRF0B^wzZ^2xUWz*FTiY-*>f8k>p~i(8i1Lh;`4`jLSSBafYDl6pP@w4E}t(|LE i7@AxCx^?IOY=+1P7Pq^d?__}1F?hQAxvXCwREZ0i!E!EjOrOx5CO4iHY{Vwx4R=k?fsqr-?S?Peo+>24~ emHmR7|1icLVOhYV)Gi3Lj=|H_&t;ucLK6VhOjZ;C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_wizard_tower_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/hub_wizard_tower_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3e8254c473a6ff7afafd58dcb39a07182115cf GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0E^TT_HK^oY|HaTeq%G zwbNk``R@_)Khax{fvY{#O8)=<|3Ebzsg}{E%DWGiw|7|n`Sa=4-Brt1c<^`Z;g4v& zptflT$dftZ?v6@= xnlrd|Kb{eAuJvxmy1Oc3 zSFRIKDPu{HUoeBivm0qZPNt`eV@SoV(i6-~tO`5~7o;}t{vWu%xAOd-9;0t{%{#A0 z<(t@R2!5;EWGE-lku_g=`sw~9jGa5q)&1-hzIdQ#>)ra4K+#>y-4%AcyZ(w@sMde+ wfsIXJp2M73)e+nWDw?GoTYmpH_^jS{?LJGw#qeLDKuZ}sUHx3vIVCg!0Pz4{y#N3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_2_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_2_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c8eba418748b8c3f769f2d9ab9052c45238b9a GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0DIdwA9treR3)0agTjv zWo2w^?3y)e_&fISN3=@LI>(>8BHC0r)lO&k!SePF%jGLP{`~oL>+Y(cz`!$Z8q*v$ zt^^vvSQ6wH%;50sMjDWl?&;zfQgJKy)Ky02Kn|BcnQL#q#%HVLS=WDOn4352`(N&B zwYRtFN7ZM%$c{|-{DAwX#+INSR=Le^=y;MBUE|_RuTVgDJ t=HZtKI}R^4Oe>Li&^*iZm)x%!@!TcM$D3r@4+5=Z@O1TaS?83{1OU!-V$=Wt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_3_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/mining_3_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..d87bb728fa10c7d109a87a9a610b4521c3c4bb43 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0C@abDN(X(cWQcVQ#*B zg~zSCtN#4?wEJLrw5f8cosNo%ij^T2gPF&_q60y4@6e4TB;JxrZV@d=JeMMiSL(peg0;+AX%faSc&Q728+q7MU!Wx z#U`x#xlh-sMDc8GQo8!h_sr^B=j~rJVfnRN`%dnT{b#}S`7{fk#kcTTK&u%%UHx3v IIVCg!0D2Q=^Z)<= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/murkwater_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/murkwater_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..131f63a332ee32255a951b6c9b32f0c5cdac9232 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0F&4=hLmbt9BnOU%tX4 zc|rf&ikS8eOWWn)9(DOvjox*!9uc`ZnSpNJ0UA0HKB;y(njyx1_Uh55$~F#)E~ZL0 z`pSl;(xrY%)o4b< zweOrVf#0CX@SnhML6ZqZre66RiKcGZx9qdn6HOC@-c}y3j9+>1r_&9)ibC;}rN>^} zd0DY9@Ni$!PtMgGid~`C7Hhw6-Ehig!=$rni}RnK*PXYMRcp=1T@FBd89ZJ6T-G@y GGywo?-Cw2v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/museum_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/museum_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..0d776fb9e50dead04049b4a90bd6df0873d0c7ea GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A8k!sG7E)8XOapWeTn zIdf)CPR_~s468c1jg*7}ZIoOLrT_nBxNu%C+Eh8!PG|SQ^7anPIogu7Dq?^Be7bda zm0q$^7|;~Pk|4ie28U-i(tw;SPZ!6Kid(s-S__>GMO*?8G8?Y`A0&Kx{zJZZGey@w zHG0naL?$`LKD=|~ts7V8 zbQPqzxU`lhtY6ZV;Ow66>01*X?rUadudAE7`jI+NHDgJTUoeBivm0qZPL!vMV@SoV zQs1MD2Mh$dZXf*j+AQvQ`)dCwDQ|s0T(c~n{Kxr{+L4H@Q?@aLoLwFxroLLJ=8a5) zz#6Tz#kZ80^c=(a0?f=0uZ@t;S;u2FMeG*$V~?}lv%fVn-<4$EtABy{6wnq1Pgg&e IbxsLQ01Zk^4FCWD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/park_cave_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/park_cave_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..e40540e1a814fe4cea57379a5261cf0cbb8cd678 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0EUo;&w_?a&&aGFgI`S zuw1^vfQBisE^in{X!Rcd5 z|NMTtyuZ#eT3W@5Z|b>Jf1rtsB|(0{3=Yq3qyahko-U3d6}NIv9A#`Z5Ma2Nvbg)m z*8fiX9~o?~e6mq+s#Rl1)NA3B+^k})KO`RU^%N==O4R!&pJJ7G9yEbBi0Q$*|Extm zZIXxoGHI%(^_rdzK9MtP`OPbSVh?*}R<0}k*&pD+8Kqvm_xscD)AoO7>*r%NnImF( Q5NI`nr>mdKI;Vst0IQ2Pm7PmW`8)Qc+UX=N^o{q@_Ocbz3)ZLz4R8QzW-JNv z3ubV5b|VeQ$?|k@45_%4+w022V93Gjz2M#7|H;>DpPP9ss?$7p>-d3)=Xa7*;*^;x z?aw>iV4tB_A)FLBm!0?F&odQUd1p;Xc=$oj`18zr%F+jvdNaS@t745h|4ZlX)@yBt ppK~rem+lc0gMhJYD@<);T3K0RVb;TgU(a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/rift_wizard_tower_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/rift_wizard_tower_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..867e446cbb209c6f6a71a6492600d6bcf4217b43 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A{JD_Oq6#WAGf zR_Uo$UI#@H=RlcxZ|&cO$4Ko}550Xf;Vr{4tLJP+!kKRG<+&F!C^1zD2c6+{@i=kp zIkQc>dqmd$&VYxSX-PVNpHv_G9?-hG&V`v_e}KBu*3~Ny=N+5Ey!7D&rzD^?44$rj JF6*2UngFagOzr>x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/scarleton_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/scarleton_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..68f5a0e44c2a48fed19291159c9cc42029e74504 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A{PVpZkhuvS+LFjQ9( z68x3^rn0g!K0bc$oI{mB&5R{M ze!&b5&u*jvIr*M0jv*DdN>79`wFGcDT=c&2tLbn4rJwWO*_r&Aa(vz6(A!^Y@9(X( zi_bP0l+XkKs^DI_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/smoldering_chambers_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/smoldering_chambers_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..406fc7e28396bda012a508ee953d632d90d295ff GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0E^r=QlPs4hjk?D$0?S zl}**qXmxTbGBR4e!lS*zQbR){+Eh8!PG|SQ@;`q*-MYIfP*l`WOzi(Og_A(dj3q&S z!3+-1ZlnP@DV{ElAr-euPqp$M4iIs^_+LWmUj26I*bXS!bmi-|*v!gnXXF!rKh%vItTI`2)HRPfBB#CGJfO9r>c*fpEGxvxy16y zdG|B^C|tZZV{#;S)zZINo3Gox%5xSEe)qf1Bxa$u<*_w?88kXvSZp~2Uoh^U9xQX| z5z{1rZ%ru=qqLW9x$}ylJag;3C!7IMoKwF`)mt%XE#-AuK54!Z(0T?>S3j3^P6?Ra zED7=pW^j0RBMrz&_jGX#skoKf(=2+xK*Y6qeZ=qgQMdG){GNaDw`;c!uhRFP zJ?ZnCrCX$rDJ7jWZQYTT-H=%3b=I9RLgM1A$BaiT6Ah}&bv6n&MKgAAo@=_q!4RH! p?DtKl)mM*796s~w;F|w48T^`<=PrJHb`H==22WQ%mvv4FO#t&6T$%s? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/unknown_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/unknown_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..d0fc5d71ff7139664263c95c3fe60a7a5bcaf4bd GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A8k!sFK6Re%0`0b{{Nn@38!7d3iQah_NKdFPOpM*^M+HC(zTyF{I*FX_q4xvm?)8H9xCw|Ksnl zL^&sfn{&=}*J~7In%Nn;CAc9de~EKw;KB1-)5Y8BoXtWX+&7Gx$@loLgB%-w@HK-} iwF(K9n|IG~$G_Xpc)0H0^F=_z89ZJ6T-G@yGywpOQb2G3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/void_sepulture_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/void_sepulture_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..e0bdbca977a01a4a63b355bfaab88fb716d60ce0 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0AVl5Lmv#sToRWFNFnh@y2alyw=AGKp2+rt<8gZObU7Ib7SH#KKk@+WVDNPH Kb6Mw<&;$VZhDzT6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/wasteland_travel_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/travel_scrolls/wasteland_travel_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..4803f3984c5eaa6713c290715fca2c6918109b9a GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07Kp6)iF{YISl_<>GMW zVolZ1cws5_yHMfxQiW(!aLGbuyL&`2{mL zJiCzw_!@plkDl@7*cVo*RPe4HIPGS=bidH z+;K17AIWfC0}7ZMXKCN1`^WhvOT?zilU zD*J@v_pbBkYHx48zIj94iw}+;`41FEv>!8-|Gs{MxyG)$60@ssd+Y>S$KdJe=d#Wz Gp$PzpaZU9A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/unknown_item.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/unknown_item.png new file mode 100644 index 0000000000000000000000000000000000000000..d2763bce46de04b515d0415de722ec23dd4f7467 GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Ts>VJLn?0V?Kvpg5WsQxpO)VR z(L42;t>XII=6L2!xW2h#-u{pKe7!B|CZt?gk#o#J^`VS{wWP+qPYmmWEZBWn9&o4k Zi>KUb$mR6dI}2zagQu&X%Q~loCIGDtE4Bat literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wet_napkin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wet_napkin.png new file mode 100644 index 0000000000000000000000000000000000000000..60ece4edf7fd9734e171072b657ef5d56a77f9f6 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4^1e0urx(XCq-uU|TM z>e%7K`*y8cw{Gp)i(FiO&S?Gd-cjaa>-Qn6wylM>2zRXe@xyTHWO zraD>g?p&6j!%t1ruW@TIh+GO}zRYuaS*qii$6nD4TN6dQjxsnjNd)i}ON9ZgVeoYI Kb6Mw<&;$Tp*iw}M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wheel_of_fate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/misc/wheel_of_fate.png new file mode 100644 index 0000000000000000000000000000000000000000..fef3dc875907cbcd16ad8ce37ffb1b1b6108f589 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE08W=n6;DP|Nr+4|2H!{ z@c$14`xzMi15s+~bOwe)i46ZIGE87N=F5=zIgjB9Py=I0kY6x^!?PP{Ku)cvi(^Q| zE!R`*Oh*-Xm;xq0_{Dqg{|O>!xC2nt;Hudm0vSqI3;80fL um)hYtsZ4GCK3CTtB_|hcD*OLpW&N!$ER99)w`~VHgu&C*&t;ucLK6Vc$79X_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/amber_power_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/amber_power_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa1de57ea9bc625ff2b7c9ba1832c05f1bc2a92 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9b4;Mto0??e8d4}7^% z^wTnihqVlwQUrGfGR%-;DAi!fWM??@{jw!cDPu{HUoeBivm0qZPLQXIV@SoV`4x{0JBELE>o$jTkm))-mow{Iw{6<;&fIn&~ye*S3j3^P6jREmIV0)GdMiEkp|=hdb&7OD|Q=HBFP{<%zj{D)y9i(-sMd9p%%Prmxu6 uH0ABRX-gTC7+A}o-U3d6}OTPFx?PZ z(6huqW3`V)4%3W->m)ADWk_q0@^3v6HiJcTX`_VovM#NaVhoaZmNqU-RA38_TyaZl v!@ktaP=U$Qmg_ed>^QZMr!DkE88gGS-9m}!yS%3Wjc4$5^>bP0l+XkKx7{M5u#h{qaAQ8gPzq5JrBcM9Qk|4ie28U-i(tw;`PZ!6Kid)GCm~IFy z=$T@mvD#N9hiS&ahZ1p98PZy`d|OX!({A6fq*3DZ@~&Mw%orqN);2CoRA4KQUU55b v!@k_iy8@HTQgRv$c33aqX}f!(jG5t=qVT#2vr-Cx#xr=j`njxgN@xNAqfSUZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/book_of_stats.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/book_of_stats.png new file mode 100644 index 0000000000000000000000000000000000000000..c8cba1a4bebfec422225b95bc58aa17d05669de1 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0B&+W9ScKSdq$bb0R~X z4a4q2hSMz!k&%%vUc5MZ^ytEc3oXSN9^DAn1}bGN3GxeOaCmkj4af=eba4!+xK(=6 zQ0jmJhjZd0m*}tmp0DlT;dy%cll_zL3@O{zoe9zRyBd|tvub)$tMBgVo7lM=e_MS# z!Pk7ya@mPTySs~hK1}moqZ-FoS>bKqwP@;*8u>C2W^=tmidH}y7(8A5T-G@yGywq3 CRY`yV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/bookworm_book.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/bookworm_book.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3f677f14c44e5e7a36579519802db2be91ba7e GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4D~OKNvaPap?{g1Z8zyZg zy?y)knKNfbM@L_~c5P2i&P)e~axJY`F)@1=mI9z^#*!evU6?wiz zA@%>MUluErUh&;fkznQ89J^}bk3CJE5(nZ7qB7W8k8D+1()ck-@w=BrnA$(>_l+|p b?y)nx>R{D8XYX4Dw3ETp)z4*}Q$iB}1{GA9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common.png new file mode 100644 index 0000000000000000000000000000000000000000..4f5f3a30d361893129768d8a59c5447f48a3074d GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07iwV0BUD+P;1J%$YN< zUAuPs_U#Zm;s5{tuUfV0@*=S-)1;!Kqg{*zQoY54^aKnQS)R8)Ed^?0ED7=pW^j0R zBMrz&_jGX#skl{onpKF!ki+HTg$;$f|7V)_L~HzApJBZB-f!FJwaZ%!HpyMuy>;KT zO`Ueuul+B6)Z%(^+C6Zi^2E|ZtB-Ib8n)f)FKwMMV`;Lm!x~x7lrX`x?CW<}&DQMX ha!BkB{Zd&}pYF;!=~T^`pFk@aJYD@<);T3K0RYTZT7&=q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_common_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..4586a1444688c98e9396552a79b1892a32b20923 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07iwV0BUDI&vs^@xq`d zkLKOJeLKWX`2YX^t5&VLyh!ZIG^weROkIoxQoY54^aKnQSwhdB>;-CLED7=pW^j0R zBMrz&_jGX#skl{onpKF!ki+HTg$;$f|7V)_L~HzApJBZB-f!FJwaZ%!HpyMuy>;KT zO`Ueuul+B6)Z%(^+C6Zi^2E|ZtB-Ib8n)f)FKwMMV`;Lm!x~x7lrX`x?CW<}&DQMX ha!BkB{Zd&}pYF;!=~T^`pFk@aJYD@<);T3K0RU;cS@Hk? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine.png new file mode 100644 index 0000000000000000000000000000000000000000..770ab45e441c9dc40ff73b4ac03ca0643ab1ccca GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&1F3 zcVswlAjD3X;s5{3i^Q%>lZuXxzIN@}%$YN{Z{O~s$|WYidTsl|-#~4QB|(0{3=Yq3 zqyae@o-U3d6}L)HUle0fxX#e)3U5_)D9a3GwWPI1VYZl{7d&R0W hu9vm0UN-sfm@m9yv8!jF@epVygQu&X%Q~loCIBLDSWo}} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_divine_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..0da9758681b13cad1958c8fc6e778926641dd531 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07iwV0BUDI&vs^@xq`d zkLEEPI1pkd%wX@x@c;kiMPgT`Nll$(>S8RA>Mb6mCt#?^@@sPG1E4m>k|4ie28U-i z(tw{kDx>yS&1Flia1EaktajW$7MKLBtj+Vs8(kN|-d;c>hZ}|46_0He>iKo7~JelXdcKR2)&Hr3k zEV8q`AN_3nJV|0XOTa#PT^8e?U7bsN98GnP_HRGh^*D3cA=M>J#&^BDW--pRSFB3o hdRgo0Wt0Do`NAs}yL$E+4}o?vc)I$ztaD0e0sy~|RpI~u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_epic_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_epic_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e745541107a64c48858f10cd1edd575e479fff GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&2pB zudI<;5Mn1hPwn*OMPgT`Nll$(`sC5P#S4Ru97=Xk2Gqt_666=m;PC85 z8jzFW>EaktajW$7MKLBtj+Vs8(kN|-d;c>hZ}|46_0He>iKo7~JelXdcKR2)&Hr3k zEV8q`AN_3nJV|0XOTa#PT^8e?U7bsN98GnP_HRGh^*D3cA=M>J#&^BDW--pRSFB3o hdRgo0Wt0Do`NAs}yL$E+4}o?vc)I$ztaD0e0sz2?RpbBw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..b2971282d2069122d7e71548474c43f58f23d304 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&5|w z;@glV5@IL(v{&i!BC#veq@tsvuU)$~bLPzL+qb)@a)}AB3ReB<1Zra}3GxeOaCmkj z4amvxba4!+xK(=kq8O7RM@wR4X_U6az5kh$H+*~3dgt%`#8cl~p3HM!JN=8@=6|j% z7TMX}kA60Oo+PoHC19VtE{pNcuFj=Bj;6Xt`?nwMdYrlJkm?d9~G$40jQ0!B*-tA!Qt7B zG$1G4)5S5Q;#TQtRv{Kc4ws7;HWcpupK0C`t?_q#hVkBezip$}F0ZiPBzI}|)`inH zb=p}=`(6B~#r5K}d*DXpiKT~DAK^$eY`fK8+B###(qv(WHL{*5VS;Jd*YB`iTfdXb gp{_ghOJz}grZMZ3A0pzBKr0zMUHx3vIVCg!0KE}Zo&W#< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic.png new file mode 100644 index 0000000000000000000000000000000000000000..70188a77319d4bae2ae7b9d0d62da69ee8c4ea55 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&0>; zvH5`ZwGcbuyA1y?FA}>lO)5G%`r5T?GiT1+zJ0rkDwmi5tEcC&jX-UTB|(0{3=Yq3 zqyae@o-U3d6}L)HUle0fxX#e)3U5_)D9a3GwWPI1VYZl{7d&R0W hu9vm0UN-sfm@m9yv8!jF@epVygQu&X%Q~loCIBU}SPK9E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_mythic_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb418da7369f33f576dd8430e6d5c6a1e69168e GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&0>; zvH5`ZwGcbuyA1y?FA}>lO={{S(#`XC?CM#%okp<*wwSocnGwU!PC{xWt~$(69B*jS5*K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd6f9cc6d9f779d35fa5f383fef060c513d6cc5 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF%}T@ z?^UY28e%7GIrIPJMPgT`NkvCTU%Pf~=FFMfw{Le*t(I0mredV<_oV_?CRNPJOtXw;OXk;vd$@?2>^ijR~`TW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_rare_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..a1641fe157c0fa998fa959fe3fb1c1f28702811a GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07iwV0BUDI&vs^@xq`d zkLD>=UJbDmww(E2)W7%gBC#veq^3?Xbuku5^%f7(6EIX{;lCAS1JuS?666=m;PC85 z8jzFj>EaktajWz+s}PGJhs(ta8wz*-&ou9e*7&%M85 zI_<1q`(OO1#r5K}d*DXpiKT~DAK^$eY`fK8+B###(qv(WHL{*5VS;Jd*YB{Jt=Y-t gkk}pirLw3#-IaCHshTrCfmSkjy85}Sb4q9e0G`lQod5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_stacking.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_stacking.png new file mode 100644 index 0000000000000000000000000000000000000000..e613af0bd3b999727868cc8de5602f1d3647d76c GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0Df+?b`P3+b=H?yE08` z=FFMV(a}qEv{Svsj|yAPl{W8GR0y#X4$>2FF&4-X7k5$RN)!<>RAdnoV6FKhE)LYs zSQ6wH%;50sMjDV)?CIhdQgO@mG%Hhs0uO7z+)G<`{Ey8v_?cgSe&39p|MPsV#c3{e zt!}v~kzPE{=+wpC+O?Hl>`yM9i1q1S@tcds@P0d2Nc(or*>&~}QVhNVQ#rFtRQCFc zIB={zSmDxoVbO`psb(3+bUm&-7IRrBy!*t=Fy1KkMn%sV`9SL#JYD@<);T3K0RZMW BSP1|C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme.png new file mode 100644 index 0000000000000000000000000000000000000000..770cd754b58c672e9b6fb56d9c15b0a51bc52bbb GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&405 zXOH6L4Y3n078Sj`NbJfqsp#nFYuB#LoH=v*_U$gJTw(&O?{Xgd0JSle1o;IsI6S+N z2IORTx;TbZ+$ueNQH)8Eqa`u2G)i0I-v7+W8@|11z4P~e;;C;gPv*I=o&Lpc^FLP> zi|lOgM?V`sPm);960lERm&N#JSLf0mM^oLS{o9XrJyL+2p@tzVM30uAY6yL!g}up00i_>zopr0Nfo^%K!iX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_supreme_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..5bed6db2ecb8523030ae49b14082b326a667607f GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&405 zXOH6L4Y3n078Sj`NbJfqsi~7ppFEnkcwx|yL&+|xTw(&Om(4RRfZ7;Kg8YIR9G=}s z19CDvT^vIyZk3+CD8{77(UKTh8l^39?|@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..91bacaa56dc8d6e710c3162105b1ea0edd0a3722 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E07iwV0BUDTD&mm$f4vX zkLFFCWEx^8JXhNMsIcV{9qr4D#I8(}>Qq!n6cNc07k4ohNc9#E(i1RLWVxN>Vgl69 zSQ6wH%;50sMjDWl>FMGaQgN&FG^-G^0*_1JjU{c)@9M8V3Nik5KjrFu;fddMEaf{l zrrlFYI-|V&N{Ze6cm2w_HcJ?n)Gtw6rnWBkP;Adu1+}FmI}4%@TBQm3FrN4^D{8gk rkvD%&sD4OH6L)Bz>wD|-{AwoIOKb;J`MSJ-mNIy{`njxgN@xNAJ84!s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..3bcd3cfc98c216ba86ef34c134ffc21fbe91ea96 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08u+WC_v}Nc9$XF&1!| zs+MudHN;N1?PvVuMPgT`NkvCTU%Pf~=FFMfw{Le*t(I0mredV<_oV_?CRNPJOtXw;OXk;vd$@?2>?RgSZe?P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon_ultimate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchanted_book_uncommon_ultimate.png new file mode 100644 index 0000000000000000000000000000000000000000..3b2441ce7a442841813c8089ceea3d680ff1a043 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE07iwV0BUDI&vs^@xq`d zkLG1uat*N)Zu=SUG*#{LBC#veq^3?Xbuku5^%f7(6EIX{QL?(Q5~z)_B*-tA!Qt7B zG$1G4)5S5Q;#TQtRv{Kc4ws7;HWcpupK0C`t?_q#hVkBezip$}E^jf|BzI}|)_v19 zb=q0K_P_X1i|fT{_rQ(H6H5=RKEjb`*mkSGv~|XerOCn$Yh*oB!UWT@uis%cTeFkP gA+bC3OJz}gx-09XQ#EIP0=Q+l^6{iPB@-pOkpPR*KFX*+p_j&E(s)Pggo_+0lzH!U8 z*F79bt$VH&Z3|b_)LoZWy`(>TU+-E|p}QVZ|35Pqm@{oxDOm@0oTsaw%Q~loCICvq BPR{@U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/endstone_idol.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/endstone_idol.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7e8f5954213d742d833baf5251e2f3d3cf0649 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=8=noxJ;G>9uQ9&mQYu zxu~Ql$0^XFz(OZjT1<1N;_N3wyqO z;#4?wWbvLoms%SeBLk8{e`+bSvzaYC^X-$@V-_|w)zy)!!>p_gHY{1X?nT6`X$KBG zkeX&`tShpjd$qBL=_c+a^-ni#n96;CZQTlniwY-0Plz!waD9~2lG%_j2WT6Er>mdK II;Vst0JUjN;s5{u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/ensnared_snail.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/ensnared_snail.png new file mode 100644 index 0000000000000000000000000000000000000000..cbe6d89754af364d70b2a4121321b8eb1e86300b GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|9|rG<&krjjw~sj zv1H}e3E}gro%?dFN+Jz%!d(Mww4DqT^%R7GDi`e%6#-I=B|(0{3=Yq3qyahAo-U3d z6}OTZ8X4F)5`vlvW{NU7IX3w)@tCFeIyyD>EDxK{dP!d*C+xm$absiS)*tWgg>G-` zDf=E<9>y$LlaqNh``bIlt_}XLBdVY2Xfrq8Jo9bN?&*%VMAQ6Mn=srykPvCZc*Gz; r#B4s#5=qG!k{0R`1`L{E6D$}$eN)!GxI5z<&>0M#u6{1-oD!Mb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/gold_bottle_cap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/gold_bottle_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..f3df90cbf2c369cd935f870da1b912e825f5dfe2 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DguNO)6<;G5H~uil0K z|Np;KgXwD^hZ#_Uu_VYZn8D%MjWi&~-_yl0q~g|`GmLx(3^^iGJ*L;#}|dIK%*HvUHx3vIVCg!0MNfcp#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/golden_bounty.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/golden_bounty.png new file mode 100644 index 0000000000000000000000000000000000000000..603f053f3332243a7f33a6be5c80d95c7128a90a GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08YLVA_--_;RD@uWMd^ zzs76Jw2A>m8B2ovf*Bm1-ADs+5}19pGc|?PKIRVj#e@c-Q~>qIGUnXImKf zx=$3O-waDNX0#F#oi|g4!-Z8cGc4el&z({OwbU(4YH~MDaX1Pk)GQVWE)@FC{B3vE qsr{ec_&pPh%6|X(bDTifPsTR~c}i9^o0b4AWAJqKb6Mw<&;$S=kU?nx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/octopus_tendril.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/octopus_tendril.png new file mode 100644 index 0000000000000000000000000000000000000000..34ae6601c499669f860e1d0ce96f067b6dfcad51 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4N5|6e_IXy2N7w%0zb z>M2#3`?x#ZC)Gje6oa-JP@1tM$S;_|;n|HeAScAr#WAGfR`LOMCuRkc)e9_J1aCZy zIUpc)?m)n$c`0#OOJWXOm?f5yv}8`oxeIbRZ{{tLT66F~pqz|Y)IGt22NuM{#jQJY nf#J&ag)xka9CQ?V`573#RtZJ4v#yr|n$O_r>gTe~DWM4fmJUYb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/pesthunting_guide.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/pesthunting_guide.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9eb4751a99402d09b166e2a2d4adf3150b0b30 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|G#$a+V<_+XU?1% zx?IPvPjy+iPIPp%XP!*0gNa#)V3Lu7zqWvr93xQi?K{s;0V&3kAirP+hi5m^fSh|~>L(+G+@kiz{E4C+b;lV*nl3mfPBvDM(qLKU=%gUU$Y8!%(=70R RG#}6^22WQ%mvv4FO#l)8O)~%h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..a45f0581d60b817f95d0186da6d723882eb53ba9 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=25`UOIhjX?0z;ZF!$p@Hb zggIuezIHdE?Ge{>4};TMM@0`k;^NKZ@4R#1zyaf}i?1BrETvJhWzpi4S7H+`d?~x0 zAuo{p?AnP5Z`m7))X)3em*h>7nP0o9itmKVysUXMr4O{pCs;J6m^1vyQg}2YaH=%W OItEWyKbLh*2~7Y9{!fDd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_pincer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/severed_pincer.png new file mode 100644 index 0000000000000000000000000000000000000000..21ec1bf9f9eb9d5b07a1df2c16b7c29cd9a70035 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=6n%rafFF{iIXm84q2h%Thv4*h|HPdM`1PaC3F(&=$;+<4nBVbqJ_|u_VYZn8D%MjWi%9(bL5- zq~ccc0j{)jd$|{SJEzAnT$*#xZQ;b?#-5dj9vYXsGqtMCKHszM-rt5sgC zEV+zdA}*i3^M;YZoV~m$AC48R$$Gt){Yq)$VO`zF3^$HU>oFG4u5d6>V_=ZJr_6cZ S$0-MB8H1;*pUXO@geCw0YEozb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/sil_ex.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/sil_ex.png new file mode 100644 index 0000000000000000000000000000000000000000..b391e0469cccc00949ea1fb6bf0a0bb80ad3d728 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=1^4tf;TA4+{&kwXxCD z)m2hZ;N#<)E1FdSlw&Lj@(X5gcy=QV$no@aaSW-rm3)Bx#_2?!$weBp+{wMf}p5Cv+qgQi>yZyJc9X3n2j7J`MnchzR`1OVVaou0Uq~lLJZ0V WJc^P__SgXpW$<+Mb6Mw<&;$UQ`!vV^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble.png new file mode 100644 index 0000000000000000000000000000000000000000..d6305834a55c5631ec9c0851a22dddeb665e7e23 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4FaZC$^Q%edcEB6w=L zOqZ0LGryoVE1RIzrF!$p^SjomMQ#?2w*uRBuMy zv@nL04P0dFVdQ&MBb@0A_hR7XSbN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/enchantment_upgrades/troubled_bubble2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c049c9eebd04fe3e99f4e64451a436b62ec820e GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`fu1goAr-fh7f5ap=DovzXq6jV zg3l(mlEOtihn5M>c1+1WX3|o`Y+yP$gX1Zif`tl`Tz%at$p(X#lCx8!8!|a=&N7^= lv&^mJtcxVebq{R@2B$^3H_v@#`3*Fj!PC{xWt~$(698@zE4=^! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/farming_for_dummies.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/farming_for_dummies.png new file mode 100644 index 0000000000000000000000000000000000000000..1effd2258368cf11c0ac55df80c6ad38a38580a5 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0DGnV2)K1C^eGH(UFXf zj=py7+V<_+XU?4IE5R-%zH=nY?}#bt0ynZ} w%ht*7+-zopr03NzRp#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fifth_master_star.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fifth_master_star.png new file mode 100644 index 0000000000000000000000000000000000000000..494d7074cd5bc8feee5b1e4ae77bc96e28de3e80 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07jvV3;W>S;oL{O;7K? zon0t1^LFmVM}QKHB|(0{3=Yq3qyaf`o-U3d6}OTOurkE@HVYnbVAx&of8y(Xl47^- zM@?*tV13yBKx$WG++!8bu7{k@{IZIa!WLZ*n?K?0`+6mtg&vC~m&lg?I)2H)p?%RO qrVBsyJ@yJ&ysdPsYOD*IW6FN}IOFYPaqc>xO$?r{elF{r5}E-2)k44k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fighting_booster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fighting_booster.png new file mode 100644 index 0000000000000000000000000000000000000000..6ffcf822571fdbaa59595fc69fd3854c58a26b50 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0E@HSz+?<_n}&$U)Q{V zTmwC0LXAEV@Z%-FoVOh8)-mJg{O;S zNX4yO->ZzyjvR*%T~7Y*`#ZX*lylw0{VUdMguZt?6H?Pt5V-lKhBRXWueMo83BycI zm*>a!dTXhRt=80Mx>23XILAEd;_K?`GvkU)5Ae<1Z1!0+qJZJH=e?lrJeiurC>zb* qdk3G*J?ZlD**o>){4cib-@z2;&El8Avs?t|1_n=8KbLh*2~7Z7SzRLl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/first_master_star.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/first_master_star.png new file mode 100644 index 0000000000000000000000000000000000000000..c10b86294d77deb7414651dafce0a263abd2bb56 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Wu7jMAr-fh7HD#?PO&;>CerM{ zvz5iVW+Thn_Y&Q)n2zBw>2h2w@)e~`+Lnpmdr zLpxT2~4tuQUACu(}DTnz1CvFPOpM z*^M+Hr{2@WF{I*FZcl3?s{)U+w&uFu`qfi5=ku>r`!eyX(D7gAu1T4{JFBvHwZQvY z>FjdW313t66y7yNGE7;y)9Ff37ss^j>~BF4Jq9ct*%d3E3v#GUep&KmNm*QrL2Q3d zhJ(|}cNZ(P1%jDUK9`(KI?K>Cr$=vccSnf)|3lwvpK!0xW7+ombAchyDGZ*jelF{r G5}E*0C1ltD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/foraging_wisdom_booster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/foraging_wisdom_booster.png new file mode 100644 index 0000000000000000000000000000000000000000..5bc0a3467dc910955ddd876314c3d37ba083a354 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=5%Q|NHm7@7FaiuU}tZ zZWLACw&_r<5J%67>AqYnd94iI(do*J271Ool}<13R{|-kd3k*9ROP?lw>d5CLB{sI6;Jb0 z*qM(%QV(DE#4i5efweUsXWhB|`XUd{YFVdQ&MBb@034uSw*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fourth_master_star.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/fourth_master_star.png new file mode 100644 index 0000000000000000000000000000000000000000..50d399d68e4e2c89d906d8e49ebfbf5249300ce0 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07jvV3;W>S;oL{O;7K? zot-%g3s5kWnYpfm-37>EED7=pW^j0RBMr!j^>lFzskl|z+sfErz{676{ARzwy9?{@ zgUhU}Gd4@$QoyqIlS<_^oMGT&gBGa?c2BC zTorhAjrob`Rx@YL+&aTyZn<7`baYvSe1e;(l_u9x{kRW64U8p0e!&b5&u*jvIkBED zjv*Ddk{uY+#T;Hf4Gg%Ib(M*ue&#bRfxTHXFJ1b;%Co#{?W8o<(78-qYvydd@#hR% zn{nLcX>Ic}GZQLQH_3QZ-${KC{epGTeM5#;1(N^{C+5}zCLSCv$_xzOGWF72-fjc3 P7#KWV{an^LB{Ts5hG0@H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/hot_potato_book.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/hot_potato_book.png new file mode 100644 index 0000000000000000000000000000000000000000..c0016360f85c8dc24eabc609cb904eec244e9fa0 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=829UHfsN?d7hd?c2BC zTorg?y4B2?Gv}7;MMp=MMaU<(iCSrL`Dl6k1S(}L3GxeOaCmkj4akY}ba4!+xRva{ zxLRsK$!gY?Jma7|hRX}Prx+h7$(U9c!F;$YW%ZQ@OC_}%l#Y2jUk>w4hzopr00Xf_UjP6A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/jalapeno_book.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/jalapeno_book.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2e696d3a06cb19af303f67cd186417ca3469ee GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4Sx&VO*Ne9l9L{ad`& zEHrE0%h0hvqP$CLUaCFcBE`gf8SY*gj$$z<7Y^n~z5`D~&ja-^mIV0)GdMiEkp|>s zdb&7PX2A|fKq z!mJDBc{MdPgM)*Ojg9|Tg#BOCde_(dkhMmd2%EozNT~+XowR*+Ky8dAL4Lsu4$p3+ z0XdPLE{-7;x90k6WjqofQpNRg!~adsZ`EntaeMIYztyH^Kd#Y5-J{*TN_)*$OGt?Ae_MV1cM)TN@4WSM?#~Ng`?j=9U*(=}?70IQ vY6|b|o_kuHp?BRa%g-Tak(u6{1-oD!M<0&HZR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/opal_power_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/opal_power_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..d3878b50ff90a019c5f4dd9f1f1507218432ef9f GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cjfBF5t@c;Xe)Bo#x zKD}Fi;!e-e|1UR+_AlG9DMc_OyQWlwDWuU&5U7-~B*-tA!Qt7BG$1F))5S5Q;#Tqj z<{e>dE^D;Ake|PDF xMz^R!>hA5wA{r$e4%%v0Em$_!vf;QN!y?g}B%mV3k|4ie28U-i(tw-}D>d4kh4pj`}}u6{1-oD!M< Dr$In? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/recombobulator_3000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/recombobulator_3000.png new file mode 100644 index 0000000000000000000000000000000000000000..27b49b9ffe34f666ec459228b3a4603d70d8b508 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E07i!7eCp+kj+pMs~}dV ztH9HJTlB>LZJy@;w=t|^*t1*WfP&P~|Hl7qP5(##XJGjMf9uw*_S+d44jlOP>zA>y z@v>B77oaJOB|(0{3=Yq3qyafao-U3d6}L*eS%r=m2ppbu8>z;1to^rZSmf^M4qII38FBlrUdhk?gJ>#MbQ9Z>{ z2F-~M^JQX;);Mj9cgmCU$hiHeK-(aE|FkK^nlE2{Px*V6GkXiG)4~HGdO+J5JYD@< J);T3K0RS0@Xb%7Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/ruby_power_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/ruby_power_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..a90da7593c68f2a4fc5b0d867d759a81188ce25c GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9boKK%baYevXvVi@DPd94O36%Xn&{%*)0$&sbY| xx~6*bl)08$op_HhaLx1B)-dbZ#fIa449{9br)|piUk@~$!PC{xWt~$(695EJNE847 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/sapphire_power_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/sapphire_power_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..3062ce9f3a9eebfadbddeb20381e5e117f29dd01 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3eP{r~?yWbT9iFE@%h zuKl(tMNqu{oKWH>L6=FT8cdR^y3#-A`2y83mIV0)GdMiEkp|=hdb&7tDk tFy-yNxTS1K46Nl#D;#~Jw=(q4W$2zFQa9~dUNX>d22WQ%mvv4FO#ty?NRF={C@PeY;x+XDH$F8)Rfj^BzcyXEJ0V^i(RbdCvo@-K5Jl_vBV_TS^Y zvR=60#FaOK^BEG(vgWL{WnxffDi^p|KUqnq$Roo3q*90Uat?iCBeM>bSIPZbP0l+XkKsuV@* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/shadow_warp_scroll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/shadow_warp_scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..2f34024adee8611f01ee4f4c0d26d7a55b5ddb32 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1##cL-MxEvWo6|)hW~-V z!7~~6J2^SoI69h`n4~eZ`Y^=E%gbL_v_}P~l(8hpFPOpM*^M+HC&1IiF{I*F@&V=< zy$gAiPtFu*d)RX!l-r@_kZ_=8oWj9HlP|{vDfjS7-0(jab?xFBjdKSM6jxn6bJEF8 uA$51TpE#RgL(}ozD+`xR6@Rc%m|@~%5zD8+Tnm6^GkCiCxvX50xIF)Baz6b$2gTd3)&t;ucLK6T+Bw^YB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_peace.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_peace.png new file mode 100644 index 0000000000000000000000000000000000000000..c4cee922f8c2a4b7dcaaa020dc834b62603fdcd2 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9bI9lLhz+W)m{w{PG6 zzo+MadHKwlGv5~!oK8ww9vmDU9o=eY7pSH-=g6H6K-G*TL4Lsu4$p3+0XfN@E{-7; zw~`$g)A<};O4$2hEEkSxDzr{W5=o^e?^$ztN07lPG{6$S=i|GZnc9+0EbU=i-QRh1H+1TO=eq0 SmjgiS7(8A5T-G@yGywn{GExix literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_war.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/the_art_of_war.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd98ef4e4d29dd2afed6b61a41a3b63d5e04ebd GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=829U3+wS&8^c*E+6PP zzpHWk_U%X4mhV|oG7|_Yoq95j8WXgmqod>f)ol#~1Xk>^0P0~Z3GxeOaCmkj4aiCG zba4!+xRva{_+HN8WnZblF3T;i7-z_@657Y-@jjr`kc*LPZ(N|rtE`KqeGl)hOZ(cj z&RAUHUg~;=OPAFQ{)pXXU1EIS;6wfywu}EI8=M5BG^SLtxiGgLF!A7UQD$Ih+Gnt< TgmI5Q&@Ki~S3j3^P6JY5_^DsGkbg)*@y@*HK0d;9Ns?CN#? z`#d(trLU;9e7ITTw0l6(%uP%w7Y^uZy?gy?_3yc{+nAY*e?^H)y+6coC%$#Ym#2II usq)Nuum2t}5}e@Ik$9$oZ(*PM|7VP|7qi`2Heru6$W5NEelF{r5}E+fazgEaktacl0G zRz_Au9_9-s7A604_p?Mdl(%2~kY*9{;PIZzLMiS+3X3NwGW>eG{P3B5uTO_wL;59FYgMtJvjGi3yZ+wk0~=JOL=Vg`9)0i`>6{IY<-t+2c`L$PDx03U^#VL_38ox tkDIHmTDv&%EO^kFz`Y_XDn3$Nz%gevJs?`Tn%2*QQ7tG-B>_!@p6X5CM7*cU7`2cf- z^THm5mv;r+9-RBMg+*ZT$CR0yB|SF0{34e8{nP~pw!X`^gVOv$rz9jiu$;QBdUb$+ t$IVq&tz8^>7Ch)w;9Zd^%Ukh=h2dSOXsdnb&P1Tu44$rjF6*2UngHY*NY?-W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/wood_singularity.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/modifiers/wood_singularity.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e69cdd0a7bd3ff4470320ccad5669fb877e82c GIT binary patch literal 352 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}X@F0NE0DHU7uFNw2(TBkH-$5aTvVo&I4+%%{{R2~85N!haUs6O;ve3<_OVs7(3Xhz(k_WIGc(b;cloN~ z^Mh-E7BiLv`2{mLJiCzw-clCP>^W$sN1f)*> zoErS=e7EZ{t+UVfpDo%Hv94_Q%Re8&uVn7`Zol7S_5AR^1$GsCB=WD7-g|$={e5%O zBK3*EickOYT)duUBD`+4=MeyL$rq@6T#*!evUpCO;CA157(^nj3^POT77A_QjTc(C(|a?u$_1yaB|MH z8wU;?VQ^z~n3%OXb7r?ZgJkJa?etcAcB6_o_Sx@l^QFA8`~K~l^aM+ubcqT+nFC4Y Z467a~OiUL#{0L|zgQu&X%Q~loCIAyyRZ{=} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bejeweled_collar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bejeweled_collar.png new file mode 100644 index 0000000000000000000000000000000000000000..04460f545b00edf56f0a92b211d6e966cf5df9f3 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cjKKT1Je%Jlizpi=h z-o5+fM$s8-U&Piva1L3kWzkajyp9Q|h_NKdFPOpM*^M+H$HCLZF{I*FvI1YhxjCGP zXJ&CG7M84?vvm{WiG=kT2@#BG65(66HA~1GJ?8dKfz8={_aY9L+dl55D?D>JD|DF{ Ya!>Pz#v~k-2Aaj->FVdQ&MBb@0M9r;hyVZp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bigger_teeth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/bigger_teeth.png new file mode 100644 index 0000000000000000000000000000000000000000..878b7c3f0a3695f66ef12da2d789e52733b7165a GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0A8Xtoz};6Q_?Y{qpJM z|Nnod%P(XFiZYf2`2{mLJiCzw@|iL~RM+k@ dvAiO4w#_+f#)%3S_G*Bf;OXk;vd$@?2>=yKK$idj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/black_woolen_yarn.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/black_woolen_yarn.png new file mode 100644 index 0000000000000000000000000000000000000000..3c0a351d12602868f884cfecd8ed1b6d053e3536 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E09*#ci`aU_6jW!mDVt` z4>Q~|y$dMHSQ6wH%;50sMjDV4=IP=XQgJIuL5yM7ti>X14H7JidM^Hs-zj+LQrZ7! zYXu&dFRc+wT2|s~QudPNSnw{+TYlmlP1YY8iUhW*D&?;iIZ~QbP0l+XkKm8LyV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/brown_bandana.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/brown_bandana.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf2a8b9888f1306a074ec74d90c01ad574a8a83 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE09hyQmAz>Sr)Eyw%Tp! z2V)ta5MxP@UoeBivm0qZPN1iYV@SoV-kwIT0}298S9kya|0KqoQ$gYlW7w*P@>ipG zotvDpGJ1*HkvaEv?J#7RdLm?L<_z|W9zn97j!)=azTi%c3EQ;z37!vf?*#1OdDP5) Y@|1Yq#G{^WK*Je4UHx3vIVCg!0ICN*I{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/burnt_texts.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/burnt_texts.png new file mode 100644 index 0000000000000000000000000000000000000000..4965176a60d08531e15f8c3643dc532a65dc4f7c GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07N3;Fu#LBOxIHWUHyE z85tQlIy$nmv)3^*U(C}!qv4p>cm6C;j{?KnWlD&J~i^J20 z(cr(f&J3m<@87-^2)wzCS>r>D^ZK$mjc<9F9_BscJUEGiE5UJdlrtyGn;%@}Dq2Qw i1sc*m{(WcqhwENwPy=U$UI|Q9;I+Ul-=u)U$ qe2_)J`RG|!L7k~mVzb&(Oc{Eo^X)&=v}qC09tKZWKbLh*2~7YsYe8WE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/dwarf_turtle_shelmet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/dwarf_turtle_shelmet.png new file mode 100644 index 0000000000000000000000000000000000000000..8eeb6df554be4ebd1d2687f8f7d575f08bfff281 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0E^5k&})#)U5TiU*hDx z-|O-*r+lC&V@Z%-FoVOh8)-mJsHcl#NX4x=T}K&R895F&z1?s4>+7GU%b!GS|D7{1 z-~9e{UO&g>>u<$2%9{uCuq^Q^%38)~d{Jjw(X_yC_ku#QuRPLVkrZ0D$+P@{7BG0a`njxgN@xNAOAtX8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/edible_seaweed.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/edible_seaweed.png new file mode 100644 index 0000000000000000000000000000000000000000..744d532e1a3101450617e2195757b38cf21f7c7c GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6S6ZBrKNt&BIYn9SDa ztEXAWP-LwgYN@0c!CyLH8)6V!o+80zP_rOjg4o0FBf+$zs$nsw_L~k{LDOI2?@1Om7U>B7$xU6Id*oh vZs^+Cbk=LSKEum+QMrv=NsqJydN~>9YKZkencNRR%zcu_VYZ zn8D%MjWi%+WzU&gde>WdGg=fEoqWbVB?~7 zOnbz7R?Kpe&b;!9OP)7yZkRNAS3M;piDNpqNcsP?|3tPt@?qV*( z8y}N7gq&Ib)ERBM%`CBmC**&1!}X?}+uQ@RWZop^a_qK^Qh1(oJFTBhDgS%Mn;X~4 esvQ{TpXKM<%hB8Eou>hG9)qW=pUXO@geCwFv}E-F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..217356abcb7e14e2e614f3829620d10e8c9b9198 GIT binary patch literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{Da!z#5LX}_s>D!d!f>xl_CTEI zuc`V#5ks@h-c|p_r8-R={`2s}D<~DT2N)pDhL|Wh@Eu z3ubV5b|VeQS?=lL7*cU-?*!IKM-6zKQ#nMPzVCn4^mpak50AL*dfQv_jd|~Qo-A!K z&?)lXdBDcaJ75!gWV6?uBlB_`BR3r}a82u&G`(rkq^@mdZMK?`6QE zdGY>}yO{2#N4+oDeVO-O^fTl2G*vn|9ZvU^h2y2qpUBF)Q_1z_W_;E;OXk;vd$@?2>>1! Bc#;4B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/eerie_treat_1st.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/epic_kuudra_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/epic_kuudra_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..6c6c81dcc56cf1a51813e6ef9b0db239555f39d0 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08v3VDJ$Vij$S?)Ym`b zrt!GPen#$`Z7j3q&S!3+-1ZlnP@Rh}-6Ar-e=dl|V{9XXub zH?REr-TuRN$!WDLD>>G2_ufx;>N0>2w=UU6R859+a*>zfg~tzo8W>B0{DK)Ap4~_Ta#B29 z978H@mG-qVIxF(9c0Szje@E|?eX?~nDz;9~O+P2DJ^jtJHvhsaAK_{RCF5*+Cj}wt zmKRI`&y^N^(^mPxHFwhTg7y_cAuR&CW_n+{VV!t>TF{$F@nSy)-xu$#W<>m7!mXd2 W#++~AZLJKnkHOQ`&t;ucLK6VKGgD0f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/four_eyed_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/four_eyed_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..6e06fef93c8e330b961e6029a1f34a0dfbedea65 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=81!u06J>aARlij9kBL z7j2-3U8clxAjMb`@y?H#GnN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/giant_frog_treat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/giant_frog_treat.png new file mode 100644 index 0000000000000000000000000000000000000000..ca194725af0f1511a1f0e44a51b8f6ccbe24f407 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0AvRWH?;N@P9IcRg|Qm zn@C`}Lh=N?WfT1Ot<9=m5aFC66J^3+smKueBt!?Onz1CvFPOpM*^M+HC)U%&F{I*F z(gHb#EvjN{0*4I*KF7}dCcn-1Pt`Iljh(Ihp||;K@4q_y{NdsgZy8vEWtx20<~D4Y zAf3L;B}4H*;flg3$_sdxmfYE-B)Z||t%{V-cewu5$ffc|d=%De-O88Bd@}hH&>{v; LS3j3^P6lFzskl{of|0AifXDgbvY9*oPyFgUQB%j^ z!G0^>OWUVU6@Qt%^}ybpe|F8y?B2#`n|JG-AETMaCDq-olXYG-OzvRzV`MbfNT@n~ ZIq!Bj=nhKi&WU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/grandmas_knitting_needle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/grandmas_knitting_needle.png new file mode 100644 index 0000000000000000000000000000000000000000..3a149199b263317af3418381b49133d5ae08bd13 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-D~Kz{o#7{ULQU;|P|$Q? z;m&k*PczY{{{K>da*QQGe!&b5&u*jvIli7Qjv*DdV*3KQ4g_!ZUkK4 z-=c8K`sB4Ko%0Lc@a%|`K0bZxgvB!*&u&(E?9~>U>Eaktack}ARz@ZR z9+m?&_VfNeZ#~6PaCOEX=7!qh>Vvx^S7}!6_cn4k>h7Raw4HZWp@np@aDe?rZNH>d vQD@CBualbjPH?O5{rYETUaEa+x?jtF!y*-Uw2NVRHuI~Q-|4EEFr-H;A#;{cn<*!EX zIyX6GW%LrYBXjQU+F{5r^+d?h%o*$#J%VIE9iPy6Sisb6FeW}-U-;l^Qf8q X#F-UG*YI*$7dS=NObLW`ne(XkR>-O&bEOtVsEtDsQTP$ItG=pr2 VT)A!2v`nCt44$rjF6*2UngF%TQKJ9= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_legendary.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_legendary.png new file mode 100644 index 0000000000000000000000000000000000000000..eb94afeac37e83c0548e6d1bde3b61e719bff163 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|Nr^+llo}-tH}aWp+ZQ?Jmz9X|sfl(hROT Wa(Aa^9J2yi$>8bg=d#Wzp$Py5Kvbjv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0f38058178739de85b7e76dbc55d21ebad4c24 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|Nr|n{^X0F^#`85 z+$efyn(*XY-%TlkRgty~dAk!_bW1guEHtJ0=Nq2_s%9(+@(X5gcy=QV$VvBfaSW-r zm3)B7;->HQe=L?!^&3NL*?z1;leydG5D4nG9W|#Dd2LWa#W?2lz zF)=>;43bk7z4yfEGe~Ytjq|>=o>}sadGO(9e(XkR@AejdGCLvDc9-Xlv{}MNX$C$% WxzN?I`F=nv89ZJ6T-G@yGywp_6;b^F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/griffin_upgrade_stone_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..80242e323cad97c6c36e7840d161c528f710af0e GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|3CNhh(=Z3s3W+HkC!O|{PmLJb#0#!4X1o;IsI6S+N2IN$Gx;TbZ z+)6sY$`E?ak&oGs!#OZ@L7!p4|JP<3n=>~5*57pGUcINAhdpP#+;MMfgGxC8M##P4e-`+j7=3Vr3rF(yvRMxTFI#)0G3+N06Pgg&ebxsLQ0P3<|VgLXD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_bouquet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_bouquet.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6b04fae40b5b4d93799af5e48242a8c7ab329e GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F&0>hRV;XTPdui88Z- zo7!w8DeVF+wJ6oK`ZiyqvTnPE?l#!=1*nd(B*-tA!Qt7BG$1F&)5S5Q;#REhRYqq= z4(HQ?-{x=scJ4E4;46W&TZvgZbKkV=dE)+U|DBMh?qy65mdKI;Vst E0A|EUIsgCw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_flower.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/kat_flower.png new file mode 100644 index 0000000000000000000000000000000000000000..7ccd13e1cc8e36c2e4fe9bbffe5d96cbe2b6448b GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9ar9lZKA-WuraSJl)m z(3-6zr52@HqRgz|rdIS;s2r$*u_VYZn8D%MjWi&~%+tj&q~cbxf~WzPvt&{dn}A!l zCv(fehm64{jK?%W8!oJRxG-UssZoRMnS^u=hww92q8K8;LPtXf2SFnnb)MYTa{!UaCsFblJ$S;_|;n|HeASc|@#WAGfR?-4F z1_MR*NS+1-9+!BAT+TcH_w?Rk%{lSsQm>2Q$wM#l`5Hr?u^!Im5Bk8l|I)jS;yc53 zd}ls#FYC|2I|5c29DNcdQr~`^k$ZpcAFp2$6NB9@rW5aE7F_^Z!QkoY=d#Wzp$Pz< C@J7M_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/legendary_kuudra_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/legendary_kuudra_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..80f670fc79f618d85df5575b8eb694ce49dccf49 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08v3VDJ$Vij$S?)Ym`b zrt!GP{^^>G2_ufx;>N0>|p zZ|yn1cRTH`mv1v_0Ln3z1o;IsI6S+N2ITmAx;TbZ-0JN!6mv4Z@$i?qmHt5 z%hYt&ABk7s-zPi8=#SroL!S+7U#y+NUzWHju8oIjQTAUR;p0~>9!S@JSfCQNXUAei epTsNjAJ|^35?uIS?Nk%cXa-MLKbLh*2~7Zqr9O@T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/medium_frog_treat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/medium_frog_treat.png new file mode 100644 index 0000000000000000000000000000000000000000..790db2f152a242cee1ad236c7c41519531893348 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0Er|Hfz}g|M~?H$rJP# zD*p$TD>$dfFvJ|Tijp*R6JfAzV9<_YkhW4>SKSL#%~%rT7tG-B>_!@p6Y1&V7*cU- zO@|{Bvm*;jxf;i;|Mlk6y4jcThg|)(QVU=QZduC{^ zi|z8>s-kJt?z!o*O6nSxcAcA7_%W0|0IFjw3GxeOaCmkj4amvxba4!+xK(nxwUI@E z$K|49^55^(^P{)7PwuSCI5WL`dR4X7_r`T)`p@@gcNFcII-6b5$2F~CZu^#WD^BC@ zGk&Xt2`p$#o_i!KbK+A;v0P5uwOX4`EqX2CXnv!;p&%}2S9kp{=|TpEEj7%|q8?{U Qfp#)@y85}Sb4q9e0Kq&@Hvj+t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel.png new file mode 100644 index 0000000000000000000000000000000000000000..ac5915e6468468e4dbb428f510c2f72c6a6883e4 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7#YWZYfpeYwN*aFNcI z7?pNQAxGa=X+R0ak|4ie28U-iKpb;V7srr_TgeKdJC>?8WV&q>2{$+#c=M(TgU)0L zu8G{ETXsg2R@`I8J{7L_85>Sp0*zqsboFyt=akR{0NGPA A7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/mixed_mite_gel2.png new file mode 100644 index 0000000000000000000000000000000000000000..1a22c2f4316f4d96bdef9a2fff618d3734819458 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`=AJH&Ar-fh5AeDje9CwE?~55K zXDg0yW~)WZDSF-|=sZzA|~)x@(e6%hoj{WuNYwayY)=Qg`BxOZ@Zo+<4!ud5{?xdUN%0 p;eS^+G)qHIyk2oqKJ2y~gWCdTz4^Y9|A5voc)I$ztaD0e0szfKNMQf~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_big_teeth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_big_teeth.png new file mode 100644 index 0000000000000000000000000000000000000000..2eab4ee6d126ee0660c9c40717513209983e20ac GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cj|NZjm<->a?P9Ix( zXz$z=%eq&Uo7@LVFqQ=Q1v5B2yO9Run0vZ7hE&{2RuD6=cFn_{3H5WeM`kp249PXD}S9}PYGkHbY6K2WG;iJtDnm{r-UW| D7$`NO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_chocolate_syringe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_chocolate_syringe.png new file mode 100644 index 0000000000000000000000000000000000000000..dba31ba4c2568384cb65f9f08427d902b03db000 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|KEG;_?%_Sw^aBS zSJzBVv}+DAE^tvzu$1-D7M?%Ff(59Eu_VYZn8D%MjWi%9$kW9!q~ca`fmdKI;Vst0GV<=6#xJL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_exp_share.png new file mode 100644 index 0000000000000000000000000000000000000000..0dffc725800400eb40ed03ae25c75ab4af4d3f79 GIT binary patch literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lx~1eh%1oRG}bAbQ5Iet)6g*E z;6a833wHef&ybzn%F!ZznObIT-Rdmp_qP z8UE6+Y*vl)N%p#ypJ@*nKV{r5EKo`^Dl#;l`F@dJ_|@)d9;po7?}fw|61H*t5&Wb2 zEB%Z7%V+VO5|bx(&+JinRdjVWP)UNKM+AexY?gl<--P}e|LQOKy!ptCo;V*j!P1=) vlRQ#&L^!z*v64Y8jmiF=>TDCByBIuO{an^LB{Ts5AR9U9rN;a&P&H#okY6x^!?PP{Ku)};i(^Q| ztzKVCp(6$y&JVu+YWQDoZZIQ6ZxK^VU*kT;_q&86INRpL@GVcD!#C%NZqKs@;nNGY z#J}I`ImMQb>7Sm5K)->H>8@35cJbvLzyFwODfS;Yb!yR}8HUdnNXxyN!KBQ&@o_QG ODh5wiKbLh*2~7ax^-#(H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_hardened_scales.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_hardened_scales.png new file mode 100644 index 0000000000000000000000000000000000000000..c4202be846a22224faf448482f1c19a35a8ef920 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=33{9-4S)P5!32!84jn zb7R>VElhx-j3q&S!3+-1ZlnP@PM$7~Ar-fh5Aa7g9}wyG-mt2hxkK^E6Csu~ja?k9 zYz-khI<(rFB-KtWR7+?pUg2rbaZo_(jSSbt^%7jB7g`%y8TS3>EdCywGX-cGgQu&X J%Q~loCIDZlHMRf% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_iron_claws.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_iron_claws.png new file mode 100644 index 0000000000000000000000000000000000000000..edc907470edc3efb3bab1a93ff1ad37be6f9e9d7 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6(mh=qLn>}1DF`xX$ukQxBua4f zJyV#g)VyQz?4vTjY8%`?I4k~%T^M_|=E3Uhmc@%X-dUzcpNW{=+L7+nb?TNxgwVBY z>CKm4?lV}r(BM$8m&l!m*QW^auKgf0rG+yfNyI^HuFk)+yf$20R+b2aR{*VK@O1Ta JS?83{1OP0HIz0dY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_lucky_clover.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_lucky_clover.png new file mode 100644 index 0000000000000000000000000000000000000000..c11f7a88672149079027319acd8494c80f436ff3 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08vfRP*hy%iJC&sw1H2 zAbH33l`l|~u_VYZn8D%MjWi%9*we)^q~ca?ZzI&TRVN8uyp0 zVeXk{8$G2(&e=ZW{x&P3+qm8(=vUd7dmI3|h4_E@j;i;QL{YACH>5)>3NVq9$) z7*yEM#nI#%!4ldMa)3u!Sh+(=oLzi_)FB3jd8=8MGdt?61RBKP>FVdQ&MBb@06{q_ A^#A|> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_pure_mithril_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_pure_mithril_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..e5954fe9c3e100f7a1d345f87a2d92972cfa75ec GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE07MWn%92i_Ll#T3)ddM z{r~yASNF9vLlwl;c>YLw0HqmAg8YIR9G=}s19Cz=T^vIyZq4c5%6Pzlhvn#{f2Z3{ zzOf3oJ(O=?Sp837{+^kyJXVP(>fh_>7B6&Y*deg)PE1C&(84sACJ)Be2VWLGiB@vz oU}P3wRj2ZPK~0NZ%swWD8P%*_2WBU%1zN!1>FVdQ&MBb@0N!*)NdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_quick_claw.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_quick_claw.png new file mode 100644 index 0000000000000000000000000000000000000000..6592b69856e1b2b4a13b4364e00a4ed2af02c513 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vm)0PLn>}1DF`x1NiqvJBucb> zT@iCdyx2eQgVH)oToJFXJuKGxI#ql2LD4k55c8iQPQ1Aq(T)q&U;Jb=+vwke y>RZn^79Kq-Ca^52Nppf;!2YiqVY8WDzmM$}c>n9ZSi>%$MGT&}f?QY~`HsD~{JhM54 zi~Xe6B*R^2MT7TUI>xk@p{rbSf5SJMlgk%elul1#5ipUGQ!(BDC2eB#oFi6idBxVb zxG#4qV4Yn0>e5d3)&IP;&tzVb+|$Q(Kj=na+admyM+`;!W=|3A<73^v?{Ix3lT*!s V{clwva1c)I$ztaD0e0sy)7KO+DD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_common.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_common.png new file mode 100644 index 0000000000000000000000000000000000000000..690f272e2c5e095178e0f21dc65aa0f4091d6fc9 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>}1DF~|k_h&P)V^e2n zFyJZKoOi!*mqRFjz1oe2`PMv{-QPV~dy)zlW}N9>^ueoafx?9D<~`Z3II>vhXEUy0 l-LRTrxnK?JlbK2ZkB;Vwg{tIY0gQu&X%Q~loCIHyTF9rYr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_epic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_epic.png new file mode 100644 index 0000000000000000000000000000000000000000..65734cefcd784633775a54b0381f77319aae7d7b GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0FeO2wTgrr;(v2ouNRN z!6YV>=L}Gku_VYZn8D%MjWi&~!PCVtq~ccT=|HXq2N9=>fwjNy7ljG*UioX?^jd#` z&!Ra?br$(7)H!dvywg*xYLmt3A4r~Wd~=}m4&_J;4>vEtWL*Ii3zuV`W9jFH%X2xu0Ar>mdK II;Vst0CfyD>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..626a18aee88bf5949db8e37e3f24fd7190144487 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`$(}BbAr-fh7wB%t{lS0eN%p!w z{Kpi`cFqdqQH(D>lej}MCChDtW7dhQJO}N#{~2ev|2>|^z_d8KEyF3HDb8`bq_eOh z^M$#-ZHydeQ=}R$_$(6_nB`~^$u{9V>x85=GsGAeS_2M*u6|%^4785H)78&q9Z)9# DEh#mL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_skill_boost_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd555644fe3df357aef449fe2218153136a1d26 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`NuDl_Ar-f__BXN~Fc4v7c37w( z@*-yLvc)CS`M$koRBy8QWZ85_b^qGA>FXan-NmHjly>Cw{mzaFg>FYqJhWYPH@cU3 z$#mt3J3~Jdsr#~i$Q5kRVV-c5Yr<2m39bs$-Pg>JZ!uq4)bRWADWGi(p00i_>zopr E0LW)MFaQ7m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_spooky_cupcake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_spooky_cupcake.png new file mode 100644 index 0000000000000000000000000000000000000000..92daeb8fa320ca38cf07a9c39df7909caaf650f3 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0CV+!K=$)?#>XJ%}_Uy zVa5M7-uGHG4#bHTxG;zTr5Q_t{DK)Ap4~_Ta-uz5978H@mG(Ar9Z=w4z1;TezkG~! z90%_W&NI6?d*!u^_sa=ZTDqH+mImIV0)GdMiEkp|?X zd%8G=RNP8-V0!k3fhV)-4uOzfMz`5EI&V{Pl_=iXEv`0(w;opYhv)9)l# zl$(Bjw&rR%x5T}dezQ$qubaqtIDVn^>i1Hb`%@q6U%|cTzcE9rf=PhKPrVK{uExv> c0v$lhW0#tAZEAY`6=)@cr>mdKI;Vst0L{8ug#Z8m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_tier_boost.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_tier_boost.png new file mode 100644 index 0000000000000000000000000000000000000000..d7b4b49533909708230db82c03fc00015d40a78b GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6A?{_}L--sWjur>kIW zY#gf~CN3_1T4s_SP>!)A$S;_|;n|HeAjikk#WAGfR6D&m!Gj-^xn`$^8kIW zY#gf~CN3_1T4s_SP>!)A$S;_|;n|HeAji?u#WAGfR(fXCTT!}*BdsQ|+kqd8X+lnjn~1_+i-H{obrs3V&tUd^~knBn{?t{t+w6hV$) N@O1TaS?83{1OTO$Froke literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_titanium_minecart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_titanium_minecart.png new file mode 100644 index 0000000000000000000000000000000000000000..bf12d7b6cf188d48b11d187c615375404ecba442 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=8#H9q5=jJFBELEGE{% z##UQTKk{$ue4qqlNswPKgTu2MX+VyHr;B4q#jRuqHl1~h3A0QiR7KAeh?Iu}MFD4BU~VUwbs!bA~c<|}Ud?<(W`V^{1_li$j_3t*7qS4&V(@hJ Kb6Mw<&;$UeJTSQc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_toy_jerry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_toy_jerry.png new file mode 100644 index 0000000000000000000000000000000000000000..c412b75d143f1604be5738895854b79440b0330d GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE08{O=FI>9|2GQ?s$^d^ zobvLjib|=w{)9N^tCFk@KxxL3AirP+hi5m^fE*uB7srr_TXVY^*&7lBoVVA${Qv*X zi->1aWIXsQ^4s-v4v^z!sgXI e>N1+g()EmgN*h<5Ex!shm%-E3&t;ucLK6UE^gycs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_vampire_fang.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/pet_item_vampire_fang.png new file mode 100644 index 0000000000000000000000000000000000000000..c7084d8fb4c6c9bccdca984d320930cc562a63a1 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cj|NZjm<->a?P9Iyk zVp(@B8{2g;ra3?f#*!evU C;4xAF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/primal_dragon_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/primal_dragon_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..b74efb8502fac8c8495721221258cee8f9be094a GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9aF@kkxLd8e3xr~DFU z!VYh5Z$m>vKCM*#~w3G`~U6Lp*cWpj3q&S!3+-1 zZlnP@{+=$5Ar-f#o@(Vi;2^+!Fx}?W{+kBHI&-F8-M=%~V#cP>?Ha)#n5n6@be-;&YqM^iKDy%e*4Ob&5zH-1K+a_FboFyt I=akR{0MK_*DF6Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rare_kuudra_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rare_kuudra_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..13a8abc42d65d6f6f5bd720693bf5517a1f68999 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08v3VDJ$Vij$S?)Ym`b zrt!GPzW%_|lP`WU3kcwNby^LI}jvP+z zn^*q*ZvSDs=yh}THLG6zG z|F5lz0+agQpS#GdxZ?B{*8`3$uQla$ABt8jnz!8M$mT^eC#S{DQ80G=p`+Fi#8G_2 h$e>5zOx4db@(1QIt3PSX=mENd!PC{xWt~$(69ADESjYeX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rat_jetpack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/rat_jetpack.png new file mode 100644 index 0000000000000000000000000000000000000000..e10e78d4906bee66a38dd5eaa63805133b4a023e GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08WIC|J32<%J6uvKbiu z|Np->$?b;Q28L~{toMY4)0r$U0+lkB1o;IsI6S+N2IM4px;TbZ+{)=S z6gr^5!SYy8#NyxodoGez+auGuAMbp0Q|r?I&7tj+*UDE-x_FD_ac(Z#%=Z#YWmzH> zg^QZbZ4F6XyHefZ>@tSSK80oirc#ZCe?K`qkrtlA^g1yusU^6Dk-;*8x$V{UU_+p7 N44$rjF6*2UngF&hO{xF@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reaper_gem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reaper_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..3fe4e62480e667cd22a60403fd9f0baa803dd67e GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=0^49UBxCi)CeFMMcdx zIAocbIT#s%;$feolz&jVXzb zMJ5DP&)l3@#WvyMv$(jpD8@-zn%>;(tMmB%*EeM7YqN7Tv}z@&nI&xHU@$5aP?KG= R&mCwUgQu&X%Q~loCICSkFCG8@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reinforced_scales.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/reinforced_scales.png new file mode 100644 index 0000000000000000000000000000000000000000..82463e62f23d8b844c392672e03d7489110740c3 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=9cjocMLw=H*7w(EdCywGX-cGgQu&X J%Q~loCIAC&Hzxo9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/scuttler_shell.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/scuttler_shell.png new file mode 100644 index 0000000000000000000000000000000000000000..2d5354f55827c88f2e00c6e4f6199d5941676f70 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0FHc7F=T{ek9K9VoTJC zdCebcHFsNzKk!g6E}q#Ff)S|RT=U(l)RdE#uKWelFKelF{r G5}E*wuuNtE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/serrated_claws.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/serrated_claws.png new file mode 100644 index 0000000000000000000000000000000000000000..b37b30125d8ccf0e82a778bc300c11266b99d25f GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0ErlBKYf?*Wa)4ccuxy z+$ehE#*KaZ_Wl3=zf^y!8}E!POamm>X(~s}JsyT%}pL-`mLHsJnww(RSWhg%;Aq!U6Uhwf&M- vMV&RjyiRK7JHf5K_v@dXd8ziP>3%KaMonh><9bU>L5}it^>bP0l+XkKQ(r@y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/small_frog_treat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/small_frog_treat.png new file mode 100644 index 0000000000000000000000000000000000000000..79678e01d563eddb26019eb3c0fa44bd73984407 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0AVr5MVeg$?#vnDoWDO zO(d{fA$fw{vI+kC)@Ic&h;UAkVTj^puwmGI$e0tTn6V_tFPOpM*^M+HC)U%&F{I*F z(gHb#EvjN{0*4I*KF7}dCcn-1Pt`Iljh(Ihp||;K@4q_y{NdsgZy8vEWtx20<~D4Y zAf3L;B}4H*;flg3$_sdxmfYE-B)Z||t%{V-cewu5$ffc|d=%De-O88Bd@}hH$c>(^ KelF{r5}E)$8c1IN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/superb_carrot_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/superb_carrot_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd2f554b1411a3543629d6bd2d66f5fba31a031 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08u2V<-&Z*pwm|BE)%n zk?@<-uK(Y)|NH+e+?Fj^lTDJFVgD2v5uiH8k|4ie28U-i(tw;0PZ!6Kid$<>w=yyr z@UR@Hv7h(%dFv^Tf~zzBFgMf|S0CIZxk|HgzqgUYQFjNWqV2r13N56Ig#+w2YWpRv wiaKk4d7aeEcY<4e@7F&&^HS|o)BRe;jhf8%$Mu$&0?lXeboFyt=akR{0Ka5JTL1t6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..000d52b32f704c994182076f1e770d871d49a327 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ErlBKZGZ`@jFs-kf&5 zy+}Ajh;y%geFjj1u_VYZn8D%MjWi&~+0(@_q~g}vjz-=F2Z2Kjjep(ETuPhrCw;S+ z)9~aE`;=wg|K3I1o}}6CAel8IaU=Wd-1kgb%QxN^@wKv@8I=(CjQP&`H;m=K>x_zl P#xZ!h`njxgN@xNA4wF1f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy_upgrade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/ultimate_carrot_candy_upgrade.png new file mode 100644 index 0000000000000000000000000000000000000000..c00f8d423fb343b1fda0855529be89197442bd4b GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ErlB6xd|@c(!1Z%(`Z z|NlQkh?DD~;v=90V@Z%-FoVOh8)-m}ho_5UNX4zS-Hn_sh9ZZ0_Pzfn{r!PseiK)Q zz#?(RZSOl+9v(Rz!Onc|k%yMr{pm}VRR^pOT5&~ETs`1?$kx@93U(2j)`6>&u V*~)i|!+~Zpc)I$ztaD0e0svZgKF0t6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_kuudra_chunk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_kuudra_chunk.png new file mode 100644 index 0000000000000000000000000000000000000000..4a420aeb8700bfa8605596d627c6a72299b41588 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08v3VDJ$Vij$S?)Ym`b zrt!GPzUyiIxt}K)b~F6{|Nn$KGYe1=V@Z%-FoVOh8)-mJm8XkiNX0GJUPdlfM-C_V z%`5+YxBswRa#}6RN{)5hz4z0dy3C*4^OSscZ^ywfpUnFVFS~-z+4E{_-lZM9pms<8 z|JPPUfk}Pu&t2qJTyc7f>j6iW*P8OW4@IjM&0B7BWb>k#lhfknC>T5b&{1m$;wV01 hWYD8`b$S9SmZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_party_hat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/uncommon_party_hat.png new file mode 100644 index 0000000000000000000000000000000000000000..573b5b78598b47b9ab77e59207ae04584549a845 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A8XX)}u}KWBzCZM3x%x<|+LD|Nq>TtF4#b{s5|DED7=pW^j0RBMr!j@pN$vskjx}f0fZy zk>}_u-8p}s*H&GunfSoOp`OiI|G&tEMy`hizo*D*=eN68yz{nsbmQ^E)as9`{7;zK ztUYzu__&a1_xgTY*;ntDY4v>Mf5FZ+!|kUDkNnGv=8|8TwxsKS?FZV!;OXk;vd$@? F2>_V7PT2qe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_frost.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_frost.png new file mode 100644 index 0000000000000000000000000000000000000000..e1d6434e8066976a9c5c37e8c72ea6e48757ace1 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|3CKs|H&6W6JG!S zKclYxz*Fs=|NqCuY1dw0$lLv&fk8ZC<{}0L3kHVoNq-rE8W>B0{DK)Ap4~_Ta$8cEP|M~ ec0Xs>B+QT%pum!>sdo)%ErX}4pUXO@geCxp7h0+S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_glacial.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_glacial.png new file mode 100644 index 0000000000000000000000000000000000000000..c0dd5d9b78b28729c592de45364cccd5262d0c2f GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|3CKs|KpQC6JG!S zKcj9({Zs9o|NqCuY1dx(&%huaF*Al?_aX)c3kC+}39b8q8W>B0{DK)Ap4~_TadDX%6&g-JSy>}T>KCInU{rw&D1k1k4?Q%|QZUpge f?XG6tB+L-IR(`|3&uUA7)-rgy`njxgN@xNAh6`O2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_subzero.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/upgrade_stone_subzero.png new file mode 100644 index 0000000000000000000000000000000000000000..d6882e72d55579ab5192bec66d69d296767411d9 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|3CKs|IfE4pPs2t zc>VwXj5_U||NqCu?QUn#uD$S|fk8ZC<{}0L3kHVu2jiy$H87S0`2{mLJiCzw)rqWWk z$8cETWjV ec0Xs>B+L-jEZ?_X;g~wmS_V&7KbLh*2~7a=OI$4g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/washed_up_souvenir.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/washed_up_souvenir.png new file mode 100644 index 0000000000000000000000000000000000000000..5cef155f6c2ed3caf2d7c1f43f68e748a0fadbe8 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7F%|GEA5z|Er%(k||8 z-dz&8eX+-k=BHL(1{wZ-j$U$JW<4Tuc19+mk`iLVB1|bl+CV*wB|(0{3=Yq3qyafu zo-U3d6}OTd*zOpsJ4hI(A8s*oc)6v7BX-%7pxq1}pVyVodbw5Z#Ez}so;&~l?QraV z==A%k|JaRE{@pA0VwF6ioIGFTC*z3?FJ5rYuM|J=<3`Q)Iy(=;|99ut>o&$w!tCcZ0c~aQboFyt=akR{05r&3{{R30 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/yellow_bandana.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/yellow_bandana.png new file mode 100644 index 0000000000000000000000000000000000000000..28ce7143e6441cd12f1343bae1b7ab283c0b11f6 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0A85$oP68=kMFn|9|kb zW;pBu3Ne-h`2{mLJiCzwg{RdI-nrnbanUt|4(AfITa+{FovyqD1SA2 z*SX0lE2EdF9hq})*A7F5sV72~X3k*0=n*9Q>G*`+ YCr^pzO+4!91~i<()78&qol`;+0LacjcK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/zog_anvil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/pet_items/zog_anvil.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e7ed2c5cc3881eaa542d273e2eef2f55019476 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|3ANX`P}aC$+^Cb z`KDEow%L(F2`;*k=0a|Ua!Y+zga8#WmIV0)GdMiEkp|=>c)B=-RNP8-U}p`ORm&tW zo!L=vLf{&WB{@rM8XNBhoG`hvLr6n8MJgwTGiZ@aj$JX6$KID`Lb)BJEOjM!Maeky zaPpisI*{g@p#Q#UM${S+zKsc08wyos7z%StSi{aB(k1p&f&1Kgpj`}}u6{1-oD!M< D3zEakt zaVyz@ZBFq5o~YlAJ3|ie^iEii$3DSf@ygX7#RQZuSlrmcdLkjy zl#lm4)5?z-y({7vuI*i1EACQX`kl$(?9qL5xsx_@S6faJW~h55B+9z6$Qx)0gQu&X J%Q~loCIGY#RF41v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/absorption_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/absorption_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb26a5562bd1e29273b255575bf97b5014a3951 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj-?{Si`=58-o6o=b za!j{-?SK7E7Nxag%r9O^I_2nQH88;s(yPDl1Mgssv=b%G$$ngu{f-OqbCp!mHQ$u$E)i z9q+@N)f!6m^`kir)mLXR&3Kj)eT>ua#!+3~lZ*^e8iJNj3nL~0?O^b9^>bP0l+XkK Do4-lg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..1047328139a5a22aca48e7a1014204e48a34a6b2 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2ll&6)K}yVqX0 zlIt1Ue`sg1>9laEmF}w3&BdB*_)_(`ZxuFq0hKbA1o;IsI6S+N2IK^Lx;TbZ+)8#} zTQf1BZNo;UmW7twrxKEq8;njZ;NhLm!r^>G`cT4`3l?mNQQ8>^hUT797Cm8g`i x0^8+2v0hyTSDkxu_v|tiG`Hml@TN6pFzAN!Pw#O^-2pV7!PC{xWt~$(69CHhMlb*X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/adrenaline_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..540eefc8f0066ea1df8a94907add94d7ff7389e4 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3fZe&2llP50UhS8_dL z`w#6bHk}qOwbEU6y17`B4PUB0cM8uOAD}wMk|4ie28U-i(tw;GPZ!6Kid)GJta<^n zjxwLR@TTE{50CM}o-3RJZM#YtS`>3w6Afmq&TloibY)tT3MA~0Hv&y(@O1TaS?83{1OQ@GMehIr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..89fe6964bd65818df2c768219d06819c822282f6 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=2siH(z=Bee?M@S1;R~ zS-*6_Uf=Gu7p~-b#`YgdUu2=#>ABKfb-KA2bC#;cQ+sis2F8*gzhDN3XE)M-oM2BE z$B>F!$qsBXwgGKfD;Qf6i^WbQq@_0)SuEr+-Oee{wurms;FK4WI1@W|u4OU)vLtLR z^Xbg@>+bO;8SKA(a?g9!j*mr5&4wKZ;}}%V2>LNFoXiyBaS>8G2sEC-)78&qol`;+ E00sX{*8l(j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/agility_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..869db3dcd71e26afe190b02931c12d5df95bb628 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=2siH(z=Bee?M@S1;Qv z*z4Q9_QI81&)EJ$>5D8hJ3Uvrt4=o;W6n}tD>AtZsG6}P$S;_|;n|HeASck%#WAGf zRUE>FJiR z)U`~8Gv2RDh^uBkvg6``1fHY~stlaQEzAs$mk4g=StzCmG@QZH)z4*}Q$iB}6NpJj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/alchemy_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/alchemy_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..db29a9290163748ecf92854d9bd5afb223e39835 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-p)4yS*yQ);#wCUzzyrJdSdVi_|H87S0`2{mLJiCzwszuo6o;_ zxly!x?S(73p0WLhWcoL(bXS!sn>O8Cj5oAgJM3)*P&H#okY6x^!?PP{Ku(aSi(^Q| zt>goYH@F>^L^C=6WKuYL=)kceu0sh04=fqdHr#p3xVmJ+oVyHZD)~aY7}FwtAG^oO z9cjhoD6y~6Yhwc2>Cme@9jrUAODXVd<4dV#e3U5cU~o_46VP-9Pgg&ebxsLQ0Ivm1 A@&Et; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..7f202f6b2a2ba6d697cf6069465ca86f89487bee GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6oxy}I)B`{wg+cJ4fV zX8qFcwHL1BddBu2s;Qd0(p@z&w0^p|n8m{xmw`$dOM?7@862M7NCR@bJzX3_DsCko z;JUGT0ngO{W{$&Iyi*PyW1MP~=FM=~r%CDZ0Up=wCjJ{Hcri6|b{teWc;J8y?~xA; rMl;gQ3{u`R80tt#7+Gz&!Nah19rqS(-U|&tV;MYM{an^LB{Ts56<|p- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/archery_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..1787c875adc2f973571a098171ad34b290abad46 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6oxy}I)B`{wg+cJ4gg zz4pSDT+i74Lp4=%SGuc4hSpCv7nAyEFMGaQgJK!0OO?v zCednB5^aT@jE0Hn64Z^%@0oET={e9`oZGQ*Jo&IAKS!x={!PenWOlxsBaT->0T kW!aG!cR(Pn?`Ryu{Ds^y?i{lFfQB-7y85}Sb4q9e03Rnpz5oCK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..41dec79d50a703c89f8fd20a417d8020e0f755cd GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2ll&6)K}yVqX0 zlIt1Uf2cCGaHYFySXjz*b1_qsKnZE1yyxP%K&6Z&L4Lsu4$p3+0XadQE{-7;w~`NV zMJO-eNla$ta9+%PDj_M^A=QA(U`IpdNzI$-4mxjVzDqBAUzU(yRebCDnRmv=B_wLj wJ(=^-a`J%#2c{KQE%TT1FpZwYJ>eJ&gN%ZR=rxWUd!XqIp00i_>zopr0LPR_>Hq)$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/blindness_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..615894ec05aa97ab70288daab2bba7a20f483618 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0B)uKO`Y-WNH!^7M615 z>G#Ui!jF!$qHN> zG&ol|MD%&_CCr-Is3>|!;1gG~fyCB33SE-oD^(gK?{v?QJ`i*-`UdxbB1OK5tQEOT Z36w&C#m@rGWLxE@E zg(8mTKuwuNGcJ0F9!l^^YV=^;xygCUbT*L(+c_EB`bPQzjbQL}^>bP0l+XkK D8*3^2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/brew_mug.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/brew_mug.png new file mode 100644 index 0000000000000000000000000000000000000000..d8150cb4dc7952206bd028c8bccb15dcae218afe GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=3fZe&2llP50UhvHgdx zuIP9Q6k;q1@(X5gcy=QV$Z_>_aSW-rm3)9*f|Zr^AP=KL7>l5T-sFi29xeeM2OT)H zQWvl!X&4w-EHDrek>Hs#)$x}1N!TQO{eRfuhXe=z z|MWz}V-IF+Xwnr>-610LZ~vqJi3)o;cZ(|Y n=P^wZc)dZJkw?uppMl|GO`!2E<@BpS(-}Nn{an^LB{Ts5K;dcHF4W3jEE%#>0$v)1CO5RS36?&d7-K@|v rb?Rn?Tf5WNMKPuoEGacnxXHu7HbZoWKzdO%&};@zS3j3^P6Lc$BP#)PM$oO zWhE13AReqE5~MBSrzzyCA!M(>t1S1J1*nd(B*-tA!Qt7BG$6;_)5S5Q;#RT)lMhqC zF*j3YgR{%#tYAyqFk|IXhb3Fgts64)6q*bUrM+u2h`5~AEIDUQ>P!K)+eUmHSGM@& hb$pvEY-aF)l|fIRJHb5Xbr#S_22WQ%mvv4FO#p9DKMMc= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/knockoff_cola.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/knockoff_cola.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a299fff5c7af9542d004ce8d1a153515196a68 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=8QX|G0Pm-iZ^({;ywB zb>~O_{AE^K|4*AXFVdQ&MBb@05hvo AyZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/pulpous_orange_juice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/pulpous_orange_juice.png new file mode 100644 index 0000000000000000000000000000000000000000..98941c9d46f79b3aecabcf587cc5b9f9bca34a89 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9aFdB0iW`f`!Wy;%;o zX4r44HhP_qz6dD6SQ6wH%;50sMjDV~$*Dl8hO+8KlL4_s*me@-Q wJZ>wb#N1p3HIyevuDaX8yXvkY<9=TT-$^X5X0dIZ1=P*p>FVdQ&MBb@0N)TUDF6Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/red_thornleaf_tea.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/red_thornleaf_tea.png new file mode 100644 index 0000000000000000000000000000000000000000..19388e622359015dca5ddb7e0e660637b38aa5ca GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2Ob3|agP2|Nrj+zj3v z4FCWCzjf=@|CXF3#aYMWy~6D*|DS&w2vo;b666=m@C*d5u}rZCir9L(IEGZ*N>0-t!A4J1tODs)MzuT*J}yfb+Q_ko~$(H2q%iWK<*c`I_6 a7zopr0KefkhyVZp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/scornclaw_brew.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/scornclaw_brew.png new file mode 100644 index 0000000000000000000000000000000000000000..e8bcf196784a0f82c4207e4bfcf6d0525f9a00b9 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5cvFdVLC*iy)_seoa1 zHp7ZchTd?7|9}7e|MBSSvtw6Jtl?9??haJPQ4-`A% z%_>co;j+x;uro}?JHpSz@J^hya}}e{X5)fw&Js?6mlb*3mKGQ^PraC-*>Z5o5vGY; jMXBu>`n(zm2e=u0r}HdVS>_=LG?2m5)z4*}Q$iB}OlL-K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/slayer_energy_drink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/slayer_energy_drink.png new file mode 100644 index 0000000000000000000000000000000000000000..03efbc9f2f1096bfe2ca7291c9b585c8835122c4 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9EK-#c;Q*s47T`{ys4 zHf_qAw6x-m-kh@Pqk54JK{2zWUG#07RdtQBSXHH!)FnCe?SOh1OM?7@862M7NCR?w zJY5_^DsCko;F`mtXcFAs&M;%6OTbC-Gb^l$zw6J~c;nBTT7$0vJC~`EtQzv_ zmeh(XYkf2xpPRQ`;O*Z0clQ{KEu5^SCgiX&7{to6OB}H{0W_Dv)78&qol`;+0EAIW Al>h($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tepid_green_tea.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tepid_green_tea.png new file mode 100644 index 0000000000000000000000000000000000000000..fc3a865893725a823768834cab748b6ddc062cd3 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=8#G$4y-l&@t7csoyob z%;Nw5|35x0xOMB+gCnJT_D-lS^7u0Af;~_jTS<^#FvBwtxW+OCBx397;uunKD_MbS zg9hg+hloBezJys*8x=(l34G#eHjvnQN1;nne5Fc*Mc?2)P^8E=k+mY1 aiQ!-l`&r*TJ0AcIV(@hJb6Mw<&;$Tk^+eYI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tutti_frutti_poison.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/brews/tutti_frutti_poison.png new file mode 100644 index 0000000000000000000000000000000000000000..fd036185f8d5a5bebae86cd9b03932b969f75e1e GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=8QX|G0Pm-iZ^(Ue0Rn zpTBI{v?F!$p^TarYe{eySFgSFbq9u!F8r!{?1prGXgb?Uh~Z`Tw0_z#jyCToksF|D}&^d zZ(^Sx=y|$3{Vua{-upS+7w_$U^^Vt|S$XYZ#*=9b<&83I{f}jJfTlBey85}Sb4q9e E013TMeEgTe~DWM4fU@I5c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/burning_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/burning_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..efaf12318533365f0d797a81daf7b9fa0bb51c13 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fZe*gU}V)OYoZ?}7$ zS--S>B*-tA!Qt7BG$1F&)5S5Q;#RT) z>(hW)d$~?+h+|ziQ?krif^m)Xfh`Km&YKxK64M@ui7_mZRGk}Q)Z55&?WC99N@Itf znR$9M71%zXG}(SeSmCH)@wqdZ42BW@^K2LmH!NPvc#@GJeyd3Fb=BV!fc7wWy85}S Ib4q9e0I?ZOQ~&?~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9c45b2542e5d38b0645710fef5ff9332613171 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2U)zrXVI`{wg+<{Z6x zX8qFcwHLY<-oKLT8QXtorMs$g$lB@VV)}f1i-AfROM?7@862M7NCR@hJY5_^DsCk^ zu*t**v}LVeY)Rb8b}Hd<%Y{>C=A21TJbH58GfsuJ&KW73GY+b0JmL(TqG817V?4EE zN~7c}YuoM3S2O%?&*YtEoP7HvTi}rx&dqWudJGked|zVr2)F=kVDNPHb6Mw<&;$Tq C8%{w0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/cold_resistance_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..f98d0e3df3e476952129f3a93141205d5c5500d5 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=2U)zrXVI`{wg+<{Z7+ zz4k))!uwZpJ!AV1t#ns)4p}?hT&(`K(>|a&#*!evU3o<;d?SCsksDb1B0ilpUXO@geCwbicBB? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..fb823a508848bed0e621e108df56449296b97e51 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zdAc};RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsaWSyIPd(t(GK{qea2oFX_nU>IxmIn{S%!~2A_`nV;iW(u7(8A5 KT-G@yGywpzm{3mu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/combat_xp_boost_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3fb1406f3aa13fdcd4e48f4121d4b0165f7ec6 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{>szuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIl-PT zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5$j{VZOuLcM z^{TOT4O8>IM#(z=ub&R^i0xg#)4^JKUP^&y8(&H_<2^B9jyu?WEP}~3j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..0397a9b4a1d2b5218a3a2ffae0b6344c6eb1f485 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3fZe&2ll&6)K}|95wH zuf1?3*E6>N(0^0YmF}w3&BZ1d8s?gU08nL(@X_Z$im@cfFPOpM*^M+HC(P5uF{I*F z@&T?JMhkfolUX^Oi^ZlKJi@n-we^NGvjfjtS=rs(4m`)yriX2q($eMb&fxK2i<|rR z!U-McUfwliO}JbBzODJ{i@ke)@#!p*ii(SC*dWR9%S$9A>)sqSpbZS3u6{1-oD!M< D@H0+N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/critical_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..74cef8604a455880487c01f223c8efac638190eb GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fZe&2ll&HwK1?zI=L zBy1Cc{L&IEC5CAGu=3n9jq!>$r{DK)Ap4~_TazZ^_978H@B_CjP zT4<8ZGG*aS#)UH_(wZ_I8MkTjDYRYt^eL26fh~DrA!meF%*{P_7*#fS@7Fw=sgPY;V6ruAevwgn-Enx6;^>bP0l+XkKg}h05 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..2052cde3d02c2e972577ef8fd04873fd73e44c55 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2lljqm3VXVx$6 zUVGt6u4iojA%>k>SGuce=H*T|7XzyKb8mA9kYX$e@(X5gcy=QV$Z_^`aSW-rmF&Ql zGc%yAqnoK^p{4YxgrrullQQiWdX{r7=y@6-xlD^y!#i7W%E4PA45^t8l0C-)at}QV gki5!}qRzljwT@%6{^loYK;sxZUHx3vIVCg!06&RBs{jB1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dodge_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..31cc04c50e5bafee25d52493e9b4e9268c184fce GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DhO^m}aoAgTe~DWM4f@}WI% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..430ac6cd5bef036eb39f5b78dad1386c788077a0 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A8fyr+BZh0L7j)5n&+ zczP)~)cybe|C`Uh@$rl{(zCeo^t+0ztPnqcZ2uug!vm5)4U8p0e!&b5&u*jvIkBED zjv*DdLc3Z;T^xCsBKyDJf4lR;Nv|}yA4|5f`OVHYeO7z!R`1cc*+*w&ueWqaTYHpe z{*1Ynp}N0Y^^d((UBs{_^}p?Ww;P*3WYj20_NR#5Fj$;!+s5+BFn=Gjs}-}Q+N-}0 Qffg}%y85}Sb4q9e0NfH)9smFU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_1.png new file mode 100644 index 0000000000000000000000000000000000000000..27e25603a5f48f92f76b55cd38f31e34d2a294ec GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0B)uKP1G@-@W#NimYsA zPW0(xOJ6*_6ddaQ|Nnm@JqsVt=*{QfTzUF^B0{DK)Ap4~_Ta-uw4 z978H@g`POd=<3Mf9M~o}=ilzXdX*<%$^BZhoAbIm%hIbpTLeQy66FIeXFIsC%zkxY z<_(#LHu|v|PXi_Q9pewHIOgVYv;t@g NgQu&X%Q~loCIDd#Q#}9x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_2.png new file mode 100644 index 0000000000000000000000000000000000000000..75866d45ca8a87c25823a2b695f3f7701bce1a69 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A8fyr+BZh0L7j)5n&+ zczP)~)cybe|3044MtT-1va*}czq#`CyAVHrZ2zI`-3If48W>B0{DK)Ap4~_Ta*{k< z978H@`S=`XJnX5X;irvKYsb~cKK?h6P_d~s{Gtm*gMQ*F7)k7I6svud5Q*F1Zs z>g$Bwjw4TbcKudJ|J1tf_WczzGB+49yfTvdY<2K{g;l76?)eW#k57;}#NMXBz>wC- VJSon0CKJ#$22WQ%mvv4FO#pW#S#f78A8f)GD{Z2ut{i@$Gy8W>B0{DK)Ap4~_Ta$-DP z978H@`JOn=$YRLh9Qa`d&%6D%&pKXuY5%KdCg<_!mW@|^rU-_JJiN7NlRlH6U{2KR zvgH11pXBwS3ffvqR_FPR_EZU+O8>=g8hq8b{okZcU)yv(rn$%O*RqGFFjw!X?#%?+ O!{F)a=d#Wzp$Py1<54^S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c31e6b3ad39c31f51a3f812acf8df7c8b867831 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|9|oH(v_#*H=loV z`q?&t;ucLK6VD>{HqR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_5.png new file mode 100644 index 0000000000000000000000000000000000000000..68784a50e6aac78251a57ec8cfe51f07b398f780 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A8fyywc(@0mH#r;jat z@$^z~sQdr_|9w28Rb*w2^ei@?f78A8f)GD{Z2uvZ=`(eJ8W>B0{DK)Ap4~_Ta$-DP z978H@`JOn+=n}}`99SX0{oig`@w_n051fLD?ML>ox=v*^=Q!Qg9Wg^M;?SAjhZPsx z+JAOY_TSGM|BI9!Pdv}R$LO?qiOY5QP1?r0+5bJ-XCHFD_(OhNbs2lW2j*=3u;8OW Pdl)=j{an^LB{Ts5%aBuY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_6.png new file mode 100644 index 0000000000000000000000000000000000000000..0779423d52159c44a3ac8a5063bccc8cc3f4337f GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0B)uKP1G@-@W$2m8aiT zWMwy>e`BO);o}+o|NsBsQ1=&4FP%QNG&3i9;1Q)314n4JYP1w!1``??DLyjIj*)A_=cZ%Rk+*hYi81= zdwk-e8-k2UD}T=T%zx+1AwegXFZ}%>p@Pfy??|4^W$*w0zopr07BVT`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_7.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/dungeon_potion_7.png new file mode 100644 index 0000000000000000000000000000000000000000..075bd7c4795c2056db159270ebc997726f5bed69 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A8fyywc(@0mH#r;jat z@$^z~sQdr_|9w28jr1%wpMTT6_JWG6tPnqcZ2uwkjZ+r`H87S0`2{mLJiCzwszuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zdAc};RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsaWSyIPd(t(GK{qNxrJzPf|N8{>(&Yz#u1M9uzAns*6k1B0il KpUXO@geCxbI#m1s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/enchanting_xp_boost_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/enchanting_xp_boost_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..1f864bf4cf73e2f3afda2e024ac73c0f4999e2cd GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{>szuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIl-PT zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5aQj_hFwXh) zq-C%ITYQkGq2Bs(x?QJ|A^MJ-Pc)I$ztaD0e F0sum(PtE`U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..318115f8d55b8e52509daae33672fb8243a63b79 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3&t_g{JX{lt@~&F9~o zS-*7ZDUa^87p~-b#`YfyTj03TT~)o*db+t7!@AyWK-G*TL4Lsu4$p3+0XZR_E{-7; zw~`&$WbOvEWvyUtdAL{nRKmlS3qE{2PZQdvEr|4E?07gWXO1c3nv}>}ULA|H7BEQs zSfknSB5KgTe~DWM4f DwBt~2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/experience_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..572a88ec5593a0bee87e568e9a331bc653f67bd0 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3&t_g{JX{lt@~&F9}t zJ>}88_QI81&)EJ$VGA5rx~r;}T2D6@Q|VVc160ab666=m;PC858jut0>EaktaVyz@ z^=ZJYyqfg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/farming_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/farming_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..c2921a4491c37c3ec942e36cd157844b2052e366 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zd%8G=RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsa$*nn}Su$>Qsw`Iipxd9AGBJorH zai-n)rT(<}>6*R!{<0hYDSvvcSyE^IyKpC;b^q-c4<*d+%rRy-?kxT>CiS;9&szuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIU$}d zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5$WN(aOuO-e z^=M=38k_n1n2rC09edI!sndTh)j{V(^)-gX4W$aVxfy~wMCV3C8x#S}XYh3Ob6Mw< G&;$UqqER^j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..3ffa986ccefb73adeb7d9f18725125ff55da0d80 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zdAc};RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsaWSyIPd(t(GK{qi;0sBTs(47gpf;HuHoTGlSeAQPl@`74HFUVDNPH Kb6Mw<&;$U@Em1K5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/fishing_xp_boost_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..da17793b826a5fb094b09c1bc3b8fc7079fe6f4c GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{>szuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIl-PT zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5$j?+|OuJFx z*Tc*mS^3IQqOSYii$+PE!geDCu_w0K4F)%?CcI^3VE-xnC$5`+KhSsvPgg&ebxsLQ E0QKlkF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/foraging_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/foraging_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..46f729a3f7f3daac6964f8227838d830411aef17 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zd%8G=RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsa$*nn}Su$>Qsw`Iipxd9AGBJqNM zIMZ(Y;(FTrbj{vszuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIU$}d zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5$P3mmrrr3# zakQ~@jm`X5jgocRk3SvYndbi9NI~q0ZFYmf4XX)nSs9d!MYey)`o9inK7*&LpUXO@ GgeCy8hEhrZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..f53e0a3b29c9ddbb3a4ffa7977230abdc9d5a922 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2ll&6)K}yVqVw zTaN&`Nhzw?e1s=3+*EMk=~0O2Hm#K&6Z&L4Lsu4$p3+0Xd$YE{-7;w~`fv zHl#X89y-P)(B>vS<_02<2R>FVdQ&MBb@09SiPnE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/goblin_king_scent_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2992bca0db8f4a53f9d6f28a575e32e30fc5ec GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3fZe&2llP50UhX^WDs zQ?A9-CWGb&qzgAWsY8$0#F@eNswPKgTu2MX+VyLr;B4q#jRuosSRun zk_%Y{X60IS99(f=!2wIoBME6q8&a4J!y-!~^_h)kM8#NzqeRG1G^E;cqYBBh&q#d4Xm!c)I$ztaD0e0sw~(K3xC+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/god_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/god_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..f0497287ae074f8f00072ce8a031e096173c4422 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0B)uKa?T2xqIye-LzA( z#}9cwsCfKX`N<09y+z_zay`$iUpn1fY^A&E|NsB5JpI1;{F`fO+@3&fj3q&S!3+-1 zZlnP@k)AG&Ar-ggoOa|ppupi0C>WT-xaWUnw$75@|9Bs&2LD@j-EV73-Tt*Ls*ALg z;ZD#XRb zwY0P>EG)dey>)eUQ&Lju>+9|8>Hq%@W-Zm>AC!o=cB|(0{3=Yq3qyaf|JY5_^DsC;E5PIl{ z0#D222OHv?i~eU{`}%VFT(Oz_@;|oTdw>0C_xb0}vlCqwtf~@H_~gUY&muA5wAIoN zEYHfq7{!vCc~b9hUOdI<&^zN&!+9MZS4@>3@&zopr0FIe>J^%m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/great_spook_potion.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/great_spook_potion.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/great_spook_potion.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..9b2d65ac81ff37f140b5d91c5a6bbddafb5678b0 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0B)uKh(YU!np|yFL$sl zO=a+G;Y--WKdXx!9Fl&ok?nu5?$m%x1sx^!w)XZ{~Zy?F4FLED7=pW^j0R zBMrz2^K@|xskqha+bqZuC{q0+?brJ+ZqH4PdtRCqt>eDutvQ2xg{dwJli^&hfW_QP zr5A5{bgoYH=O=f?L@DpPPPHE{9^2p4_F!-KI$pt!@_m-`{(fNJ(k)(olG&~5ehdrH O1_n=8KbLh*2~7a72~n8< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/harvest_harbinger_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..93a532f25dea0bd1c84e7025d438bfc6557678b9 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3fZe&2ll&C4BZ-D@wL zo4{}-*E3-ge{BDuS$!N!QyDy4_^LD5SGucOX0uN>7hAvaa|2KhV@Z%-FoVOh8)-m} zx2KC^NX4yW1(q8^3wpM23(R_{KV{*8|BOlrxA+AG%t{$9_Z++EeSpXF>C@Fx4ouyL zme03h4EmK(_4TE=g67m$yJUG2TxDe)r1%(~EfzktmRsZt&{zgfS3j3^P6YIm5|na!H0|I@&O)KNAd406OI&$e-Az0z%%=lWqR7WnFkI` zusrzcOv_ARhpsED)f~30JRo^`0gtxCVKw$s59V;HFqlpd-L@g{d??Tc22WQ%mvv4F FO#qj>QKtX^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/haste_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/haste_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..bf68895bc7af9965175d036112651533d4afca48 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G)C|`{wg+?(CS{ zz4pSP7N;w@p0WLhR^}S4bXV>2gTe~DWM4fet%6v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..18c2c16cedb13de186b642a8e1d8287d3bbe6801 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|3CTf+?A)_H=lpg zbG_-z`la1#FO==eEnJg)CD${y|4=}K=Sp|g>E>c4!TPP%Kj#AVFqQ=Q1v5B2yO9Ru z_*4d1`iI(ZiGt$JmYlEIZTbAtK94#(}QHlK8s!Q;5-{k)|+Hv$c2@O1TaS?83{1OS+? BPJsXb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/knockback_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..18072e6e775e1371996fdeb0fc8a8da748885427 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|3CTf+?A)_H=lpg zbG@m1?S-;^xrJ+zujG2h_8$sp@LcJxI^A5%Bv?OLx*-Xufw3gWFPOpM*^M+HC&<&q zF{I*F@&QH*bq7gfeus>8)&XtI?^zAb9-6={xZ#B#!{swhg1Zm!lrO#Xj#Z&8yCRdl zk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/magic_find_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/magic_find_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..d958fac7cc0107a94ae06eae44dc5ba58d06fac7 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G)C|`{wg+O#l2p zvwmsf-v8ZeFHGwDePAJy`{j! z<0JdNtWomT?`wPY7!1FJ6|QAAULzr~Lrfuujp5iN!9zC#tDS&mGkCiCxvX(Q1K-yZMxfo28vL8_sDo5VGKJ&`4W);nWtB2`&pacxR}3Xxu$wTEi5vPDJUz zfsnd#)fo%7mc3icBH&!E_B_Vm@TA7ZVx~iJ3_RxrKW_cEz6EGHgQu&X%Q~loCIIhD BQ0D*u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mana_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mana_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..012532cbe27b5f23ebf21bb537a431d4cd704b13 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G)C|`{wg+x-b4e zvwms!+6%rr{%bA$dL`F0w*SydcU6XpW7EyWBCfTz097-V1o;IsI6S+N2IM$+x;TbZ z+)6&cWs&YIxoRPsK-Suv4kcJ$ iWV8{F9acsJ|*q)85cYsP6OM?7@862M7NCR?QJzX3_DsCko zV6>20(9_2%Fzcttl*9wY3`z$Cn5W*9Wk_5R?%!Y_a#xXOnalRM0;-yM69wEnty&K5 k+AE@TRKT*BY0_SX!o7TZo_N*o1{%oV>FVdQ&MBb@0R65-q5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..f01e50cbcbe32c27ef15d4282be05f791e7ee8aa GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjKKT1J{>szuo6o;F zvwrEzjiTLaFI>s>jO{-px8$fy|Av+Bs#0asrkjiLhL-#BWu^i3FqQ=Q1v5B2y8+^a zdAc};RNP8Fz-3Xjfah`myTRLc#pm`icx*P9QXsa$*nn}Su$>Qsw`Iipxd9AGBJm=> zIn!?ZiaW!8It@M+v;R4{M0|N4?&P!Xza8VDg!!F0#tbt|#kP9}PJa!wfx*+& K&t;ucLK6Tvvr~Nl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mining_xp_boost_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..48b25981059980e5fe4eee450d68fc9e9970dfc8 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{>szuo6o;_ zxly!x?S(73p0WLhEE!@T~(@V+H`X<-q3O}$2;;s4U8p0e!&b5&u*jvIl-PT zjv*Ddk`FN6;C5IN&E))(P2udJ1ILP_4FEE;FR5$cxl6rrr1< z)5FXiS$XVbqhww8JqMSFFXvJnbWT)XV@TXks&Jc|L8Dou`H{lMmq6ngJYD@<);T3K F0RS%|P~-pr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/deepterror_mixin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/deepterror_mixin.png new file mode 100644 index 0000000000000000000000000000000000000000..878716a5c705a62578d341c2ec235d14d194c7fd GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0^Qo*(qSyU6r%x6a`b zl`TF(?e8q}cz_a&B|(0{3=Yq3qyafvo-U3d6}OTXNNm{Hrs@#Uq{t}HHogs~8#cA6IYj6!Viai0p2^fA t7{V7C9LJMruzb3sM9x7@&Ko|=4B}p_U+>Lax*4dE!PC{xWt~$(696%=Dxd%W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/gabagoey_mixin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/gabagoey_mixin.png new file mode 100644 index 0000000000000000000000000000000000000000..8d3ca8a4d5a6fa774d9157f7037a164865deb5a0 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7EFB>gP#{AOY~Rb4Ms zUdcpQMCz;~A5em^B*-tA!Qt7BG$2RU)5S5Q;#Tqk2?IkeEr$ptMK*!9tQE{HiYr(a qMus>m@?3i$utM)K3wzEoMuuevnRiZ@yr>$ek-^i|&t;ucLK6Uv5lv13ZJr*C tEs0W03vb3AR^aKo#HF!#??T4enG9#YvdV9GxN;%L5KmV>mvv4FO#piAEJ^?X literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mixin_glass.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mixin_glass.png new file mode 100644 index 0000000000000000000000000000000000000000..5581c55bead622a7b6c5b56460210a908eb0784e GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=3fZe&2llP50UhvHgdx zuIP9Q6k;q1@(X5gcy=QV$g%TuaSW-rmF&RU!xg|L+_R8JX-2OIYwLkS4o_Ib!V?S< znT%OPBq9#*EMW3!<8(1(JKWePxv1^v(W8tf85y46XTJMt!>e|nNerH@elF{r5}E+Y CYBZDp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mushed_mushroom_mixin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/mushed_mushroom_mixin.png new file mode 100644 index 0000000000000000000000000000000000000000..d84c6749b2d637e2d0ae6b5eecee330b8b8b73e3 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0=w4|w0(Wwmva{`8rm z#U6hmIV0)GdMiEkp|@Gc)B=-RNP8lAhBV?4mO8~u2XyhZ4);#wmi&X qS{NA{vVcc8oTFJ+N0D)MCd1)m7Sri>e@6oKF?hQAxvX()Kk=`&()w z0=)KGpHl#eGL{7S1v5B2yO9RuXnVRihE&{2ULdi-sFTGZqN|BXz^y}YisB2dg^?_+ l3OsJ9D>$+{oEXe5Gj#MbeV#ogTe~DWM4fM|ClC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/zombie_brain_mixin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mixins/zombie_brain_mixin.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7ada3d733cd0f6f618c479cefaf3bb85e1ab78 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?b1=5$7Z8_P$XkAg;gPaR44$rjF6*2UngC|ODtG_@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mushed_glowy_tonic_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/mushed_glowy_tonic_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..37acd594e51f50a00495c02f222c89e792fe7416 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0ErN{>_!A-&eY;E;(O+ z;M$s7Z%>_Bzw}D3=X7(ihW`h=@9ol`KGSOJCeh*&@qmEX{zKhsFT{7heGAmdSQ6wH z%;50sMjDWl>FMGaQgJKk04qai?@`7B20TX&<=m>jUgZ3JQ;OHgyqu(-D$!fF{&eSw z_!A-=~|4UCH%a z>8`rueEorIYi_+g<$Z6L{`8p*{|{Jg-6UFEA|4PB+kdEg?FG&Kx7vZ)7)yfuf*Bm1 z-ADs+QaxQ9Ln?07`ZY5$2lD()+wy?@u+6A- z@=4Fv+y11=y00)zcbH_koQq*;g4&~v3QiG4jxt4YWhM_Nbjt+rsJwEJaek2O7}PP{ f$;MwJPX3Ea1$*na1erHL3mH6J{an^LB{Ts5xA9zO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..36b409fdd89820f1d3d41c0342e2aeaa646dbafe GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G)C|`@duVH=lp= zr~Chz^-H_gUbvF$`P1}&Z2zHKDi2n=t4=o;+rqH(*Y>RaKn;u~L4Lsu4$p3+0XdPL zE{-7;w~`NVSyV0H*=oYharn8;l!J#@7luacxWV0EBJ6B=ooT|1WeHFG9^d4akl3@_ z?fpDU{u2o|cbaVaCF=1}>+#I<+zve7rf-gS{Br$mG(%#+TBmK24A=gNiC^j9X9HTo N;OXk;vd$@?2>@=JS@r+` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/pet_luck_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2e0e2a00eb5cc09df4a316fba9ef91c531c246 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|G)C|`@duVH=lp= zr~7~R+6z~5J%5`1kL^EnOXa~zch%|UVp|w?iW}se0IFsz3GxeOaCmkj4akY`ba4!+ zxRrc>@zg?-YSSr(>Ew|IxCc6y1AIakpMoR2F8*gzhDN3XE)M-oFGpZ z$B>F!$qG_uS}x5gUcj^0SRtsRvGbwqVg}~s8%&0m*^{_Yp{F0DGyGsAUN_5q%2#)b~62@53_FhpdiZ92;kZzm@D=i;`f QK)V<`UHx3vIVCg!0Q<>P^8f$< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rabbit_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rabbit_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..df648497146c233d9782a8c6bf716f4fbf175e45 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2ll&5ccs-D@u# zpO?O+JNinlXKeqWiMbvt-BnZlET@}`t^KFf3{=Wk666=m;PC858jus`>EaktaVz-% zcRrB`x2r<;rY|NsB`_3OKL@9yvKU%q_#m8aih`wty1UYH5g##j>M7tG-B z>_!@pljiB-7*cVow5wH+!I0;$%=DeV^?#pPu&Csq{Jq<=&7aSSX^xOSci~pZh2`DR z49l-B-_brvLwKoQaFw1B3x`31bC!?r&T0EtWk0`Jw4EVyiD6V3`&PxRE0i0&G~ewz hyW(tl)%zc5EOozFHaSWOC;@F`@O1TaS?83{1OVicU#$QD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/resistance_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/resistance_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..0232b3e8ed09e3fe7e5f5a0acc3385ffffec872f GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|G)C|`}OPBH=lpA zd-v|;%a?bry-+aoM1Oz(m0Zu*{zK{wdse!uPB#~0h?#l$Uhp%Z9>$U&zhDN3XE)M- zoET3R$B>F!$quZm7nod+(m4EHuOlTWA+h2)U(yEa0{cXEL$&EUD$<%II*%<}xVe#M znoIIy1B1s28!}I2PB2^ksZUwjp=Z`Nsd|IvzyH7A7iiA@m)~Hpqg>gVf#JywiSWA- Syl;T^FnGH9xvXYhKU9u5?l^bCSBUJ-2D@ObZ5vl}zFnq~i+1fR-?L My85}Sb4q9e0LnL0lmGw# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rift_gravity_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/rift_gravity_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..a29a28765991ccec366df10a183bbd3f3d519339 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5%Q?Z5K$`{wg+s;}*w zwBkee+6z~5J!AV1r4?Vx3*NTUU3I#-Scvh;zm_suK-G*TL4Lsu4$p3+0Xb2gE{-7; zw~`Mq-r!!)^NCkr)=!fui3f@qe2fjhIIxIF2suodbm_{4)J%tECqu-iN3NEVknoXZ zja~eVNpf0ntW)|?Cdo7A>FZ`yF)z9G=l>PrLvC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..201723b8739f5cf725a3d4bd48ee6b9b2bef4ea7 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2llP50UheSLkg z{fCN*iXtN;eSCb}+}!N#?aj^2Ra8`1M78>XN*POn{DK)Ap4~_Ta(q2q978H@B|EU? zybNgT=w@nJc#$>LV58I0mI&qpCXc_ITAR?8Qurcg!-Qpw&L%SwWe+59rfpy|IM3OT qaoLW`G~J(J%0|&Fh0U6qgc-D^@GySQ?GOYS%;4$j=d#Wzp$Py3?Ltrh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/secrets_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..8e634031c84a64797af77efa371613ae23f705b1 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0FG9dtvkWH<6K%)6K=M zL;|-s_NR7CH8v{lZPg)lA#=Jp~%d;OXk;vd$@?2>^MqL!|%! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spelunker_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spelunker_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5a3e733eb6e762c1bdc90551e72a3e0f540ab6 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=277{J8S;`{wg+&a7WL zW&g?UwHI1eY`K!_8QXs-qoIAJyQ*JO%5-zFSKOr+fT|fwg8YIR9G=}s19HMWT^vIy zZY4Xg$=nTS>*{7~N!%-bDj}`;f)5wZ}8+c|(hW)d$~?+h-6(jQ}SFxrW$MC;)J$E3%a8jJd$R2-#)X}q3vtWySuWRr6nYkq;$&7 zOH3L>R;HRcY*~FkGI$}6x5Qy9sZ$SLFbFYl{ScXa@zl}ZK=TrU+p6E2HAt?JmG$srU=XSj4)kaH^B8CcgQu&X J%Q~loCIC6SPhkK6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spirit_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/spirit_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe58de4ef6ac54a4cb0ab531976f195eff068e0 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fZeqVOw|K{^=y4PNq zIr0CMT+i74LtO1kR=TT}nU_pA7xUAO(3CXJkp8I)RLxit+I2X>8EOVA%(vd!3k~|@RV}_!Z#)>G0q!TeBAxy?8`ln)8jdh%o z^Jg?jgsok8HvGV`HBqV6GHcGJot?>K(7bey%t=Ou|58Fp4Apv@fi^IBy85}Sb4q9e E08EldI{*Lx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c593536ce4977b003df1a99b34472e17ad12c1 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fZe&2ll&6)K}yVqX0 zlIt1Ue`uwH$#@6)GSFxSPgg&ebxsLQ007!YNdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stamina_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..17155c649faef922652493621e2319205bfb47e7 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2llP50UhS8_dL z`wy*jS4{|Yo^CGY=W1qSs;R9etEeD%FzVJlpi;(?AirP+hi5m^fSe#t7srr_TgeWr zdI7VJ@}An@(R|?ykE}o&V>a`Qw4?-HR^ya4;qN#Z3|rE}-nJQNrLSu<2s?L+CoSXr wt-TUwHr(6Gt(3GmdpqxpgECT5T~8Po43vbQ=;#UV2b#{{>FVdQ&MBb@083Lus{jB1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..2be186cd99ee924b8217fe6cae9dcec6be4c1a0c GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0ErN{>_!A->)8N`u`wj zrMv2x^-HhhdY#=tUXW*^IYVvhD0-ShFyva?#xGwHIRh4~g@&n#NAmTLh-LC(prP<}b&FmTfxM?=phIn}{%Zu8Qd%B=u zLBj7HPVKelZlB?Je(m_4`K7PSSsxrec7-oPGgCbHk=7Po)$Ek6iAQH_(tfSBL}c5} g`%mV0M?Pnk74hfJbzpz>3}_vLr>mdKI;Vst02l*bBme*a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stinky_cheese_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..443bc595002265a2bcbc728708716a19901c78d4 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ErN{>_!A->)8Nnr<%k z|3S``T+fy6s%Q69eLc)GF`Mz$O17Py3~LtVR4$s^z4k(E|DjDUca#IQF_r}R1v5B2 zyO9Ru#Cp0ohE&{|;%my(;J|Zw=k~w_tDnm{r-UW|4x(Ic literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stun_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/stun_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..7ffdbc6f1490dfb5c723c06a9683b02c78fd0ca5 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|Nr~F;mXtRo6o;F zc_in|`la1#FI>s>jO{-(vDd7$$aST=>U484eqJsPi9B|o2F8*gzhDN3XE)M-91l+y z$B>F!$p^SBsuu8UHeu&D{9I?s!9#pgjV`rZIMXDoz~lT;XnN6vt^n1mE2cWIRX;uR ua`nPV>#P^9`tHcOCf@06p}xa5Ne0&%K4z^gh8KZmGI+ZBxvXgoYrxu!2n@)MSS=wo{!JI~eo-2F}nP~^vIvN&6ba_j8xUQI#^@K;ES$FZ`T(OW# prK~M!aonOCb}^dX&}F=pQqf=84A6kCr z%G2-v|Np;!{rc|RyO%Ft-rwIp-CS&?yXu+sORwa5cCWn<$=J#*!ev zUf6rL>KWVcB3>S0%NFWSiE`5v#d>Ksx*GmJN*QGfv1W^vs@}#2lcly7a-l6;4{JH_T=%-5R$2 iUj41LjrX?K<+5xOWv;#Xb;d@ZeGHzielF{r5}E+zh+<;^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/true_defense_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/true_defense_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..5f60d92337d072fd62a0cf2812a24df5ece19194 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0ErN{!RDV3lq$bE?>U9 zzrTO??%mg~U;qFA|Dok~rluZV>8^Su*K@kL*p;W>Bbj<*`wy|Mco_%O##j>M7tG-B z>_!@plj7;(7*cVo=EPA(W=DY|2jrrb{b@G+E%7Dz;j*A_^UeKD&tJIpyD_TsKSSOB z6)l`+jQ1MLHq<@wY*U}+(Om!h$}xGB9p@+iVZ4&$U49lxpKPIyy~G$N|tO24ua-efl3)mg8YIR9G=}s19JR5T^vIyZY3Y! zia5NGCo!3o!+9^$sf46vFV2mY4VlO0ZtiQ4ycB%rTSMy-8Hr882YOiAWDK0EBX3C> tG-qCYm7H)?=k~PR<{6VGOlU|kW^mdoz!U!b`yHUs44$rjF6*2UngB0?M}PnT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/venomous_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/venomous_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..a54eb087b31304816b5bfa4c5e6b40889a23a276 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3fZe&2llP50UhS8_dL z`wy*jSDkJyHdju!npZuPNy(B;;a`sCW}rI8k|4ie28U-i(tsR4PZ!6Kid)GC7-JTg zbW2ZJIFD`NOo>y9JdD?v49@OYRBSv$@oLVlTMS1gm?U&?F&HyREIP=ucICp|2YHsw q+`O$x)L4J+E|DZZ2M2~pdl?u`^YvL4`YZ#Q%;4$j=d#Wzp$Pz{&_b&K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..38950350a46f91ef97ac722840382267de96b460 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|3CKs|COiTH=lo# z@cRFm^-H_gUeMn8Uwg^_E4iMr{fD$`FRXM|oo+5B9x>CFDda3r4`WG?UoeBivm0qZ zj+dv4V@SoVk9Zk5(bwJc_yk@nB{zxj+r6=Qo5os?paul6$@ yRw+GWpK(w~{yy);r}y_W9!hxM7P*b_W*Wn>5MgPD%`ZXDV(@hJb6Mw<&;$UQ&rjF@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_splash_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wisp_ice_splash_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..605453e344ed46332ff3e0f53026171eab0e6c57 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|3CKs|COiTH=lo# z@cMuE+6&q{|7$P#eC6qC-0-e~YC1O26s@MZ)GJ~h9pUXO@geCwvPfUOS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wounded_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/potions/wounded_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..74d2cefa1bf56a616231c064b9e23f86470e5f53 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fZe&2ll&6)K}yVqXW zFm>vcT+i74L%ms9E8SH~-Q1>|i^Uro+Y1ORPnw(wRLxitVACHQw2-W`MaO8CWKmL vE0{E2iIRA%Gv#2(9L7^S_%?54xXHUXZ zlIt1Uf2cPrYo)ttshit$bFp}1V|xLCNU6KlK&6Z&L4Lsu4$p3+0Xe>&E{-7;w~`%L z7Y58SWjb}@Rl@}zp4AQ_ix)6`HcA%Qf8^-iXA&KToA=Z_Gnp`F)7P0>ST-cRy(uuu sv52o{Bm1d@TgMnuWtwl!Y>xR&Ro)qI14GW8yTpVtk zkU8UFVid@JT0&dPTD(C*%j=Y)K-)yl83*5qym`fyWH4n`TT654#&!nQ0}J-ZtUk*i Xkj|rCentBm&`<_XS3j3^P6H%r;B4q#jV&= zfqcvg9LxcMC1N}OS6)vEnf$f=%hYRc#IJ}ha1PjO{fNohc;kKds_%w{EK^L`o;I@X zw$?lHTqiw1;CDpOB>Ang121uGl|JmZB33a&{K`Lv-4E>JJ6M>G1N;%r%nBtNHfqlh z%(*l%h(XBU%8Z+0d`S|eP7(*@jML2;B_)m1HJT(;C5>mhICkAUY!!6);H}fnhZ~s^ d#5#_#FkHzH=1laO~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/beady_eyes.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/beady_eyes.png new file mode 100644 index 0000000000000000000000000000000000000000..037cd6308f6a55d91924282a9c3355cf8cea7bf3 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9c9WdDcDRwRdgFl0{l zcM5T~IKjicPNU5itf78I_wh>2-jrQCZO7o!R_xnwKIBEjWsP?cz>JFnZSO9r>uQ^s)KM#Q%kivp6IL3Z>s90Ig>5 MboFyt=akR{00=WtVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blazen_sphere.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blazen_sphere.png new file mode 100644 index 0000000000000000000000000000000000000000..779189f810c9f91275ff88acdfc407027287042a GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9b2xc|SZ@n;&t#R`U$ zwEkeP)NT_-d&eXLLnl>rbAAEYukZKA0M#*;1o;IsI6S+N2IK^Lx;TbZ+)6&cmA0I*032ZW0o{t-Pp6}%7Qaqr3!~P1Z@n8l{}FkCT=2b t#9%n3rRM+-n{cXXddEdQy@*^kh9V6S-o;N1oq@(Pc)I$ztaD0e0st{MKCJ)% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blessed_fruit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/blessed_fruit.png new file mode 100644 index 0000000000000000000000000000000000000000..b51da313f8018f38896b9c5c8cd36bf167f29722 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E07LY%V1tptFLeVFg{En z)7@w7wEvU;|DPY&c=O5GU7r$O9RGjm|Nm=;G`3g&zw-FclYoDp4mnR?2;a?cbb@N{ zRffg$EJcB)FqQ=Q1v5B2yO9RuM0>h8hE&{|d#aU}DNw}a;`42K`~L?Ob~9BcPoCU( zKYM<4^R*Am+uCyPf9H=3t%$tWr196_!yh4$=XG5bOzVPXz7hPhrywo-oZg3?p3PRu k6{lNsRDO7bO7@kqZF$FZw)^iz6`(Z?p00i_>zopr0I`*1wg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/boo_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/boo_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..9496456c3f059a7fe09af1629e2222b8a5962a69 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1&XZ>>8gx4gG0ZMjHm zZc;#_(0pt2er0)E6_r9>P8mT#M+RmA2{v5@CNT!a&b=|;fO;59g8YIR9G=}s19Fl* zT^vIyZY3Y!a&lHQS-r4;XGWpdg&nUMCOnIbyLfRU+ldFSU#!SqpPVqm_H|W#?cdj& zJa?>XU;qDKf0iL-Md_a3bqpsS#BF`_^RwK9N5QMZO4cyX{QNHD_$qdugloIYZ{)Bs Y@cOEBm&9(F4785H)78&qol`;+09DpiumAu6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/bulky_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/bulky_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..0b59a830e0244b2fc52fe571ac2e5800379e667e GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DIbvPw=)uCK2zEG+Eq z?4C1oPEb%##f*uGKsm;eAirP+hi5m^fE*7`7srr_TXTB0G9EDCVOgyH*1mAYonO0- zr_Qqb;Vu6qy~DFZ&NOm8V+Ttd^Mc7gZcce}#7v&KNB5V(KTLnGBw;elF{r5}E*vv^(|y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/burrowing_spores.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/burrowing_spores.png new file mode 100644 index 0000000000000000000000000000000000000000..f81b3c17a8a371be67a36ec71275fa07366254b4 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=2^aPG7&j;aPwCh4TEB zZIyF!!xBmz8$66wNHyl!hzhwChU)R#D{`4gvbR_2gETOf1o;IsI6S+N2ITm8x;TbZ z+)7s9QZcx5mD%`G)$Akk4H7cp;bBir86@}SRtFX9F-X>UuHF@Nok{Y#$knR;BaD*y w+n&di=P_vRyKes7Et;vL^m`mLyWMPtEKSMkqY`!AK$96fUHx3vIVCg!0Iys^eE-msrs^sUUl=pcFLYM3e o5;D!D%RK+*E&LE;{r4UF3m(R9PRq^ZKsy*bUHx3vIVCg!04S(Cn*aa+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/candy_corn.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/candy_corn.png new file mode 100644 index 0000000000000000000000000000000000000000..a914fdf594d53e35e81103e0d4159628e84de815 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`g`O^sAr-fhB^V#Py1M#*;tZX$ z9t|eWdP|M|{J+n9~GOdr_uXd23CC#8N^r*ueM*rzdrgKsp zE^!<$ID160Kq&Nc9Y5P8llohXhZK4_&bml{NV7fs-*|0;Pt+Y|Qw5Vg83u;w)@v)W T_GC^5TF&6<>gTe~DWM4fC*wWX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings.png new file mode 100644 index 0000000000000000000000000000000000000000..3e4ef1cdc50eec359ea94a2faab5f43b8845603c GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Ff~_U`ZBTwgyUGc&Uw zuh-Pn)PO3VS&Lj4T<=JKNhf-O^J+}D7o%Hf}@0(V?^76 qMpag~l;7)fCKpIos%-!K(Tcf6k1?!i?JjkoRScf4elF{r5}E*Yw?Ov* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/clipped_wings2.png new file mode 100644 index 0000000000000000000000000000000000000000..46cebd38490439c7fdf04449a71681f41836f946 GIT binary patch literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`R-P`7Ar-fh7cfe&a%olZ{dn>s z(K^x0(OJM`nFOa4=W4|@4I5;fgyyPw^7=GHFgwiHmDu1tL64J*!LCk{lO_K1PM|3a Mp00i_>zopr03ehecmMzZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/deep_sea_orb.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/deep_sea_orb.png new file mode 100644 index 0000000000000000000000000000000000000000..a358fa7b5d9eb92dcc1af370809b1630818b5cb2 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E@oC{=7&C_inZ?4gUY zxxKs|@f->vQg%HJKsm;eAirP+hi5m^fE-6p7srr_TXRn|avpHtaSA+Zn)bi*wnAxR zb;E<>rg{-i)#loZB=W^nIJShOPn~k%QII;%Z3~Y;{h#)FE^28Hud(xOW_;c4Ts;eD O7=x#)pUXO@geCx{q%^1i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamond_atom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamond_atom.png new file mode 100644 index 0000000000000000000000000000000000000000..aaba10e663077c6d4d33a953b1ba8a69e8815bd3 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cDeY)}g>cZc!j);6vNsd1F5k5KdPC{Q obvH^GlP;{?8X#P$pRkpKVO^t`;je&3exRWYp00i_>zopr0Q;9obN~PV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamonite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/diamonite.png new file mode 100644 index 0000000000000000000000000000000000000000..a2baeed92e95233a85c1a695504393f8410a2151 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07k63zk~7-0SVltN*_( z{QW|(sA@&XnnIuiV@Z%-FoVOh8)-mJpr?ytNX4zB1q=*QbGw-v93{9G{N45cSZQPQ zM{%9p^xIO&y=QA*oDEXybDlm|sKYrXY^U>+QieOZn;F(IOqj7iPrpM!tbcl}^+83> d2XE|8vu*pz7^`sU$bX>W44$rjF6*2UngAWKK;ZxY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dirt_bottle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dirt_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..264157ba580ab98ce4ab52b7dde956aae38ff00a GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=2fPW2WVJ<>cg4hFV41 zYOV}F(hd}5ED7=pW^j0RBMr#W@pN$vskoKAK&hZ0h~e@Y9X-7SHtygB8Z!>QNIAlk mX3)9AL4wDNkLku428NF7OfU5vX{;@iE5|G)PA zeL2C5nd_xT+&M$HX>xjT++q_`9eRL@7)yfuf*Bm1-ADs+LOop^Ln>}f?P_OaHsoQt ztGn_4frBbP;|li*KXg5?W`|+KhD6PVd%O*g+uh6-PZlV%G!59q)9-y{&YdF)#+t__ v9o+WJM`rGeDMI`C+C)|>|9sqPbCP}U31*|M4_3SYTEO7x>gTe~DWM4fHttBf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dragon_horn.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dragon_horn.png new file mode 100644 index 0000000000000000000000000000000000000000..19bfe206fbdf903152c8299f47726a3931ebfd84 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE08`k)#BT|h`%o<+}r2% z|KryGzxJ)H)2Iz&5nnlPF;JSZB*-tA!Qt7BG$1F?)5S5Q;#QIZH^Z)J%px3%1XvcV z*jn~q_a!9bgR!FfgIk=E3^o@gca-Ee6!q)A8vdP#t4QkY6x^!?PP{Ku&H{an^LB{Ts5;PgZl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dwarven_treasure.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/dwarven_treasure.png new file mode 100644 index 0000000000000000000000000000000000000000..3e4c36f9bf21317c813db3504322446378593f37 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08v_@Xu>oIs4G%;~(C* zhUVI~bOZoJ8B2ovf*Bm1-ADs+JUm?-Ln?0db~rLI2=W|BS@!q;^m4{KEVq`}OzJ%> zo2Z>{@746`Gf%^7jKZRK;GzJjl;Q$L+xU&+C!yy@eI QLZF!pp00i_>zopr0EZ7cdjJ3c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/endstone_geode.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/endstone_geode.png new file mode 100644 index 0000000000000000000000000000000000000000..c280704be0000afb8151b1c227d84c00f4b85219 GIT binary patch literal 341 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}QGic~E0A8fsO0Ri?xXv<-+kNi z?blub9vLZNt(8kkmM>a8g?Wx=k2 z+P8tWGL{7S1v5B2yO9RuO!Rbd45_%)<9(I!umi_gN1NrP(=!sx9iR7Wwp3!FuxiSBW9BdMc3)*xYWj4tyi(VeF^A{=JiaMwtCZB*CHI8|!k_vl zZJ8*_ta)UQ#&P?7Z>886UdbmtNqOa}r0^^t`RcY%_Aisw-DAS1vWp1>F)WBU_Agx} lk;ic9`v#vDfhpab3^$4eypG0nKLI+9!PC{xWt~$(695V)hhP8z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/entropy_suppressor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/entropy_suppressor.png new file mode 100644 index 0000000000000000000000000000000000000000..150a158a950b2b9bd7d5b8d7ed75026164e8d95d GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0BKk|Ns9t6aU|J?0xWm z&O?UG6aU{$k!aq_(6K^yyn69)c)bjh!v12vEx@XbuzqhjPdiD6XAzopr E0RPx$3jhEB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/flowering_bouquet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/flowering_bouquet.png new file mode 100644 index 0000000000000000000000000000000000000000..5d44bc859cc80a98d689d236140a01979452bcea GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0Ff;*HCa%>tZl}A>sRW zf95t}8$X7w)eJe~s~u6HOK7(A>8zbmf!l zyVbUAe8!n|Pwv`Hb%lMlK2_omoVexX>@6(5pS!=0|Iq@0_m&ls&9w?2{(X-AG(($l bb^@z=FH_2eZnafF8yGxY{an^LB{Ts5r5IFm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frigid_husk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frigid_husk.png new file mode 100644 index 0000000000000000000000000000000000000000..609af3851a64836a79dcf1d8b056a79e0927b15b GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0CVC_C-ba59g4z(vl)t znhHrJ*KMrLzyJI9|Ns9FfB#;8{~oAj*ZtQDpM&=US&St?e!&b5&u*jvIq{w@jv*Dd zdiz|N7!-M!JwHzS^MCv58&h}sn!e*H+rYhS>$Ik~TlY;}wfWGhWp1WC;Y%kbnY?7x za_C^#D{xu;(cT}|xPPv$k*iu5zN|ia`|iiJ%+?Vn41dnJt+l1m`Vph}b9Pe+7r#iL ORScf4elF{r5}E)%pjJ}= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frozen_bauble.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/frozen_bauble.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa380206aeda749ad6eb2c18386369fb75bb7c0 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|G)F~>%I>kGEe;X zSoOcJug`4y|Kj4}w6wJF@NkBh|GC`@tbpnmOM?7@862M7NCR^GJY5_^DsCko;JP8T zpofi5BiU7~r7Z4dDpQ)oEDP@D3^7MXM^|=*=DPtWkL+MLQV>+8dzT@pWk*Z1B+t@^ oPcJ6K?sj%AH+G0nkP>EK*kQ(B^2&GeGoZ-~p00i_>zopr01B5zr~m)} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/full_jaw_fanging_kit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/full_jaw_fanging_kit.png new file mode 100644 index 0000000000000000000000000000000000000000..df69a5d341d9a5e8f63253175103806562a2140b GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08{WZ2ABH|3AFBRb7|; zs-yT(u-95yal@YsAUVd8AirP+hi5m^fSdqN7srr_TfKg+j0_GOhp*dz-1)DdJ#do1 zl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/giant_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/giant_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..19e506ec9eb4472ff22271280daccb0f7efbab0c GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0A8Xtoz};6Q_?Y{qpJM z|Nnod%P(XFiZYf2`2{mLJiCzwh>A>LIn!wQ-#LCIhk_-yPlJ;R^8xu~0W<5wX8e2m bB|GlEJ!9;nugbPS!x=nX{an^LB{Ts5m#9H& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/gleaming_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/gleaming_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..9851524516fb859a5673a4d8b75db436a31c2136 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0Au{J&`W9eS`V`SM~ot zul;i&?!VNki=&FN4KtAfAsdfm$_wAeS@=_yO*0XRLh!QYz69MED7=p zW^j0RBMrzY@N{tuskqhK<;rxJfrBM|;kqyX`_GtieKkA2AX`T_cl)g1w|u|nvMhN1 zBTB?nrB%7yac2-8$K-j(k0+hV=vkwwy?mjZFz*55$J*0x@)mS_O;8co`Px8%zg5&w u^nKUopDMduVt#7zzjUmZskqo$%D!!f^0wGBjD|qF89ZJ6T-G@yGywpUJ7b3c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/golden_ball.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/golden_ball.png new file mode 100644 index 0000000000000000000000000000000000000000..8aabde836cb8b8dbaca48e7c8f277320f58b8b6b GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0ErlB6xd|@SD@Fuil0K z`~NINh*K|Z0|!uou_VYZn8D%MjWi&~!PCVtq~g}xQ;vKG6a<_uGV*-4FKRanyL;;0 z{($Sw?>%@wD(^K2Sjn02YPpP2EvnKI4*|c*E*Kl0?lIZ MboFyt=akR{0I_vAq5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/hardened_wood.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/hardened_wood.png new file mode 100644 index 0000000000000000000000000000000000000000..64bc403815743272974c9f2448ee66674e503097 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=1a}1A7H<6Nl2l`Mb+4#+xNr` z)-y@LWkF_zjGJyu^_?Tjdbfc`JXttVRd_)_c1P#LjYbm=UX)6Dp%Zg}A&HfH7L%kx kSO&`xpT0geoiHYb?aF+Ym~X6{2sEF;)78&qol`;+04_B-eEcZ6Oyphdtu>VuSHwF-2#Li6dD&Z-nd#~7$n(sr3v>r+W-JNv z3ubV5b|VeQiS=}G45_%))72_?)PU#cypP83>{Hn}9v6yEIcITl|E8VZ$KIX(JMHJ~ z-Rxq;;FYI#O{&sOsgtg{v;S3j3^P69%T~YQoBbPd9z50m?C!1o;IsI6S+N2IRPSx;TbZ+)7s9+c15)c!Q*B*P>?$jS7lO z6D9;iuA1l-VKE^vYudDFllUfi`SF%AuhuK(_HNJc_hsg4XuXuECYG?3gQ4v*?}GU+ SqZR_qWAJqKb6Mw<&;$VQ)Hz@P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/jerry_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/jerry_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..eb5db2634d9ce21d4ea64e514feacc60765920f2 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0DIbvMMYr?C$KYudkmo zb52lD&?ezZPM`#1NswPKgTu2MX+Vyjr;B4q#jQCf+?g5_cw7P}X@1{t$XB+#F6-Wp zx#8~xSG(Ww?R@**=NhlwuEsU5&V6Kb-4#`}K+|MX_MJ=IRt?Q*CgJn!p0S+S*{c!H Z$PmuQWqQlL-~-TP22WQ%mvv4FO#nCWJplj! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/kuudra_mandible.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/kuudra_mandible.png new file mode 100644 index 0000000000000000000000000000000000000000..1d767eb740005eda1335e6b3c038791961dd226b GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cTI=-7Cu`MFvn2Yi} z7nf>H&2TX>D+UHtpd153@4opnffQp&kY6x^!?PP{Ku)lyi(^Q|tz-qR5)%W1f)a*8 ztq#F!2M#3OI(fiAS>lAj`&pL7u7(o?HMe9Ppz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lapis_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lapis_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..7b4048832c598b314351e6f14e89cb31d070cbee GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9aNyt{bsfAymOQB9A$ ziY{wKZWD6oW>raE9+>e4D9u|714S_x`q30pZBj0y$R UWY_F-2b#y=>FVdQ&MBb@04&@&ZvX%Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/large_walnut.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/large_walnut.png new file mode 100644 index 0000000000000000000000000000000000000000..4104b3c22fdd38d7bf5398d03b41d4f44bc89f07 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07MbQYj3z?8@?5Q{#Po zVY0r0(4+MmK&lx_g8YIR9G=}s19DP5T^vIyZY3SyWAHu0%EYW7!gN8f>c297#I1eu zXMX%WD~SH#w9l~ xWb45cfr)p_PW;yuNM%!#%s%q>e#o2uoT68mLSC4x%LH1;;OXk;vd$@?2>{9jL=FG| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lucky_dice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/lucky_dice.png new file mode 100644 index 0000000000000000000000000000000000000000..ed1b9758a0403782b49eec96c26c89e2f1fe9e61 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G#qO%C?=m(=VSj z+_P1B-VE-#N`{1J23yM)b|+ncDi}+G{DK)Ap4~_Ta-uw4978H@B_H6jkXlfZ?ZVu` zC&Icp%9%OTS-GJ{bKSy)it`+feG$4YV6G~#*yE_KujCnn;^0**MpJH`J~YL;k>_cj v*-}1%=3=+mMbBB-1hS<%*fuwqFflN^{w8j&vSXDr&=v+yS3j3^P6iJr_DJse~`pU5~a-lLZ8cGsQ0z#4}Yi9$MGL{7S1v5B2yO9RuczU`xhE&{2R^a<^ zW=PTY7Xk@M;nZ%P5XnOj8;gXS$GLm>?Yp;=`` k%tsa^rzfb%9mo=7aQiA^-*$5TM4+Jzp00i_>zopr00DD0qW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/meteor_shard.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/meteor_shard.png new file mode 100644 index 0000000000000000000000000000000000000000..b38e500ef65708224ebfb7a274c403666085f5b7 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3YrJ(=Z|amgv+DQSU$ zfwoSr_V)I=MuvI@M*8~tlG4&rQc|-epKb*zWh@Eu3ubV5b|VeQvGR0r45_%4tRVQN z;nJO8D=7t@`N5*R3CDzj133+nZxtOb*lKn)22WQ%mvv4FO#m+mH3|R# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/midas_jewel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/midas_jewel.png new file mode 100644 index 0000000000000000000000000000000000000000..e4d8dee472c7a6fd32c42de1b0ad55d28bd9733c GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9aNy!-n#{{P9tzpi<` z+$j3Lzv)j-^m_+~GeQ>g+0|_JY5_^DsCk!@D;qj zx0mtEjfokNykaxdrkTmAY{^cIJhtYh!?AO#LRW{aVe{0DUviT*?5*gMT`X(5Lyu}Q kBn4avn$an}A&P}z@(d9d$(qkOKrEzK$O+#O~fadlPceid# zv$!g?QR8RMyG*w350@6rnPV$1p>rp?>-;;*0|z#&K2m!#R)IHYPBCN7r@Ph;c4iC= Yn?9;EPdm-<252RNr>mdKI;Vst02FFqD*ylh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/molten_cube.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/molten_cube.png new file mode 100644 index 0000000000000000000000000000000000000000..57dba289014412b2eb459219e2e6f07af1f83dd3 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=9b&o%(;*@!b@OV=l_` zn3*HPwS9o1j3q&S!3+-1ZlnP@Zk{fVAr-fh5Ae_6U9e^1Cgzr~AfrMCLy=aVgHAf9 z+72B{Xq&Wfqfp1etR)#sWEhexw6$h7NGkfBTj#(wL6l|DK^=i!P6i7ePF|;mW(S~& N44$rjF6*2UngDCyG`9c% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/moonglade_jewel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/moonglade_jewel.png new file mode 100644 index 0000000000000000000000000000000000000000..266200ef7ebab74ba196beab9a0c2f89a0691cd3 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=2H)IJB&=DVU@ikf~!G zDC_26XJuh)q-!QCslc*=D-NiFu_VYZn8D%MjWi&~)6>NV8Mh<-4nGY7#@K`E*;z5pK+4>m_K_<3)4-2p9Ha;u4Xl~*v%_}bF d7}kg}GMqTWZJ$_nNfBr$gQu&X%Q~loCIA^2Is*Uz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/necromancer_brooch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/necromancer_brooch.png new file mode 100644 index 0000000000000000000000000000000000000000..3706c5c1a22e4739ea1a07b1a2a58757215081d2 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F&G@8Q3{=Z;^W`C%i& z(F6wX$~ZB7J#ley-u)qNKxxL3AirP+hi5m^fE*uB7srr_TXTB0GBOx&uoTw)Z+#s0 zykM#SnLUZyUaQ|^Y`$CA;`99A8LuM=cul0K`D*exK qXj#g|tgx`Nl~GXX*=EJkcecH6(<40$ORRtvFnGH9xvX6vW95SDg0VP~&9KhO>aPgg&ebxsLQ0N3d-w*UYD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/overflowing_trash_can.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/overflowing_trash_can.png new file mode 100644 index 0000000000000000000000000000000000000000..adba4e3f191f3d5a7650312bc1a98e18d95c7100 GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0AueD$YoXo;kT^$JWhP zuUw9*){b0l(4#H9!bUOE-*M&4vi9=Odsh#7x!5%+FG~=u+1HfO5F4^MCp6eXcTwPm z3ZM~;B|(0{3=Yq3qyah2o-U3d6}OTOFiJEsw4Of0qEWPpkAcf^0aF?C@Abc|{(RcO z^2dLgKnH`k{S8@(kSVU~nI|}>B*xXq|0yi&o3`QHZvh6*r$-)dW8r65Wp%8EUvZg8 zVqcz|{|3XzhRk=*kte9TsR|6K8A^s-x$luIZ&DYb^fcNzxUdQpS=XzhDN3XE)M-oLEm6$B>F!$p=_1 z)E!=~oEc#Ci=o44-b72&sg1ftZHvOC15(ai+vc?P-Q-N3Xk}xy)k~OME&SWJ&0cfk z;#mVz)7-S5Gv(OYHe8NPmyl@KwbQu4gyT)aB_5j>*O(Y?&XVKm?dW{~w1~me)z4*} HQ$iB}Ay7&T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/petrified_starfall.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/petrified_starfall.png new file mode 100644 index 0000000000000000000000000000000000000000..3ee3e01de2ebdf7608d903590f70febd3027483e GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfK%dCi*bZFZ7h2=Y+ z?Rsve6TV=kQXWu(u_VYZn8D%MjWi%9%+tj&q~cc60ak`k?^eMB4m?&WZ|sYH=Na-; z7;5ZkiDR19%YE5ZSeQ|0wFcvhqT_QVm)&^Q|9`5WS4@hfylS&6tR1D zPnh=F-u{4!il=X|j-C-v)+_&aIgny33GxeOaCmkj4ao8Hba4!+xRrc>|I{f(lgVC- zR6ESf&IlCGV@P4?3^kip$|QM)jc2k|a3fDJ+p-BSS0!9slhxYArNB0QR)9c6i*LYc k2BoDl_)M)#7-qLJ)Y$O|txOVX1e(m?>FVdQ&MBb@0M}$b&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pocket_iceberg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pocket_iceberg.png new file mode 100644 index 0000000000000000000000000000000000000000..a92615a3b4d60b62bd29703086c1d56faa04b629 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08vF=yDEOn^bar#@ZJZ z-9L8SfBoRyyTwPeP_Y@#vZR53MMh+8(iWvmR{X* sIOGG9>Y7l6;q&Tp940#wIX666=m;PC858jzFg>EaktajW+u-NA>0-aJ&uQVpi}P1#1uWC6l3(m|Y_H@|v1e=tUbwp4*nZ#rVaD3K zM~;;}5u9cktt`Dncv;Y;PgNK1Y@RDLImY`^-0|ZAH<`3l%RYGgJn*x^|Dbf~!u$KA X)P&A7xUPB(w3xxu)z4*}Q$iB}E=N}A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..a83b4000764df49e56be0886ad59e26fd3bce92b GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DT4r?5LY0b!WhWl)3SiK^{(~q zCbsN7>T?7x41OF)%5l8?FZGVJr#q3ubV5b|VeQ zY4&t+45_%acY-_95d#ipX1_ZV|Np;LlJL8*^zsg)%hwGyi!bW*_H@gb*I9hZh0CdD zPUX#=lT-_$l6bhgTe~ HDWM4fR>fil literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png.mcmeta new file mode 100644 index 000000000..23fb01f9a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/beating_heart.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,0,0,1,0,1],"frametime":4,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/bubba_blister.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/bubba_blister.png new file mode 100644 index 0000000000000000000000000000000000000000..7edaf56c49d204204414e477465b4c7a163803c5 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1#w?JdiLrPEASWul*9O1T1TQ*yQ-(syx22dSiNswPKgTu2MX+Vybr;B4q#jRuozJihx z2Z^;^tL7#!sw+P3;8bYaJaH3yhoQF1NfQx`WV%WMoCLyk1eSP-Rs;k9CXYXK?)I8>d122hT%B*-tA!Qt7BG$1Fy)5S5Q;#NubM$sb%B8PY$B>(R{&ui}| zSo)~*D=(k^QcWAbQyUHUnNR*8m2v#@MKwh$-a50Q2w9(yC=IE@LWQE1%YF+MH0gbv e^u*p~9vj1kR7MX&wY+?w*$kepelF{r5}E+Yz&gVK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting.png new file mode 100644 index 0000000000000000000000000000000000000000..0852bd1adcf129129726dbfc1b16931dc4cc294c GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0CUC{NKCdB(HDMqLjwtE&pFztEs6aCns;5pJ8fhnrtJgCd0X*-^d@RnXx3u zFPOpM*^M+HC(qNxF{I*Fsjn-OQ=kCTvAn(i6=Qe(WIV5@HuFgQ8@rzmKOFPj-hXP| zl&ueEFr}9sf74NPP|HuK{imzu1Pv|50!7u0As&fMZTGScOLEEj+&nK+sm=4#)PiSW sR{r(Xds4ZMKMqt{dq=zVvi65oLD6kO#ZP|pftFVdQ&MBb@0AZ9}NB{r; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting_bundle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/eccentric_painting_bundle.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e7c283b272b94939f99356ed261f8ccd71168f GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0CUC*j)cY3JGm zw%@9F|DiyMr-$*Dv>w-uE2q+Oe@NWfkd}6v<0!wOu{ZO%_JT}_4)5!{tlnkL8EK}A vTsRLI&lU}BTRKyDLX(8>^p0Iutbfa&lwkR-BzN~3&~64#S3j3^P6~So?zr+RuE}=7*hS+{*#KbM2^sx zfBAp!o~gNh@ApZ~n|mg0G3wUHu%0BY=^~>XTHuoQt4V3{HhmtM4Td@iy$fr^!x&#X k>d86mK5$HUN&S0fA%DiR6E{>m23o=3>FVdQ&MBb@0Bm1H$p8QV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/ender_monocle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/ender_monocle.png new file mode 100644 index 0000000000000000000000000000000000000000..93c71b2cccf0ad444b8a0ff2ac3c20edde749103 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=6Sg+}-*lYWl_Oj>A!f zYdpgzIvXaZ$a$D5IJyfOC<*8oN^1*9H`Lkyl`@tD`2{mLJiCzw+5S{6Ii^{^2#ADouqq)rHm0v0v@HXbX>f(qF9aj%nJ+VM3eKD#a25Qmsor{b4`zT z!ih^;G`J_2>8%Up4y!!S6VI@8r%{5Ec0x}ouYn~SL&{=l$umE0O$A!R;OXk;vd$@? F2>^}fMxg)z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/furball.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/furball.png new file mode 100644 index 0000000000000000000000000000000000000000..267cfa324c28b8509ff2287063adf094e2e23663 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6RgqL#-y*ShLO>dD#3 zix>!Vsq?YTe^EUdD92b5=$1y zd*}3w)q$;g=jy6LCJ(obH;#y?gwN88%bUlSBC%4fO>}9a%b8}UF2|rZibqrP5@H`d pb4z4RV7`1QSix;~b4UUc!<9!O(G$Nd4Fp=l;OXk;vd$@?2>=aNKc@fy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/glacite_shard.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/glacite_shard.png new file mode 100644 index 0000000000000000000000000000000000000000..a15ff4fe4114b1336581ecfa63f79909a42db128 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CVC_QkIIuP=Oj_u$>T zitZoIA!~JQy2BsJ@&M%+OM?7@862M7NCR@bJY5_^DsGjYILgSNz;pD%E&bp5J=RaA zxv!tW-yp+sb?zM9%UnS%>M5QqB@RNyso&HR#2Dl<7>+zo_uOE^`h(3=Xvuw*zj|LZ ZnbvM%%+SvI1~im`!PC{xWt~$(69BMRJre)` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/hazmat_enderman.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/hazmat_enderman.png new file mode 100644 index 0000000000000000000000000000000000000000..8bc639e01e475cb691c372adbd34a3689cd49c9b GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0EsY$ngG~QVftJ#14uNPe)RI}mIBHg9S*SHrkhS>qXy*XXwR=xC?vdmC`li}tf W#WXNX4z39!D`} zMGj`(1KSV$eSbUR)aveYZs~C)f0x_E$mt7}Rv!s48J~%N1-h zimbS|J~y1Y^sT_{RkvC0H+|at;n1s~$VYlM&-~*~o{w~RW&1{sonh^2rvH)AFFyk9 OWAJqKb6Mw<&;$TYE>w8{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/magma_urchin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/magma_urchin.png new file mode 100644 index 0000000000000000000000000000000000000000..96b85de0a02d2d46ff8de11b82f640235d6fc552 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7D>7d`ILyA;S9r^cJa z%NxkcYt756&dUqbu*K`uW1tGgk|4ie28U-i(tw;$PZ!6Kid)GCxI`otmOKwp6F7V2 zrdZ%YhNRFHYGq9sy&InOT~SkLzHG8rw}PodaMisxTuB{UOG8{tnnlhEWM{EoJo9#) o>}6I5o#t~d0~Yf-n5Z!@xZM=`tgdSM6=(s2r>mdKI;Vst0H%FFHvj+t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/mandraa.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/mandraa.png new file mode 100644 index 0000000000000000000000000000000000000000..124cee651e64d96f1b81d89472369a2f581bf4fd GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cTI=-7C@w7ztwzJ}P z1HlP03?5tzhHPy53=FCa46+OiB4Ew@3=C{QG_&(JP!D5CkY6x^!?PP{Ku(mWi(^Q| zt>gn-Y3EulJY8NkwOR7A)-7X4ljl<@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/precious_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/precious_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..d3200bf6de8133f5ef88f71e01b65d7931df76f5 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|9|%F`@JV$@80-) z`oNvFTb|9I`7*!bv_$;LRG>6tNswPKgTu2MX+VyPr;B4q#jWH6{HIPY+_FfsB~)XH z6yKtoqODV=ay#%SralfZIP7U@vV-x&1CL@(Qzk=+TbHKj9N1-bX^ypo!WzCmVoVGf X>O7kkA2|6KXdZ*7tDnm{r-UW|aPvc{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/rock_candy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/rock_candy.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb341c0b4f1593c50bfae2c6e74ccd0a13df6e4 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cj|G#+gVpmt!Q*N8} zd`7M8D$~_}%>haSUBw>Yc#O$ugUQtXPiPO@iuw6ShXIfgrbteWR|^ P^B6o`{an^LB{Ts5P474~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/scorched_books.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/scorched_books.png new file mode 100644 index 0000000000000000000000000000000000000000..75826113518353ef7275a6c1012e1a4b32716aff GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07izV3;7o@NSC4|GSRI zT$JZAGnX;&|9>-ayMf?sXT>5B1`jTV#$skIpi;(?AirP+hi5m^fShDc7srr_TcIc2 znHUs#oGxZ`sowd&NBMHHW%HGhePvoh9e%>-s*R Obqt=aelF{r5}E*VXib~| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/vitamin_death.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/power_stones/vitamin_death.png new file mode 100644 index 0000000000000000000000000000000000000000..470773e74107a91e15bd5984bbd1f89bd8a1d6be GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G$0v_U6r-|1W3y znlE(0jbp7TgQljYl$6wxlamdBDi}+G{DK)Ap4~_Ta@;&!978H@B_CiDVP$P~FxfnD z(S%Km9f}+*32hrEO)~5_IN_DhtaA)$C1+X;jI7f9+6`=$`L%a1Sml}9$zm*U>vSW- b$t(uda-mh8+hUc0CNg-s`njxgN@xNAIj%iN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/precursor_gear.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/precursor_gear.png new file mode 100644 index 0000000000000000000000000000000000000000..e070accb32cb1a6b0a65d899cd4e91c80a8b61f3 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0BJ%%lr0x`-645{w^+^ z&Z0*8`h_tunTFhpBGlh~omK!;!B`UH7tG-B>_!@pljZ5+7*cU7_jDr{b0P;*g6ZpT z`~UyG7iMy-;dg^VppEd#|NJ>>8!b%qbdIfdy|Ixyb;3pWbn%H>rYiNixt=m@T(@#X z^A9=pmgx7^t3S219tvA_@zWgMHDQ9Sss4vIAGTWl#_Gfo|MSBAcAI~*ek&|}y9{V6 NgQu&X%Q~loCIBIfQUw42 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/premium_flesh.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/premium_flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..78eda567af701373c6cc66cd9120e10a18aa7420 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0B(I5GiSi=q%-n&vn*i zVrqy}tq#$*oLUH30j^|EJDQ|616*E_!@p6XxmS7*cU7Nr8_+N|IZqW1&FDwS5l?{-4&nIM?Kwd(Xy>>-lBz>KvJN$C$mI z3e+kDPk*5hkkz--+_paPtnG8P7awA3El%I5XVdU)+upR~_ursTKMwF$Z((|)`ELIm PpbZS3u6{1-oD!M+0m-1j`og; zNv3-o9TO81i@a2loK%9%q*ilrIcf_xv$Ll&Flb8geE!nf4%EX~666=m;PC858jzFg z>EaktaVz-%(~J;jXKM$ZYo+Dy_hm5{?aEVszi+qDi5a`k>QukiRY*Q|d&}MLR*gNU zu3hL*6I57yVsr8{mr{krE`b3{mdKp=pjlX?Z^@AIV$GWuA6N`${96Pg}(R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pure_mithril.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/pure_mithril.png new file mode 100644 index 0000000000000000000000000000000000000000..4aef15774ec3f40cc3aab5dbaf953ca9d5eeac19 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6?wKi~5Iar>3q(QTWp z+)K1HLlwl;c%;{90_7M>g8YIR9G=}s19Ch)T^vIyZY3Y!k8oaC(&5R}VpdklY}ho% zSHbDvDZOJ}X$ozVH%`j7=nzzTBE*)~vTDb&oy{dXSGBZGY2MO0YuR*X9v=MzS&9r* XMSN`2_gsDjG?c;9)z4*}Q$iB}Bj7z= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rare_diamond.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rare_diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..2e22e2b95df4c964a1103470b0c0a8dae5ecaa29 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)bG+rr;3yx!ha zIJ#A8)pD7Mvqa*8kMPXc0F-7d3GxeOaCmkj4ajlvba4!+xRtEHS5Q)7(jd9EElVz; zF(vV_$b^9EnVU1K*d|-pbsoR}`i2aBZFa7PR;>gzvxKc23`T_l VYO-tgxdY8(@O1TaS?83{1OW7}I}rc? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_nose.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_nose.png new file mode 100644 index 0000000000000000000000000000000000000000..2f79e2d26675bda3565bb01d3ed5f1fa5abb6a90 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&YmugAr-fh7br@w%C1@Sf1=^Z zS=T$d4jFdHpE~eizRKDDwQC(E4h!s(WH`J;njxq~m&brtA%{aGIZN%9K#EOIunxn_ X%rMKvbHb+sjbre1^>bP0l+XkKuB|6B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_scarf.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/red_scarf.png new file mode 100644 index 0000000000000000000000000000000000000000..32435810420a9abdafdcbcc0f6023c6643a39b49 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0A_(;HhGgGi2b5XAqnw zYJAMJqXQ_)SQ6wH%;50sMjDV4<>}%WQgN&I%+W+v!a@%et+za z)yL;-)82YX)>%tc>_+S%8J2Y%XVn9?31>9+orpNpAoa_r&{lbd_Fm@dYmWOG60R%| j$kB*ep%YQ{_aEbW4#wP1GJz35TNpfD{an^LB{Ts5V&gn; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/refined_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/refined_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..b01048c50b2bb849da6caefed89007d51d5df548 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1^4&6+c3PFGi7eSLjN zNl8XVMpL3yRg_6VkX}egNTRo1l#7an+$2MwQpS=XzhDN3XE)M-oET3R$B>F!$p`o% zgcp=-h-R9>XBbq*e7Vc%m>MTfj^;79Ca-1Mk~^9jw|HLhY72G{oVw!aTpso5tutJ7 z*FQ)_0sP^MT{jue!&b5&u*jvIRTz7jv*Ddk`)*x9aP!P zJUf}G<6u&l&Wjj^l!7H&mP=SQNSu55PE)~h*)}m_b5@0BQw`gt8Vn~M%vu$)Y!}0l pUSpFIwIh2xCn_*bQ0X|v!tkJ;KTx5?{w2_C22WQ%mvv4FO#n95Np%1K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rusty_anchor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/rusty_anchor.png new file mode 100644 index 0000000000000000000000000000000000000000..cba3fc82858b1b16ec9023177ed783bac46e84cb GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0B&b(bLe-@bK`chzP2y ztLrJuwi4le;<4xkP>!)A$S;_|;n|HeASc?>#WAGfR?-1>hS1(t#sdmGEb&2`{vSK~ z^rE%Oq&PD@XQf$hZgV9l+$r%jYV5l9Xy1>=Rc{X}71zBx=kQGHxW?3tPWo}3hvMw7 q_bzZrDeC09`s7!!i|F)<&&-Vv7^RcfSM2~=!{F)a=d#Wzp$Pz|q(vkE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/sadan_brooch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/sadan_brooch.png new file mode 100644 index 0000000000000000000000000000000000000000..61a76b165b237bc4941d1dc26fc0fb48053b5beb GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=6?A{n@?fYkl;UNfx33 zx=RYUxplaFc^M^~%j2_w(u^fRe!&b5&u*jvIsTq5jv*Ddk`HjlT)GtFV8Y!|z>wJ2 z*T*KHzcAACWE1a+1mhr)AU_5pi!0nmyQLg>J}Z4qGEly8bUW}B

4?c0~)jxO zPSuIBP5im?Wnq_K>TJ6=-0x3{YFcmK=Ft3!%R%YFB43q+S@XHN7oY2|WmwhDXmgu? R+ccoD44$rjF6*2UngG(WKN0`{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/searing_stone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/searing_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..780a66fc25ec95dad027c250d85edff1a6b610e4 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=8=PNE~xfjtYFx)g3e6{fE^4ma@89ZJ6T-G@yGywo+p*<=9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/shiny_prism.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/shiny_prism.png new file mode 100644 index 0000000000000000000000000000000000000000..06b014cee91f98587b550a0a428940bf771cbe34 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0BJ5X~F+DhyQhI!FbuUwy;LlL*BhU;tdi{4>p}rIQHd|(!psS3dv~|6HXa=3nXWC+%oi6NKUWp zxGiX~xM-7ix7mb)wwtf0tYkPc!)~uh2@`X~x*D?^T<`8$n=3@}GQ=0k2669xeHUmQ NgQu&X%Q~loCIGW_N|FEo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/skymart_brochure.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/skymart_brochure.png new file mode 100644 index 0000000000000000000000000000000000000000..463a457846d634c3e2fb545d93946fee9e9c6a08 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0C7d2~~9{(er6Hk6qfS zsBl!+^08So!zvxe&n*nq5>4OMuK#=X$&)Ah_wWDz|3AN+jqi_ZO+amoB|(0{3=Yq3 zqyae@o-U3d6}NiMT8cFr2pkB=+#|r%{J#F|6@yBB?bMKeZhz*VTAFs{lW_F=zU5UlsOEnOW{TDa)MU**}{dI>m>gOLF!y%1hp! h6Emw{aYqXyLtKy018(6-lYw?Jc)I$ztaD0e0sz!2SsnlY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/spirit_decoy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/spirit_decoy.png new file mode 100644 index 0000000000000000000000000000000000000000..67811f78f2a1c195b3a943eca638d34c3942b842 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0AW*FXd`qvh2$LC!hYy zEWKU5@13ni(CL4ikw7`dk|4ie28U-i(tsRqPZ!6Kid%C|IEpnGa4-itFWCFPSGD&? zjP>rH*UuOHvN4`q!}-&N`_ys44`-ryqc?c^>Yo-kYWB^&d1;BDfX4;ne8I$fOWp~- a)Mq%7!#L|$XOtMwSO!m5KbLh*2~7affj|}j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/squeaky_toy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/squeaky_toy.png new file mode 100644 index 0000000000000000000000000000000000000000..5529e8c9af7ba27c85b9192362537c677e3101ff GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=81m;MBhTK(Kk`kCwuD z{cS6IN@vt%H)O@E3k)bp2#IjFx3I8KP*4CWjxE|K4x|`Mg8YIR9G=}s19DP4T^vIy zZY4V~ttkj&n8Me3k$Z>O8m5&I2R4`}lrSh%hlQnAgc` U>{+txKhQn~Pgg&ebxsLQ0Op%j*8l(j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/suspicious_vial.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/suspicious_vial.png new file mode 100644 index 0000000000000000000000000000000000000000..0218224d37c8a73c82dbbcf10a04b7d63e3063bf GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0B)uKh(YU0?#Z4)?|il zdXE49|Cf}MoF=EoyNp5TD8qDfu`9WrXVx!W>8^U^>G#d&-?WGd+yiQ3ED7=pW^j0R zBMr#$_H=O!skqg1Vk_eT2c825(#_u3=iZTAwc_&9{d?Op<~t-Y_f)KJRhfLa`k|$J z_XXVx6J+MtRTXadz3D*d`d16SM(tZ@(IUuEP$A4<`jAQ9t1?m>Xe@)LtDnm{r-UW| D?FCEW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/terry_snowglobe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/terry_snowglobe.png new file mode 100644 index 0000000000000000000000000000000000000000..de1884cae14b143569bd6ed64eaf4adabbf06e9e GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0E4S@qh1!|7O$w1A%m* z&3_jcgSk<^Ke&fFTi*Hlb>D{%shSL}4h-Hb47v;qO$V(u0QE4I1o;IsI6S+N1~S0Y z#WAGfR?mr0CMQQ8=Zoffxtspqo%HBWp?meZdhb{1XSP1$UplkMqs}wSGTr?2Q_Jrc zCw*34+53(~gmF`9_GR!K5^PG@UuF=DM$QbGvZ{&=LkuS3j3^P6KhU48Q|^U>S!hN^m7mIcWE;MAKlBG zwl~-8aLM%vFW$`EY;KSfuG@8PPH{tHqWgp_^NzF!FJD*`GbAy$9AjbVo~mr%vraV! PXd#2AtDnm{r-UW|ABs*( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/wither_blood.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/reforge_stones/wither_blood.png new file mode 100644 index 0000000000000000000000000000000000000000..5c83cf406a4da4ea18fd0cf770ec03085f53c7d8 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=8ovom;(nb#ZZVOiWB* zaIm+puZ^SQJ_ZI86BA8M%?t(xX=!ObK0ZwbhMpsxoo-U3d z6}OTPu+5kBpx8t^;WHL@_a^Jl2$T)8 zgTe~DWM4f D{8mOG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..a7716fef24d0609120dc2070cc77efec2f0e476b GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1#w@Tx^`jBrHPzlVDU<031NlNdZ* L{an^LB{Ts5A!j=j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap_bunch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_cap_bunch.png new file mode 100644 index 0000000000000000000000000000000000000000..9501cf7f09ee6ad78eb0a164f24dc526b84aeccb GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08{aq<-as)TS!Ww=Yh; z-(-5eMDqVlyN`_apH}YK&7l9SdEs1sL$%*4mcUR2@W@ToM1vd{} RR|Hzd;OXk;vd$@?2>|h6Q>p*} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_soup.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/agaricus_soup.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e9742025eaa4b6460a97f324ba20a0314d5314 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=62Z?)lcdu+X3XBcuIp z2K``5&gqOg_S)Q5>TCvzobsYf&&>A40M#*;1o;IsI6S+N2IM$;x;TbZ+)7puEGQ{4 zX~Gtj-{^ji3dhzW@fh;g7#Y9%rSTQpQq5v b&%p3ZjQ_1!%$W^9!x%hW{an^LB{Ts5m*6*w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/anti_morph_potion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/anti_morph_potion.png new file mode 100644 index 0000000000000000000000000000000000000000..0d057f0b2e02bbe757de6771b957ef3c46102950 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3fZe&2llP50UhS8_dL z`w#tR_`lL!^(e#9>E>dy7-nf{X(clx%gM_!@p6YS~Y z7*cU7`2b_g0+Vj*DGMX{7S5DNbCTd%BYeQ*ao4>BW&!6@YpUNTFR)2YZ@6TyHsR9t z-T5V~4NKnSz0YFPPOGb3ew^V~CcDD*T1o9k;+xy1; zL;1ovYT{zPp_1X@(~P1^H)g(l_ov0vjL=U`(^?_Tc*_kze7$ i!&p#g-lTb85A$~o#*>S-KD!4rnZeW5&t;ucLK6V(4?TDQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_1_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_1_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..279ad1fb5273c4ee91640cfa1d7130214b2c5a0f GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C5l5;nI`nbH?!lW7px z=X`8?X2TT6!e*QN$5VZR i#4&OC0yd*ogZIDAFs{tmo|6eQn8DN4&t;ucLK6T_gFmYP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2.png new file mode 100644 index 0000000000000000000000000000000000000000..6e529e652ee566fbc8129d76d0990a800b293b97 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C5l5;nI`sVj4t(ie4X zd+7}ciKT38fql+4nFfIY#%ivzuXe0$1FB;z3GxeOaCmkj4af=dba4!+xE0#%D0D5L-Z}+rG^UqFgQ;J-_AzSa=-_C8zJ$vgW+o$MT{6$nhPllj`-fnS@$d)>i{fXYh3Ob6Mw<&;$S;;zUXS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_2_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1bf03d9e83052fa7000a4eb7416efbcb4fabe0 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C5l5;nI`sVj3iw!L&I z8`}*DiNHQ*n@oc#eNlk{#%ivz@=0lzf$A7bg8YIR9G=}s19AdAT^vIyZiRNcGPwqF zII-rR`gi^JFVdQ&MBb@0AnaZn*aa+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/aspect_of_the_leech_3.png new file mode 100644 index 0000000000000000000000000000000000000000..119cabb29901673a3be32217502ff3a5097a60a4 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C5l5;nI`sVj4t(ie4X zd#TBx?~Kv=1N)q9G7SO)jMZFavpkR20M#*;1o;IsI6S+N2IK^Jx;TbZ+zRb>6gr|H zz|?{?xO`7D^w|m;8`DdrLDMhZ|kgfObZ|AmUa&@e?jwXoqxqo=V uFv)mZtoZzWS##d)WBE{j#KpLGkCiCxvXEaktaVxajmB}@b z!-+Nj)W7S$A1|FJnAzE}fv0`@oDGxDa5gWoZ+tTQNk#L@8y7SAXB4T)_o;f`E$)4Fl6Q&m>E}L@xZn1@JpOUz#1y}NHmV{slnVfZIvl}cYtY}K? q@|&}?n@cswiFNs^gT+gKm1}=G$+-7Vz4b1j9SokXelF{r5}E*XwnN4M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/barry_pen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/barry_pen.png new file mode 100644 index 0000000000000000000000000000000000000000..185b494b446afcfbbd3547ecaf20752f3b303cd2 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE06{PFE6h%3lqQIXq_DY z8l;D@B*-tA!Qt7BG$6;;)5S5Q;#TarjiL;W987`iFZMs%EfBW&|FHwF3orQ`(3IvZ zpUzTjkXFlb>`->2{CoGuhi}T=vHic!_V3f$?2`=J*JjT<2C~M})z4*}Q$iB}>nk-B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bedwars_wool.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bedwars_wool.png new file mode 100644 index 0000000000000000000000000000000000000000..80495ff5f36a9ce4403af73fee625048c63e2ee9 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}YnhjJbBIx*jY7DI)Wihq z3F!u04!g42~R3?%V(Uf9m}xqapXK$jYvT(L&w4=W5Q&mDcZS zIU@g>@r>L0MvKb7YCj&m-oMQ2&b{5OCie~`3uvF0*{rdl;+o~*zdF5bQPTV#E$=uw hlw!G7TU7mExO0(l&bQlJdV#hvc)I$ztaD0e0stXLLxTVS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/berberis_blowgun.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/berberis_blowgun.png new file mode 100644 index 0000000000000000000000000000000000000000..6ddfd498424443420c1342d88ef491b2d71c4072 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4FnSG8xGPj{P=6{Mc8 zn-lFK<6|Lis>WxKBvA;IW-JNv3ubV5b|VeQ@%MCb45_%4?7;fwX@J{AFUA>ZW`)@d z#yqW;8+*1eeG53upgn-Gejap6xJxQsdFrzGne&{ zhgQRd9H%V41h-8Em7Ea=F3f3U)lrCI2o#jz3p^#qbu~DKZ>z%`Ms@}U%kvzpQw~R@ Q0F7htboFyt=akR{0DnUvowrMrWBU)WEb3nxYs4_Q&eqmeUtb@nSm@-#GeC;5B*-tA!Qt7BG$1F$ z)5S5Q;#TqjwmEY`LJst(sEe8!D61Yl%X?-+dcqIRG>$*j=Q-0({N4Ls=!`)B-YCwr z8P{U_S&ZLY+h56J^T{7m8(mi0L^FcboFyt I=akR{0N~|QHvj+t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bottled_odonata_blink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/bottled_odonata_blink.png new file mode 100644 index 0000000000000000000000000000000000000000..a91d4a09fa192fe3dbf2aa22972b638a007d5ef9 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!VDx|6+TY^aRPioT!HkJr{DiS&f9$c&Fhm^ zmcReso2e*pcIWL9<=Fm1EQ|V=#u_n9uCukZ)z{YtDi%8V@C=Y*ED7=pW^j0RBMr#O z@^oK6v=998|UsY4PKx?|D#%v|2N+EuOrK_}nsu@dy{DK)Ap4~_Ta(q2q978H@ zB_Ck3&|dD(U|gZKT)x5J*_;-G2nh+913b%iS1a;F_HNToXbW)HnsQN!HStB-ky#Cr uuiowyXv-`8D7xa?Zh^NvdU_|qm>II;gulHyeY_fIFoUP7pUXO@geCyU9YyE> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_feeder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_feeder.png new file mode 100644 index 0000000000000000000000000000000000000000..6aaccb8a30fe528b76b2a600b5ff45210b7947a9 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE08WxW}dAi_0~XVzpAEM zl&V+1M(Ao??E)<|nVqUYX~vQuzhDN3XE)M-oG?!p$B>F!NejdnwkXQEF|-))94@={ zPk8^y!oRMbDmL%VgsH#p!j& okIqedzSBS@sO#!9o|Enr~qboFyt=akR{0M14~kpKVy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_legume.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_legume.png new file mode 100644 index 0000000000000000000000000000000000000000..a24e03b967b9d2c649c6cad4cdff5fea4c3795b5 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08WxX5O!=Ia^7}wox;5 zwXRpchIWBg<#pfxt`2Vvbkw3$6Yomt0o5^<1o;IsI6S+N2IORUx;TbZ-0JOO6=OEw zaAx-W`!9Vi_xj@d>m6ABJI%VeH*f83|Mt(PBi{P+R_tM#armyan(Fs=JFiVK@#Bqm z;u8>a`dAiY^pCkPNyK&cltngvZhq=c^Cgn_G^Oo2Ij79# SwvPka%HZkh=d#Wzp$PyPh)Wm% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem.png new file mode 100644 index 0000000000000000000000000000000000000000..f601b8a85d8f57efff039e814855775b82f172f0 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=69bb^p6Mc=c<%HPEqb z)ZDMCsa>EoTS-bSO0`6pxt=lRI8YH|NswPKgTu2MX+TcAr;B4q#jWIqh9Zr#d3>oN zZigg<7Z@!PaI0LX(&D$7#rV>hIaWs-O=h3sGUqQAIJ|oGQscD@C$f?wLN85X2zz38 zHq+AMoN{a8RP_l5mp(eU>>|^osH+F2PGVf5n8U{Kaf9fs;$>TSfmShiy85}Sb4q9e E04GjIl>h($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem_bunch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/caducous_stem_bunch.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb775b7f10ac9586b2cdbc51e54f45bf85d4c50 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ESM(DLfn2wkmf+o*ZI zMDqP6)BiW^{<}K7HPG3ws;L&G8oRkk8>o)4B*-tA!Qt7BG$5zQ)5S5Q;#TOnP$m{e z4yFsN>MZZ-@6FZwKkx5vmIiZXBk^N~tFupBjk;`eJ$1_r-J>bXQy0w0yce65=Tqok za(q?TLZjYnr#7o1Etzdc^m)P;7TqgY%xds$;slM$a%(<&&hAWo?sYgTe~DWM4fYN1jm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/cruxmotion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/cruxmotion.png new file mode 100644 index 0000000000000000000000000000000000000000..df9e3edc0f1d83b7e97cc585156494aaad6dcfb2 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E06{Pjwl`m6DJ1WBuxh9 z4-BHMzq=Tmm>E{zU}#_6`1C*bSrNfm;_VFF*$kXF&N2M|*|>T!gOfc2hpe82sc%AI zy^{*V>KF!F2G%4~hNL)#yfI)p* z@w@#y^dIC}7e_Q}+PptK?a{lB`tLu<9^ARR`NaNP+;U4owT@okxA`c1KKt(M*kuM^ z^!u-h`6O2?Dv>xQm@m2N#G)H}ZYEA_56qRTmPwaM*!{$HLOP>73#0HHhA?aHY)S8y QHlV!>p00i_>zopr07fxfRsaA1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dark_pebble.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dark_pebble.png new file mode 100644 index 0000000000000000000000000000000000000000..81d0c3017c7b1aed738dd0848481cecae5948d15 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DV{ElAr-fhBp4f-=gMCABay(s z!(#YB@_PLf```0xzlI4c@+xK(KjxJF%I%L3qfh9^XM*CpXKNffkaL(_uz){(el&v;zm-Lqt)lZE$uSWsxWAJqKb6Mw< G&;$Ujj5_H6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_detector.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_detector.png new file mode 100644 index 0000000000000000000000000000000000000000..aa5898c9bc0613c7b61fc4361e019cea7a29417e GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E07Kd2(YxYJb(T?kgct) z{r~^}8#it=H8rhRvBKZimpz_|uZ3CsKf}h28->p?#l^)*h>K@WcajCFW-JNv3ubV5 zb|VeQY4CJ$45_%4bbyH=w1d^j*-*gc{_OV^@9N#}D02GUzFYX!z=Ho@l>);tmCGy& zE-z(*&({9V>$s-2ATfv~@kLvV#)Cr%uZs*HU0|?(%^mC>Q{}9cShAB#JS;=>;acYf z>;VZPZtG4dUno>KEvjsP`bNaZuKC)jk=xgbH2iO&If~q^vEexKnelF{r G5}E+|`(0}Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_food.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/dead_cat_food.png new file mode 100644 index 0000000000000000000000000000000000000000..2afdfb7fa9558dee1e59fc05a5f155fc3e56c983 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0B(`R%?%SI5sow`r3*O zZ9x?RncYB9#*!evU zwc7B8O`LwA%{Qm<&h9#6*LH{?gyaxrwO WGQ4F_vEcxk%;4$j=d#Wzp$PzT>^bZJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/deadgehog_spine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/deadgehog_spine.png new file mode 100644 index 0000000000000000000000000000000000000000..a94b433ceb54c4bbcb985f9859f2ecc1a9e0268c GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`E}kxqAr-fhC8``Qn|-n8n7mZ5 z?c^nid4b-$(pI>AGTr|5yoAD8?q}y0c^IE4`?QEFL)&%M!)?qrQ=}Uf&D3#ji+jez Y;N}$KAGW5~0B9bAr>mdKI;Vst08?)(4*&oF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner.png new file mode 100644 index 0000000000000000000000000000000000000000..844f216c9710940b35c0a3a035c6a072792f885a GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0C_Pu9lLLRae)pWnc&m zP29o2knXQJtXFQXfS*^B1i$mdvOA+Vn zMO`i&s&`7bq}MJ9=UBL9lKDf`=QcI1G1-6BFCF{0&Y+N0zG>C0WT52?p00i_>zopr E00K8!2mk;8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner_sniff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/detective_scanner_sniff.png new file mode 100644 index 0000000000000000000000000000000000000000..7f6a049957d6a271a7fbc10447880c50b1f487eb GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0C6wl2upNu4Q1TuC5LZ zP29o2knXQJtnbGHO? z-LKy*uWsCP;Mo5E7FAc+Ee`x=uf8I{%bnTSbpR;MSQ6wH%;50sMjDWl;OXKRQgN%- zx3%}EfyipbIdAsAvz@BFD}Q0-Z$SpmJr-N9DcSuA;;RdB+G){k!tu82Owj5Dh8e94 z)2C=%XvuuzbZRF<9`E!Clai0Wo1UQE=WNLmbc;z*R-fH=$=1L9_WBY`QTnH*d;r?T N;OXk;vd$@?2>=0eOH%*< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/discrite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/discrite.png new file mode 100644 index 0000000000000000000000000000000000000000..8eb8147dd021a2949fd68b8f819d5fbb0a18db30 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0B)k6mWEOY!{TSsHg}D z37Ioz&i3uwf42Pk5V`BJNx}w2-7PzbJY5_^DsJU=u?w*n z@*H~e<-z~|-+6ZKTb=3Ae3!}P&x?D%wG#!Gh2QwHWLC$V=gnDbO}QD)KgvCmB)V|g zk2%WCb2$CXKMPd8SgU#Eg65wJF|`W0Uz|Sc{uc(;O=+w;&s^KWBIh_WnFDASgQu&X J%Q~loCIDWIP`>~G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/emmett_pointer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/emmett_pointer.png new file mode 100644 index 0000000000000000000000000000000000000000..2c2cb8b5de1ebc3f8ae98c712dc6709e8bacc26a GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F%rz>t`j2qaw`9gj0G z80hLsOGvP@v1wHWr~svzN`m}?85(A5`$+(KPM$7~Ar-f#p4iTKAb{gYz!`hKxAq&Y zpRahQ$>&@D=8W#*%gNPTH>2)4d&I4kYU&LR-MabA-npNSHSQ_Cke4Jaz<+k-e#Tmz T#p~^XrZITB`njxgN@xNAjw3c_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/empty_odonata_bottle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/empty_odonata_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..a963c6f931e2ca7f08b1ffd66966907c18201a4b GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k)AG&Ar-fhC2Ag=oUH!ek-_Wm zje=PV7}L+qIhe^1(5JzCKx%=B(QFH5v-$O(<^2{n-uUO-!n@o+)NA=$*Zr ut^Y@U5}SgFuq>O%5=I~16Eo6g@-vu;Z592Ic+CuG34^DrpUXO@geCwqKr(Is literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/enchanted_lush_berberis.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/enchanted_lush_berberis.png new file mode 100644 index 0000000000000000000000000000000000000000..f3259a655c88146baa4d410fedd3bf1e80b35c08 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1e7%-4plYR@*G?l#4y z-7qUiT_aH;UpFV(MaIWMoXKm_8lWP^k|4ie28U-i(tw;4PZ!6Kid)GHOvf15I0Qm{ z1Xzq`L`gCqUCmgG>kRgSI zjeV0CQ|9KN!ewj=ZstT@=8m}P;3cNtd@F@B*+9i$0Rux)F8{X|7B5Z!?PKtC^>bP0 Hl+XkKb9X){ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/exportable_carrots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/exportable_carrots.png new file mode 100644 index 0000000000000000000000000000000000000000..30109b64c2ffb644197b38c374def7b652c55c33 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9b2Hr_bL@PE1e|31#u ziy4gf8C=fdm7gWE#*!f^j)6Iyxm1J6$)15BfZ_EuhmAlDj3q&S!3+-1ZlnP@8J;eV zAr-fh9oTXt4Z?1>-BsvHF8|Kmabw!9ZEOO2Pt|_vyY4W{yKrjZ-9BC(o;l^L)8*@V zMP@y!^gNYn9W_a@>dbvfO~G8B2ovf*Bm1-ADs+Ts>VJLn>}1 zJFvy9UeMF(#jU_IFFES=!Zlk=15Wx{3RvCx&Cn9KNz`d`wR33BUWSEdzdL0-3tPcZ ltrK$e4R^q?Shf%bhRP`Z)RdfED}V+vc)I$ztaD0e0stVoK7#-N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/frosty_crux.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/frosty_crux.png new file mode 100644 index 0000000000000000000000000000000000000000..4af2a119691a28be90816f3d7f5561d5f15ee44c GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=5XA|1+$gZW>-r_C+jYU40T6i zgTs*lCwO%dG**bPrDMd%8G=RNTrv9msdsfTQ{0gBuI? z{%>_(VVWBCU;U3~&-7;(?}zopr00st0z5oCK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_firmitas.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_firmitas.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d401dae7f10e41828a3547e14ad401518a47e9 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3*5A<<<_M=uV25` z)iD5yM4Kw7+UZQ|&e7STwGzl@ED7=pW^j0RBMrz&@^oS~cA1_7UD-fAgetl$UtMt<#q(fwnPty85}Sb4q9e E0KO_uasU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_fortis.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_fortis.png new file mode 100644 index 0000000000000000000000000000000000000000..46d8abe5873b3a0f1f9a03b0b0ab266f99044dd8 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3*5A<<<_M=uV23g za&>hKqD_@k?R2Jf=iI7MzYi2*ED7=pW^j0RBMrz&@N{tuskoKf)5_>-$Z=%H?&t;ucLK6T) CNl*Cz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_pernimius.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_pernimius.png new file mode 100644 index 0000000000000000000000000000000000000000..74022780ed5cbfc760f4f3c134756fecf6c278f8 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3*5A<<<_M=uV23g za&>hKqD_@k?R2Jf=iI7MzYi2*ED7=pW^j0RBMrz&@^oB>u7In813hW1;Re(Kx|T-Y%|DchO7>A6W) z)%*ij+!MZj6I3|B_r&)}63g{jqD!7A3BLHB`tUs4(LjM-6YqK^pluAEu6{1-oD!M< DTq#YN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_potentia.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_potentia.png new file mode 100644 index 0000000000000000000000000000000000000000..63a043b8d85c2819d3e90590dd7be3e1fc34aa84 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3!K)SvuRn&txJ1e zzkUrA(bX}CHdRiw)6of;d=kiKED7=pW^j0RBMr!j^>lFzskl|!+sfEtAaFov&fnv% zuiwxAcISuFca|?}ma7U)-}~5UC)3Gkg2I_B8}d06mmj(i&MvUK`QIt?&30cuX%?=0 zb|gS*-I}7yHhqt$gjiaeo|?-1dD*VVPvp&yT@vNqAr;X9w1~me)z4*}Q$iB}EM!c_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_robur.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_robur.png new file mode 100644 index 0000000000000000000000000000000000000000..741e8de3f2e3ab7b1f61ddcd39b42f3e3163bba0 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3!K)SvuRn&txJ1= z+}E#P>*^Rpn<}T;>9C%ArvMaUED7=pW^j0RBMrz&@^oF@u& zDtCgWXP)15h<6|J1L2A1?Ik}l-m7}hKqD_@k?R2Jf=iI7MzYi2*ED7=pW^j0RBMr!j@^oR!0Y^*X-pwYJ z|Jl#k@H*eHTXDfYtNzWwOH2~22Tpx>HQ)2;UiG*Vr9OT0n<`v0r5B18+sX=mvEfwS uBIwsIxWIV#oR2mO`|mL(Fy=|Txy~-!!L?P{Lre*13xlVtpUXO@geCwcCPYX8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_vis.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/glyph_vis.png new file mode 100644 index 0000000000000000000000000000000000000000..c7b15e1c52b7d89e3b44fc64dcb2b715341f44ba GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0As}3*5Ac)B=-RNTrv&B}B{fyd>dz2p1( zgiVguZrPa}YyQ%F;cQXlrpV(0YBmcv&UH*PZhGUKARw>tv&Knl?bSJtwO*=ZMTRK} z$5<3{RC}G{J9tB7+ZJX^Ciw}Cjg03KF7v;OimdKI;Vst07!{O A!2kdN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/gunthesizer_lichen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/gunthesizer_lichen.png new file mode 100644 index 0000000000000000000000000000000000000000..c454d95777ca9e72e1a0d398c8c80812ff50f5b8 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0A{8I5gkp$z7W#iX5GZ zD(8Oyg&0eM{DK)Ap4~_Ta@;*#978H@B`HWVaLF?BGB_Ks?J9l$|4jXSAEy5ycOrX= z^_gs1Q(A8qewHepvZ<19i@_WLTbnk8Z|)vDxm@3BsPDV{>(6uMlrV;Sc{R6MfJQQS My85}Sb4q9e0D_}6%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/half_eaten_carrot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/half_eaten_carrot.png new file mode 100644 index 0000000000000000000000000000000000000000..cbd7b56080d85f336bdaec5fd3ac6a2f512ca402 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9Zymj7RF|G$sZc%Q-L zEMECpGHWaunA4d{HJBIz7*@JOdjl0QmIV0)GdMiEkp|@Wdb&74Id^IH(pA3U{fmH#7)yfuf*Bm1-ADs+qCH(4Ln?0No?+xVV!+{Y z@t6DLW54Aqf}>k>WgUL-fA|qK@BO*@2z7}I6SSKp?zyasT;$#%8FxI-;LgRKwc8aY zD6#QYKdxHHKH)v*75@pl^jEm>wnwIx2R^U1XLo1Z(-3XE0%#3`r>mdKI;Vst0PGM) A#{d8T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemoglass.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemoglass.png new file mode 100644 index 0000000000000000000000000000000000000000..3034b101a6df0e78aeef2c095fc3762ae7f2b24a GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B)uKa|eE(9F)hnu}|X zqvO%4s?F!$TzUGvd+i0c8MbqPDi}+G{DK)Ap4~_TDfe`745_#k+wI85?8tGr;eg+d z|LwaaR|Z_&9?=*3C+RS!ia@eNq`zB_;>Qrx8kb2n@1jezIBJeMhALKZ&20JhK=4A` yt=MYI-1??#`){k(e82sAQ`;%k>l@;IY8d|XFkZ8aNpc2S#Ng@b=d#Wzp$PzOSxRRB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemovibe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hemovibe.png new file mode 100644 index 0000000000000000000000000000000000000000..96528151385ad718863cfa2aa6bdbe367f07d6eb GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2^Ws`fZKZq?LW&BfKs z&YsS|;Kso4fuZLLP>!)A$S;_|;n|HeAjjL&#WAGfRFVdQ&MBb@0NYYEHUIzs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/highlite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/highlite.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ce23f37b2c1cec2d20984f40e261352898a72b GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A_{bUZP^Do0P?(Z!Gr z$@=eqwRGA_Zr{Fr&YU?RAt4nN6>7VyWr6A#OM?7@862M7NCR@hJY5_^DsJ_h=Hy~F z;BdK^CbPNn|L-!N2}0LSDg9qK-=6IN_r0H!HjBHu=uPgJlD&=Dqwr}=lQP50t4#il y?i}kRJfccvZ~k+g6-l705( z^Z)<<@157znXaDUC+BGbP0l+XkK=D<-{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hot_dog.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/hot_dog.png new file mode 100644 index 0000000000000000000000000000000000000000..0f9494a2a711c3d29f0616f73130735915a35b8f GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8=%%>RGZ{NAqKvn$IV z%u(4jE&W zt*qQ34hZS$3YqsKF`EINiFzC+gwGV)FnNjV(*6*^h{=3*{CFV`fPEDEVpC`Lu~ZyBIuO L{an^LB{Ts5yf;jn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/key_to_kat_soul.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/key_to_kat_soul.png new file mode 100644 index 0000000000000000000000000000000000000000..7ab842d86ab0683ccd71f3a7a850266e28c3b1d8 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=5_46&ZR3@|-e#4SiHa zl|}hPWbZYE10@(sg8YIR9G=}s19B`pT^vIyZY3*lZm{6ya**&k7SOg~!>UCKCNVQl zUYwZGvC)%>Ik_W<$=O4TnR#(g6q9p?RHhjN!;T+pXYK0ez6YAY;OXk;vd$@?2>`7b BD^>si literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..53c0d018f3c2ec1204ecf3417ea0805fa0586744 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E@h;>oPe@lOo=|NsB) zb9)76iF2J5Y5m>B;KaPARoMopg0UpXFPOpM*^M+H$HmjdF{I*Fsqaz70|p#Ae82f) z`q|^=$e(09&~a9GpZNE_6@90CB+}mKyUj7^XED5dgTd)A%MLf$s}1tu$86i4t|-{a Zy>%7iSl?F00|q=& zAwU1$+9~~2MS|hI_Ud($uA5IeC}AaGr+IJj+sbc>CbeAtUUu_N@SRVvotJq?d{r>V mU$q^-)0?~^H?7&amC@%do9_ROlYartX7F_Nb6Mw<&;$Sil0t_7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_silk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/larva_silk.png new file mode 100644 index 0000000000000000000000000000000000000000..69f6daba6f668aa17f93ea413460c7cde83642db GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=9cj|G)F<{_b;oGplp_ z69XS#y6_Ju%2*QQ7tG-B>_!@ps1j8bW}m<$rXI}RA$FNzg(M?OE;EC}IhNP;1&xP*W-)lW`njxg HN@xNAi3u@I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/leech_supreme_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/leech_supreme_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..f0988cfb9b53b55b820bba22408d2631e32a586b GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08v~Pzek$t}Any(ie4X zd+7yb-U&ca#*!evU}1FVODzDgRmi;GtCs zQUOdZ`fQhHTyp5-S>VDp!IU?aGeTbA8uQdE%~O&>874J&`5#`$&{U|=@RId#)thrM kJkz3jCL9Z4YUXJMT9y`(6uIt=D99=XPgg&ebxsLQ04cUDA^-pY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal.png new file mode 100644 index 0000000000000000000000000000000000000000..4abdcd882fa6a5d0e9c5d4ff266616fae3d00910 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E?;Q`7KE(T(c2NF!Neeg_v}SV4uq~2cTXfc< zb?Dfo1EdSnzXb~Y2nXRn&Sl>?1t@O1TaS?83{1OVKTKb-&o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal_anvil.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/living_metal_anvil.png new file mode 100644 index 0000000000000000000000000000000000000000..2f54d301ba0253182333f3caf52230483da42e78 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}D~RitVwHR(s_7AjnwqGi ztLU6od7vm`NswPKgTu2MX+Tbhr;B4q#jV@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_boots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_boots.png new file mode 100644 index 0000000000000000000000000000000000000000..8ff16978bdd5f19f00fd2c6557cba2d793dd039c GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E?;Q_~NM$ZelynO(eM z^_r-rM^?#4H2hLbBG}Y`(u^fRe!&b5&u*jvIl-PTjv*DdLVG#+m=$@LKW@zZ|NoKH z1t%jXE@LYjvu&1Kb#k3&s~0}9^{HXrA+uP-e7V@3cQ5T&5Aj&$8|X;dF(#bQ)K-jQ lx^U?G=hL?*@BZ-T-%dY9Z>?!7yMe|tc)I$ztaD0e0ss-$J;49~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_cap.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lm_egg_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..9fff74db813928ce4104ab0ec18150bf09020943 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYD~RitVwHR(s_9Y3${)Gy z(=4-#^@Acf)YPUjhUEaI8B2ovf*Bm1-ADs+LOop^Ln>~Co^54pa1dd-;BEKYUuQ_!@pli=y%7*cU7wD&0E0R;h;@C*OC z&+7N_&5^DP@{;84T461i0yV7nQuUmT)}u z%DXwyL!r8TrNYI%k1ZHVZs%uP?B98Be}KK+ceX#7?5QnjDc^y1F?hQAxvX_!@p6XogR7*cU7^fV(Eiz1KnMVG{+ z_x16+*$UUnyL?)3!;@>um)hhbo8vnl{%yF-8YSW)Sb1Goy!>=@{lf)`wd_}7rYG8$ vsT3(SZc~_Sxx9W()$7+R=3OG%J9zCws(53j+w9v2w1vUb)z4*}Q$iB}P7p+B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lush_berberis.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/lush_berberis.png new file mode 100644 index 0000000000000000000000000000000000000000..1cec53c020a8524d914445e0d42a1d8c31fd9a40 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1e7%-4plYR@*G?l#4y z-7qUiT_aH;UpFV(MaIWMoXKm_8lWP^k|4ie28U-i(tsRaPZ!6Kid)GJ%sos3QNAGz zXGF6)TRPaS)E!ft&K?jkZf**d>UfwoVNa02kpxlWR8Db*mAyG!39PFl7eq0H<%n{q j9AH``@HyS^0RzK@EnH@AqozCt8qDD7>gTe~DWM4fIuAKk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/metal_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/metal_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..9bff010b2f0824a2cfe971cff4404036c9c43f41 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07j-bhXSbUa@*jZu>O- zpoo&`ucDeBStTFQ@Jr!PQ(MxuJprhQu_VYZn8D%MjWi%9!qdeuq~ccTnWKy>3L?yb z&yqR+e&5}<=BXLKXFdCzi6<Lieo~Zl_rn$$h<-&k=FnGH9xvX^P)xn z1(FLQ$^{6`2%xI0#PIO(D|{|M*bV~kUtGmdY-ysv5b9^`hQk1aa}k;`U4iKW(g1k| zT)F;;umPBgG5NRe-otM|&(!sdi&pMqSij`}NF#>k<7XZ)tlo5V7d{t&6flAm0u4gO fFwN@*U!DN~16EPY_2MMn00000NkvXXu0mjfao}9a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..d91d2b385168d6691d9f4b3e8a6ada63d313ea49 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A_^anX?D?o3zD@ROT1 zZCZAAwx^kB6Gv4iP>!)A$S;_|;n|HeAjjU*#WAGfR;lk+Mg~WY!#C?6m0Rk>$}n*V zrSr>p+7xs!wRxR(W`2C~tgle`=b6G2YyK!4IrOh^+GNX`4+pf$YCbT^-a2Tz8fX-Q Mr>mdKI;Vst09rCK@&Et; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..fbe77181aa7e1df9736e4b4f94fcbdc0500bed42 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Kz{-I=cLX(pQCCzqX_ zJ#E^w8#iuj+_>@o|Nky7E~Raju|P$PB|(0{3=Yq3qyaero-U3d6}LjpHZ!s+FtA*3 zzE^+0|IX9t1?@X7OFiBDgEb-I!iCNL9r|1J_FVdQ&MBb@0IX(3FaQ7m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..277a4c78631b2913082f502895fc664ee806d977 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Kz{-I=cLX(pQCCzqX_ zJ#E^w8#iuj+_>@o|Nky7E~Raju|P$PB|(0{3=Yq3qyag>o-U3d6}Liq6ZwuNu&_k# zxxVXvAVCZAT{wFh!D3b|etypWr8+G1kPt_8)Nf(1Wa*;N*(UpSOq rIhD=g%rEhyGydyqYRGT5In2VaVj829q;LN_pz#czu6{1-oD!M<(_TkQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f315bc1c8fd5d5c7569840e08dd846d9dc929a71 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Kz{-I=cLX(pQCCzqX_ zJ#E^w|NsAQ+_>?^jTvRcN{Nouy|F)byQ qs2SGxHYvQU5ug6;9rq0Dj|__o7~OWidm0Ngox#)9&t;ucLK6VK2t?cf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..ec8b23605e789e916738337201b630418990b2f5 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|KGBC^R#KxN=iyP z)74W_QZoGHTwGi{%|uO2O*Q1WZ|C>Q0M#*;1o;IsI6S+N2IK^Kx;TbZ+)8#}mf;OJ z_Ks!6fgFv)yDu^NY%Xw?bP0l+XkK;>bTq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/mirrored_fishing_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..a4470f27570684e09ec2e920735f5103c2281ea8 GIT binary patch literal 93 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6R6JcALn>}1FJRd5XZgYsPTi%! r8dKzUB>d!`a*TV~Uv@1;c?JfLO`^+KwsndE)iZdy`njxgN@xNALLC}~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/muted_bark.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/muted_bark.png new file mode 100644 index 0000000000000000000000000000000000000000..07a2c5144bb025e34fd4772e75cf231ff93635bc GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0DIgGE0q%@O5{J2=Xb< z%eee~dNNRyu_VYZn8D%MjWi%9($mE;q~ccTnN~(-MFE$kG~*3`C;1f{=><`(y}*;?b}(>4SgzLTu+kC9vA h?9cs-@zUmxdBvQWl?_%!I|D6Y@O1TaS?83{1OP&gJZ1m@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_coherent_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_coherent_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..304991f30a5393f0f41ea3e52228f20117ec99f8 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09h}Nhv8QF*P+^Zo;r- z^XC5(r8k8ztoLM?HfH~Wh8*{)iAl{sos1HGP5 zFppW`s`{6wnddqNy?nhR@BFbnZ~yjWXnk3EAv^b%)!|hec3+4*5b&Z!k%61vVh+on U80KdOftE0My85}Sb4q9e0Kv^qRR910 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_whole_carrot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nearly_whole_carrot.png new file mode 100644 index 0000000000000000000000000000000000000000..86242c0c3e04f758bd975ab8cb9aa2743a85d4b1 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08YLU|M6za5;D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nullified_metal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/nullified_metal.png new file mode 100644 index 0000000000000000000000000000000000000000..701a1aef18a125b93a0a6e9bd55102b92394aad8 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=1^4uPK@SDyr#GZu>N= z<=2 zcz=&KF(+(pC4-KDRLoAcBMHUa@!MWAbSS=|!S3j3^P6-24 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/obsolite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/obsolite.png new file mode 100644 index 0000000000000000000000000000000000000000..8b8696326f09b48f53bec81950bb3596ab5300af GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07kGGjP@K2r*un7rbps z+5sJn=rtC~%|Hppk|4ie28U-i(tw;`PZ!6Kid(%Wwlf|!5IO4b;N#`r`Z-$1{lews zw_L06TwlKQSEQ!^4mfBjh(_ykYs?A2ZAwUm>0Lt9H{_rF!;$`@|%%vfe;@iSUO eT==Qu)6J6U;k+x>#ehs_VDNPHb6Mw<&;$VTo<1`G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/placeable_fairy_soul_rift.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/placeable_fairy_soul_rift.png new file mode 100644 index 0000000000000000000000000000000000000000..b2af053e0bdf93709fa25fb2df40d19f5052b1dc GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0DhRUt!^w^0#+Y{%_Ry z)-g})=gf$!zyOP282y@>hkK VwQhc|@CVw%;OXk;vd$@?2>^Z&SU&&& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/pre_digestion_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/pre_digestion_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..3698dd779eab00df4e8a37bfc687e44b067a032d GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=82oRvep|wxKPkJ=P(@ zTJ2s;lr&J3u_VYZn8D%MjWi&~%hSa%q~ccc0e+boybdD90-VmRJ|eOWOAMPgZW8Wz zc;+_s`9K zdO~mW(%MstWDibu?rVykR%B9=9T@6o{hxusH}Wz&P&H#okY6x^!?PP{Ku(OOi(^Q| ztz-u_AEp4e1zIg>re=H$#xwM9OF2l$$_lW(UKN_4`S`-E*9(s+G+ugfsbGS@_iwt@ zS$qu=_x#-Z8YT6-@-h?Ly1b&)It~^X>E`m?keO$k-oRAAz|gcwV$JOjThf8{FnGH9 KxvXW0u0D zXuXY5w+$%DSQ6wH%;50sMjDXg?CIhdQgJK!09%X$2aAksgv$Y*FyZG69We{ETG9l0 zix`aOFh%$t;7Ml}6E-<|a8ba~WsQ6Sri^Q}656zxojJ@_Ga7iYzp&|FC;>E%!PC{x JWt~$(699L5EkXbQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/reed_boat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/reed_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..fd1edf0bb8947ae1e1400ec5240d69fd8998e418 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G)F<{_b;oXRn#N zHgr{cw)u3oDOo}4`MNpLE;2qA;`&NF-8CF3K&6Z&L4Lsu4$p3+0XcD=E{-7;w~`O= zi7YUg%sFM@44#EEStrXX7&&RO2}nN8dCVu^{Buj^=4j@CPS>dOFR$_PWJ*?_`!c6b zC*eWH=^MpXi))#gnaiW2++J%bG$)q3WM9wQ@bB*KMiUtZhND|0Z+YgaECAZX;OXk; Jvd$@?2>_=POrZb( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_jump_elixir.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_jump_elixir.png new file mode 100644 index 0000000000000000000000000000000000000000..43f4371adaa31c21a946bf3706203a9b83ba9955 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3fZe&2ll&6%aA{uh7i zUVDMz|CHGNLx%(3F&r&qSQf`HE1Y3UNQ35ChGa7fhE3H#4U8p0e!&b5&u*jvIqse= zjv*Ddk`HjjSSgq+-nfxz#=$Fv;)fCf653Z~Hm*vXRlT0!(1{(qi3VwRnv9;^;b|~P sd)s0#qik)PQCz-m!wY?V_id64!u*0Qd~6NtfJQQSy85}Sb4q9e0N2Y%od5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_speed_elixir.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_speed_elixir.png new file mode 100644 index 0000000000000000000000000000000000000000..d0da9a1d49d520079299aff243f82153e6fa8f52 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3fZesB2ufAje_XO^D& zU;M3m?S;g{M+28Gi|s#jIPjhK%vm0jr!;7u)k{i#;vQ`d)WBF0o47c$L38ERSdQj{4Z^F^G(&ic-|poUXuFon(H!`iZAxIVE#sjT sH~10_-oI!wipy_akvPLr_+}bILcdVT!u8@;fJQQSy85}Sb4q9e0RFK{761SM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_stability_elixir.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_stability_elixir.png new file mode 100644 index 0000000000000000000000000000000000000000..78a8d465408e1fc60860cf32da9eae1c094c0d72 GIT binary patch literal 233 zcmVf?KsJd0 zXgfJ!fUy1O(W7wZCnqQW2f2bI1AYP_EDWa2ng%w2q*%EB{~p|ciOVLEZorhIQ~u{o z$paYxW_Pc>K$-!iM@#=FEld0#H7g3l1{pwF7?{j5`ER+*5{NB8Y|;&2OlJ7cGz*Nu jnn_LzAPvZvW|B~2{gn>pfc)I$ztaD0e0sul0NUQ(= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_chicken_n_egg.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_chicken_n_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..5057211128662b84156dbcd939377b36e52906fd GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0C@&3IFt%GaFsE%33>zImGMoloyISzyEoo dweq{jU#_$3Su>RRR6$-~@O1TaS?83{1OO;~UR(eG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_citizen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_citizen.png new file mode 100644 index 0000000000000000000000000000000000000000..40875c539c57540ee2a425370f8523a985aa6fe0 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0CU7ZsXw}R*3e*B zeWUT|e}?wey}i9rO^-4&GdFJB=;!ArX79MkF0T=&h_NKdFPOpM*^M+HC(F~tF{I*F z(g8+>(7smD0|p!}@^Ol9?DN)(?R;^ZGwR0S?KhnSA8uZFYHt>o1z%f+fws#2)(Deb zt@4*Ii=UTYxGYib)ECJ!XJW7Z$PKBP#rXCQ@1zY4!TSPl&HIr3?ydZir3T(jyO%DQ ZuCGwR^!-?K>o1_K44$rjF6*2Ung9hQR}%mL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_mirrored.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..93f20dad6d0d8afe42c5fa24ef769084bfac01d7 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Df3P5AHsvUd*xUTzdE z-1mIejbDep{RfI4*kZ6LMR3yO=odf^V@Z%-FoVOh8)-mJmZytjNX4zB1B?u=z8A%u z6*+>=?4JDp|L*P2nl@J$avYGZIXb_&sc*K7)73elf07>E*?RRN>%$#O-#HY&QReNv z5%&7RwL{(3uk(#>Y&&`O#PgGXQrrw5ao^qKvv6C_x0IwQv8)`0TJ{s_8T%Z0lMf`k RIR>o}Icw30^N*#@8F*yU39^Z*T4U8p0e!&b5&u*jvIX#{( zjv*Ddk{uY*+AbKdF)KJv2=y#&R+x~OAuF;iQsP8LWO30sP5uRw)+sE#a7L7kr)Sx$ z_xF6Qbq*v*n4N!j_qF9A9<|H&Zr-ciethP_Ctq$K4}bG)hjGZ9ebq?&t;ucLK6VMb#o5@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_slime.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_slime.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac45039f3a1afb1ac82f44e9995bd7aea78a50c GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08t`)_1RRD%+PEKGFZ= zzjHm;n*?WxGdMAGMDcK+6>0t5HQBK>7pRW0B*-tA!Qt7BG$1F*)5S5Q;#SfDMvF#< zR{jhpy)_aYi3%P2A~#>H-~8~7T;v-2L;{@Bi~=J>mIX ze!7H$%0W(1!C8fllT6e#5)+sw=$+uqown&9Q_TLO5C03apO?4)!G3%Fd>b{OZ492S KelF{r5}E*Dw@beO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_vampiric.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/rift_trophy_vampiric.png new file mode 100644 index 0000000000000000000000000000000000000000..5827541c0f1819c39da15abbb724e95d73b42c6c GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0E3#Qa2S9@72~Ru&`dH zEelehp|Lh})s>Tr)-9^Z*Uf3qHjj3Z2~^iS6|Bnylx8dm@(X5gcy=QV$f@vjaSW-r zRoZLHtfDGR?! zLWpVqMYWf@ccx6vsC}0m^g`~<_o!??zZoeTX1tlp=wWj0)a5Ku&$A7?-Z`FE*_%G$ o=&|VR8Tf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/riftwart_roots.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/riftwart_roots.png new file mode 100644 index 0000000000000000000000000000000000000000..785ee6f7aa4ad52cbbb9baffbbf4127926f6fa81 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=72xcdo5XT@qO`A>5(c z!9UYlBTe7JS4Hj2gMA=r#*!evUyFai^i0Xg9!M`DC>NO!jfy0IyLwzqYp71F4@$q0WjJP5r od&eOthcicuGr;@Ogj_a;XS;=%#F-*50PSG#boFyt=akR{0Qq}Bp#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/s_logo_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/s_logo_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..58d9c68fcdf7ff8ec4c40e78c0a106290e670523 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjsQ$mF`uPyUtp&_S ziWv^;sCDs5bO|t&aWdpFiKa0!gfK8VFfgbvFzDM$y8$&YmIV0)GdMiEkp|=>db&7< zRNP8Fz*q799&2Fv`+M(hus?cx@8ZRe4ULWY?vocxFzdLOxGW`RllY1!+h#_7ytLWD zRMy>Vand(N*SPOHTISs=W?YfscKpoU=W-2CtgN2fGDudWf44R`Tku}CtebJRkDAby Te?GcE%NRUe{an^LB{Ts5C}~nq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/scribe_crux.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/scribe_crux.png new file mode 100644 index 0000000000000000000000000000000000000000..7d32c0f068f0fb092fa948bd49e6a2bc4f9700b9 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=9bIG~Os-SRKQVWXj;A z!q9R{=@?Lyu_VYZn8D%MjWi&~+0(@_q~ccc0k#+i4i*{N2$usqVZzTDI${=RwWJC1 z7BLvlVT$lQz?04{CTw!_;G%$|%NqFvOc~c`CA4WXJ9C(=W;F0(e__+VPy%QigQu&X J%Q~loCIIg#E=&Lb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shadow_crux.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shadow_crux.png new file mode 100644 index 0000000000000000000000000000000000000000..e7f5c1d3372a8725eab3e83462d485e3bda4015b GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`zMd|QAr-fhC8j*E=a{U}x6)wY z2Dvp7{St}J7Aap7qy%yvF&+xz436Jqde~%A7RNF+p}ma(J!)>x9a^%Ebl6Rbbx4#t gz!Nb`J@pqeLpqzopr0M;`p!vFvP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shame_crux.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/shame_crux.png new file mode 100644 index 0000000000000000000000000000000000000000..32262cb4f2c6c7ea21a8ef8e1a573777273eaeef GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=6j*ySUGa2+k7ch~i;z zVzx1gJq;9PED7=pW^j0RBMr!L_H=O!skoJVfGx&>gGEL*!sP%@nDBFkj+g~nEop+h zMGVGsm?C@+@T9Yg37Z@}xG3Q0vPM1uQ^qw~32oZU&Kzc|84bMHU)c07lmHsX;OXk; Jvd$@?2>=>>EOP(= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/silkwire_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/silkwire_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..09478f60a2bc1849916cc9d7c528041786b990b9 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|G)F<{_b;oGplnt z)73NlAd%8G=RNP8Fz!u}c!6G9Y;c|c{O!zrNN6Z4PmNY@$ zA_n6*OcA~Zc+%O$giVefToiD0StFl-DdQTggf?wvXAZN~j0RrpFKqf3N&t;x@O1Ta JS?83{1OS~SD|-L{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/spotlite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/spotlite.png new file mode 100644 index 0000000000000000000000000000000000000000..01dc6a3671cbee478d644423aac76a192601b5b7 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{Q3ko$$-eA4;M$~~< zt=Fs7dg3H=D*oT8IytklwiOW*FU*tSl?PsaGw zURg%z)PsVjRAzTpi7t26ysD89FwIT2!(r|jOV<0w$9E`yf4lRIJ#!fYLt76k+udqk Qpp^^^p00i_>zopr03)nb1ONa4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/super_leech_modifier.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/super_leech_modifier.png new file mode 100644 index 0000000000000000000000000000000000000000..249d1ed22f91d3f7450935a06783327f0153456a GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08v~Pzek$t}Amnw!L&p zUsTWarm}sxg=><-C;Br+@8_>OsGW-JNv z3ubV5b|VeQ$@g?|45_%~bE;MFhy#PuMb>Nj_v$yg+w}Z1Z%Mu*e$P(}aUGiEQ2m~%M6f~9la^22Q^ uzb@o+ENET*d+Prg3VQAx42;ZW3=BK#m?P4h_#;9T|=(!TqgWLfP&;7P21o6ZU;)ntzUw V@AL14?||kqc)I$ztaD0e0syQ{JRkr7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/tight_pants_fragment.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/tight_pants_fragment.png new file mode 100644 index 0000000000000000000000000000000000000000..3db2536fcbdaa71776fa8bcc50ce3b5cc895cd0b GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0AVY^kUSCWaE=(HpyYP ztNnb4;Ycw<87D)R07DuhLkI(-0|SE!1H*(XuChSYj3q&S!3+-1ZlnP@F`h1tAr-f# z_JlJzD{>qNS@!zhb=}pEH|xi%F}-EH`?HpR8e?j*0k>eAxx}Fqg+89^?iUnfDj%bru$}DJZTatXLcLGlQ19No>gV3K>7L$u-)zmxV%@&Kk})fWSz}v-S^>}=22WQ% Jmvv4FO#q)%Ls`2kQJnE;a8Who8x04u4|stZhEl|sFblJ$S;_|;n|HeAjiei#WAGfRK z7TJb7f<5szwTUcAJU`~ncq3dr@$^hz-5VAwr%XwyUd$CB&-z~XDB}m;m)_Idl?|Pq geDKh4t9-|LY98bCRj&5Wfo3y!y85}Sb4q9e01`q%U;qFB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/timite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/timite.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d72810b4d7fa95206a8727fd1b1b0bdd69de8c GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07k~v@rLtcMaT`R(x&J ziVqr&vF1*tVn7MTk|4ie28U-i(tsR4PZ!6Kid(&>*trfE@Hk)0viNRaB|Ar-fhC7vC)?DNImb(Zm; zC;yr=Hkp<$Tm8SkXqwV_0ba|z3274)6@0cSDx6i>#j;Rx4dY4GBki04f*#Bf#Zs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/turbomax_vacuum.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/turbomax_vacuum.png new file mode 100644 index 0000000000000000000000000000000000000000..9a572219d52a739dac69be572265211299c6fb80 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0BKt`0>V#8#_BYr~53) z$jIn*pIL3&78DeeW|SYLon&NWl@0%tiVxw%t7_ZzvZ&8<>L1oyD!`sE;He^^|1*mFWfvBP6|903RL6b z`BJLdB^AuFBet;g`&ON(qpbz^cbhry6j-fxk25Q?-T2~Uj|QX8FMBR_M#;{2a?Eqa wx}(}j0cFPPdR#bW>mQzJ*vv7>yyl*ul_SgVPg55;0v*BN>FVdQ&MBb@074;Hy8r+H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/ubiks_cube.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/ubiks_cube.png new file mode 100644 index 0000000000000000000000000000000000000000..eae20511736e2d36d2f51e4ff422885c91c4498a GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9Lo7*r24$j@i^FB^E7 zfk7yi!OYTT1_J|^8H0?xViJ(S&Fx%d+zwRASQ6wH%;50sMjDWl;pyTSQgJKUf$a=$ zz%31?Ls5DnL9B~FMGaQgJK!03V-s zgXTBmrd0~JB33>N$Y7o@amA9jJ9`;UcnE26#Xn?BTEX2a)5&1umnpeRj#bkuCRL`& z>JdYLS61PfnZ^z)J)?r$&%I$ZN{f=*InR#4sIaf_g=9zQpAhFapk_O zZ9k_x`7dmncXa)EeV`m;NswPKgTu2MX+Tc6r;B4q#jPp6u1pM$97T;6|L?D`>Ob9T zutENZR35L8p)A8Pm(u*e-s-J~csv$19{ORZFLaUV#_?ZsVrQLKUsN5-n3m5WBQE%y mb7^LD&|-^iZ2j8GEDXm_F}5y{xVQ&s1%s!npUXO@geCxAlt4TH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/vampiric_melon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/vampiric_melon.png new file mode 100644 index 0000000000000000000000000000000000000000..f848dfeb4df6671b221158c7d6512650ab564b33 GIT binary patch literal 603 zcmV-h0;K(kP)F>@S^D=aKs8DbY0M-2{<3V#;>0004WQchC`Nj(vBF<+eLCiR6Z_dq~kQVT={fTLhi3!sWAOu(cT@(`GCsAEzK zJ{^Q3KZHpwAfyOGN=<4ZBzTEaD=?`Ayv<8Nj@+acRKx(qm`N=-0k{LeB(wm)aZxg< zg=kblKVmScClbUUs+nOkF7Y-s0n3c2!zEWYg=v_Ppr)V0yjO&Vnme54Zmk z_vGf<$JHa3oZNWv-0Gp#JI8|emkXbs%&ECAm9o`CkMxgwUE*xIt*?WsxwK)I)002ovPDHLkV1n6b1nU3* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/very_scientific_paper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/very_scientific_paper.png new file mode 100644 index 0000000000000000000000000000000000000000..be9e6c9c08b35c13f19c59929dc114a521f521a2 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=5#}cOBbax_49I?0&x~ zeNoNjW_4vQ`bGJv(JFxf#{U@@CaS8MTd0KbYW)GKW-JNv3ubV5b|VeQ3GsAs45_%4 ze1PwU(1M;6bB?*sH0Cf&GtiHJ!MP~7OE0w3HzC2paLwLoFO|uSXLlC9ycm_Z;DiYG z%FWXqvn=MCb44++HaJ~NbC6PbVkVqrFyj~t!)h6kJ2kyFuYu+>c)I$ztaD0e0svMT BMtA@K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/volt_crux.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/volt_crux.png new file mode 100644 index 0000000000000000000000000000000000000000..e15c030f651399b96625bfcdd54ad6bba4c4f1ab GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW1=9b2Hr_bLuzE2=QXGSm zJ%fwyZa$zWV@Z%-FoVOh8)-m}v!{z=NX4z>18gx494s=j5iSRK!i1kQbi^#sYDp91 zEn+a9!xZ6rfG3?@OxWb;!9@W_mo@SUm@=->N@&w&cIGf!&1m4o{=%kzp#;!422WQ% Jmvv4FO#lueE_wg} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wand_of_warding.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wand_of_warding.png new file mode 100644 index 0000000000000000000000000000000000000000..7fb9e56a1cbb13d4cae7ca6a4b67b6c314316af1 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A`XHD%@hpBi%9o@SyM zesZ1Z>UaPDExCO~H7Z=%-Nm%JEMeb{!bi=2fl3)mg8YIR9G=}s19B2PT^vIyZpEGs zXKG;JU<#Nswc`KlZQp+fGb}&Wr5&^7VB!TUy+)>xqBZFUCtlhk$E088-`bsC`0Gxf z_Lt8F{LCWk-rbMiJ^of=e8Tv~zopr0QJaIW&i*H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wilted_berberis.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/rift/wilted_berberis.png new file mode 100644 index 0000000000000000000000000000000000000000..18389765f322879c05d6f736fc02720b7f924f70 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4FnSG8xGPj{P=6{Mc8 zn-lFK<6|Lyc&7S!pd4dKkY6x^!?PP{K#sMii(^Q|t>goYE(=VO4Wy@}KH*4R(cr1Z z##kyYaMBjygFV)artfwOZK#XQntNRg15YOK=mg{|9&t-)mXa<&cK4O2v> jI`oD%8%oFo#4<3IFXG&m1L-F$cP`oeSfY_I>an&8g#|ZZDR0r^>bP0l+XkK2J1kq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..d7c44811a8c5c4e218604832df0329d5c52da9bb GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xCrN zF6DemIXyky;6Hm&Wj)P^WA!s*=tn_!)gb;K4qa=R*~sJ8V%eIS*m=Ee-~^C zlVUAm*E_Vh-Hy9hHZ79FJwC+fuFVdQ&MBb@0PR#h A!vFvP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_green_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba4d4f890eb27e7f0b32ebe0ec1dc7812c14a69 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xE=` zrED}^Dm^{j;6HYarURujjO9}K4M&{CV4<>!sDXOBRiNLsfZk4Rrork`#@d5 z*Li-8cN)7t+&FB(-R-pLfD-pZn>kaW9xPd!dBc{ELG3D2unoW5GoWn@p00i_>zopr E0GvZfLjV8( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..c6874a02f991ffe078d0c2a9ccbe06f03e9ac9de GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xE40 zV8OL(*V5C||Ni|eCMH(;Fnumi1!GB&UoeBivm0qZPMoKUV@SoV+*7T*hZzK%FG}$3 z`hS48c;5woxqX}e-Uz+K8WL>BSr#%y_uYiRNsKy7ma=>kf9N)pqy;ggH(ZhAW4i5l zajtLUorcW?_Yda_9jly?qW0$Z64|m@Qg+ge%7IL-RuM}zfHpCBy85}Sb4q9e0FRbM AHUIzs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..09ee78d9fa8c3caced77d5fd0803c6c2d329485b GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xE40 zV8OL(*V5C||Ni|eCMH(;Fnumi1!GB&UoeBivm0qZPJ*Y4V@SoVoKvm54Gs*>fm!Om z`FpHQe#Kk;Isa{S_SC!uR_DbJ`uT1>%Ivi&g<-XWUZ1j1Evv}%AdLoYhb&dT#=i@; zgh{a$vFjaL+-}ERESna|;T|7iblCOuvc&He3@W)yJ}W#AX8`SD@O1TaS?83{1OR^` BLrnkx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/axe_fading_white_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..7a345bef92af83a4f2037b0b61837bcda7d209df GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xHbc z?b?C`3)0im|Ni|eCMH(zQ!NBk!B`UH7tG-B>_!@pljP~*7*cU7=Txg;gM)x`U{baF zf8NLECL`G2$S?X@M+E6)B@x^Z>Y%}0zY)g%vSO?X_?d1MFEBNdSYtO{SJbRVb- z_&U$8@lIp+hZ~12xVxP;9Z=$aXftO@)Pp5UGjG`PF{oW-3bx^wdj_@x=y*d)SPH=~dUoSYOC6VirHqY-{lHU&ICw~HRYU{SN{C&#wGG6lIMP(UA Ppv4THu6{1-oD!Md literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/blood_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/blood_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..4355dc497376e412d0cadc2d6f8faafae7cbb4e4 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfuT= zt^Ged{J6Qfj<&X#n3&JH+1G(87)yfuf*Bm1-ADs+5hek?^+%3)aneu%z&x22Y{-$K@azBn zd!fz~s;qY#9(!T#r78bD$~BHHh*#A;hx@_}#cy8v$-0NG>YYwWU|ia9?5OVP`3Wly zJr!V#S}l6u4A1Ql9hJ)Kze4*K{CmGOdF898MGM)V^+-JXY4&KkV-L?4Vd-VQ5?rfm Sb3XvBX7F_Nb6Mw<&;$SxT~J~G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/clouds_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/clouds_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..42a98d99892298cb15d3c5afc201d83291751918 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPxn4~QeoDPgcmQw#Ka>1>Rbn^U@Qsp3ubV5b|VeQ$?|k@45_%4+tbR(;=pnE5|jGx z_rKn)J2>@!%CqoT(SzM9j4QJxC-jA{H&9{t_OIdF1Lp>rW9|+;a~-Bw$XUJ%jBip} za&480uSdg^3_cEr6HX6$cgUzDr``~@nfdwGv3c^k+y7-9*mEG>&niY(vEz!sZJ@0T Mp00i_>zopr0A z7cbJ&)BXMZ9i3dw%*+&+zdrz~U@Qsp3ubV5b|VeQN%VAa45_%4d-gh`vmu9b;B2+b z|EF|m`ZKO2E67)yfuf*Bm1-ADs+QaxQ9Ln?0No@8ZWP!w&E`J;QC{`63vV%Pp29n2azcv;&_V`JS3j3^ HP6F|m`ZKO2E67)yfuf*Bm1-ADs+(mY)pLn?0No@`}gP~>sGxWsqj z-|M#Jjs5l){4c$ieb}eoZz_8v_h;Ri8P8v`Y%bi}$Dq!fvCYVE@`(t>TmO9Kq$l;h zOVQHwxF)PrG%2I3Nks6w^wf7s@(y=9&i_{N{@F75+J#)ktqi<#Wn4d>2inNs>FVdQ I&MBb@0EE;_p8x;= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/couture_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/couture_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..23c0b6a894fd79e861ffb6a52abf3deb3fd4e1e0 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk-I1bvZ`x|Nd|>F|m`ZKO2E67)yfuf*Bm1-ADs+GCf@!Ln?0No@!-mF%V$AXrF!O z>wUdk!AoUg}i6;{kjoHp}@+?3qQ+B<0DN!C2fAa7lJGqlP9^4f6@k-Z>1f zQm=}Cn<>49d1;5{j`eMWXNX4z()2u=)1{}_TPE5J) z>+giV*!Ab44cqVeOV-czyrrGCRNS#k?BaWYOFUc$#0;MKu-@Hh#-QrjVBR3JVmjl3 zZEJR&=&Ri%tC7lg@b$uI1y-AdOE|y(Rq7A?u;|>sGS*KIS(Lt9>S6-g$KdJe=d#Wz Gp$Pyey+zOf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/darkness_within_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/darkness_within_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..8515638c77ccd60f5f4fcc34e47997607f6d5a71 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oH*&Bm6V zp5D&D@LF42M_XG=OswX^XOIfUk|4ie28U-i(tw3`PK#2>;FA|N$sAT@9_SG>x3MaHP$nxxG~;f-QqKSBiC&{2XEm3W(8(1?gX(L zuVS|J-F@=ceTCE0D!B`UH7tG-B>_!@pljG^)7*cU7w~LjD*?{8+Q_S1{ z^>f3X?b{O3@ZaOttl+K(u1kz}X|kWWW*Ys&*FmQ^{Y?iBAJzVd9283K0GeczM` z+?-Nuw3&_RgH!nPZO88zL>$(LE_fA_{qeTCE0D!B`UH7tG-B>_!@plk4f?7*cU7w~KX=v!cKeqs=EC z|11A{NvSkH!L~+y=@+x-G6$PaxL-<5b%=Vt#^A>yotr&7&n;G(IxCnnx|hX=`7mEC*S#BBSPB>PaCU9UpaOLWQn R&p?YAJYD@<);T3K0RW_6Q+NOX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/enchant_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/enchant_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..1049006bf7efa58627a58ed128117b4197e8895d GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfx#g z?b_eJf46VnuA{9jCMM>0f^8*G1!GB&UoeBivm0qZPKKw8V@SoV+-_DO76T6E&MW`^ z-wA%PGiT~tm4C`Fv$vfzcU0fCa#zFYeFr6_SFHZJF64HDWmIo*Qf^~UNwlN}<0i+o zk}DdN6Z;qU8zwP(tvj^FX_Et&K$LdiGLd(U(`V%_sR;J`^OUQ*gyo<3q)m^2b~1Rn L`njxgN@xNAhbK;3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/end_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/end_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ba48274d2ec757684b6b717d302c8e5ad15449 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd}&g|8?>I6%7By#Kh*N#gzb6FqQ=Q1v5B2yO9Ruk{K#n(Sw;nMVKcbVUEZDwQo;1vFR+wnUF5r;LR3tq)!e?8ZIP3O>=y|o(qJEvP6j`!1fBII6%7By#Kh*N#gzb6FqQ=Q1v5B2yO9Ru+|L`!NgZgN~J zxuQWiv43&DVG^^~x>u6M5G-eOB(0ieS$_Pr15FSpJDm+Vlu$CxfS} KpUXO@geCxt%uK`p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..3ae9ec5edfd0edf0ddf6b6febc909f4ad007aa8a GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd}&ge+9$;*Tw(E#KiI?L?wVK7)yfuf*Bm1-ADs+QaxQ9Ln?0No@8ZWP!w&E`J;QC{`63vV%Pp29n2azcv;&_V`JS3j3^ HP6sGxWsqj z-|M#Jjs5l){4c$ieb}eoZz_8v_h;Ri8P8v`Y%bi}$Dq!fvCYVE@`(t>TmO9Kq$l;h zOVQHwxF)PrG%2I3Nks6w^wf7s@(y=9&i_{N{@F75+J#)ktqi<#Wn4d>2inNs>FVdQ I&MBb@06=g{6#xJL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/endersnake_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..3444e0af92972012fbac026d11f205ecf3ce2c7a GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd}&ge+9$;*Tw(E#KiI?L?wVK7)yfuf*Bm1-ADs+GCf@!Ln?0No@!-mF%V$AXrF!O z>wUdk!AoUg}i6;{kjoHp}@+?pQPVo-nE6?VbAz(M%_f46= z%_+r3o7tE?IE6pocKnV(#9@u-f>$xwU(a=4(>ZizZ>`4u&goW%*}Zp7%(ibyvJbV{^(sWYM3>C} Q478ZR)78&qol`;+0P4O_r~m)} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fiery_burst_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fiery_burst_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..d0a418e09be65a2539d392301e693e03acc2cc83 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfvf{ zsr7$<_~jTu9c^tfF|idNABqB1FqQ=Q1v5B2yO9RuWO%wbhE&|j?Pe8XG2meCyz=k= zo!}QcbEeK!`KSCcd)rBKNA+DRcQu^ecTiG##p+|L`!NgZgN~J zxuQWiv43&DVG^^~x>u6M5G-eOB(0ieS$_Pr15FSpJDm+Vlu$CxfS} KpUXO@geCx6SxkBW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..4897d2e1199f87f32fe5cbbf57ec789425841faa GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd{#MzCv63e|Wf;2an-RIx-75rE~<=>ltj@q=x%xqbWuiklQCoI6n<*fOtkkI#+w z2hW^)>%Y8DfFUeU#N&$UmC0LL6J|_LwVJCw@7P73UI}}zLTwvw-uks0j*0P}n8vdN PXfK1OtDnm{r-UW|k<(7j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..8873d911c4490f33f4b38031ba424473577f5873 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd{#MzCv63e|WfFVdQ&MBb@0Dpu|!2kdN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/fire_spiral_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..e21362095249bf5e4f1727a154f12a14a9e29183 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPf!0J z9=<|b`?$Hej<&X#nAl67Mo*v$#*!evUmdK II;Vst0OX!dV*mgE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b1145d33d8f3b5579ce0d8a07c2a434512818454 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xE=` zrJSCgZt$PMXu6b`nAr1UyIX)N7)yfuf*Bm1-ADs+QaxQ9Ln?0No;}KV)PRTiLKoBT z_t6D*&3Sdp-qz>TUtQ~&zo6`>e$(7(Hy$zXs-DiM(>Uka;t4aj4escFG7Vth^oVMZ zitv7ERS~oJ_TQG*+7-GXY9ah`0YNR*f0fciY*udidzSN^8;ja@E+;Rbg$$mqelF{r G5}E*qT1WH% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/gem_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..7ae4c0cbbf143d9132c26bbee51e6694fb98266a GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oI8KBb(V zo^J4;!Dzaaj<&X#n3#azDq)}s#*!evUDMioh zI(jl3H*E`8RGpc~!@zd3_2_le1MCh@CO=?}b-T^j>Bar~!&J|+5}nHS1+RJYnEB^y Tt``*tTF&6<>gTe~DWM4fzP(F9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/golden_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/golden_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..4fdbd2b8f37318fa9c5e5f5100cce2b026263cec GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk(yC;Qz1ivvbA8#Kat*E|>^Z!B`UH7tG-B>_!@pljiB-7*cU7_bfLTvjPvx#knb= zd;ZsMWs7Qg^x-bMN>%#r{O!|LMsJ&}pZNXS?ztbE9~xeAcp!l*Oom=`Ri-{ zxTt+8W|fQ3D?43tddV z-$xhNHRshWdt0AVe|4>A{(`cj`b~4E-FU>jt9m-4PUDUC z@AhkgY6^M19PYW#oqy2wcKvQs&i1H}o?8~X-k7!j!rk3IMdGXYY(9tO* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..1474abf9bb2519ba01c80d4e49e6aff0bd3887b6 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk-I1^?!f(po@b5+0 z|Ih0bo1FLRZ~DhC`199lqy3E8e3DMN@3g~?$gPNo+3{)T@AuP0kGWWgFMV@Hh0i6y zx6$#4?1`3BC!7Oq8%-sZjwiA$+Whd06yuV_B^=-XcfXMBD!S8l_c4RbRDnsI9yO>|NsBG zYsb3OAgyVNFVpjS|0vwx*{kVc?si7~VzoZkfnLVyNd2^=dmK}u-us%xa86*gWIga% z*X5_>O{sDwb~QhCm-yjYjO=P$XZJZD>;qcN N;OXk;vd$@?2>?fMMos_# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/grand_searing_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..55cafc9aa6d1d1db6c87aa4a70fdff49330e7a8c GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oIG-KmwH zp8kJ-_~jTu9c^tfF|md}#yvn4j3q&S!3+-1ZlnP@37#&FAr-fBPqp$MW)N_`D8aYu z{{i0OeHZ-Y_D%kBL+}Z!M6ea-C8ebI6J{=B&|zApoKp69JHwh2JdC!?9?qv&rXA*a z8X$F7+9TBN+XrS%hYjL0Qq$dvfc=#Kd&%VvB()7)yfuf*Bm1-ADs+vOHZJLn?0No? zkN@$9zdbu-(fVrA|JlX=ZXGvdo8S95XJ6n1#f-bZnWs#3Et?pmT=FO=G5nj~Qfr@; zkMCU&o4#F5E8<`1%6ERPPygAYoXW&tlmfJs N!PC{xWt~$(695;kQ2PJ? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hearts_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hearts_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..19712f9807dc3c690c0f2bdd2b13dcb4772fa73a GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk-RM`)|>$dvfc=#Kd&%VvB()7)yfuf*Bm1-ADs+ay(reLn>~?oN6s(ao}M&7$dvfc=#Kd&%VvB()7)yfuf*Bm1-ADs+ay?xfLn>~?oN6s(ao}M&7xcJVZ(wAIi`Q2Avx)N> P&|(HpS3j3^P647TZX2Kq#*!evUa1ATRuc45`&$Foy`wla9S L`njxgN@xNAomoj$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hot_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/hot_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..035e2f4c0777ba780cc1119b2267e708aa891707 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07iw6VuVwHZwDGbaM6g z_fJnx{~sQH+}wPHwzkQ^j8#Atj3q&S!3+-1ZlnP@iJmTwAr-fB&$=@?D{{C7J{2we zFWom`-XH775faxuf6dJO#Qb9NJ(iWOJ?c-4G#PXg)@^lhOE6RTzB7q2kl|CnEr)oG z4SRz-DjGsQ%{lI(FJQ#&)%9V|heap;wk*qvDPwl=WAairUSAKijKR~@&t;ucLK6U! CjYUNO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2bebaf621cba311dcd255604ce069a89757ca4 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPfvL9!u#Y&g;_hq#Ki84ysZMNU@Qsp3ubV5b|VeQ$?9gz4dDo~j8ZogY-`USt{EF%B8`+&xvX(FDb4;#i*bz8K zVfWOINvfqD4AbXGc;tNAcX3tFtDM*}kB{OntY4=8Umg`xN_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/ice_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..33792d4792ca91cf772532f4fc77c42971952db3 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfzzg zc{1U}3x!!bbhNd_#Kg|N&ddU;U@Qsp3ubV5b|VeQN%3@X45_%4dx}-;hyw@n1-AuX z{(X;?j6JLI|LG5T&-l&0`xyWBux;hu@m+dNV8ap)E(h^|b3B{4!r2wxZfVG3_~fI> zdxq&{htI;Srj+>`pFL*Mbm+*qutYE{G5F}t1;M93n)4qDXVzbPi|0GgJ_b)$KbLh* G2~7YAok{ut literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea55d9285f48f3119d71ed340944ed92259481b GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Z1A7KXu6b`nAmkqA9J7z#*!evUV-uA zJ9zF{=INUCvh17hPy7FVdQ&MBb@0Ip0;GXMYp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/jerry_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1864d58564b6c53cab7ceb36bb4feb2b19768f0c GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xE=` zrJSCgZt$PMXu6b`nAr1UyIX)N7)yfuf*Bm1-ADs+QaoK8Ln?0NoMz>7G2~&sXumOd z$Nx(4S$fT_pH<}lr~h6ZJ^7wP?pggqayyT7sasT=Z(!XiH&gHoZ_lK>4yGkX-f^z! zTYSyw`DsS$33F$vCFRZVXj9kGd~{F0ONLcHYB%5Rt0qlPU12ypGz7Z?!A3&Oi#1bI|An@ z?4H^&Nww62Vfq{ikDO2YF0KlCl@nX$@lpJR^~?1C%R{1{$KU^v!IV|TKT9=}Z4J;` N22WQ%mvv4FO#o4jO&9WXNX4z(Q>{*TfPk+dJ#&7oB$N0C0Z7cVV@6u}m8>@kz3Lr2DiC4ymz!AEy42tNJMoc~Zbv;Nv!Jl}!#F?hQAxvXRSzwo?AAb{&5$C;al=Y}%XZZT^=5Uh}N zg)3!&SNOv_JfAKy9R5>u@R;UXS6PnptwBMLj_#i{{liqDvJUGvb!;!|Tc7L$+R5PQ L>gTe~DWM4f1;bAw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a00f1d393193851e55b2c01ff830ea2a9f299a23 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd{#MzCv63e|WfDjMC?3k>4J^v$r|qb8o|rgZG8r-Rzoe*Sf~2I6>r$@v2K9H{BG%U3A%V88@41 zAL#Xe`9?#$u};K6z;^D0(v0e4KAE?zfl-gn%1?S$#cjS)arX|Ux3AbfrPw}u2DFvI M)78&qol`;+01hHdIRF3v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lavatears_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..cfaf7a09c5e4e8b0c111b30d2dfbe965e0d02c61 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPftH? zZoWcW`+s=2j<&X#nAox(=6`@H7)yfuf*Bm1-ADs+@;zM~Ln?0Np1I1%WFX>v(c|sg z{n~k=GVkL3SpRSSyES;yJ%^Rg#V?+7Uh}OXW_8M>;1zWXudTTzAw0v|YwL_0W{s&o zxlitEy?0b({R+_rN1>K;)4B2(mC9K3FQ_W|IxM&>`uR|c>re~LEUJ66v#P~6Y8W0hi3=oKGajovL@B&K-2@i zuWF5_g6&z-Ie9B`vh6oiU3lZuI9=m%S9zU=^vAGXzMYI$&a*tyy}+gbw2;Bm)z4*} HQ$iB}wWCW= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9231c39867bdd892a31d8c6c3f53b5c68f675bb7 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk(yC;Qz1ivvbA8#Kat*E|>^Z!B`UH7tG-B>_!@plj-T=7*cU7r>B+ihyl+LzqSMa zUW@(Z2@Oz-6&AFg_i~;2JoQ5UtF4?r^&afeda!(5($pJkxDIWXeY-$!rB?KM#e~gw zWEX8`Ii)?}W;9D$zeCTopGCfRnC~&3<@)%c{KTyl2edMh;?`=bN}#0- Mp00i_>zopr02Jd-(*OVf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/lightning_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9c10db8eb270202c69bfda80b21427b367b70ba8 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfve( z!r=d}@UwHpb+om`#Kaia79IntU@Qsp3ubV5b|VeQN%C}Y45_%4dp45ES&_pzP+x`b z_x*yS=iZ)9omw_inlppRx>DiNYM^Zlp00i_>zopr E06gPJ`2YX_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/magical_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/magical_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..84fa6383263ba3ef84c885e64136d3512a20701d GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk-RM`)|>$dvfc=#Kd&%VvB()7)yfuf*Bm1-ADs+Vmw_OLn?0Np18@_;K0LlQPrX6 zulSqV-Ji|Zf1UiLa&`^F-X*gYQkSV7V{P8dk{}!)wCi{*e8F?hQAxvX_!@p6X)sT7*cU7_f#wI0Rsl+gEN?Z z>&HCXcR_vnf0e!4eD5{PyX-n)QbdydLd#HwFvh28q2Ky8GQCm~yCBXGxmdE{uY*-* z%f0dmIrDe(OkiqBX>=7kRJUWra=n5}K|gbugx4~8y-_yV2DFL6)78&qol`;+0IlCg AasU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/music_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/music_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..c391b44a5ce2d57d392f52cbb1b27505bc43c31d GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPfvL9!u#Y&g;_hq#Ki84ysZMNU@Qsp3ubV5b|VeQiT8AI45_%4d*V3b0SAsF4lLa1 z-|w$4=KGcT#@=)N`JNq)Pv+=3t#TEqa|m_iD45M_?l#$N!?uRj*>KFx9jxuL&;cpKED)cO_^j^2q%wZ-_h<9dfN;OXk;vd$@?2>^N-Kf3?` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..181906eea0301fb1869003196a6b3240aa13cce5 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Y&2cU;6HHbhUwQ!@Q$RS!@$z|1uuBkl8?zEOlTW7PVmY8i44$rjF6*2UngCOzK9v9f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/pestilence_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..12f0b5e66703b1f17669db322ee768b20c554207 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfvF~ zrED}^%HThPj<&X#m{`j8Q$|1)j3q&S!3+-1ZlnP@ah@)YAr-fBPqp$MFkoOlID_f8 ze$2Cd7u2W!SJ}JG_g=%i%dQh9MI_lTv#h3*rosizOTWI#_kK z+$*1uGk-VF1g4ghMpv;zbvsrp*DJUb^fQ-9crBCH8)cJiK${pmUHx3vIVCg!0NYqZ AF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..38461234bd75fca15cfb98fb7b97895deaa32888 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08ubGt<%5c64&}_xDdv zPyhRufdPoFUAqRP+kyD+wL%7l!fOl(+Znbqh>3~KvpENpXJ9M|@(X5gcy=QV$jSF~ zaSW-rm3yj@?XZIY+rycA_lk7v`5!DMvi7uDp;idn4}1IXsn71e+iSWm%KnrmlNn3b zs=w?d_xK9<4GJ~}p7LU{{@ZN$zfo{?s8K?#5QF~biLFeW5zR~6o-^La(KYS8(GcwS i>6T9yr?_n4ZE+=kiKZK+?z}*&89ZJ6T-G@yGywo_np7A7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5068d07a8b8726b54003d4da373fb7a6a271b4dd GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08ubGt<%5c64&}_xDdv zPyhRufdPoFUAqRP+kyD+wL%7lgzXH4*BUM>3_6|XTrAz z6?2Yr-%ff(Z-{N+Q9Ty-X1BdV(A3COk1&Rv-%DNQPU2!YaO7~L5`&`fBlqNse;qIU tm(Ec?7pqw`{miM;o3?4&OcCB^#W0aY;Ea;UTL+-^44$rjF6*2UngB-kT$2C* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rainbow_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..d6311e3b510cdffd65a754db179264a0b5b3d898 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0F&C7li+|Gca7c#_*Tn zf$#2Xg$xYa8ScrgPft&0D7@zH@6V91-O*OU^5i5lHxM!7$N`UH?SweMO+H44$rjF6*2UngFe#Rxtno literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe39d42dad4fe5b4e2c7c3aa6596262d5f8bc19 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd{#M{y#i?g|@bsm>47TZX2Kq#*!evU2q|3r zEq`OL?%bdK*ZP;7&za1>V0y;#2)>5DX>V9pgm~(1;f&DJmTW9!UUEr~aU+ujPr$Oq z#ST{9LP~rS#CAS2YZBRTSWo-mJpL}(yr@gNW-_w47TZX2Kq#*!evU9mZT#2%950pkwBPJo$6&k2*O0HF*0_vOD>SHiTEo*#lLTLIPw?8!a)f1rsmA34 zniI}VYUyCUG{Lz4OQ7I}#M3Hse)>*)dtl+j*Jk`26PR?eZZGr!TE^h%>gTe~DWM4f D%^pN) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/redstone_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..d8b043674d8cf1cf7fcabbf9a3d20d8f994b13de GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xC?; zZl0c={y#i?g|@bsm{`D^v__x`#*!evU0_L! z=hzopr08sTn ATL1t6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/rune.png new file mode 100644 index 0000000000000000000000000000000000000000..c33766fca9ca4acf03926649220dea7517cfa452 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME08ubGjnuu_4oHrPfyp; z))o^JTY4z^6HtP&B*-tA!Qt7BG$1F|)5S5Q;#Te{M!r@99;ORSYrpT`C_m?;wDBgB zhrPGlFD);hte;>VHHCT3b=GuVg_WK&)wmy2m6rWpxAvBxfxA_vA)^QXljuWdcqcu5 pS=u1-p+U8!et%}1fLGRRd6{F({XYUfW&?es$>5S2Ci1A2Up}?^Z>18 N@O1TaS?83{1OTh2Ond+U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..90423174a6f64a3294a8c1ed99acf304105c37f8 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Y&2cU;6H zZr%R+P}qfki>G`tz5eRowhvlUZg+7htdm^#a+&J&n+0K;U6|*Zi{;D-+LWi`qM&*q zQoBW@w)*!*i3=;L)dX%Hlk_yW6(Lw?b(6dJkgUS<<6Udd^G{2tFJ$EYDE0DS+df60 Oy$qhNelF{r5}E*5r%Yo2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/slimy_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..cfeaa9ab33afe37c27006d0f2c513c5f6fb05fa7 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07iw6VuVwc0Q$SG+oNz zKSO$Yy1&1_qm!$dnb|7#$#a1!7)yfuf*Bm1-ADs+;yqm)Ln?0No{eN;QQ%;@ASAr= ze`|Wdw^sYOm9OhP>b|aeXZ~VWo4%0cp+5Ep3uaGBs(LKr-SVx0tt&|4%3Ov`Dm$gM zCN5EWXW%}sHuo$emqCP2RZT^Z00$Ro3>FVdQ&MBb@0Hv!! A=>Px# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..fa53d8b0a6c7cdbb6b21fcaf34700babe6e14fc9 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPiLz6Z@=$9L*PF#F|mMsZv8+Nj3q&S!3+-1ZlnP@NuDl_Ar-fBPXuzcDDp5rT;{p@ z-v2%JIl4_7Eb>3!wDzo*cf8db_)=&|NaqXoASqAA494P~fJ?Hg88tMSYM4)O_Re8= zm3meD+f3;-%u72ocdTz?4LZ;`&DWy-q_p1KH#hlTaj^(mhskgPZDa6s^>bP0l+XkK D-8VyR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..675bf2779aa90c946b8369d137dbe4c72407d774 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xES2 z`JbMiZolt8L*PF#F|n09t9*be7)yfuf*Bm1-ADs+QaoK8Ln?0Np1aD(Y$(8dQQABE z#s0es^msmRKfmMe`ES?n?Eb>`>iQq0H(e2L`BM8QHO2`lAhvx;-qbQjhn&nmN>AU5eC<3xe=KmFFGJ@Cx@eVaA*D61UjUM)_beGHzielF{r G5}E+B!AwB_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/smokey_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..117d296fb73bb552e53c62a1b40f2a7b8dc4b0b1 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oH@s`;Ou zo^HSIKSSU@9c^tfF|oPdp0fj0FqQ=Q1v5B2yO9RuWO%wbhE&|jIn&C>Vkp3Lfce_G z|7GzfcONm!A7J2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..717a2a72ae51fa2775a7175a688b1cdb86f23164 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Y&2cU;6H^yjbAL8{nZ@^LTakU*na?FoM|Q-yHv}{EM9iGwxg~<})<35?=}Ema zQ!bmT-JGAWz4u6mu*&W4(zeE~_cokzv$@ZIlvjQ2!dpz6r|?dhoX{cyw2;Bm)z4*} HQ$iB}3`|L9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..540bef60cc335532cae0e11d26788c2736b77a3c GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Y&2cU;6HANHyDo5~)^{aJTr#`Bjfn+x~$F{m?VY%?;Pd?JGJ)<2&)=}Eos zQnWNZt_dp@P0A>15)u3^J@uWEyu;m&^S@QRf3{4%b|IH>D+BLb8Q0I}fi^ODy85}S Ib4q9e058)?QUCw| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snake_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2c905412c2969beed25216449beb2cc7862de6 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPj^10Y&2cU;6H8<- zzOSoU{z<2pi8kJ36P#H&=j(A>g%z_Br_H<}Hz(z4&W4Lq?4%jD`|vKEV9mJ&XeooI LtDnm{r-UW|txQO8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snow_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/snow_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..1c735ecb70c812f36717547ac8f9147747680011 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPyhS(@3m{!wr}4qCMFhp0f^8*G1!GB&UoeBivm0qZPKu|CV@SoV+*7P#M;thqFSsrE z^6z`BWb9du|4)C&d&Y0}-N*R1hixnOj_=ZI0vncaa5;zvoa5QV70#~kc1uGR!zUk2 z-ZM-uJA4*qHKoko`0O#0rb9=@g(ZSviNQyAE(kvT(VYKKIJ5rRTRh)^_Az+6`njxg HN@xNA;Fn8N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..897d4af9a60b5cbf7ee3933dc387210924c2f948 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd}&ge+9$;*Tw(E#KiI?L?wVK7)yfuf*Bm1-ADs+GCW-zLn?0No?_)Y;2^?uv2p*T zd;d4|UWrvd#rS!(v@lx?TrZD*s^J15y2NGJ=6pBdP zoF!PbLbvm)(Yc0(x7`VEw#qcP33_^Ml8#7KjICCW-*8E2zpt2zfLV0JL_VOM44$rj JF6*2UngA&ZM@|3$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb091608e2d980104c323baaa5ccca8d26cb704a GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPd}&ge+9$;*Tw(E#KiI?L?wVK7)yfuf*Bm1-ADs+ay?xfLn?0NcC(5x8*n&#uDJJq z-RFascK*%!$Ng=7(5disSO5A}h(2Amf_aG@L(EIN*=G(!T7@tNI;b}HUe0p4Dt_X^ zV!?vFiOc-%dvzpuo!|}^zg}=mOCr}LZJyt^B)=WZPyPht)Yffj`TLaVWxV9ai^?*L QK#LhXUHx3vIVCg!000?J;{X5v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/soultwist_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2a81ffc9d3cd80b50dae4ad3db12771ac83fd74e GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfuUL z@c(u3|8qM3b+om`#Kgk>cWDDvFqQ=Q1v5B2yO9RuBzU?whE&|jJ=My4m_fk#q6FWr z{|9)Bb-rAd->3faW9}!WFD7$ac5-;XVGeO+j9>|I>w0r6pD`ru)~qH;2e-7F2gD}y zO=@|^t8)9ee4PR-N2u``BjIlk7Ob1`U`gfS=WZhHOaUsBYm9()F?hQAxvX^Z!B`UH7tG-B>_!@pljP~*7*cU7_e3Dq5d)qh0jG`q zZvCFWeM6@v%d}Vi`ujHj{T>=LCq!HRkX-bdn#3E$Cmgt?il?<3?UYV9sdR$ZLww$2 zrfb$={zru+UE1HQI-PQl*L>2$)@iNWXI-agta|LPozkik@IMWAgAp00i_>zopr E0G-%K-~a#s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..27be97b01bd4eb695a4be1573d16b4b66bdaa5c5 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xFE# z!XQ08{r|7oj1vXc|MXj%_P{gq_ifhLqpWhAd$l-$_Az+6`njxg HN@xNAIB-oH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/sparkling_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..71c2bc2489ce898f9586d4112afbedb08accdc83 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oIGdcq(* zJ^lZ$@UwHpb+om`#KhcFLhk}qFqQ=Q1v5B2yO9RuWO%wbhE&|jIn&C>Vkp3Lfce_G z|7GzfcONmim@HtnbVcL3PMQa)_ckiUhbrxyoA3aKZTyXQDMU3%}RHlrb{QcjSD}4mo O%i!ti=d#Wzp$Py4bWMu@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/spirit_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/spirit_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1c586955ac8c45f6090fd708e77805e1322da8fe GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPft5@#%aL=b_C8* z*gdsll4_|3!}K{49yy=(U0fCPDkrwgWs>zC>Omxn|@kH7yTgDIt@v6G#a9_Bg_{~c{S@+OYz0)ZPj7vL?9o0QOKVik8 zrvi*ot3?l-;kg~6qf&YOS7_gYfA6;@uYC2iXd(Nv9*Ji^%^pp6?BV$$EWONEf@^hc R?gyaN44$rjF6*2UngCI7PbdHY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/tidal_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/tidal_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..87120e714ed6c2b3f6a9141df291d850d4b14049 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPiLz6&k*>}e&2sFF|l1szdr-2U@Qsp3ubV5b|VeQ$?|k@45_%4+tbX*5+HK;(zoLO zvFFV``}_;``nf9Gw_;+|vY2Rz34P(~CAb*A{cHI4z}cbiqo6>t_yt3mQW5r$vIQ<# zYr{N+xf~v5@NqbtaC*@D!ds(fYNCII(etmpw)RnZwV#sW9_XvPvPD_mH7s&q_)47&Da~5rrZiu{b_4S3z-8eqo^E^)F_c0V&3kAirP+hi5m^fSgQE z7srr_TgeVgF{>B!gv#z#?2$ctHbLzCst<4>P7L z+I0RVJCDun{?yVrmh2&ut_5y=^~P2~xi<3HtlbW(HOseOZII-7@AsbZWJ6?mBagvr d*#I^^2JJkZDXmpAS%8)@c)I$ztaD0e0swJXRA>MI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/bark_tunes_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/bark_tunes_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c6fe87bd9b0cd10e4b87f48f69acde3e0c29322 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7FXp8j^J^z}~v2NRf8 zH+>PD_mH7s&q_)47&Da~5rrZiu{b_4S3z-8eqo^E^)F_c0V&3kAirP+hi5m^fSfE( z7srr_TgeVgF{>B!gv#z#?2$ctHbLzCst<4>P7L z+I0RVJCDun{?yVrmh2&ut_5y=^~P2~xi<3HtlbW(HOseOZII-7@AsbZWJBc3QXYY8 e)(d!K7#Jk8wD*PD_mH7s&q_)47&Da~5rrZiu{b_4S3z-8eqo^E^)F_c0V&3kAirP+hi5m^fSepp z7srr_TgeVgF{>B!gv#z#?2$ctHbLzCst<4>P7L z+I0RVJCDun{?yVrmh2&ut_5y=^~P2~xi<3HtlbW(HOseO)$wLGlDIeb9`hu|&6i$F gD6A=WkhEZ6U~ABJTGM~L3TQ8br>mdKI;Vst0CQ1Q#*-Qr)TdnOYQ9i*4F1dJad@NSsDjDvQRv^Cd+}FW1&{* zCVs)2le{mnt=?7h-J(OlNL(lK$mQ8v9xmJZai_fLb0(S2N#U#@r+K>ixvXjaGJfm-4?cEhh8a@$5oV)o84=So(e{E-8$E3UHN=YurX`ZfrF6*2UngIXV BMWp}$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blazing_sun_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blazing_sun_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..025fcea6f8e150bb866021e43df1a22bf404cdfe GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b&FaH06;r={JGczYG zEi(lLH8C+M4i1ps;O&vyffQp&kY6x^!?PP{Ku)Hoi(^Q|tz-wLH46jWR(MObOk9-2 zm9}y9G?CUc2FWu^n_fPA%FDy^)Uhc`>aDPZL|4}o-&5LZ1{=~tB(|>zXS%vqza+6nxmA3Om zXPMpk@zy|RzpCbJC8-i+W`_UL;wQB@dc|0>`F`AYTMyL0SQ6wH%;50sMjDV)=;`7Z zQgJKylZ(O1v6{>}g5J;k7FzSxxaIs303R`|GJ;g5@1TMhdbuU*G=z%xBm z;BD3`=UrZ`i3x?dF`wpWdS%4k-etObs~pelnLoW%7?svN`lYQ>!qjZESCwDz_qMmy jE*~;NW8=1Q#ouMH$P(3KjEw03TF&6<>gTe~DWM4fmU&m# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..53ccaabd8e145214b51002273d238bd930cd83b4 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=41Bei)p7%J5%WW8*3D zlUj0v6fHCsuFC7Z8AnYlJW$_uE0u_VYZn8D%MjWi%9%hSa% zq~cbx1Cx(eK-;7R+$|3^G+5F$YIaW7u56IdGhKe_l9Yr*(41-eBQI`iY*e(=T((L# znVEV0=9!t3qRg0?-}?j`FYU=wP%hduIqEnYn;P5fWJiI|@BDh_Sc)H-l_|w7y1Sb3 bBrn7MrPALXEt(Pmw3Wfr)z4*}Q$iB};;~I= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/blooming_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd378e4f2a470c7829c91308ad10436d2cb32a7 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=41Bei)p7%J5%WW8*3D zlUj0v6fHCsuFC7Z8AnYlJW$_uE0u_VYZn8D%MjWi%9&(p;* zq~cbx1Cx(eK-;7R+$|3^G+5F$YIaW7u56IdGhKe_l9Yr*(41-eBQI`iY*e(=T((L# znVEV0=9!t3qRg0?-}?j`FYU=wP%hduIqEo@LUPsO?&>A$C5z-9)tvq``3_4qA4jj)!I*VzK+TLL zL4Lsu4$p3+0Xc=9E{-7;w{rcO8IK0=^sGO2yZ-X|TN{hN_{_Uxxm~9}`Q*gyv2TL2 zB3}s|ikZe_#PD#H)@gm`fi9@U)wH2DroHXlc?7+-W&=`MzcK+TLL zL4Lsu4$p3+0Xa3EE{-7;w{p+9Cb1~+I9!x>e8v0SKH0o)q!7A!mBdd6!)bZDJRpWz8%EG=hEXq*55 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/flower_carpet_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/flower_carpet_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba8be4e4f3ba7fe02bc36bac7c75c1267738c77 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0E@k&JsVVCAdzJqgRaK zzcfoW-`{O-KTW>#sOI$5OV&#k$vylM=Y9Kp^8Zg78&4UWekxYlE;o4v%j?Y5K+TLL zL4Lsu4$p3+0XapUE{-7;w{p%sfuW4rqF}VNk{Q3*G|3|0o zx30OckNH^br^Q-#mNjnN#4N)Q9-7MhK3Oufl5dyVdMQ z^!8?nu!nrDPFh-K3JPjsVp1F&AQL8TtA7im7)yfuf*Bm1-ADs+GCf@!Ln>}1J21U@7vQ!t zg1zNp#F@!o+QoSG+E)*BEwUS QKuZ}sUHx3vIVCg!0E}=@q5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/golden_carpet_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/golden_carpet_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..60cca4029cd0e40bcb8d5b324ea70610ba82e989 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9atFnl~9b$_1ak!r(v zeyV0>PFh-K3JPjsVp1F&AQL8TtA7im7)yfuf*Bm1-ADs+GCf@!Ln>}1J21U@7vQ!t zg1zNp#PFh-K3JPjsVp1F&AQL8TtA7im7)yfuf*Bm1-ADs+vOHZJLn>}1J21U@7vQ!t zg1zNp#yy?f?Qjrj-0fb#RRH5@M+cd!R+Q>;97PlVIugMmh{7iWqDN6^tH z=k_nW#O-F&aCFV}_00yh2a7KKmKTvvD0;m~+P{X$l1<~q1fWF>p00i_>zopr0Ha<| ASO5S3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/grand_freezing_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/grand_freezing_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..18802e2b0d2b6c0ec5caec1c50fb1c78451b1bd9 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|KI=r|FhR`j-9&z zWY1mIcMg&qtFui*a=x>vm@_cQ|ChX?S~BM* P&`t(VS3j3^P6mX^tzz}^yI)2@W S(s@8z89ZJ6T-G@yGywp+23BPN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..3d089e120adfa3d5cc9745699120b1e672b29a8f GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E06{P85wysH8o31%l{cH zhXPoSv#{hbF#Km=;O6EQ78dSrsh_!@pljP~*7*cU7_smts0|o+2 z7g#!Ef4`6Z{^_{2=YPeYuUrrCF3_6V?USV@ROlehlu<3(oV=wi>QE)??z0NFHa27z zzK-4Woz+3e)BVi>qtiEo%jTX`KQpQK)!ulM|FI7iS-vzEo<5OT_VdqMuRsp;boFyt I=akR{02_2kcK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d089e120adfa3d5cc9745699120b1e672b29a8f GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E06{P85wysH8o31%l{cH zhXPoSv#{hbF#Km=;O6EQ78dSrsh_!@pljP~*7*cU7_smts0|o+2 z7g#!Ef4`6Z{^_{2=YPeYuUrrCF3_6V?USV@ROlehlu<3(oV=wi>QE)??z0NFHa27z zzK-4Woz+3e)BVi>qtiEo%jTX`KQpQK)!ulM|FI7iS-vzEo<5OT_VdqMuRsp;boFyt I=akR{02_2kcK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/heartsplosion_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c9e4a118f03d8193138cdf047593a9f411158a GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E06{P85wysH8o31%l{cH zhXPph7#RLDFdS!L;pXNR78d?uev}cYh_NKdFPOpM*^M+HC&kmnF{I*F?wPBM2Mh$5 zF0gdS{(c|*{nK%4&;N=)U%4LOU7$6!+b2s+sPMoGri^OQ=Dq!mQHLs7tIsIh+Sri& zF~fJ$cUA`>Pxm(mj85MSE}MJu^kd1elWt#k7F_uAy=msOCHH-1En$}5Tw8q_? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ee31dada9392d838afb3454d110aaabc915cd6 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVkVd3KwR#Y|<6Ia~- z|3Ab3|N0LeSXgK28u%MMUbP>ng0UpXFPOpM*^M+HC)U%&F{I*F?ukgILk{y$fj{kC1Zo|Wl^!^#aIK-(BR MUHx3vIVCg!02FagPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ice_skates_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ae90710efb7dee44ad08ba9316f7a3084c161f GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ETI@IX=7OiWyH|Ns9C z|NrY6_*+n zc$@;ICp_8oe;=oxe$3zZ8ULrxjE`mA!x$3!Q^_kJOzoPiM)V|`qO$^=YmVjyw1^0u zNLBDCW%HEhv7PfEsyre6OZs--83xY{BKYp|>(4seE?)WeyEakt zaVyz@X^!#2o|$XC6?;VAz6?~DRh^cd@l47fIWF$YJ7yl9-Dz7|p3T{J;J}8!O}cBU z&a<+;J38CMy6ioxR^Y1*b9O%0nXu5tGx?k30-<}c-D?i=wC&y<)|_%+jj;pUj8bt8 bW_E`56wS2yuy6iATNylE{an^LB{Ts5H#%0y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/meow_music_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/meow_music_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..6680fd90fc84ad0f2dbaa01e9fa62caa2354468e GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cDul)Zg{q;`&TdmWl z&zx6Y)sUWEakt zaVyz@X^!#2o|$XC6?;VAz6?~DRh^cd@l47fIWF$YJ7yl9-Dz7|p3T{J;J}8!O}cBU z&a<+;J38CMy6ioxR^Y1*b9O%0nXu5tGx?k30-<}c-D?i=wC&y<)|_%cCpDUlEakt zaVyz@X^!#2o|$XC6?;VAz6?~DRh^cd@l47fIWF$YJ7yl9-Dz7|p3T{J;J}8!O}cBU z&a<+;J38CMy6ioxR^Y1*b9O%0nXu5tGx?k30-<}c-D}h}nI(D3%h$4;fJc28O`r>ea0CzFh%Y%;4$j=d#Wzp$PyNG*^%S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..4d01915fa9d8c829ba187d82d42f26cfe3810d06 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E07iz7Ut&WmXVQHQ&Y3F zwA{02&;S4bkF&7+XJE(!N;5EsF(2{*lN!Z!7}CUu>_VPMhCrZ4Ko;3 zvZnGTypwzu?R13gl1{aMr<3R#1Mh258@~D_9LZN;Y!To{_-?`AP{`Duc`f@3$Q7Qh KelF{r5}E*&n@3Xs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..19d0b8ceec4641475eea4e0a7c340ca7bc21f66f GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|KGD`&wmDn<18$e zmX>O2YIzI{GBWbQ!ou9#+&~3}8;v}G6k|z{UoeBivm0qZPNt`eV@SoVWCy04%mBBj z4EC0bQb}xSh09oH?8h^7F;+JDJ@}Pt=83gZq8YT zlof4D&qnd4Y*B4ZTgRmJaNd<=oM{Gc#ICTMY=|(vvszMN&0Pmc3kHVNVukb8fvVGi PmNIy{`njxgN@xNAIHyNN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/ornamental_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..d34b61ca3719b2d16bc4f1d00cb0a1de202a5d69 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|KGD`&wmDn<18$e zmX>O2YIzI{GBWbQ!ou9#+&~3}8;v}G6k|z{UoeBivm0qZPPV6uV@SoVWCy04%mBBj z4EC0bQb}xSh09oH?8h^7F;+JDJ@}Pt=83gZq8YT zlof4D&qnd4Y*B4ZTgRmJaNd<=Gjo_y4Bm)cVL90lVSHz`q{5oJ4w4oO3_+a=!T;VT RRRXPL@O1TaS?83{1OVm*NlE|! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..44a06e5a5d43e0188b74f4704ecae3f409819493 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08{tFY>rc_VF_BKDK%5 znfK*z)z;baEePWd(_o*b`REu>1!GB&UoeBivm0qZPNJuaV@SoVoYSp>%nlr^7Y{G| z-?sTk@5S2BmjC@j_uuk)!h6V~Hn2V3b?LhYJMC}X<q8vSGUx0xe_kboFyt=akR{ E0Av$O&j0`b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..696b356b0991a84bec929c5824fbc4baf7a32709 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08{tFY>rcwvTPzdggtP zmwD%K)z;baEePWd(_lZ^e9jiAg0UpXFPOpM*^M+HC)v}*F{I*F&S`J4<^Ue10A`!! z-}ehT|86&WEO%oa^MmE;d5*I^CJJ$TUO`Ew>MPFF!;zaolH=;#0#{J!PC{xWt~$( F69BL}OWyzh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/primal_fear_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..20d0cf6d824220ab9b54f572b1e681873736dc82 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08{tFY>rcwvTPzdggtP zmwD%K)z;baEePWd(_lZ^e9jiAg0UpXFPOpM*^M+HC&kmnF{I*F&goV`76%UJi@j?u z)E^c<*L!i#&z}G8pR&($?rBW#)3>@7+EL5C_TNKG^+~-xk~e;bG;8=R_qtG!(r)p2 zqHM%D#e?_C6Qo{lbeC5UvagU4H@eKJf}9suoQ@O1TaS?83{ F1OT{KPVWE! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..a0a8bf8252e905c587c411c9943ccf2be50c4ad0 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09jg&Rw*6Z9`|by}dm{ z;J^PznErofVygKM1kYZ-Id<+sSw_||pgP8qAirP+hi5m^fShm1b(e+l>-{1NB_3;xGp$^5N>vYN6@#a%pUXO@ GgeCyB8dOgJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/rainy_day_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..166a19c2de36ceb62f9c8eb7b9f1276c123c3d54 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09jg&Rw*6Z9`|by}dm{ z;J^PznErofVygKM1kYZ-Id<+sSw_||pgP8qAirP+hi5m^fSd$R7srr_Te+uN1rIpz zFdzK!N8|hb{2Bk*wl2<`v*i3c+eeHSr)uR=6aH>e^V*zd*Z~Y7T7k_W!>#{XfF=|NsAIuiqRycOh-%%wC{6#*!evU)5I{r-E={7m+*ZZEAp`)%EhuqK@;5idh?gAs?w^CS`}Vd9`&69UvK1XKh@)$%vhnK?G|OnUyRHLR!;oymSF`K*P1e4p~FM}H58pL&1LZ+5*c^R``LQLP&7`9Lcf NJYD@<);T3K0RZlaP80wD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/smitten_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/smitten_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..d42361df60096849f03aa7bd3bf6c476ca5b45ed GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0B&A6}9K$Dwmg^rm4Bz z%Ic%P|M#q_KlRi9FW#!p#-`RVHy)^nu_VYZn8D%MjWi%9%hSa%q~cc2siTQU3hdH&#v3H$ly+I!o}jdf7i!N)3VQ+xr<9kF!TtIr!#wV_a4DgpW9(G3$yMpyWMFL zvg|iJcJ$+-#2KcHE?;+_u$kCb&2#HJ^8@V}w6J1IMtdmZ;2pbEy4AirP+hi5m^fSg267srr_Te)Wwxeh0AG(Xf= zTebIptGVm7z*+V0nIBckpLF+5t529@ozJAnKQWB^-4sd2o&$HDFXFn+kRYhXbd}+B zhG4_Hwlf?;q1-7c|9-{HVCPo$y|GWzNPOBp>-E1G#8)##U%#EV5@;ENr>mdKI;Vst E0E4ei4gdfE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/spellbound_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/spellbound_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..4302278b1fcc2bc207269c34b225f5ee34a3b2e2 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A8adhM}u7oNR-b57^~ z3Wonc@VfYaLuYqVcJ9)|_g+91j3q&S!3+-1ZlnP@NuDl_Ar-fB&$4qJ4&Y(FkWumE zpSa$?8Ox@0tZeUD|J~!)>zPmZ4K{o6JDw`?def?$GfU{&$O-ro!kyMr9~8y-$% zDLc@yLA6BRqwmMJ*T*Uqtl8Y!HZ-@(SVzo?S^twksg)`6$L{bAK-(BRUHx3vIVCg! E09%q%j{pDw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..4a7bbbd212a29c53f33ca16c95671067332bf517 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07iz7Ut&WmXVQHQ&T$> z!1_OfWrHKf|9)3XOH1Q@>egM{KsCCSrKv!Qu_VYZn8D%MjWi%9+0(@_q~ccYsa8P- zM;@n(s+?=S#lPPvzxY4z%X-0&ucGeeKPZihY593Ey1T%-A?q&l0j+}0MY|=BaTSYB zWW2%j!Ds5shQANa%(8E}$v08l%8GXfd$EkcX{Q^%m8>5usC-#2oK(qldSlpkNuYHM Mp00i_>zopr0CrwUd;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ebfe665924b62e57a9ae4b6bf2a19595b5e561d0 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07iz7Ut&WmXVQHQ&T$> z!1_OfWrHKf|9)3XOH1Q@>egM{KsCCSrKv!Qu_VYZn8D%MjWi%9#nZ(xq~ccYsa8P- zM;@n(s+?=S#lPPvzxY4z%X-0&ucGeeKPZihY593Ey1T%-A?q&l0j+}0MY|=BaTSYB zWW2%j!Ds5shQANa%(8E}$v08l%8GXfd$EkcX{Q^%l_rXx*`o6|k10ij>1u-OhBZL@ O7(8A5T-G@yGywpyIY}r0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/super_pumpkin_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..f6655bc4980c600b91d4003deca0e98984ec7af8 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cfUH@mW81GX*6u@fT z#l69i!_v}HO-)TkMqXH0n46m$s3yYYB1k`DNswPKgTu2MX+Tbnr;B4q#jRuqCK=fP zH}{`D9LZIctTT>Y4a~Y@D19U&ug(^md4aEM56Fe+eRU~N^} U;xhNkNua$9p00i_>zopr0NJuiJpcdz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/unique_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/unique_rune/unique_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..82b8e5d3f472a882914d202fdb3522e7ec23f947 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0A8adhM}u7oNR-^Z)<< zhR*J!?A$3|Qw{(n7)yfuf*Bm1-ADs+Vm)0PLn?0No?_%{HQ-^oz_j-J{*Cf;K1v&J zGI`j0%l*>w^2z!M)=^WK=Uit^=T%tgIa7`MK~-tl?{#Z$2^zRtWg0Si@IQ$@bcT1* q)0d?UA|D!5Tk7{`#tC?3&6bxr#@zoS@MAX6A_h-aKbLh*2~7YE%t)~S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..cb6f01ff7959a2f8bca927bb433de3b738e9f0df GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPiF}H$5iv*e&2sFF)_JiQ=$DEy~4W|@qGTve^Rp0SO?dNxnm0W6@P564Z)p833ZImng z%T`<#d0f79{~e9BOSza*LRk8Y#D$`B*UIwUdAr*(+v|6*=GxQ$OiVunvKKc>@<{K{ R?*m%R;OXk;vd$@?2>_VQNuU4# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/wake_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..0e558d1bf6e1b537c511b47d804ffb9551572e49 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPfus6 z`Ogse&wk&39c^tfF|o_0t*?P97)yfuf*Bm1-ADs+QaoK8Ln?0No?_%WY{27uvF5bj z-QV&R-Pd$`f*9Fsvu)fjtxb3P~=zl$$X-Q7Q#qj7~%gwLCU{kxvAO*WSM%y#r2vwmN>5XgB9p00i_>zopr E01G!qCjbBd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee8c36fa48a5b3613e2c82a6ac780b92d151a83 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk(yC;Ot!S|G&b;#KhD#AG`rn!B`UH7tG-B>_!@pljG^)7*cU7_v}?h7DEn(i;^B; zzuteX(S81HU%`*{Q$9_-KI^3SHQ$|6nJ%yf7(duHo7=}vptwnK!nqR#f-Unp_xRj+ zfAGw?xBkof1Q@~sMLe#kUYWe5HDSi|RI9n_^NwBg>6NheD%7^|=B;15;g}fjiD^7b Qfc7$Yy85}Sb4q9e0L&^-(*OVf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9fff2c97b75738894cd65a52fbf9b65641d0347d GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk(yC;Ot!S|G&b;#KhD#AG`rn!B`UH7tG-B>_!@plk4f?7*cU7_v}^1!v;JI7p-SL z`dhBce)`M4Baima`5YeS<+W$Yrc>L47_6AHxOTi-nq7I2gJ$xKyrKUYVT3ebC_S=L)NSo3D9ZQWx#L0;8WV&Hs_jxXDONtn=B2 Q8lc4tp00i_>zopr0K4E&#sB~S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/white_spiral_rune_3.png new file mode 100644 index 0000000000000000000000000000000000000000..845dad498a502c74a0faf524533f4db5701333eb GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGjnuu_4oHrPf!2< zEBx$S@uw#YbhNd_#Kg3`EV+Ry7)yfuf*Bm1-ADs+QaoK8Ln?0No@SSFR^(wyXq5Q$ zuKvNbtFd?fx4*4dsokr5!aSiT_!@plj`Z>7*cU7_arM5gQ9>_;EcxJ z-|^+Uo%jEBvGv@)eeTbuFSGa_Z7Z@*JM+23>Bx>a_l97Go`{(Cq1cm zX3Aw#wVU%3w)Yz_1=b4ZZ`M%kMgRoU3iOW^Az4GlM`A*fEF@%y85}S Ib4q9e0OF5KnE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/zap_rune_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/runes/zap_rune_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1306864055c8628879a710f42ce7c7523a8fe56a GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08ubGt<%5c64&}_xDdv zPk(yC;Ot!S|G&b;#KhD#AG`rn!B`UH7tG-B>_!@pljiB-7*cU7_hc(0gCdXf#U;KI z|6aE(Z|t|f;D718?883wepA^axj*a9%y|BiWpm-)J_dE>jBQ4SlTSo2-umY=Cq1e6 zU5b{b$2DQ4qDdKLO(KHdrKi4Al6Sb_!@plj-T=7*cU7_f#umi-7>^Mf>bK zU+?R^vl6K8+}GW4-172Yrg^~|g+6~sl{De`%a(R`%UhMI$p*6}co(<{Ydo{&Ze#R) z$oF+M%RlK9GttJIY=Sc@=X^bGtFU5L; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/crystal_hollows_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/crystal_hollows_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c8249133835be7891708e31f24ae7f67afce3c GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE08|-?CZym49`yMUpm3i zyKe8*R)zI_3>h8s%%Cz`#ITTjvm4hI}1v z9a~QqeTGB{DQ3-l85yN*^H_ER4P`6|@(X5gcy=QV$eH5l;uunKOZ7Cn*bxN|mJ1@$ zT1NzqfBnZEdtu|b`u>xLa?024jhLJMEb4u-!0#h-f?}O5W;xD$KIKno`{O;EJuCmb zIb9}`SRc=-b^qD^O;?lci1Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/dwarven_mines_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/dwarven_mines_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..051360b9604d164078301be82aaacc9915c6dd4b GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0CVC_C-l{V5pzRCUIyn6HC-Md})UmH1eRdoMwzy4cx;XK}b_ZjRm7<}^>${Mmh z%k=_{U@Qsp3ubV5b|VeQY4UV&45_%4bbyONwVPe6!GPoFn=)?sclBZQnOl@!E}k-} zQblN9akg^xs;zDxjG|u8tegA$i;b1%_sY5K&DoiI&HJvG*yQmfW&Hkq&%LQLS0FX& zL)%$}MfY2@5(HRTvUj>hI9%;z+^6=z@$8&~F_9}KaBMy@#bV)Rh8m@|f~JI*{43UQ V=LJT#XaZfs;OXk;vd$@?2>=!LZ%qII literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/extra_large_gemstone_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/extra_large_gemstone_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..43facbce7333f5b1a24df65618f5cfcb1e5b5859 GIT binary patch literal 305 zcmV-10nYx3P){6`*2jc}ByW25`;n>^d6(`Zdd9n( zk>`IbdKk~^=400XkB1l?_H*xQZQDL>4dL4|lV8;mV9H$ghtdN|%xzWOmPt*$#@a-O z8B4RO*%RqkDP0OmkoZ3{8!6N&{P(yBdT|o?kKlwS3k*JtBeJ`^00000NkvXXu0mjf DXj6d& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/flower_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/flower_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..d3d1f68213bb1a5a81a9630e4306149c2009c425 GIT binary patch literal 307 zcmV-30nGl1P)P)t-s0002@ z_xIN5=>N_C|Ljlx);aaMC*G6so4vj9oh8$N(>~NpwrjE_#WKBWA~BgV?Jz7Vdn&&r zDVri1CR!yUQ5|$610Y5w9Xb_pl^$0B0004WQchC47l`sGa)n4y>Jp=2;<>-}6e5x|V?zxVYRxYdgBhU6&)TuWolVE5lo zsk5Nf$w(KEGRt=@1Auu3&5|BtgsW4iWZL8wa*9j z6SN7I&S@}gSz)vAl<(KWT>l^B?CfL+$kb`EW4P4pvMOAAcdF_ADRCJpOfnYCLAK^` z9*&7Cl0&U?=gp`uX7DR*j3! zX6%ohI_f*;9P})xdj7;dRpbTFcE2gtwi~i6`mL6|c9T{v%f8eNELN=M%sxk==7ir; k=$L9a-N2_}h4>MBc~u^%?(e$gK!-ATy85}Sb4q9e0Cl^59{>OV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_agronomy_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_agronomy_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..e230b26be1defcd3d3053ec1eb8368529efbbd78 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0BJ1y66AF@;kdz|1Y;c zyD{>AALpitQOl+V8}Bo?oW_CAjXm)zhDN3XE)M-oC%&Tjv*DdRJ+-mSQI#zZ)Pz{$9((mzjsCQ*$kJe z&P%Q-p3f9Ex|U?_G}QKeU$Xk8dvsc#T>aO-a=$K}caQvYbba0Z^Hy<@q0>+FNPP94 zXg}+730Lul^JWFbjZ0JN9`Zgi@b2eb+;~VRVMq2aLGdLfbD2JyeQ+q6FJdRmtNf-T o*YC7iqX0vV65k2dcIp3&*Y|R-UUayj73ekwPgg&ebxsLQ0JT+a-2eap literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_candy_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_candy_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..cc5360e01e87594dcba843b32eb0c9283f062aad GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0EswFzE3z?`dZ>9#4?1 zTqbqH@&A#0k*G%g1!3G<7=H9HTuRbqD`Hrq>B!*0kmDlEpv%C#wBh?rpiah;AirP+ zhi5m^fSfK*7srr_TdF;*OfHHXF1$s$d;X`E|L9}<+`%Ln-DVor_N6r4=F^F1r_#1v zlQQzFa`QG7HtFeq6PvyMo3JJOz0ACKcXDrAJQO~VUXy$`>6OkymM<<#0@GFmc^}MT zcyPH|l>erWgNym6mHrJM=6Fmz_mbgq;L`5b@*Yh;8}3|geiHV?PWi9%%Jl!@PdIuE TmlbUTx{ATm)z4*}Q$iB}q5NsR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_combat_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_combat_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..113c9047e3f502f7c414602a331d566d568db7f0 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07kGOyOb)VPNo4a9p8f zR%;Y|MKN36Y=Uw0p$MSt)Z-R4K#H*>$S;_|;n|HeAg9pN#WAGfmTNaVQ;P$~k(91Q z|LZ^S#&nw|TDI+*Znw{6T7AVl>+|LzuDgU+U0ZtZ=Ut;?2YZ~&BRve(&6~QfLuR3= zCd1FijJK@XSIkV9`0Tf4PKEQz2?wh3KP+kRa>(Rz&7YCP8s4#df+TA}?d46sm?%e!y(Utf2-&p^;Ps(n%Vad> zGqK-v+od^KMwn}Y+2!2%9vr==^&`a3bQHusk9sM%X50HTnTI>A?miANmi;>C!Niw8 zZLiM%psKt|J*9Gv^E}DBrVF(n$twL7zIQbFgVeF*DP{ZDetvx4q~-WWFi((L5VpWkd43c_$d`^%s_%*(aCqW;%`D8dvo-4F6|a1eznPs^RZ@Kc9E#G7H+kfr{Dv{}W=Yw$$Crifxa7!H6tkF5zTS4pMsdcD+4I+*Z%HXCm}s~C z;`u}Idc|c@o4IAZ%%vD_8!BGoG@bjT=LFA{7BNniC-UZD+_N^Ew222glEKr}&t;uc GLK6Ui0({p1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_combat_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_combat_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..7c38cbf2b6d795b2f9a269fd4604013bdb686318 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08`AeBfR4J2A-=E|w52 zvswkm6$}hMM!{DUv*pbu7)Kw90IGQ_dn64=F_r}R1v5B2y8+@?voc@FM674`{!8Unx9XO^(>m*c5~_KU#G&uZ@oBhB$(-ri+1w+ znP2)mL{oZQl`5JgjIyOQgtexzs=Pbz?7BHG;HhETeeRqU9Lojc9xs?+;&W_g*vpn# jeNBR#(zTIC-b_*F+lT|f z2i`TmEaktaVzNnOT(n2Oq>k@Y)MBg*E{_Geg;VB`-QFcy9OCYe77I2b}lLtC+v_*c|SdH&*9YAL@^3yDVZ_ zcVFW2?@cdN!W?fsIQC?X)_tZ`HYY=8O#Lopmboe?BIO2G^8W|@M{^Wz2#9ECH(l1! oa$s**>~l=mp!}B4gMDAwA8>NNduWk<1L!aYPgg&ebxsLQ0CXaEKL7v# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_foraging_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_foraging_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac1ccfed50ff935b38f1d24669c5262ae6de7a9 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}LV!<*E08ub(VEwtxNqOO6Wgm? z9j&e(Z1pu3PxRKSiZba)wTuq+?Qqwa8KCWBt5yG5=N z45_%Kd)(AXmO+5!g86ULc_s%R{yYAQ_tN7{-F^NIzGs+Mte>C4-*O};S?k#`r=X8} zX1EGn_Fna;`bd_|q|M7$e_ZVrck6JS?(sUkG_Tq6_12avCNk*mjj^9r*(kI(YL#U7 zvRgXImPcCpj&2CC?LE^zMUz$4V@_Gs1gE!$RxWQ%5G!L^&QVsu%KhJRr?teF!$5a2 Nc)I$ztaD0e0s!H0c<=xK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_husbandry_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_enchanted_husbandry_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..23eadc2298162be5f5be9fb940cc5cb788cbba69 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0BKI{O(0p)1#uyv(;{o zlA;a-A6OQybJxP)qMq7XW4&4jlWB_5Nk$6(+5%2;jP6`)Csih{2Wn$13GxeOaCmkj z4ajNpba4!+xTV|8$j7Y6!Qy!Jt*7|A|Lb)#)D6?r)^KS0y!!9usC@W{TQmxe|xDPDt0FMjoJL=t+yu`r0il4Ta?%qxFkv^(7EMk z?HAS41)L3Wjpc&M56ba`{_w%poRaGe|DL6Pdz*E5PgYFo`nhpQ}00DGTPE!Ct=GbNc0059lL_t(|+C_^6 z7Q`S71%bLtjNJdC``OyG$P6#xrmC*<^`ZYtN>+`1Gj0sFLCmHl z*fl{Xv8o}cF$$Cf!9yv+Kn%c9GT{lR|GgyOe(4Xb-3{9?nFs;^0000!9+XZ~q$J$FBHN|eIQ4Doe4&99cocs?v+Sot^vi|2?`vt6i%!Ef?=Dj9Rqy z-u5^H%RO^6SFOz})#m%?bcOTKk^i%Pnrm_U1i$#}d_+g>gFs@W`Z<3Im*k#y4K`ty z`5*W7f9Egc$U4;19GCw=$iXS)lVZhH309u>scg>6zi$xu*v27YUwoar>6Bt%3ecqt Mp00i_>zopr0F*>_H2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_fishing_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_fishing_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..cb1082d473050a4433d3323e554c36c2b17fb654 GIT binary patch literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0A7XD89c%dRv8B-HN?V zvv=K?D)oCg&;OGgrd=y!b=3Ym-Sg|$uXpEXUs~d8I`go8RG~)YG)8e7K2>*F+lcme z-abGh7)yfuf*Bm1-ADs++B{txLn>}19bjpgbd;HMkw8n*w|#XL1^+keWvw~Mqv`s5 z_4c=icr8`sqq0?9zQ3qjb1SR&;OoM#ss9d1Ep3^y$?~*Jve@T&o4Qzq-pD%Lk#>6I zkn=Lp-hxrEo;|pUHL2l4-zi>xgVhlY`#5V71h*=j3iEL^pHsBlgSS|_;e_GAkJI`5 a|DXEIJ##CM;timS7(8A5T-G@yGywqH!EIRp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_foraging_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_foraging_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..51d8147ec7ddf58f05631462a366fceb3b0edd1c GIT binary patch literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}RDe&2E08ub(VEwtcw&2%tD}{# zv3R1lUR9Jybf|BKyT;4_?T%E->jzs)qRf13)z_y%W0(+Z&{a4?ecEdzBg%e zXEobY|2nwzuH^jR|5UwC?~1x#9U%X@eEQ0Gx$UWE&aDYg@UsmHHq%(kV>~fwUJ3se zldIG0-DbPrTHpQ9 z9rccDzs-H{9|*3poxqnL4Lsu4$p3+0Xf~CE{-7;w`{vvg^n2T965Dn?cQ(y z?W?L4S(o~(@^F5n`_so;vgPy4R5}E*q>leW~p4#k=88 zfA!qnc8(|i`cA`+#OT>=jA~(yQ#21rYc+S&)vsV;3v>{e9?c=RVwd58$NV(`#_0y( tVp=LK^@6I8TFx>vic}xHR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_husbandry_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_husbandry_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..71606b27c94bdc33f47a0c1bd5e2d7fb1f03f1b9 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0BKC)%2(+^K7--qok;1 z;W~FM3@+-atu@xGbugKxD4k@a;IA#U}_lfUR}EAiD^A2Q`1!{4mU;+RD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_lava_fishing_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_lava_fishing_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..132b31009273b9e186d69ab66876a025b550508f GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E07iy6$6q61_nw>O3lhl zANm-clre15V+asu`M=iWc_M?AmGx3jwUcqCe`Yp4j1%g06kP8n;HSWlqQh9I$i7P8e_P8_*RX2tSG)f~TcX_mzAs+?re%BB?^VSs4ry=RdoOwYWlk@Nk5ekYa7uBX zSt|55fW!EIjE0oT8Aj)M4+J^yGz)diIl%7M#&S4SB+>oE3T2&^O*{^53Vwd7MssU%j~%=pF`7S3j3^P6dpNRSbH9!)Vp6i2;auw!nl9<`G8rlB847st_@&Es(cUOF-?b&m9iE*wGqppQze*)tqTfho9#Q6SI?Yoqrd%%Lz6_o z{NpT&g$nCVCa7633flLsYLV(-Y?7TS$78Vi3d2@Tn*_nNj#Hu;o2xRG`cDjdpvB-a fi*r_V)(kQ4Y+gebw&g}Z2QhfM`njxgN@xNAvL|QM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_runes_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_runes_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..880b5988bf74d10e0aa0dd0f7ace874ca5c63fc8 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F$MbnAb3_ygbF^Fn*l z)6uvFK@XS1=Pb>666=m;PC858j#cG z>EaktaVv>|(a(>CQzKG~hoL1=B5eEr{i;(AY}0t)$CBsrPFlb)n&lqvCfP5WwtU{R z_w$P-uYdK-ezD|@@~j&@)|cNbTc_;OJu|>2*Xy-}XoUTNXDb4yK4)IS$1_!Of^A^- zABl+?62kwJ=1pAH5U5z7;C}tboY+i;3k7KcjHauvN3E%0{Pl+;ibq1=IM785p00i_ I>zopr065%VS^xk5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_slayer_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_slayer_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..7db3520718755aecd2645959911903ecc7deca71 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0AVmaFAd~`2YX^k#m=x zynM;TAmGLMBE$H<*zB&JmyiAjTePd{AJUf7VPJ4%V2EX7`{3y71k}b@666=m;PC85 z8jw@t>EaktaVz&UYoCiD5A%gb%hk%>)!*XHXnnkB{*-Up#@{6#%YU1b-Sd2Bb^oqw zUwYoZ{p+`(;p3j`rC%>DesBA|qKa|$N`ck)85eADyt49gTe~DWM4f DeE4N` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_winter_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/large_winter_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..b52b606580b3630790ff6e9facc772443f50e4d0 GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0F%rz%ZME;Ti*j7Xw2I z149D?!`7`^pFMl#=jZqT|Nng-KHT~Gl_BQ8+4TRJC;sc}>+}6*V4cgrd5)p0t83xz z$9g~`7)yfuf*Bm1-ADs+x;$MRLn>}19bjn?d&s@krI6L;lFU*?wS>6z2CoI z_)E9#TGf8N{Xa?;R%ZF^+%Yp=NiFhfh2B z)ceKhp37OhYb+W5_i_GTZvX#ad8r1|o!zNnffft_495EmrTZFuL+zE^XRx#<3e$G!UZT zBCg3JP<-N2%icz-B}waC-b`3{^nxp6+Nyi;g6{$XjT0NZ=3a2@jbzYaa}0fdVafa= k#|w(9BAgp00i_>zopr02xJZnE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_combat_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_combat_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..deaae9ee59c4b68c8d336e150226841d073ffcf9 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E@52@#V_VPNo4a9p8f zR%;Y|1t=JOD8g)l@r}$d2_T2DB*-tA!Qt7BG$1F})5S5Q;+AU zydpPstK5_P$@AAInyvF^d-eQdignCyj_Tfizn=T`i+zh`GqyXO&J#9mT)HVG@V3`e z9!-9&lu1v88QWWDGO`}~_aKpJVS|UL=IKPQr7HxAM1>@n-_AbrO8n_6W_L3)lWjnY O89ZJ6T-G@yGywq7^GDVI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_dragon_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_dragon_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..75fc3d8d69a857761dc8d4b058ad20df41299883 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08|fbI3qW6UdkrQ5~-9 zdbxA+=U1PuZMyVx(Utf2-Dg7I{D7a?;84?%ZJ!j+D<9g$t57yAG-FpZTj=Jy z>#Kb-e6A`t|D3ZSRqCPSAye;FZ}~!hUHPVB+a2i=8S#5b$`|o%IvlSyhq%52I*Gy4 L)z4*}Q$iB}g!^Z* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_fishing_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_fishing_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..168b2f00a31affe9fbd673c7f7cf826a3c780e15 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0A7XD89c%dRv8B-HN?V zvv=K?D)oCg&;OGgrd=y!b<}?S`t|4Oo_FVGUs~d8I`go8RG~)YG)8e7S=$IcRd?%) zXElIEFqQ=Q1v5B2yO9Ruw0OEWhE&{2I>4gSFzM+bjwS()MH=sp_dS(=ZF*t#|Imqx zK3{!Y_Rz`iWc#%!&Wn3X?bC9%9(y4FV^dvXUyzfR)cT-Ei2Hp z$FQ^5ZNmGWi&_k6g1fe_vfUw^X4>$=T5m>FVdQ&MBb@0P~V<`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_foraging_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_foraging_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..d00087c60e55d0eb4d2785c1d2746cfedd42acae GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E08ub(VEwtcw&3i^@FYJ z=9iU3nN2HkT;CshXl|1KY;Oq*32k>Z9vvRLGE1iz3m;px1z`q9$9}%{^X=h?%o*n_t1n;$&|-=r)-Y7!HVpv$By za^?>T3jY89Klj0Z$F<)CoRfqSH+|Z9;QN)Eo9?gAnj77-qke(g*$|W33Y}#Jj7}~J zNj3uhk7kOW0UE?u666=m;PC858j#cG>Eaktam)5J>$DaF5toZQ`oC=dtG`v-Q7&qF z^X{$_v9Z-xqvAX@*UtLv|LxxVyV3GHr@V3g@m)IVZS9mthyUl_Sa9c=jN}LLD|{2q z3MwDSXcl{_eNl}lAGB4_>-L)`q=VF_tD7}=~x&Wwwu_VYZn8D%MjWi&q%G1R$ zq~ez9X-=U73Or61RT|3n|1XsOSpM{^1ml;t;WZnb9FsYYRz?LJPMkMgalzK3m9p>I zPW;}X&&=XkJnwk%-pmy;pDo`1J`r^w>*h*{iC2xnUh$fFr2J$nYF^xuqwtNBPfM7W tGqW+GP1P>+Mb-8RGha-)r}q3Ov*AtVGcWf(TnKapgQu&X%Q~loCID!{TWDU%vux61_`lZVc_PD~nN26-Os%Y}mwKu_j1%g06kP8n;HSV)sL7wA!{}Eu z`yNm~V@Z%-FoVOh8)-mJlc$SgNX4zt)2)n095`G8JE}MFe7XPX?5Ugm`x^{WKV9G9 zw~HrQ-&9myeQxRe>s)hRtvGGMUpxEby2~rCSLP_^-L33#j!#?U&^5crw|EJU$CO#B z9WIM(EFW)gPGDP7w9CC!=!^}=hh2^AVh>viPBS@cO<0tXMH)#tem{TcuVl-;^RKGjUd4US3>WoM2H^XlSTNT(E_Og{G#a zqM~9<(q&GdL5w9qe!&b5&u*jvIc=UUjv*DdTu-wKIU91YTzK!Nc;jz>6vx!wce4|J zEZJIBUpx1|(~`F{jysDi`2JR9*7dKf8}ug_LjZ}FVdQ&MBb@02OC>M*si- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_nether_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_nether_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..aed094ff803375c42cd468bd93ef9c1b7148e84f GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0C5^QU;P?_4RI{VgJ9y zZMu2$|G&>G8rk|282`Tvxv|&r|No|USA3@J*^_I;czB7iu7%|!Tf~p9vQy2G_y8V{`G{St*I-ef8XryP1t!Q{Py|BZ;tO| zUs0iZz#f&EX0vT6o7WRhnZ}Lr?lM=4T7C{2I=3-w7yJ-l5sbDJfvI?udmM iYe9dJi+|VIKTLmJc(xwlc&-X`5`(9!pUXO@geCygN^$f6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_runes_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_runes_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..78405af21c70a88b0b405a8c43d47041f607a8b4 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0EUF);2RUd*HkKZ_%y) z;o-;4%~KqcYn%(LMDzpoeOweR=Y{q-I=QB&r~CW+KVuCQ0qS8a3GxeOaCmkj4ajNp zba4!+xMkbT&c~w2bL7Pmos<9TtBn=rZf{t-WWt&M^XCXp{LoRnV9%PVX_5`jUmsX) zek$=dq~+SPlox`FP5rh^-Izopr05V!)1poj5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_slayer_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/medium_slayer_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..97bab6cc4b7de63e6f27c29e1963c1a7b6b67f17 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08{N?$ZDN|0Ng_*ccp` z7zDgHUt}2nfAaFB*zB&JmyiAjTePd{AJUf7VPJ@5V{>F+h`Ct*7^sc0B*-tA!Qt7B zG$5zi)5S5Q;#TfyR=y(!0?ro;xSYS+zr7{Ac7xtO^`$jypWdzhfB0(D+uHZ0Y@4sO zeSI#MEU56N_PnLLd`@rKS6d;b2U>y0m0ARR6wIOwJ2LkVqsMuUB>75K2cR<;JYD@<);T3K0RV?G BUP=G} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/pocket_sack_in_a_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/pocket_sack_in_a_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..e570cceaf6fcea1d8ea5b00fb09621965c333485 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C6QPZKnB=F>D&j_uJZ zSz$2i;K9ToPkAvLLH2ShhZuFW*^cHB52v34DrGDQ@(X5gcy=QV$SL%6aSW-rWqX=k z=zs$U(*cdDzyII!PC67?cFg~uRES|otk)@mu@}8~u dCw#ApdBPUvUmN;=P6Ara;OXk;vd$@?2>|X`QuP1; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/rune_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/rune_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..880b5988bf74d10e0aa0dd0f7ace874ca5c63fc8 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F$MbnAb3_ygbF^Fn*l z)6uvFK@XS1=Pb>666=m;PC858j#cG z>EaktaVv>|(a(>CQzKG~hoL1=B5eEr{i;(AY}0t)$CBsrPFlb)n&lqvCfP5WwtU{R z_w$P-uYdK-ezD|@@~j&@)|cNbTc_;OJu|>2*Xy-}XoUTNXDb4yK4)IS$1_!Of^A^- zABl+?62kwJ=1pAH5U5z7;C}tboY+i;3k7KcjHauvN3E%0{Pl+;ibq1=IM785p00i_ I>zopr065%VS^xk5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/silver_trophy_fishing_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/silver_trophy_fishing_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..888362ed1476606fa6a16be53281ab205c907309 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E07Ke3GwsuD=8`I>guwz zwA{XZ`-&AS7+f<2Dpvph|DPj$>Wv#W7*x#z0s?@Fb#-+mB_(BKWcc{_^12V_0fiV# zg8YIR9G=}s19I9uT^vIyZsne4pLE!Oqc!p3!MoS~zTeg1>p$=H|FbLp-g@#yGtod`DCw_$*bvl+(KHVF|y?q zn?q*0lkW^hVJn$Zrw|Fjs@KntF51P(J-6bk*^?7OO|PZqUiw`bw{vs2_*Jd{49#!Z VWZGE1SOA^G;OXk;vd$@?2>_~AX7>O9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_agronomy_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_agronomy_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..fb6ddd0b1d8d2f6a4fb6af8b58c757295d49e2ab GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0Ff^kckh|UN$wjx7_yZ z#>o0C&&L^|>RKNbbWnJ>UBF%e0=e_e+eCXr<>Gt*1 zdDCj8f=_m8s-4=iMlVO^tbu9YN=C+KML+kvWnSgL;!`KkysCiV$Rid#jrs=H*aZgD p8YWnzD$OrroZ%{QvHp;GeBD*PRSmYX^MFoc@O1TaS?83{1OV62a<%{f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_combat_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_combat_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..d56c5676369de1432e5d8c66a1a458b25fb9b6a0 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVj@Zn+!5tB^OGOJZ^ zTwxS^#cYCc^q~l#L~qsli9m|6B*-tA!Qt7BG$1F-)5S5Q;#SfDE(X)?RzVg+9_H|K z!T;Z~eNn!ja(2P{^*@VFiZFC3l-@bY@J7zc?dCf5R6(5yoUXF+7MyFQ<;>50|Je3{ zYm(u&8$8V`gcA2!Y~#M|5%s>ck!kntl#6mz=U?94eEo0E6@h=dbIp3A=V(0w+REVR L>gTe~DWM4fmXAwx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_dragon_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_dragon_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..886e54fce2935ff5d2afcd187083b0c75ea145d5 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0ETdR5epIIoWf_Ku+`X zt54G+s>5|%FL!PRN?qG@>F1&=B|h1aRzdEj?(+Q7S?^jUff9@*L4Lsu4$p3+0Xe0f zE{-7;w?a>|^0655IA2st^{DxOJ8$n{v4858G2Rb%e`&OE(#kxtyZGhOZxbKi)x8>4 zy+|NPd+XWWmke9OPS06uCcf=JZ$Ou&!w22${O$4yYz7ai7}^2pGbNw{7(8A5T-G@yGywo1Y*?}Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_fishing_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_fishing_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..8a96a2757953385b908657908d9cb99091edc59a GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0A7XD89c%x^Bf@r`fx< zRjA#VD)oCg&;OGgvN~$Ne*OCMbkDoX_F{r%l>pJ?Z${>eDyd1=1&PG28Std2i#-um5TzE6to; zEB!=fEKr+&Hp;w%!Fa)!cFPU{e}=WfKNR*fdip2?EaMD*rm1=>m&rib&@cbcNqLSi W&Idiw%bx;W!{F)a=d#Wzp$P!$({8o^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_foraging_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_foraging_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..9a660b52fb824b0a803462420bee9514c26bf2a2 GIT binary patch literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE0C73kkEEl^EDPv^wu*o z(VEwtcw&21Rg_6dlv#AB@AZSN9qt-41GEq2+8fGoyEr& zGE1iz3mzSwec|<4K;sxog8YIR9G=}s19Cb%T^vIyZk2YkPGSw@IFfPfZsTwH!nGwW z+wbd6QFXn{zR03a&i4G{cdI;SsTIatE3N#fqdjNY%If-m@&OO+PrBWAd9(2M>J7OI z-d|=}wuqx+)=w7E4E?!WH$Fa=*GgJew=AcGi%~eSC1K4boo-z<3)T%C?1ruWeyVGx m{CpC3h9T|7N&l0UFBx6G2poA9ye$OiCI(MeKbLh*2~7Z5s%&=v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_gemstone_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_gemstone_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..c9a2b7b145cd06089d0f89453e23e3f55c95143c GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE08u|bP6%4t_!@pQ{(C47*cV|^)xG=OCX2yMa`P>#lP>rH1=3#_|Egk z&v~0H_I^){_*ZoQ`-XM5zt>(&w)Z>zY47{5mR}BA_}#CTUEiE(f1dSRxP*h*0%k?6 zHNlKp9uwEC*Z#qeFmUH$o2Dr3uPu;dq`>VF;tABiSQ6wH%;50sMjDV)=;`7Z zQgJKk0271h8FsNF3Ia?Qj!%$#`0se^%r#3i?kAl$-@kFencT(S7prbi{awfwb)z8e z{i}(8cbyNfpYZMP4!O|g03B5wg@6_NQoj9aUU k`BJwbh5Kdqq)ix;9R>Xq7y`e&4gsoWED7=pW^j0R zBMr!@@N{tuskoJUnqBCK0SEH|2G2XZzy7D6|GH~gmb=wI*C@NAOQVxcT$hu1llL*G zW>!I$Mdx<@>$g5so~rFEuRi4UgTe~DWM4fz4ToE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_mining_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_mining_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..f53d3d2bcefec3efaea89fabae3cb14a8de375bd GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0EUI)U>d$*pwm|7Z)d3 zRJCHoivR!r-?(vO;qMn$|9|s(ds8GX_~k~?|9>C+{Tl!4n%9gOGxGBCLPJ9p6%`j4 zWPAh~!B`UH7tG-B>_!@pQ|Ia87*cU7^mHrl0S6xEi)^PVI={z%U6J#!e$wph+}nSy z^<8!kxn23{x$Bcx3xj3dCnnpw{!V-mx~=xU--C7Ut*0j64zoJg!S&{eC`X=O>N5w% z^Fp7BesiWda9YF%up2L9dhpAk;UedeX{>C^Yb=-Une+3F4uhca!&j3FQkk0XbEtX0 SwAcf534^DrpUXO@geCwP0dipg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_nether_sack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/sacks/small_nether_sack.png new file mode 100644 index 0000000000000000000000000000000000000000..1e737f707918e760b8828f6549e13ef7b06be446 GIT binary patch literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE08u7;d7Fbl2K9yvfV<% z!s_cc-Mo2YujBu3aVr|x{{Q>@|9{iFD?a~UhU6MCPTR9b*TS+tfpLvc>EURujw{qL-RDsPB@VbD=+Wl7!rW zG*14YPrK)pn<>@vo>T<8!Y<$6sU)>B*-tA!Qt7BG$5za z)5S5Q;#TfyR-q#XJj@5UcP3o;UthiK;VRw?Baeii9sO4_`lffuAY~V{s&te(w1vi)z@KQc-!#I0H}?zB*-tA!Qt7B zG$5zU)5S5Q;#TfyR-wZVJkA%T4sUx`e{0>T3G!EF-#ndp&iXU&IP zqdo~OrP0$)?07$`=99t+-YqUVMoz!jn%0Sh@d{L(FqGQ;K7h4g!BV=tQ@zIrBG@K^cUQ-CgD@O1TaS?83{1OPjVUdI3c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/amalgamated_crimsonite_new.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/amalgamated_crimsonite_new.png new file mode 100644 index 0000000000000000000000000000000000000000..fd3105d843892f2549de1e7955aa12c574752fc4 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0ES?V6b3dNaEn=6%x9p zsJKl~5GeR{>J(ET#aI&L7tG-B>_!@p6XEIN7*cVox9hs-0R@4>Iq|paAGDmaU*z@v z0|%$yv+pg-e*V1`<{|jbh$+hTn%IrTgvlHV#15m(aHX mdU^$ir8M$lQ=2y4fAMl3Ki_SA)&oF07(8A5T-G@yGywowT|ZU; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/archfiend_dice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/archfiend_dice.png new file mode 100644 index 0000000000000000000000000000000000000000..601e5faa5480ed2e08fc843b91a1dcbae0f41454 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|G#qO%C?=mCrp^& z;udXc=B%NiFDRSYqb3 z*c>$Sp1xuYi}dCv(|-FJJidPSsr|uS&-brwpK-#nSZ$LqLyx)Gk7xRmz5~r?@O1Ta JS?83{1OQ*3Q6m5V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/capsaicin_eyedrops.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/capsaicin_eyedrops.png new file mode 100644 index 0000000000000000000000000000000000000000..71ca41b9b6869c4ab4b1ae00190f65e641c2bd0d GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0ErN{>>r=hS>f?K(@HJ zxSpQge+GvCadH1=)LnV{oxkbYRG=JXbx6>l4+o9wumU%dU&k>f#D@$*kD3A0#w;;H?yTS8jG-6mnVKA~r} aKVPDo7AS&{RGGh{+iPR=7U o#uE?bBuz3CUNf^;t>YLAgS;BA^jRgBMxf~op00i_>zopr0I?uEA^-pY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/crude_gabagool.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/crude_gabagool.png new file mode 100644 index 0000000000000000000000000000000000000000..7d7acdb6d61d1604cd0a9575e5fef98713baf129 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7EFB>gP#{AOY~Rb4Ms zUdcpQMCz;~A5em^B*-tA!Qt7BG$1F+)5S5Q;#Tqju85cgTP6#%JXMic@q|Grppb_v zl-1D1#W~cG=Xii%`sO7J3eEwhS3D(;6bObG@p3X~hVhn`vI0pyPi8}jNj;Neg&cUc iiA*->kj-(BVq}vaXVx$M zS>Smk*E6>N&^HsymF}w3&Bdmw>xIfInFx#6dIs$Ts%9(+@(X5gcy=QV$O-XuaSW-r zmF&QlDXd_!xLdg8ph>Y{h}S}fa|x$fjJDVu?8-ePIjvdZkd-^XNCOMs+jl$orWsll zTgl{{NxR(fIN{helq# z;$mT8Ijuf_CQyR0B*-tA!Qt7BG$1F~)5S5Q;#R3&D`Nu#$KwC{Z%8D1n=h7sl&<$N z!~N$u)4YAR?$oJ8?hv11HLK~3qLE*Ct5<5ekEWkuynjLBvSpjPqeKrMb`7*^Y?)R4 eJeK*Qc<#PzCYDtO4cb8C89ZJ6T-G@yGywp`kT%8u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_blaze_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_blaze_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..89d39ecce43bfff135919c30ff6de9fe4a8cf1a3 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08vjkg=0fxmdx_ZNm8f zhx`Al8vp;dtS)8zGmXJhMJrU##7#}dTT9PeQempP-Zv9VIRWAOdJWY;os1jv*Ddde2x-JM6&W61c#{Sov4;xBZdD2hPdt*i_!UDE_$Rq7LUzp8AXY zB8%5rw)%_wShLhf^v=7f-t(9q_?;42;K;lE^sx(Vr_Y2eT=h8XfPwUX<&BN04ikIq udJ_cy#NPN_c{ovQ`nfxnjz{MFtkq}lXR*DhD!>i2ox#)9&t;ucLK6U3>s$>0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_block.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_block.png new file mode 100644 index 0000000000000000000000000000000000000000..f6600cfc29fa36a3df42c30b3057e44b9bb4c39a GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cTI=-7Cam+frN~lfbfj%LI;4V8B2ovf*Bm1-ADs+qCH(4Ln>}1 zAK*GSr}2`p_W6dFE0;b@xHj?Ar%xXw6dt#DS5~};QAiGK_kM9kN8$03gwr{XcPbp? zS^8vV!b(Zq&E-u?TcXltpJkoBe9E5RdN+<}Zhr6dmf;cy14H#qm5>^%V@*J77(8A5 KT-G@yGywptyG~F5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_crude_gabagool.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_crude_gabagool.png new file mode 100644 index 0000000000000000000000000000000000000000..a522df2364815d337bdbb6eafe61fc7ee38a738a GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08vjkg=0fkrNO$msIf9 z(sNVO3Dq<4RMGmqBdLsm|7U^cHxtXL>UssoUZew6GnNGT1v5B2yO9RuWO%wbhE&|@ zIpZkBAjsqVP>tcz@A&dx2kY+X+26P?Fw--yW^>LhMxCuwqByU&g_SSdz`J*=E%#-% z?{XrOi{&C5dn^5HB@Wk~+bY+Sk?G2Qpw!`cFegvcDa+V`hTe3ycSg+n9CyxOU^x1d V`JQ6!bda+dJYD@<);T3K0RWzsN)Z46 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_glowstone_dust.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_glowstone_dust.png new file mode 100644 index 0000000000000000000000000000000000000000..d3128d0a72ff0c83adb2e8a6d0ca1653e6fc890f GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08vjkg=0fiL#XG3)9F!y?t95SsXbSK2HAnZ+7jqMcbtp9ek+yg5gS3!?w1GQK4RjOC>nH zWjh7f=ebIBTDL6hyyekxXI_!&vzZ3|tf$Uw5^9%KI#cz^>qX(p$`xl=Cds8OUv+lr tR;7tEyw2sSaw)OSdNt*r+@ja%ahzo=Zo96iBm*sH@O1TaS?83{1OOmxS3Cd! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_magma_cream.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_magma_cream.png new file mode 100644 index 0000000000000000000000000000000000000000..29c03145d880dc6bd8e0aadbf41f401ca31e77bc GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E08vjkg=0fNtBTC*3xrR z(+Slx2`bg}RM9$iC;ZuI{a4G?zr6J8HetNls&F(`Vy}b576~hJNrkEEdf!Yec$(Ggse@}JX!ZS_l z4a=DYk{VAN_MUyA=e}u1lF!K!jdv$b&fI%Q_P*tA$+b)e#gjfLSLJ6(^(L-8%hhqF z<-+Urzol)g_9wm&O}QjoZjzhdbTRI+oXbNcvtCz0i-*6xrsc+mTC_Veo;>UC)0HJ* V_U^XpRiIlKJYD@<);T3K0RWl7V~hX* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_nether_stalk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_fuel_nether_stalk.png new file mode 100644 index 0000000000000000000000000000000000000000..06c520b5299eef2b53caff75618be6339f7eb7ac GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=8P4ESIQgPF2@ymQe`R zGx65ab5qmtRM85O5U`U|DQ4j?msBv2knvz(kP{G|tm()E)WcX3 z;uunKEBOG|yL+huCJYx>uX@)cQ9ga@((qWZgoGVYadGqJaZlMP7&UL+Hn|fO*9B*7 zdnG&J|qY i#B-*Nr@YYwXnAy_j?=t%Z4ZGqGkCiCxvXgP#{AOY~Rb4Ms z&%|3x&rMCoQ$@>8PNklKp^SmwTvEY6LPkzN*ouK+pVanHpdQAOAirP+hi5m^fSg=U z7srr_TgeBw-rY-$_{!*Ve$5{4q&suNro~m(Gcq5(`svfBFEI!~xFgxY15&Q!hfdQrHta>W^zNpfk+SDjtD tRcYc3uXDMoTuQ97UQPKYx9D|x9A_De+pa4r$w12)JYD@<);T3K0RS9-RiFR> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_magma_cream.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_magma_cream.png new file mode 100644 index 0000000000000000000000000000000000000000..e8dad5f6f6145dd4ab83d0bd3d5c965799fafd1c GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E08vjkg=0f@z&CFQ_~66 zGYKly^io#G$+Ny9gR${M%#1;uFb4i6n2`MWEhI$4DIRW94 z-5H5MQy5Ev{DK)Ap4~_Ta_T%?978H@_4GBeF&hfFq?Z*7l&+if`+vNSMaHDJ9NZ4` zdD1>@_#w`<;5*ytS6rX2@7XauDW{g-{bt70-~FnJ$cZ|{yXku``-7`vzL8#Nc+nR^kG!DtlV}d SKQ^FC7(8A5T-G@yGywp~7GWd+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_nether_stalk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_heavy_nether_stalk.png new file mode 100644 index 0000000000000000000000000000000000000000..9a173ff10969b46635a912fd2aae6dd144a830d3 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=34YG@E4Zdq%q0~JBxF1o7~}+mt$>QnEL(wk7)yfuf*Bm1-ADs+ay?xf zLn>}1AK*GSCvnD4MwfDzIgEzqwzTYUn=}8wfdUH?lPg!*HHyzzT)DcG|HO{jX>TqS zil5j~VZQVCI=zmCs$0H^brgDf6<%Dr)!|s@Q*QmWtXj|JTrT{0?OnOUu|LLV?>fwC h{I7mkQlXcDL1lv0|G-t}#DNwwc)I$ztaD0e0st_8Qx^aL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_blaze_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_blaze_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2cdf064ae9d1374f1ab77293af09dd461750a9 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08vjkg=0fxmdyQ|A+hk zs~Z3Rw{)8@{+Y(Gx|GpVMJrU##7#}dTT9PeQbA5Y*ouLno`K<1^G+axfw3gWFPOpM z*^M+Hr`*%UF{I*Fk^&RMsTp~PI~ECiW86C@;eTrHLYvT2X}@Zpc$~^>jrkwuF!jfq z;%{j|-8F9;cHdmMGwj4+eV&Ogr+JHcGKW5Uq|KVSB}!X?!OPp(Ywc2T^UDf)Ooh>( zuJp`EHQD)nX4^uSH_P8gO00TjT&4e#{~tqi8O!gQ#El1mPGInK^>bP0l+XkKWdL1B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_crude_gabagool.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_crude_gabagool.png new file mode 100644 index 0000000000000000000000000000000000000000..0d50ba6de34b4dc28083710f4177ad8ceb83712b GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=7EFB>gP#{AOY~Rb4Ms z&%|3x&rMCoQ$@>8PNklKp^SmwTvEY6LPkzN*ouK+pVanHpdQAOAirP+hi5m^fSh7a z7srr_TgeAlVqQzWyO$dAmGQ(5>&>6^CLH`<9u-;j^e-z9Px$H6r!N;bcICB9TfY1( zvr&wd)8({xY({fpqMpCm#%9P8Tc+J8(bweU=5@>An6Im%a_WMlbz6-^r=H)#G~1^1 oob`m0`z7A(Oa8H+AFr~m)} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_glowstone_dust.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_glowstone_dust.png new file mode 100644 index 0000000000000000000000000000000000000000..80716e0e20328ac4d350c6da46a80ce1cfeec033 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08vjkg=0fkrNP(vXtoy z)7w($@OqV>xunAXJ#lp&ia)Q+@l??Y)iZHZ)A82Qt7l-aVqkb(EDJJ$u_VYZn8D%M zjWi&q+|$J|q~cbR0uw{T3@+xjMga+%%GSTrb)Sk_7WY4Iv`IhGk~Nq0uRqI!xa#$- z0&#z0N`-8tB#N)?n#d&}$@#SF4Eu%_wS8xb8qeDarsY;K{@oQ7x0lP|@0nSv<_45I vhy+*0f6`E3FmUeN)4<^`EpYdvc?knU$6Hp3V_P4Be8S-A>gTe~DWM4f`Z7{} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_magma_cream.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_magma_cream.png new file mode 100644 index 0000000000000000000000000000000000000000..92252d24552729eddf7a6e51c5a79ca8091edfb5 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0DHgV5nzcNR*HYD%IQ~ zVRh_I_+AHzqp=cKTNR$2)_=8Jz1xKG%S%5`6)kf~g-|^cH#Hq^Ej>8_VLLe$0|}YT z>@#*iQy5Ev{DK)Ap4~_Ta;iOD978H@_4Zw5bXMeXEi9k(H(WRBcNKeY{3nKE8j2Pc z_bZi|LLBb!c?m}4uH_R?O=(!F*CyU>DYJ4)s@aRviY`*?5}BUgUO2^r)oA)JtE3R6 zi0mhY9LwiyzV#xwNnua9@xIwcZ48 PhtvYPd+ZtAAMw!QP;+v}e_&2BNt$>1u` O84RATelF{r5}E+N0$V%) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_nether_stalk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/fuel_blocks/inferno_hypergolic_nether_stalk.png new file mode 100644 index 0000000000000000000000000000000000000000..5fc558dfa8da5ac5ebf2d98c4625b230d94b404c GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=34YG@E4Zdq%q0~JBxF1o7~}+mt$>QnEL(wk7)yfuf*Bm1-ADs+N<3X0 zLn>}1A7GjDS@PVR#2G&sPgqh2%!j?Tce&S8d**W}1DM&G#n#L{D(ImmL;AquU-=rW8RJ zw`fx{XAKQ~X=z0s9zHHEuI+m+p9d;pED7=pW^j0RBMr!j_H=O!skoJVfXhPN;brDb zVTF=K5;IJ7bpv&Eg-=9CO`A4NiZx|T2Cp}7IFsQl-@~V;9_0C6uvAasaD`j-u1`7& zhf|)FES;&qcKy`LQ=7#M8X`_Rn#^EbBFMmSEl+Co2LpQzpfwDhu6{1-oD!M-T%+1 z`_I4-H~D=MP?WJG$S;_|;n|HeASch$#WAGfR&Sqck_#h`ll+tK|Jd`GWw&2FV*7!& zlEt{Vm&eKY+er?^306tV*F-TcepFh})KIvmU=wHCN3oX$*V7JciVnK1&O9OGji*?i zyQsy@XJH)2@1NYU^RdBxd+&7?JV!S>PI&Di_(iJrlD(OOg;&n*b^0LJdAjmdKI;Vst0E9|AY5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/inferno_apex.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/inferno_apex.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ec03241f1631b2f580917c3915195d842ed38e GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`m7Xq+Ar-gwUbx8F;K0Ltq3@}Q z|3;qmV^V*-=M42L$+OvdxVM}$6@HR^awFhIJ9fEoIGC bwIA4W9QS_S7+tjq=m-W+S3j3^P6MdAc};RNP8-VAIJ9xaDcd>$KWcqB){3 zDN|7P7^j2VqKKBlV#Wy*r!Bd|n7AaeWDA3&A4gkvB-@OKml7{dV@gqpE~zNl!62D) oQcO-ymWM|{tb=W{(S*4S4D1Y2D#bI727s*gboFyt=akR{04Gs74FCWD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/kelvin_inverter.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/kelvin_inverter.png new file mode 100644 index 0000000000000000000000000000000000000000..f05b94615602e317f498846995dc5ee284f8a3ab GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|33!AZzle~>zMHR z|GOy?+B^SiFZr)sd*PUivUtSIdCbgZ4E&n=E|&vUGnNGT1v5B2yO9Ru6nVNhhE&{2 zc3^ud%;%7?bcT$afo<~a^Bb9Y-ZUAf=M?%e8mX|R=NNB0$!L_O<+^j`&jyL$^5sio z5)!Vn7)@GR)Y$WK>E=0?8+g9HS{vPSSI?lJ?cKe7M{;#99GJQA_T_77u?!m*6>Wak hq&vHs(c>^9!y-=&hLT5thk>>;c)I$ztaD0e0s#CIUrqo3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/magma_cream_distillate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/magma_cream_distillate.png new file mode 100644 index 0000000000000000000000000000000000000000..c2bdb315017620e475e0a2d4d060f25ef58d7bb9 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0ErN{>_!A-@8{i9*vb) za?I=4o$xO&{a!6szuKy>*FmCt?S+5;{%w)4x{~X8X8qFX=3*<|Rb%@PWpUk~1k}t} z666=m;PC858jus`>EaktajWFSRz?;_hQkikGgtnPlkW?h$)-Q`lD~e|S{tV7eBn1u zjn*5!2yeK`+hUlb4d%B>9f!+c&=@=5m?lvlj3I9Sud e!SUdOIYaL>=CJsmscJx*7(8A5T-G@yGywp809ttf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/molten_powder.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/molten_powder.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8da9429e7ec4f48d9749a9c228ece4c22df1e0 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9cDO#FY>@!b@OCk@ia zT$JZAGnX;&Ge{S01j;d%1o;IsI6S+N2IP2px;TbZ+)6&cA0e}VCtY+!!=fz484p!b zB>2Pvf`HQiGJUKhBA1%`njxgN@xNA`Y<^P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/nether_stalk_distillate.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/nether_stalk_distillate.png new file mode 100644 index 0000000000000000000000000000000000000000..a3d6452359257b6d630d38d3246bec771b2e1d6b GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=3fZe&2ll&6)K}yVqX0 zlIt1Ue`uw<>QNKR>E>cfR5Y7q6oMoKidi^37#Mn)f?I(a7)yfuf*Bm1-ADs+f<0Xv zLn>}1JFqQe6_|DL2FIZUt@$idgFG6HXB=9{<6FGpk@0bfWsMS>Zk0<2IWSExTVu;M zEpp3mo*4&AzMT={czkxQ_W1+5KA-#L=#%2@?Oevh;4B~>&tq7a2{fL;)78&qol`;+ E0MR*+`q zVzp;~us=|gu_VYZn8D%MjWi%9(9^{+q~ccc0k#O42$=&s>Z0kw2Fe}*Cq>RAl!kCN z7_^8e@`$Udif>R;O&3;WpU{&uVU<9HUPz#&NYaAMoM#-=MLQZ7HLemUW{O~*u!fCc Y#%V4Mi;ktAfrc}9y85}Sb4q9e0CI*kY5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/stuffed_chili_pepper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/stuffed_chili_pepper.png new file mode 100644 index 0000000000000000000000000000000000000000..01536a0c38e7d3c73020d88157c7a74298b12dae GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=4Sx&VO*Ne9l9Llbezz zTwvHUJ-m4@L&pM%d8zh^`7*WM+D?jIEGZ* zN_JqAl@@czn7&Fw&tUK8Ro5=D^2i+9T^<+2!(_Ckw>(aCN*9w++3qPTyRsT3ZohA1 zlTCQ=fz62NXi`Iu?AzNS&W$|%_g+tD3FS8^n0|ln#3i$sO$y3?_FkB?fmtCe(&vWc ghSX|4hD-|v23tGLYCQ{GcA)JHp00i_>zopr06O7SbN~PV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/sulphuric_coal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/sulphuric_coal.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3337afc2a00075be1feb9087801a6beaea4260 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0FF_U_89Ucts=I>&rg> zUxxhu-}L{_(Oe_OgR>R`Wf>Stg8YIR9G=}s19BofT^vIyZY3!QG2EKa&&=ke(6#U% z=ZpPG{Ie(LRjtT-e`NKV^VggowH&jsV-M%5JG>KziSihF{ Tt|IUM9+3H-u6{1-oD!M^8zIpOM?7@862M7NCR?WJY5_^DsCkyNHLt6#x2v)B*C)aXw`r2^``S* z^w}S}F>j)wPUH5|#=@;F0k;KJSG8JLnOPjY$2#wbr^d-AW*a6?zGH7vy6X83qYDg7 p=s^LhAqk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/wilson_engineering_plans.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/inferno_demonlord/wilson_engineering_plans.png new file mode 100644 index 0000000000000000000000000000000000000000..b951876a617ddb93f588ec4c297d764239d67b87 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0E^0%s>C^zhB?A|Ns9h z$IiE@J*JnrMn1S->QG__P@1tM$S;_|;n|HeASck%#WAGf)|4(ov7-hYhwVBTzT1C1 zUMYDg@2lF${rs=%3d8J+9KTGx%Xw%WPv7?3bu)OCmCrQ@-l~hR+@0Q;dSymU#C(FVdQ&MBb@09_DANdN!< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/festering_maggot.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/festering_maggot.png new file mode 100644 index 0000000000000000000000000000000000000000..051fa7c1e2375da1a5812210d3f26f8e71272748 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0B&bmC5&&&We@Lk`y|( zwB~qg{H9Rj7C-e}o{GDH(u^fRe!&b5&u*jvISHOFjv*DdN_$zESQU7jQj2Zg)jzy1 zyY0y@^GSQ^ZR;AF(oa44dHiZm@$dfVAl^qz6<*7ur|5Cb?2f)_&M^DQ$9S*vJQH^? zt?)mw_)F3;v)_yg23zN!xO8vn?f;Ey>>qP@+c8=1uB?#)+Qs1M>gTe~DWM4fML|iA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/foul_flesh.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/foul_flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..c2c41f97942fcd8e48b3ff56b6424768e12217e0 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=6+o5ecErey(Ot*7{Z^ znugj++G?`0QX;~Fyc=F0JOot1SQ6wH%;50sMjDWl;_2cTQgJKUfr*QYXKn(Uy0g2g zONX**DpSOwyH^e;s|7SI)Vyo6L|A3EaktaVz-%e+2V_o`ld94U4>(W(caJ zykHXx2nz9J=;dVC XAkBRykg28+XexuJtDnm{r-UW|MZ!7_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_catalyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_catalyst.png new file mode 100644 index 0000000000000000000000000000000000000000..21d79c993c870cd695c5ebc27317b3203db80711 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3z`Z_Yh2LE-4uvOW)~ zRm($5v_n%(1dFOf;({$b6^tAtwamoiH2I(Z@&5``%~%rT7tG-B>_!@p1^db@*u->3!8C8m+S6>JZ-0UTVHD` mJ-ar_N;v7l-Pu2MSs1=t5Mx?p_OKmjAcLo?pUXO@geCxaLqtLV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_flesh.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/revenant_flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..a1becb421334cb8e2a67e0fcc71bb1af3a936f89 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=2x>Llll~m0Gpja<#S0 z#96*wsv$)pS+NrNzS7PyeA=O++BR%5n#__aOdR}-C(8b;1nOZd3GxeOaCmkj4amv% zba4!+xRva{#Lj0hht;@3^4ywMj*lVX@eJN`PTkr4TqmIEVWIE2oC#WX-?uHA$L(-z zuectG``f&f;y}ubXzP|H$^Y=fG!rkNl g>leEnd1cCiy4YwZ3uG~TW)T>5oZt;5pLhqu4YsbrY4Yq#~YJJxIy-o1S<=a9ot bEXcs{T2KAU*<9W{ptTI1u6{1-oD!MQghD)sa4Bm zCeHHhQVl5*$%>V5j^Wd`VN|}@ z*dvR@ng`UaK1nBJLP1usW-qkX9m)D$G#-j>DyXW5sNseg;ohKbLh*2~7Zl CA~4Ya literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/shard_of_the_shredded.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/shard_of_the_shredded.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc116bcd0fe2ca75d00a6e5a4f2257c656a5852 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-D~SGaW5SOY0w)geO>AaJ zjpDemL1fQ{pGSBO0p%D=g8YIR9G=}s19H4QT^vIyZuNGZWIVtiz_>B;SH8vfx#4>Z zn&Txu-AuBZzF^hr{OVcDrn?^bnChsa9C(%Ab<+E{6N03|nJ)MHPOjr>_;~M3HFND- a|Frq1SVW&qKQswwEQ6=3pUXO@geCyQ#X;5p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/undead_catalyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/undead_catalyst.png new file mode 100644 index 0000000000000000000000000000000000000000..5aa791b3a834fc9ac8d741497de6dd69b025a9ac GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4d*OepK~IGXAhTB5zh zMIkiRq}xQo(o@06K{7~3K+8-_PLp3lgli3Jm?cm(V@Z%-FoVOh8)-m}tEY=&NX4z> z1N>#{+b-!P?mp1dtMx2UVb<-FwiUM+1r9I0lEl_=aI1}l(3uB*rtzF<1~PMZu3}&F l+RyEGY=>j|xkuXt7%rR@o$v6hUl3>@gQu&X%Q~loCIClHKTQAt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..eee92c916480ef33b069241d81ece231c2a8171d GIT binary patch literal 317 zcmV-D0mA-?P)xr^WL@OQeHq}<+hkd%=;>CN zDL4j}H|7253)3|9>B$WB3Ri z%}3}!sy-N92lDyFhd1C=Px0a0LAtNvV@3nWzf}eO@WGbs_xW5y^pZEH&4* P00000NkvXXu0mjfP=$iB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png.mcmeta new file mode 100644 index 000000000..829798ce0 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/revenant_horror/warden_heart.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,0,0,0,0,0,1,0,0,1],"frametime":4,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge.png new file mode 100644 index 0000000000000000000000000000000000000000..91c21b188d88752f761fbc9ab6ed0875a993df0e GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3eeE?T#!W|_8ZfrWLi zwoahBrm3hnQ^3Y&Ksm;eAirP+hi5m^fSg!Q7srr_TgeBwVqz9-*=RW9Xj06yv^NYX z8(Md_O;KZzJh$}Nv4?63ZeAHHq&p@?t(c}F$Ck20q?2vcZbr#B@09vfSsmDlqbe(B sF`iI(yu~DW!%4=Y&(;XA2`Di#>|Y@GwRwZH63`+BPgg&ebxsLQ09#8!+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge_locked.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/bloodbadge_locked.png new file mode 100644 index 0000000000000000000000000000000000000000..522b50bc39371bdf5c04e3a9065022fa3d4c5494 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3lmf#HF6!D9UGVqz9D za+)Hd(%d}zAI$Ry$}yG%`2{mLJiCzwncRAuEX s#uEyUx0obvILUYPnT`OPfD$9aJr^NKi@AOOfEF=$y85}Sb4q9e0DDnC=>Px# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/coven_seal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/coven_seal.png new file mode 100644 index 0000000000000000000000000000000000000000..c8dec0b663b90664d70b2f68c5ee1428a9b81112 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=3eeE?T#!W|_8ZfrWLi zwoahBrm3hnQ^3Y&Ksm;eAirP+hi5m^fE*W37srr_TgeCbotzhzL`k(geI_-DX;EZw zZ|`9yhn^`H0?Y-Pmj>v1-eEkVA;cTPZYXibRmS_ku1lv*UzSi>4uSn z#4VwQo}LSwZx-hA@W>o%nz*#-7%$J8HqAwid5eT4EJANZ*%-}f;Mv|IdpB28SVCgj z+KkgLPBFcDl;!PxI)WjEq1AyYL2&_t#F`gPQHNNC4zMuT&5$^zm)*DnXcvR0tDnm{ Hr-UW|YK%wU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/healing_melon_bite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/healing_melon_bite.png new file mode 100644 index 0000000000000000000000000000000000000000..69f49b43e44a5d8050b8b2936eeba4a036d70a92 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=82H%|14%V)1N+Q-!fD zoeKL6l_S%ndbM?2{Q0UR_#!3vBep2s0;*#y3GxeOaCmkj4akY~ba4!+xRrc>>4uSn z#4VwQo}LSwZx-hA@W>o%nz*#-7%$J8HqAwid5eT4EJANZ*%-}f;Mv|IdpB28SVCgj z+KkgLPBFcDly&;Wi3kRxjGIhtp$Wn}B|2Ccj<}2JF`N|F1X{x2>FVdQ&MBb@0F#zQ Aa{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon.png new file mode 100644 index 0000000000000000000000000000000000000000..989dd33d31e5bd3fbf080984f7f6be19b7f2f18b GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08`_80+HC*V3tQZQJa{ zvlSxKq>fFhh?L;3lHlvr*4b~UoOdn93aE~;B*-tA!Qt7BG$1F-)5S5Q;#O~$I}?i` z$6*iI3IG4!SIybq8>E}FeS!u5C2eCj^V`V*ZCjto)b?9mS2`LOoZDwO`_l3k;m%uj ztrPM+bW(S#vW`ef!=D=mnMGTsA6Q-dY|4Y1idtgx6t~}I*EzH?zUYs>-A6{A2o}NK Sv{Y}Ptqh*7elF{r5}E**o=#{0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon_bite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/juicy_healing_melon_bite.png new file mode 100644 index 0000000000000000000000000000000000000000..ae96a6b8e3e45a9f7714e6720fb73b68f605a1b8 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=82H%|14%V)1N+Q-!fD zoeKL6l_S%ndbM?2{Q0UR_#!3vBep2s0;*#y3GxeOaCmkj4aiCJba4!+xRrc>>4uSn z#4VwQo}LSwZx-hA@W>o%nz*#-7%$J8HqAwid5eT4EJANZ*%-}f;Mv|IdpB28SVCgj z+KkgLPBFc@b#>asi5sO(yolS@m?+9V;o=7F47M9DWO;b*IB*?1%EAzLN1}hrt$PMQ P8yP%Z{an^LB{Ts5<)2Q@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon.png new file mode 100644 index 0000000000000000000000000000000000000000..a67fc33e24cd1ad3bc58f4864ff49e030cb17f09 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3eeF1ogD_PRwi$0k)Q zo~>}IFt(*rVZWhrWSUg3wvLNGUzG%3qy&H1zs^peYQ~ZvzhDN3XE)M-oFY#b$B>F! z$p@G$c1cKtnJ`GkK9#mO9d2My(5e;cAI=qf;DF?nWpPs$?rUtkoqKfCnsp)y%8OrL zyCs?{Eg|7IC+gzXW$Y_npX=IPzWW@LWH$e;xM>fWjKpH5Wo%)RuJz7(7-i7h{rn9R h8^>#=DF+!AF)FC5MybXo+5>H8@O1TaS?83{1OS(URJH&B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon_bite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/riftstalker_bloodfiend/luscious_healing_melon_bite.png new file mode 100644 index 0000000000000000000000000000000000000000..23b7edab8774e915a84103ead2935c5002ad3b88 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3eeF1ogD_PRwi$0k)Q zo~>}IFt(*rVZWhrWSUg3wvLNGUzG%3qy&H1zs^peYQ~ZvzhDN3XE)M-oJ>y_$B>F! z$p@G$c1cKtnJ`GkK9#mO9d2My(5e;cAI=qf;DF?nWpPs$?rUtkoqKfCnsp)y%8OrL zyCs?{Eg|7IC+gzXW$Y_npX=IPzWW@LWH$dTgEMo*+Z1Y1cz)*ZBN@nXx3u zFPOpM*^M+HC&$ypF{I*FZ;v?>vm*yH@9g3q|C4nWp9;TQ!aT_?f9C`L@Ar=TePKTS zlq2@Vj+nSF^F9ZcOko%G>C)KX{I0m~PL$l<8wcAbMKfAff1Z-{Vc|7_nl0Wj+OGUx r4GX8tj@!V^>KEFus`-P{3;%u3zq9}1AK*&!Yq&6H z=}duRU#@K66mW~QXxX@_W)ky^gQk&ztczAe2C^J_&|uuNfTvAORN^q>sf;#5iwU`G Z3@_&J7z!O0G65RK;OXk;vd$@?2>`_4Kx6;_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/golden_tooth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/golden_tooth.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3d55a972ec3077364601f086a580f062dc3edc GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9aPp!e5KYHrL9} zh~}D=wQ(U(g0UpXFPOpM*^M+H$IjEmF{I*F@&WFM*abZaj_e%`3m0&-B&@KgQu&X%Q~lo FCIH}aHvj+t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/grizzly_bait.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/grizzly_bait.png new file mode 100644 index 0000000000000000000000000000000000000000..50f11731534bda9caf4e6af7b3d5fdd85c24f410 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0E6hF|_k@jxA3S6g4-p zsaDrdjY?m5e)q0BCr*gVIHpc178e)yNeFZ@GB~}UadT7DiUmvJn|h`JbuyL&`2{mL zJiCzw_tDnm{r-UW|0;WxY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a8b43e874a0cfc11c08dd34f1dfec18402ffd7 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07MfRS_3tuS+t&y{$GQ zKyO)-@3a!fqqAeoHAIA+q%;vBl2n4kQq}>0+MaF97zTYLk*l&`U^^6xM(~o)B?`pyn;lr&M;|L_H zppgc$f`uG_3^K~iGLHg}>(>Ra{$ObA12p?L&Olr{tsJ)ZO z#C`3RxT~i3kM{utYoCOzhWa{1KQSke#=5=%jIofcdS%R;`usF$vUo_!CS}Zm>N;0n z&j3==*@toVbM}!`papb8XuH4rko4_7u6}U!BPP82kU0?MG%8wE1B& zACG=0!2IfmWLG~Ru6{`W;0ICg?gv)E?gy2?Lgp{@+kf4U(;zlKG=FvT12EtHkQ6-e cBR}ECJ??f37zR&O6951J07*qoM6N<$f@+1P@c;k- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel_spin.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel_spin.png.mcmeta new file mode 100644 index 000000000..5c1a6337a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/hamster_wheel_spin.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":2,"interpolate":false}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/overflux_capacitor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/overflux_capacitor.png new file mode 100644 index 0000000000000000000000000000000000000000..5c253da194abca5a7b1d960dfd3fdb93ef73dbb7 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0BKU=C;7pCrvZioX;4@ zzGN1@%`^Zg(x96U5o8Q^;{>W>EeY}i>0@9xl+CsgNacFEIEGZ*%Jpq$WHR7crLFSe z|9+)wx#croTc)M$?cW*mZ0^VZht!Y$dCe&y`M;2zuhKu%G}%t?S1!YvBlE635>wE8 zE?LIlXkB8Vv877LX}Za&`gYa^!H5U$vsfK6w0YEy*uP|ZBJXlD?*B2-f=rgD|C&C7 Pyu{$?>gTe~DWM4f8*)q~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/polished_pebble.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/polished_pebble.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd9010f0afa5dfa0c14a5b13746de03fb630425 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ii4<#Ar-ft_BOH}Fc4w2_PFN3 zxP;kd`3ZwaHSJ|_mP#$xn=T#a{Ifg9{)Sv~dw7!O((6%Qe@zU`S$kK2Q}N4jqekO& z{f0H-BB2jFGG!lrkCaK(HfYXaE$LyIcBW**q_qr!hMgz=O%T|>ll#%6Raw?GH=Tj@ OGI+ZBxvX3h@RsIR z?p6MlUsL?+=v3SFrhBxMYzk95S62#NR-E=>-eilXDoNqDEuDfov9KLkUhvBlC7f&76BI40mrcnIF6{iR>xX zXR>KcX}w+eS*m!-rb@mo26F^#ZQ2yRxqIy7a(%0zzVGs{KhK#{!Wi!5)!b?U8p+`4 L>gTe~DWM4f5Dqe= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/true_essence.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/true_essence.png new file mode 100644 index 0000000000000000000000000000000000000000..5efc3ed2135f78f82efe1c83cf06b1185aee9705 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08WJDG3b?UAuPeg$ozn zym`|cvv_LF>J5wbojGzPlBsv2oz^d)BF2&+zhDN3XE)M-oCHr7$B>F!z5Ss~%#J)x zoofpJpAHL7d$muWFa99=o3C*l={G_e*>#K#U;GgEEbZAn(YbP#JejMOl?WeSe9)9D zs-t=FHjV2mnjY-YSvE^uXor@S`y;O9k>+v|M_=j3Su#Fd%iHF3Rk#Ug7lWs(pUXO@ GgeCyJt51&r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/weak_wolf_catalyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/weak_wolf_catalyst.png new file mode 100644 index 0000000000000000000000000000000000000000..266dba5f9be3f9834a3543c4227b55fac048371e GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|NZm(?Te?EP9IxZ zU6;L$i)os$a4ZYUbmwbjKxxL3AirP+hi5m^fE+JR7srr_TgeWrI%)xJo3j{N9;&2p zrE2VUnxfI_wB%BVqEODufTek&0=HaOGW$q#uiDm}k>+}^p{V2KAx72&&2Zrra%}-2 b>cWbbHLxPYT2QD?~; zhKWH&Z3Z`bdVLgE1^0v~@|am1j_hUBN@q*ma8QDW)5DC3Vft$}>yMp5;XsoZJYD@< J);T3K0RRk>IlKS> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/wolf_tooth_locked.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/sven_packmaster/wolf_tooth_locked.png new file mode 100644 index 0000000000000000000000000000000000000000..0441a2a6f4803531799060c4934fb564cbea50a5 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=0=<4)%7|Hr8eqX8OiP zn(_+L_dhpw10@(sg8YIR9G=}s19I#()Kk=m#*D- zc~(b%OYM>P?1%ubxpKNDx*DNOO7ep2+zbqE(=3hwRWp_Z`2{mLJiCzwK88J zm5>mf8nH9FB9w{Q`C8gTe~DWM4fKfOvK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/arachne_fang.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/arachne_fang.png new file mode 100644 index 0000000000000000000000000000000000000000..694e133500d2a4dd5d8cd395dd70efaf18dd0bd4 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfJH%p8PZLTiczINHY z%V(^#m0Z?eoD7s;ED7=pW^j0RBMr!L_jGX#skqg9x>b-tfq}_^^KN~zwSMm3<`1?W zcJ();w#d#fdNkp!#ykrx&lv(|t2{lJO;|G>4y^NkQ9AGcs`-Ym^;@;(FJ@>FX804g S$8s*vNCr<=KbLh*2~7YsC^%36 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/dark_queens_soul_drop.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/dark_queens_soul_drop.png new file mode 100644 index 0000000000000000000000000000000000000000..1d2fa765750f319525a0d93b7beda064a48e8f2b GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=9cj|6g|HKUe#bGV>B! zjUXW|@jb@&6MzzoB|(0{3=Yq3qyagWo-U3d6}OTVgfz4qGRzzm4bHC6P{ z%ii#nFa4orP~DOkk~TN8;Fy)U63-gPuSdli&*cbh<2|x5_Rh*{KUrU{UU{uV=8~w9 zWshlVX6M}1AK-iR&pBhxCG&sG zQy)xjOPF)XAm^9-ev@TFm;Y=3Tb$q{Y_P;oRHSj~tOD=ZkEXfpke+WMF+q7R(|VID gfjdMSmYif~h+dnmdKI;Vst02>)D&j0`b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/flycatcher_upgrade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/flycatcher_upgrade.png new file mode 100644 index 0000000000000000000000000000000000000000..aca65288202756312fc7e6bae437312a1ea3172a GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08YLVET2<>&`UczhC1w zr3ha9_v!N*m-*Io2O@Zqu9mo+~zu?*Z7FxRG@KeC(sNAPgg&ebxsLQ0Q1T= A(*OVf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/primordial_eye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/primordial_eye.png new file mode 100644 index 0000000000000000000000000000000000000000..28ab5e3945a7b5b5ff225170f688fb895a6cfec7 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9bY?tZ*F_)MGR^q{Dj zKHOa{K6O@31;$qS#tcbnx?%Ea-r{l^oJwkau~k6Tj3q&S!3+-1ZlnP@zMd|QAr-fh z5Ag3Of8SC28m^F3E!655t(lggFYDUhBomR@A tvg!GmccuZt{#P6%-5rb)YEOtUF|_Owt(wL);SSJX22WQ%mvv4FO#uAtK;ZxY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/shriveled_wasp.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/shriveled_wasp.png new file mode 100644 index 0000000000000000000000000000000000000000..950ff714dd267e1f0f11981241f356481862bb7d GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Fdy(2Vu4u1pP?IiaJm zJWoqNES&ZD2cQIFNswPKgTu2MX+Tbhr;B4q#jV;ij9dp4c$_b)WWB3@V%ni?5h3uP zcFB*sF|QxZ+1;^V)&q&JPd;DOTJcD8OKO*iq_o+?2<27>Mz^0VEu36&(Tf)OO}TZW gy*Y2YX#F>aorR39J6D9e0L^FcboFyt=akR{0BZR^`Tzg` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/soul_string.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/soul_string.png new file mode 100644 index 0000000000000000000000000000000000000000..811addb9504c72171b6c4f8ee68892c36af7cf34 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0A7x<^Rly|7|sb%FIhx z^GmtfmxypnF@8-G2Ffv(1o;IsI6S+N2IPczx;TbZ+^Y3G%6Pzmr|Zx^>F+D5;|{)k z{-;lSol8VqCy)J+)`jn1eihvOsNnnDkBys+?p`nGt+S0(bnKKC!uHLUVOlVpOQFy;+;*tOY=Ij3q&S!3+-1ZlnP@Zk{fVAr-fh5Adg@ zIlc_~nwoGdrP$C^;B2JKGLvHF4#9aEkz7d|mU66WZcN!8W6qX*oa>89ZJ6T-G@yGywp%OGc3Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_catalyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_catalyst.png new file mode 100644 index 0000000000000000000000000000000000000000..49399c1300d6f63591f2aa14d9bd45319edb8ebb GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|9|rG<&krjmag4+ zc~(br&x9lK*>mM|t9jK^*|bBMlw4UAwHO4}2M8qtRWp_Z`2{mLJiCzw)d~eZ~&rBT`A8KsnK9W!S(0aZ+3q#0 nuTRb0YQdXy;coU1T^5FITSeZ!;b}Jq8pz=3>gTe~DWM4fJPJla literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_silk.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_silk.png new file mode 100644 index 0000000000000000000000000000000000000000..23d7a5ba41b2f5460bd50b1faaad9346d1355da5 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}>#9|&zI^#|>(;IR|NlRE z`SQrQOJ?^c*Z^gjOM?7Bs(zInxd)_NJY5_^DsIi~Vq`lIAaZ!u{V)H*@6G$fBf;&p z=vVL3)A>i&@c&@U?Y?_y$^)kA71k^L54KcE#D)uVdU8)@E9?uo@$(tm5)Q_6>-W6t QfaWoHy85}Sb4q9e05MfT`~Uy| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web.png new file mode 100644 index 0000000000000000000000000000000000000000..e333fad765c99a9670a814fa4440c3721d403ce2 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VWJ#y~S|NsA=ynG2Ef!wD-sT@xi$B>F!vb|d+4?FO*)(7XlIlPtMq@m_Q`?vY3^MgG5 z0}nW!_Z6I3<*qN-8>wi#SIw~5>!o$|uAfiCHp{z579NS(e1Bcm8Lj*IOR{Tr-apTk zSgZ4JzL)C#w-di~@mtCP?Pc(E^>bP0l+XkK18Z34 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web_locked.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/tarantula_web_locked.png new file mode 100644 index 0000000000000000000000000000000000000000..c38206e8e38e47862b422819006e137567811f20 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Yzs!NJnn+R(&wPVsCN zAfK@$$S;_|;n|HeASc4p#WAGfR&qu{K|<1m1n+>v0Pc*r2M?SqP-tvinmdt!x%+@1 zBU@`$w&ZB2u5{8F5r-78-2e*vyc+TaDA8z{ps|UOa|sh3%vo^g!hsV9 aSQzGd^3VCH_&5S+2ZN`ppUXO@geCya9XL(^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/toxic_arrow_poison.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/toxic_arrow_poison.png new file mode 100644 index 0000000000000000000000000000000000000000..e15b5d1aeaf63758f744dcbc6c5d4cd16fa080dc GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3fZe&2ll&6)K}yVqV| z_|I@9*E6>N5XW^6-tD|A-Br2zxu%r;B4q#jRuo zz70!Lbs3DO^!D~1;8_`(-q$SY!^6Xu(B_hHM9je1#KcMV%mt3OEe3n6)pOa6Z^Yi= c{t(5&@P~`L@}@;nCeSDbPgg&ebxsLQ07ou9JOBUy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/vial_of_venom.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/tarantula_broodfather/vial_of_venom.png new file mode 100644 index 0000000000000000000000000000000000000000..491985e21f35030d137ec47e843f5182d56fbf69 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|9|rG<&~%3pB+Aa zCj_6n(QU+dKyB-hl|EASlK7awqJ zRy=Eh+mb7h9L>QW*D=jFSQ474HA8R#=Mq5%hM88P`cHg5fh=M0boFyt=akR{0GVD+ Av;Y7A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/absolute_ender_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/absolute_ender_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..08bd77c2f948bb62c12d999f3e6e37993a8dec1a GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2lV9_gIjXfm@ywWUNL zE|ACEfX&j7Sxw>SpYlMUG-FASUoeBivm0qZPK2k6V@SoVcyK| z3_=_tL56({h9a#Y&5k`GidR1gOo&-MxvDZlvm;R`PL40BfTg`{n!7=RgoC02vxaz( o9M=>^uB~ll4sRYXT;gD05WXQYzopr0PN#EU;qFB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/braided_griffin_feather.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/braided_griffin_feather.png new file mode 100644 index 0000000000000000000000000000000000000000..556cd8ac4c9dfc3e73a6a770a4dc5799c69f339e GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4GFUhbN-*DSL_H!#o8 zAV*$UTZl{C`M_5jpd4dKkY6x^!?PP{K#r@Yi(^Q|t>go&A_+XI8fQf~QVrO&99SY+ z6?j|?SM&r-V(3UREGT9Cc$ztKncc@AirP+hi5m^fSf2#7srr_Tef|TtOpDPT;oF+I(!0p(;7}NIEGm; z@Lm1uzM}u0`onXd|6M$1^JRtV)$7ISzY@<@-ndhyJH<1lnUTBDV(0crY`;tvn66>? l?=!(CXo+|`SEx*SO-(ERd*exY9Y9+cJYD@<);T3K0RYg1KacCc$ztKncc@AirP+hi5m^fE*)F7srr_TgeBQT8^+Za-1;m6k=6UIPB^v+R?xx usv4}oWHcrCP6NjY4{vTJC8N?rCWc?${GmT@uJHouX7F_Nb6Mw<&;$U)_$Ckl literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce17eb5f16e0d5180e51e15c9e0f5a7a99e5fcd GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^3JeU43>?fr*3rJY5_^DsH{KvXPP5fa8b* z)5C+m^=0%Y=*PUyy4uB&sm4<})yFV)^12zn&YX-AuF0S9zd7`&XYPze(bC7_7#}ds pXGr+K$-p+BfuW8A#CrhY)qTw5RP0k{VglO1;OXk;vd$@?2>>GwK?nc< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png.mcmeta new file mode 100644 index 000000000..f7613667a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_eye.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":1}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_merger.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/etherwarp_merger.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f71c036288d8ba6fe05f54d4c3ded195a6eab3 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVmaA0B($T0q|%30#Y z`J(6LBMF9tz(d=_W_M}Nv78K4!B`UH7tG-B>_!@pli}&&7*cVo)c+_WizAOzhvR?N z`LDg=40Gm+Hr&rN)c!EHInp)i{mu#VGJpO&vZm4Im6wgUWdV2a*NBE`cXJIsEICrU z<;-*EyPCIV_}Ga>uKhUo(awksRmVE}&1bIh`d7Jk|6`Ne@v)44`gTe~DWM4fD=SYy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/gloomlock_grimoire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/gloomlock_grimoire.png new file mode 100644 index 0000000000000000000000000000000000000000..03169860e12f97fe91e2f4a31102c9f9e65e9797 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0C68NMK`d@Zx;I%pjRz z{J-brBeB_Ce}2C`eQarUT{aVgK-k>~O`tl)k|4ie28U-i(tw;uPZ!6Kid#tsI2l4u zM~XEV@Hho>T5S6Nb=BP4f9_6aZkTFat~15ujLn-MuH5C5!V)TPFF$aAEx=xfQP6+Z zohe%H?Ppv+J9p;y<`qjX-t(Gy!%Jk_CWEQ1uWNfVm>or5Z_Wo=!rzzz=yzzwFxl`_*H4K z`SCAm_ru!z=QqdJGO4Z6td11+o4EB`+@~KGCVg5dw9H_0k3XZT;_QXR+`)E#7zz?t V_HwYr9S7RX;OXk;vd$@?2>>yMRe}Hj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/judgement_core_blink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/judgement_core_blink.png new file mode 100644 index 0000000000000000000000000000000000000000..6a343f66cb6fe2d90b2d1b20455ebaecc41db3ec GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^0ze$V!3-qTOIhuKluCe4h%1mzNy`9|XV0GP?C$;l z|NjC8hW|j6?48HXevO&g%F1ftS^c*_6^tc8e!&b5&u*jvIXgUE978H@B^_XtXk<9m zB+&5bq{HDP39d!O>3N^tJo~@D^x)~c6WR0wHt1AMv1(q%m-vwTS-M_$z%hM?GA7ZU zio+2C^A@j~7Ezqyy>(fRRJG2k)byJj`44&@+))<_Tfk+?9e0*v>95yUr#_ZaiIu;4 zAWkB)=|<1j<%M&1suxKJegEU!?=#nyVV>=o;;NF{7nx_I_eWOv^@lF9t6DN;CjV}I ubK7g@&dV9N_nWL{XA}?>t>db{{8-$FC$q#)Bxo6lSn4GGt^pE+q1Wi>C$TRt8U3KbLh*2~7a(!8q6e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_blade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..66d043a7ed8de5ff6b6701011f7dd6060558944a GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0CVGPfzb(%a4sZlkj0}oA z317XnHyzqQZEe4QVe{O9Wbl0Pr&CGzGy-dGvIU%Drq{rXzQiK?#N RWk4esJYD@<);T3K0RX{>LLmSE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_edge.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_edge.png new file mode 100644 index 0000000000000000000000000000000000000000..020ab400c38e933c63cc3f6f925aa84d534dfadb GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=4rF{XO#hOV7(kvv!;h zNhr!N{%^&;Re~XbnL+ZClkYX43dWKkzhDN3XE)M-9BWS($B>F!$p=_1q!#o%;}oz` z5_a0W#hKMahxvd>@^6tD4NNoAvgUJKWfD!un9pKrV$5(gplxQxH7159ncU)Yd{cvg P#xQug`njxgN@xNAaDg_- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_ovoid.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_ovoid.png new file mode 100644 index 0000000000000000000000000000000000000000..f0fcb2b2f66533a2d2cd1bdd2342ab812e242243 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2k)ABoNG$}s-##rZ;l zA%Ts-ftf*)i9vv;^Pvz>nz1CvFPOpM*^M+H$IH{jF{I*F@&SG)XGN3Mn>`t32r7w8 z<4R*$HEnuhYR@616(&QEhyQ<*}}Rc zmdk-j&FN|8JB7A|Ztj&<9>-P|r&UV^th10kQNV2E<-lXC(0q6AqQxiXFrFyT)(>aV sOw;f!XFJuWLgic+u2in2l>FVdQ&MBb@0IV)Pe*gdg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_sphere_locked.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/null_sphere_locked.png new file mode 100644 index 0000000000000000000000000000000000000000..37634819c0387e3807ee4f04a277170e3d7c50da GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7mamTc?f_LVmIV0)GdMiEkp|>Mc)B=-RNP8Fz;)x&f|5;~Ev!po zxg40(oStUBQ)pZ0=3Z&#acpIATD4@rIt$qo1=+q^9pdAdJu6{1-oD!MEaktajUkEk?nv34@-p)iw~vxtGgg@J*`%oj*9FqQ=Q1v5B2yO9RuM0vV6hE&{2KEP!mwV)*1g}H@K zgmrV2Gjpi3azl^ix`hiB=Q$kvB6MBATvcGP$5CBh$ukDU!K+w|rrbJxXo__s&(l7$ urF;U-#cs2Up0ltCWJ`6hZEi4OVqkdvP25~%$0}){EexKnelF{r5}E)dDM5w+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward.png new file mode 100644 index 0000000000000000000000000000000000000000..8b54aac9178e280c40e9b54fdd341488f0e5b371 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0C68NRTkG{fh;L=Y^dl4BeSDR(IA2;zV9TW~&AW>K|NpNbFW&R=QHJq}%WQgN&FtRr8G0Y_`19RJptYEj(Z?N_QbbEk#XS^t}+ zpl@zopr0B-bTx&QzG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward_blink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soul_esoward_blink.png new file mode 100644 index 0000000000000000000000000000000000000000..a34c43e60c9294f683c877642e1d7aaefcef9857 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0C68NRTkGFtJo} zcQ-T9(hLnshzoi5@m0^uNB{r-SCALaF#az#yX(e{b4&~ZYzz*iGxvT5>SQbl@(X5g zcy=QV$SL%6aSW-rRodCgc-VpG$eD+KD*vb6Hh3LqRI5<$cj{5-(?hfU{_+1mw3(mz z${k-r9!u60v;O^zpTYDs_V4!n*JAy>GhPMs?uuki*IX#HH04s%jt;SVb0kh`&AH*! u*PvmL*LX{Cl|=NdlOZQ__o@DRz%DzLB_QF@=Bq%<89ZJ6T-G@yGywo(re7NX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soulflow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/soulflow.png new file mode 100644 index 0000000000000000000000000000000000000000..551f1697581c3ab029c3ea9b2ab7417a8214fb8c GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E06{Py@RjS`mZr*I-7m^ zuV=j=A1K6F666=m;PC858jus?>Eaktam%-dmGLlx0CV#{U48BQ#*b8(iR+eX2_9Y(KrYl94pZOe6E)q{?dNqOBm*J94T^6U|iHD-h>RZ}6 iXIC@xhiE@KT>YO}T9oltm%22_WelFKelF{r5}E)mJ3g8K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/tessellated_ender_pearl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/slayer/voidgloom_seraph/tessellated_ender_pearl.png new file mode 100644 index 0000000000000000000000000000000000000000..a3168f01580d7bf207f1a8f17edd295d92221cd7 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=2I_{+H_duUm9PCTF!$p^S@Tv||)#nCc#)r&WG z7=$=Pf;hJ^7>cxpIN3TFIjvf%r{}OUO#SPp2|)^rj~)?KI`mLVC@AhALyAQEjwx;p rXEMt)8MPQWx3-ixym`QIiGzXROR}1AK-I4I5p<{{}UBU zcWX%qFRlFi)BOMWHSt}d%}+RP|NCNn!pve`o*vurjepxa%2{_se80tQV0cLHLfX79 z_q#u{N_^i_^CiAX@u9tN^MU#miY>eXv+uHA;xXb_Gqd*~Hsn`^3%!<}F;}hjQ3E1?4*wS{<4nNStWTkekQAu(f!G<|p5_9-#XeJYD@<);T3K F0RYl-Qsn>u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/alpha_pick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/alpha_pick.png new file mode 100644 index 0000000000000000000000000000000000000000..6a35601da88230c7254d0b1e1fea16a5ad4fad93 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjD~Kz{o#7|fnXc|>Cdzx~ zLljVmu_VYZn8D%MjWi&~-qXb~q~caj?^Z^JKpv;&H~T;Bbod@G>X;@v|B0TL%bkLx zg}F`H>N?l!9iG>JDtPXAu3lrG-IM*Fxf8xUWM)V!V_5&;_Pp0XqZmA0{an^LB{Ts5 DnO-y! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/archery_cube.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/archery_cube.png new file mode 100644 index 0000000000000000000000000000000000000000..501a894b05ef3e85532bf9816a6b8009d8f276c5 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|9|k{!HpX?7Jsum zcI;U56`5(%re$v7>P%PnY+^8uW^i$FvA4I^kmEkFj4=eLfw3gWFPOpM*^M+HC(6^s zF{I*FvIBD~yF$rE%NYkR7F=TUS-$k^RfbHn>07pJVVmI4)g66|NuhbQvTE{GHiN~< zU-b+Y>n5AG7_MhN6i~Z0>3fz!v*wFyTmokgtUi5!bxGp`rdfX(w64g@aC6>{0@}jh M>FVdQ&MBb@0K|zmdKI;Vst0G`%Ep#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_aqua.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_aqua.png new file mode 100644 index 0000000000000000000000000000000000000000..b390cae79d67ac896cc688018cb9b67d190965a5 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`S)MMAAr-fh5AeDjyq^!&57v^;2X zIAel@N8biUDJdxf=LCsmk}B-x4C@s=^c=TIE}9v^aJAurMFt~-7U%c6Gg`KKKx-L1 MUHx3vIVCg!02zTap#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..095fb8e8495b54d12cb932ceb3d35f5b73eed6d0 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ii4<#Ar-fh5AeDjyqgwW@DDN#959-1z|a!UA-$^ZSQ5}) N22WQ%mvv4FO#sM`I&A;| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_brown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_brown.png new file mode 100644 index 0000000000000000000000000000000000000000..d6cb3411152f0e823ae59aaa980c59e2104512ce GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`S)MMAAr-fh5AeDjyqtNnF9>vH{! zGznfI=97YE4%^=IoDq;{%VaxwkoQ0~$0Y9wxortaj3LZS{80=HN52ZIZuD3PWHB&! My85}Sb4q9e0Ge4k&;S4c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1e38da2d0160460ba81b916090bf20bc9c769d GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`*`6+rAr-fh5AeDjyq=nvkCRaM{r*RS?B zIBOuK!Zt}c=YZtRU=C*i2_UCgy5YKj$aICAwhT2f2U7(Tz9K`^6zwH12_m@ig z827MsHa_8yE;wT;n#jS_e8i!sfcb+|(<7mlvjS(2Fs)!~Ip)aC&|e`E5t}3{4YZcQ M)78&qol`;+0C`_J6951J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..fe8d18ce56236b6809000892422f1b0b040d066f GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ii4<#Ar-fh5AeDjyq8~@jze*=@fiV$woJB@2YC-D{klU7_CgxzOV8R#0!0?}2?A&9`)pvpR OGI+ZBxvX8~@&VffqyA#_E82A`_@Z~YYIZudb$}x5^-pH_uabe*FCI)FM#RG2?K1u-X OW$<+Mb6Mw<&;$T7OgyIm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_yellow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/cake_soul/cake_soul_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..58cfd3c7a8f7cae6025f1798c07e92859f87e52d GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ii4<#Ar-fh5AeDjyq+49cV9u Mr>mdKI;Vst0Bq$q?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/creative_mind.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/creative_mind.png new file mode 100644 index 0000000000000000000000000000000000000000..b3400ba5e5089cff209ea98abc9b516dff9306a6 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F%O&*65T#^!bN=S}Ob za1EOro_(@^(Ym6x6G!)|si`F=C;xwDZ)$2ft*c^rs92^tE9d;%EI@6HB|(0{3=Yq3 zqyahUo-U3d6}L+JS{V;02rxH(|Ml;(S*hv^*;%VH@89{(&t|s#Ws%;B>|?G^8vA)> zCxnF;t3C@A31gmp@Xev{hhoq9#7k#9*uxnl>Zq(YJE2Q}@xAr7bk~n>w2l?(r2dV0 gcTM@S?aRrM8&)!ZDcW&q5ztBoPgg&ebxsLQ0OW;QzyJUM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/dead_bush_of_love.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/dead_bush_of_love.png new file mode 100644 index 0000000000000000000000000000000000000000..544ce33299f29af99fd446faf8e4c2aa61470ce2 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE07MfRY?!f(Nh$dlA=-G zXw3o?Vk`;r3ubV5b|VeQ3H5Yw45_#k+r!9rK!M}Pf=~a=&$lhSskb7NadB{*r1@6f zN(U|1S1rCrHn9CR2^YNNR2t3O`=_U?I=a2fkdQjuXnolINq)Lr a4MQ~}!||n}t3-hoFnGH9xvX3u zTD0iU^n%XL&b^%shjMb}R>wFvIOyx^Z@qLAWENvdkY6x^!?PP{K#sYmi(^Q|t*yrm znGQIxusF0IcKi4L-j=ZWFWn-{P0!r>I^%ls#|!=MuJ^D1y2q=0zomY`5`l(ajC1Q5 Vjk@IyodFub;OXk;vd$@?2>_YuLOcKf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_aqua.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_aqua.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e169efc78783ce2b2951b3eeb4944a7e963636 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Vhuxah3ttls&}7S zefj_O*|GmW9{vCOk9+C*ik3N1KoyK7L4Lsu4$p3+0XbQoE{-7;w|srCGrAaZSh0TD z`Tx-Lc^};W`&Jx&-{^d3b-<#E%F5ser50;%wIyn+CbRWaAN9WfUA30m&7t>D*x?B( zf*WoLA9QIs_`T(pi_kt6rb$wFJ0CCzyk6Fyrtr->c-EA}%l9Yg{^r*UV)8w|XF>qb ORt8U3KbLh*2~7a%U{|65 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_black.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_black.png new file mode 100644 index 0000000000000000000000000000000000000000..f26cd9b5a73afb10adcbe46eb7435823243a4361 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=VhtxJr-p`xk&%&; zlhfB{$Nv9#^#AWa85tS*e7$Qx6^tc8e!&b5&u*jvIa!`Ajv*Dde0{Gox)^d;v3}Y4 z|IqY#AKd@@Rvdoc=zM5(z@m!E%HRj37He;{C2FfCv-MOT^}hdIwU*n>q4!YO;Rz~& z8*T|7bZI&Gz2%mR&^{KXNm6$^A20~KUe=$c@Xb4T)|AA{_b2K8=GO~i@;$$2LIBWK N22WQ%mvv4FO#ljiQFZ_T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..b3adb23118f5c14e57deaad10b0a39bf8ccfd37b GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Vht-pg@WuEUDc;< zR{y^~JNEy_qyK;ZiE*!Yh?xR1g0UpXFPOpM*^M+HC(F~tF{I*_ukUq67efv!)-OB% zADTYzgZqEqio@?4oe!-JSX5D28T_EsV(qQAL~Ye%ww~&v-uJ(&)^fW!^d1U3JV8Zp z!!6;1E-eSYx7>0O+Q-5)N$PIr0|tTD%lgw4zIg}Fnv!_={v_Ss{CYu5zUTK$2msp3 N;OXk;vd$@?2>_YgQ|ABx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_brown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_brown.png new file mode 100644 index 0000000000000000000000000000000000000000..be0c54ebe5bc001446f9fbe310e62b4a5b6b99bc GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=VvQyPL%ak-z7j)& zA>-F)$Nv9#^#AWaA8v-mGq1#fDi}+G{DK)Ap4~_TaV5yaYAv^$L+_!m!xK~l zH{23F=+biVd&?~sp?xe&lcer;K41`dy{tb?;hT5xtSO0??@!YG&94{4V4gaDwe N44$rjF6*2UngDY-QYioc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_cyan.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_cyan.png new file mode 100644 index 0000000000000000000000000000000000000000..f491f6af3682e63e6560ee0eb58d3a2fa11755c8 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Vhw|Lg>2s$)wxft zHvRwl?AZSwkN*Gt$DOyH&1ruuPz7U2kY6x^!?PP{Ku(sYi(^Q|Enna3j4p;8R;*uk z{y#K*-Us*pz7>bxH##3$9k8gPvNHHVsm0n`ZHd~d$!tBBGnk03%^8tgv>t+3E3g5hgXH7}Ge1DSeZ+^WXCg1aWCIkR& OW$<+Mb6Mw<&;$T5j#F0v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_gray.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_gray.png new file mode 100644 index 0000000000000000000000000000000000000000..4f040c4ae21a080a0c384adf4d862e1b8a810851 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=VvVGvq>qnJOiWBg zMa9==$Nv9#^#AWa3k!=$6@i*S6^tc8e!&b5&u*jvIa!`Ajv*Dde0{Gox)^d;v3}Y4 z|IqY#AKd@@Rvdoc=zM5(z@m!E%HRj37He;{C2FfCv-MOT^}hdIwU*n>q4!YO;Rz~& z8*T|7bZI&Gz2%mR&^{KXNm6$^A20~KUe=$c@Xb4T)|AA{_b2K8=GO~i@;$$2LIBWK N22WQ%mvv4FO#o63Q+NOX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_green.png new file mode 100644 index 0000000000000000000000000000000000000000..30eaf1670c7a484d39d61ef2554e6b1f9ca2b91d GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=VvTnNL(du6xldKM z{I~l0?AZSwkN*GtSFoOY^TW-BKoyK7L4Lsu4$p3+0XbQoE{-7;w|srCGrAaZSh0TD z`Tx-Lc^};W`&Jx&-{^d3b-<#E%F5ser50;%wIyn+CbRWaAN9WfUA30m&7t>D*x?B( zf*WoLA9QIs_`T(pi_kt6rb$wFJ0CCzyk6Fyrtr->c-EA}%l9Yg{^r*UV)8w|XF>qb ORt8U3KbLh*2~7a5)>lse literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_magenta.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_magenta.png new file mode 100644 index 0000000000000000000000000000000000000000..10c4c270ed4e436519c796e24438ed3d2f15e2e0 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AUgW2j&#J|lbTsp{ST zR-YJ(7#P|am^ZSn=U%)-G(sDwfUzXVFPOpM*^M+HC(F~tF{I*_ukUq67efv!)-OB% zADTYzgZqEqio@?4oe!-JSX5D28T_EsV(qQAL~Ye%ww~&v-uJ(&)^fW!^d1U3JV8Zp z!!6;1E-eSYx7>0O+Q-5)N$PIr0|tTD%lgw4zIg}Fnv!_={v_Ss{CYu5zUTK$2mm?K M)78&qol`;+033o&H2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_orange.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..106d91936ea1dc5ade2512ba41c2144ea45a2608 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=VoilE!xCSsDDG)MD+ewnS~!WVW8_qu%$wtJZS6IrJV1J3K)} zaKkO(gDx!xzqj0S5!%PXG)d}i=K}_T*US3T6ux-}&zh2W`Tiu`-~4((Oupy$Ob7tl O%HZkh=d#Wzp$P!yqE-U{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_pink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_pink.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cc39df1441582935e50bc995ad918f2360a334 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Voe2u@-gSs$7${V zTbF%(cI^L;NB{r+Tcz%`dZ+6YpbEy4AirP+hi5m^fSfE(7srr_TfV;68C?uHtXRM7 z{C{ZrybtdGeJc*XZ*)GiI$%*nWo7V#Qj4{>+7h)@li7Nzk9yz#u3F3O=Fod6?C=B? z!40>B54yA*{N8fQMQ9%j(D*x?B( zf*WoLA9QIs_`T(pi_kt6rb$wFJ0CCzyk6Fyrtr->c-EA}%l9Yg{^r*UV)8w|XF>qb ORt8U3KbLh*2~7ZjHdg)s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_red.png new file mode 100644 index 0000000000000000000000000000000000000000..37f1753c7262cb3f16e535759646bc3160f67214 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Voe1r!xT-$v!*0ozCTI#H@{vGlkfRG69Ry? OGI+ZBxvXBW% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_silver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..db34aaed16df0e530787f5b9d6dc844b08ee41fa GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08WKD)QNLuIItq6(9aw z`2T ORt8U3KbLh*2~7afB~uju literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_white.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/epoch_cake_white.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e8e771e63c211e809cd447fecb591af99761df GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0Df=Voh9J+~UQHckbMI z_wL=V&yM~7@#z2Ge;pkiv&y4C0#z`U1o;IsI6S+N2IORUx;TbZ-17Ck&gf#uVa57o z=l?^~=Y4Sh?^|*BeWUZC)d7ntDl3B@lv=F4)t0EOn#|TyeboE@chy>MH;3LsVTUKE z2yVC~e9)!k;P;kWE<*cQm?lZx?R>x>@OoK)n!-2l;8{}=FW;Y}`t!e=sgs6c!G-H zhFii1U0M!)Z@J|nw2y^plGNSK2MhwQm-VM9eDe;TH6`)#{YkpN`SpUBe9!Nh5CF85 N!PC{xWt~$(69C^hRoDOk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/full_century_cake_pack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/full_century_cake_pack.png new file mode 100644 index 0000000000000000000000000000000000000000..ed4305afd476e4a3c68da9f52b2f7df1c92ef0e3 GIT binary patch literal 337 zcmV-X0j~auP) z=El{?tpE7p9gfThoD3kxDU8e=wEsGnmzTM@x#MPsI`sc|czFMXrntDc-QC?fvj62J z-6$w1MmqohI`Yao|NlZdLPA1-F#*gZ9UvXd|Aac_Z6#b>T>r*8<*g+h$jrvqq^SS^ z00DGTPE!Ct=GbNc005auL_t(|+I5NrqQD>wLrHO&yE5*7$jNto^(O2eilQvPoLOeA zb9w%Dj^n;_aCqN!&pk~e$KxP$eSbfOp}8HFJMZhZy$!>?VY& zT6#8P+hR0EsSt#qh0QC+aXgQd2;zBckwa@K2}#@!+7J%|0?Cvhh%wLsW3*BdiNGE} jT!Txzoe$u2C;O8N3%LmMKgYK`00000NkvXXu0mjfM-Y?e literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/random_century_cake_pack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/epoch_cake/random_century_cake_pack.png new file mode 100644 index 0000000000000000000000000000000000000000..dda0bff7341e831754c58c576e7a67e08b97827a GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Df=V$IiQ$DXcL{eR4g zV-AmO-x;e-{}qmFF57kB)YThL-+weRH3usD|Ns9ftN&|NpPo^X{qJOz_=$}JD9Tt8 zuiVh6%F65JKX0@@>6a3;#aNRl6fS^ z<7LZ*Yf{P_4ndbJ*YfgiTp)1ea@f(???22}FPy;sYkm3L!$A8PJYD@<);T3K0RW#X BXte+U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/extreme_bingo_card.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/extreme_bingo_card.png new file mode 100644 index 0000000000000000000000000000000000000000..84e27c2cc251e1a53b32f5f4bc3d88d53110161c GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`b)GJcAr-fh7f9XEI{$yZNYB-V z|F^3;4w@Jxa0y@j|G!$|z>lWQRvd@tbRT42bu|CLY@2F z;K!W6b;68c*@Ow+98wMMgeDzknC_iWvxv9hrq3KkNgf^rP64;TjwhxSCd^kSB``Gk h-(UzbxLRb$kb1L3VC#g~ZlFsTJYD@<);T3K0RaB6Lc{<7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/game_annihilator.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/game_annihilator.png new file mode 100644 index 0000000000000000000000000000000000000000..258e88e94d9eae299d779bcddb131711f99d0c0e GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9a(|Nm$Be~IDsVumBl z4D*Z?15+3(U;ErvyH60;*#y3GxeOaCmkj4aiCNba4!+xRva{G{-nr z#$n6HHFuvX%JTS};rVa(=l6jN2M!n>Jh?-8^3jII&58jAYr7>^WTkCLaG%cYF?n_1 zaWD1_|3ViAG>6S_k~H>FFu86rmBB#y#?H;$X9~i+Ub7fS#H9H-6fraKn@TEn*nDpW PTFKz)>gTe~DWM4fxIasf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/jar_of_sand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/jar_of_sand.png new file mode 100644 index 0000000000000000000000000000000000000000..3de6271222ff2c4fc7bb9b3a69b271439a6e2099 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0B)uKXhze;l*8D-D@vw zKL6(N?G3liFMj*_^wlHNn9pA1TDDTKtb)0td(EHAjX>3mB|(0{3=Yq3q=B@0x;TbZ z-0JP&vWjmfX> z1bv~`obqZ7VxEv_fkJ%G}TB|(0{3=Yq3qyahUo-U3d6}NKEaB?|0@-!z-)|>o${*4kX zJAuQ$>K)?h)gQ7;8U8j?Hu9`>nfyV=-_7G-qi;z_r@;d`rY$-t?OvNw=5W7RC3@_T zNAQY0MHw%B4CD)6_wYn)di{exg*QUYw&H!_4;cpY^-TF1UmjKitz__Y^>bP0l+XkK D-RDXQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc02f57348330fc5827dd1f0f380c33077187e5 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F&Geb%LVm;cw3IvvfO zICxSdB!0_?I0GdZOM?7@862M7NCR?0JzX3_DsGi_u`;m)ayW@z{4HOZxcv3s0HuA5 z1ve)~&VD?1=7qba2NpBwo(r5E_;SM%$+iNu6P@-;SQ)d8^LpZQ`pR~`*?e)cXpigX goE3Lv*~8-hFl?C0nEqyOB*-}op00i_>zopr04<6^d;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_common.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_common.png new file mode 100644 index 0000000000000000000000000000000000000000..7b5a93b14d289e36cb7fb9900365a940be1ec154 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0FfJG;d7~JG(0P@%1`= zMR_G5AyWkfR>ieBKsm;eAirP+hi5m^fSgEA7srr_TS*6a8A4CBi#8bWFb9_8{m$=s z!E))JE%Rw<*AEuKOFtZayuj;cPr~xE(k>6~Uz1e1*c}*!%h?_nGQy4lp?j z$LwMJa5Hdf^q$E}8}~CWIo1~9tZ43WHRzlH%S3@EH$pQM6U-mqe=HuoW%Z`~7dM%c jGw&^U{m$Y<+#iOWOBl1XjBl?5+Q8uH>gTe~DWM4f&_qL@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_rare.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_rare.png new file mode 100644 index 0000000000000000000000000000000000000000..22fa8002756a65b6e9fdfade5eed2a1c32ab555e GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Dgktz>d~*oP;bq1F~^ zf<*o@*K{2TlQc1KTp7) z1KbO|SG?VSyZZH%os-W#f6eD={w98`eef-w?OoEx?$wqC|KG&bV|NsAJC%3xp z3;74z9>2P|_r30QlN)mdKI;Vst0II!3v;Y7A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_uncommon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/kuudra_cavity/kuudra_cavity_uncommon.png new file mode 100644 index 0000000000000000000000000000000000000000..be8317733a168c2e4b3f6a09e270d93603a29047 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0FfJG;d7~JG(0P@%1_- zAt6%*1^3+wKY$X9B|(0{3=Yq3qyae*o-U3d6}OTO@G^vUb&56wa2)pGeq+Ds>$m$V z`je(bPWf6O8u0VW23E~K9IFpiu})Q+@lK>+jn0e&F?EHzdwMqBLi@f~Ag3~Ty85}Sb4q9e0D|8_2><{9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/lantern_of_the_dead.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/lantern_of_the_dead.png new file mode 100644 index 0000000000000000000000000000000000000000..dc4c2c5fa55ef38bf0fb79e0a0b0c306938b714c GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0F&G|LWhr-9JyJeVFKZ zv@z;vs^bNMhE3?6A6nTwICeNYHn(=^6|IoC)Flmfm~%$n3vQ%p{V1H~bNQx8dlFq{8{; nEA#K{7qQ$QVE;iXjDg|(Mz#ja&03B?YZ*LU{an^LB{Ts5V**;l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/burning_coins.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/burning_coins.png new file mode 100644 index 0000000000000000000000000000000000000000..075514c3cb71b2182f05e842e0e1bc060c2ee674 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A8Hs`@-bwp4@Z|6Y$f z(}Xvr2>$u8_V3sDU)Q`|ZWQJ4@tO%##8?vK7tG-B>_!@pQ|9U77*cV|w}Z8a!GVLh zyx9Ej|KjWkyBy}spIk3)DAd5fDe>u{%#RP!nK3&Qs+o426-wdG`f9yoyHVrYdsi+f z^L~)B}@O1TaS?83{1ORxOR8ar` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/campaign_poster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/campaign_poster.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c611185b450241e9fe0bc822039b6a1398267d GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0C7bsWA50Bq=GGlau4< z=r}#sw<*qPRb)x6>5TvX{|8D-GlVlZ=kU&mRN1h??C4RQ%1Y@XXXyw>9Tm$yE^*)P z1sm0XrZAQS`2{mLJiCzw7Hq zhEF?-e=mM~qrc_l*HW?mB*!W94;d;pd7OHluqJn&u%>4?+qB(V-Psm&oln~K`{Fiv77O&GwU>?__=S0-&7?p00i_>zopr0KdFlx&QzG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_blue.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..37f05cbaa44c77e5548ceeaa494bb5ab8ebb8f0e GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj{`>#q(bs3kuAW#^ z8M!;nb0I^)afa9}LB^9Aq9-so6j{oYGU!G#@L4giYFt0TRRq+-SQ6wH%;50sMjDWl z;pyTSQgJKUfoaW2HUYO+K8XfrYjXM&B2Jum-T@?!-iQd`P)WJ?G-u5co|GB)@9sWz zll6qbzP;7&??yYc?VkAd-QI*_cTb-x&u5U7bI?o`R(O2>_U_#Wm3aQVzxQr0?~;RO d$~nv#7+y3h-Mzu^_&3l_22WQ%mvv4FO#q1LUmpMf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_green.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_green.png new file mode 100644 index 0000000000000000000000000000000000000000..3cffe77d861fe7d99a35abeb5327952fd80f1f6c GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj{`>#q(bs3k?!Ml2 z^~9RpH_8@n&z`g_sd;KdL4#*fzLQ6QQGbPxB2Xz~NswPKgTu2MX+Tc8r;B4q#jRuq zwx_HCx6bnVY+gQPxk`gXs@_!Ba|tu2e3|LQ=FnE@x?$raqX~)IvclX8G$thODSEah zRJ)UA)oD$x5*20dXKfYoXr5Uu;K#sle!KiG U|G5u70j*^4boFyt=akR{045b$H2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_pink.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_pink.png new file mode 100644 index 0000000000000000000000000000000000000000..03323fa75e42b073b864f1d72bc50b8fd602924a GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj{`>#q(bs3kuAW%) zfAa2+`3pW2N8R;pdSPmMz#{9iqV7`FkPV7PMf}EboSOF5bzVR{j3q&S!3+-1ZlnP@ z8J;eVAr-fh9hlxs=2hrtCGPIXqCFd?#S^F|?$sV`@m z%AV76X#2P_H2d5f2BVnXoUpZw#^+?h?236#6fk>f&SsGOe{W7Ct61WL`tNCHH5GW% d_BrohWbo@%x>@>+ffHyagQu&X%Q~loCIC%=SXBT3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/century_memento_red.png new file mode 100644 index 0000000000000000000000000000000000000000..df18f2b418bcc34b25f72c195c24e83725858300 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj{`>#q(bs3kuAW%) zp*ZS=sp(}!-3^LH6SYN})%f$|M8ZXR+yyxecv+P>nCtfJn*!9sSQ6wH%;50sMjDWl z?&;zfQgJKUfoaW2HUYQHodz?~@>UD5a7$Kh;b>}&>FH%{b#Mw>J-2u2lt!M@yVJ|9 zcQZ&HD?c}9Z?*J^4#u>Hi;({(s-_ z_1Uq{w^^>9So3fn+x2zKXXY{-Y-6bnRZ4P_%&~c33{=fn666=m;PC858jzFb>Eakt zaVyz@Z55+{l}4b5&*oW6ESp=Kj>d8wbb7k*Y2zVJYAEcbgK$10Ziz_z&htDXXH+B{baMuyM1 WN)2}&bu|HPWbkzLb6Mw<&;$UHFIt5F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy.png new file mode 100644 index 0000000000000000000000000000000000000000..dfb8c5925a07949ebaae7992c9cd71027a2a3e1c GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9b2zk2`r`u$r+P99$K zC^2!3j7$|TFHroN_-|Gq#aI&L7tG-B>_!@p6XNOO7*cU7S%F~&%M^zxi>nqc5SWn0 z$?KoP(y7tjrp8rfVqh?{rA?I6OT)lmv&G8k+FViw1_rAorix25Up3IO&@!-YkZ|g8 kI-{mg+|qD?WqvJ#<2`Q1k1MvH0h-U?>FVdQ&MBb@03lXAasU7T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/expensive_toy_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..02f518a309a286e4c191ddcd37d32647599c5c4b GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9b2zk2`r`rohd_ir8f zb|Ar-fh6&Pl)OmPTVl(k@i zz=X8d8K!eMgaTi_Fc6tz+1Pk;?P6PxfS|_4R$Wiqn7|8-jg78nSME8&x}q&mF|bjU p@rXc@NKzs5Ol6jqydQ6v88&M2^uIpIb^>StgQu&X%Q~loCIDzUNJ;lJY5_^DsCk!@D-e!!M zd%8G=RNR{4yOojIP~h~!GvEH5ekQp)T>W3|0SWzkzjs`ox!ucrw@F~~uAI;nZ%_H8 z%Q1weMLpiC+3-LqdeODC6LlXVGldrK)|#uX=K1UwYtlmN`D`MM#hlCxXBC*mzb)m_ Q1zN-4>FVdQ&MBb@06OtW?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/moldy_muffin.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/moldy_muffin.png new file mode 100644 index 0000000000000000000000000000000000000000..527e0b63027d76cf01a5875fca4d32134e0804a4 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=636l`cEH=kEH*%L@W( zXH7oX<}fQ=JEkNrCva=Izr2%sTdb|Pnt5#9$Mgw6)r=)Ue!&b5&u*jvIia2|jv*Dd zk`M4-vRbfZQkHZ_nz6{)IWY_=D(6jB?-OK9+44qLEHsPV$ZIOg-9u%Jk}?O?GI#Sc zNXDc-U45=ef@ig{Q}uyoCHJ#>8H_FRTxAZVDKaeW68n0zVbV{a1q`09elF{r5}E+! C8%fy! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette.png new file mode 100644 index 0000000000000000000000000000000000000000..881af7c31c914ae68c00418f40e65d58c0c1f174 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E09*#)|p!5Y+!0`;o#!n z6VRGsULvr5A;W*(CHxHkng269+A6e|Yw3E15C8xEXV|fme|s+9{|OBIy0aL}|E~}h z{?EYh|Ns93$4+JVsLfuqLRwa~!|OpS&|JonAirP+hi5m^fSepp7srr_TT{AP8JP`v zm{ku?mvs95{^kRQy$x?Se^6IiJn6TrCquMx&Hg<_R+BF&nUn`dspd{P@cL-XZ1Y}C z#w)vu4oo$C!ZhXaLdkGhW3Fg7&uM06#k-3)`8@pWSZ8m1>BmdKI;Vst0DjeGRR910 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/painters_palette_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..3b980c5af247debd327c9b3e5e6757da771588e0 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE09*#);T|&`TrvZ3kMem zp8x|>^S^)V|Noyg*_pXD#XQ4DZEBJ8?qXJHS=lSWUZp?{j3q&S!3+-1ZlnP@X`U{Q zAr-fh6a+soNQv^xv^5GeB!=C-^W%Rp_b#_pWosDC&KMsQS@CvO)UTlMVzn(?at}Mj zAJ1C+?%BkFdsTE!ijiTb~%l YmpU=MJ$a7jJkUl4Pgg&ebxsLQ0NmbHzW@LL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/rift_completion_memento.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/rift_completion_memento.png new file mode 100644 index 0000000000000000000000000000000000000000..6ea72606595eb31514ffb6801f6494e141f0cde3 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A{LFRU?`A1qn3(r(Xj zyW6i5UT=tH{Qo)P^HIYGQ@Ax45;n7^#sSqamIV0)GdMiEkp|=>db&7vW%B z!fZLK{i*BODR;8Bml=qQaIDi^^XY-*+Ed)`Tg$^LlSQ8Ik7Yb5%yQgXCZrN*8H1;* KpUXO@geCwwtxs(L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/secret_bingo_memento.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/secret_bingo_memento.png new file mode 100644 index 0000000000000000000000000000000000000000..897c0139f2352c20eda97349495b5cba2367962e GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|9|x8(Wh&zug+B; zJ9g~R(Spm{5)Lo*ojG%6b93{Y2EB}o3@frWvcm4WvCGN%r+ovyG iT3(W$kZ^;SjiZ`TS52!*qiZh6Vg^rFKbLh*2~7ZLkzoJ; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/splendid_fish_drawing.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/splendid_fish_drawing.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d25111b03f94629aeae75a6e99c2147f4d3033 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|Ns7Sam?+j>y{MX zs5hQ4VM0X9uKx@SK0ZDwrnPGs7^F4gczJpMZ#kF>RLxitpes3yDM>T&+V+7*7*I*-Q=Kk0)pz> x12#w%-+dRcVcluD+lp+TrrmFq;#p?M$gsLi?!4*V;#{E744$rjF6*2UngF8vOvL~I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento.png new file mode 100644 index 0000000000000000000000000000000000000000..8c6b65baf681d7727bda3b30e5bb56dd1b0a0910 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0DHU4^fx11v0j7UF{L` zpF!lm$CUrKZ(n8LYR@|Mza!Q1p5y;eEBXKb|2yl5C3@@SGM?Eb{l;mD#crS;#*!ev zUlrHtw6{~Nh9C2Yj^4v1mXR1M>$IWd)T?X?QOf6o?wcL21aGLXeeZjW1r#D^E zQeHS;b?LO+5{v&wgbpbu+A1Uq&2JIbSUlxFo4U%YvS|#f1{dpWzzi3{XoYs Nc)I$ztaD0e0swA7XF>n~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento_1st.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/memento/wizard_portal_memento_1st.png new file mode 100644 index 0000000000000000000000000000000000000000..94c523548ba9cdf086049c82eb9e2d83ece8e345 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9b4;Mdy!PfKp!zWRTQ z-qx+FZ?`FTq*`tW7D@Eh3$>EBRu6I35mT451uC9BMfEw5Vk`;r3ubV5b|VeQY4mh) z45_%4oM4ckk-)$l%*I?Ma8~YA*10N%6A7mJW^?73lXkMUhh6(yec-@^H7PQ3zt~PB z?B4r5@1LYXbK=SAt##>Y43gaTdS@)zO}bYv&b~Q&vV!yVb$9EZSx$KN``NemXF?R3 z|NESpU%XUdV*T@Tds0#vHs0IMtjXBDakDW4!~QD0C9@`F2LK(z;OXk;vd$@?2>`-( BWp@Ao literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/mini_fish_bowl.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/mini_fish_bowl.png new file mode 100644 index 0000000000000000000000000000000000000000..5f04934da1534a635ec3dda801b6cfde88814dc2 GIT binary patch literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0FG9dtvkWH@4G0>NedG z&N`~!#9%R*jni-Xmwbiydl&8w(D{Ai5KvjbRLxB(g8%Z%P;buYc)wX0v|C z943jqyBQgx*;~)Cp6Af{%Tslfj(wd?dz%EB biVPVU>})tAf4k{}{LJ9#>gTe~DWM4f?lW*J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/new_year_cake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/new_year_cake.png new file mode 100644 index 0000000000000000000000000000000000000000..ead7331382d8928eae29d681377e6bffbe551422 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0Df=V$IiQ$Nv9#^#AX_ z7pA6{6?Hc#8ht2^`gP6g_xJ68zsBF0Cj4@v=%y6GQVpi(LHxczJ&Ywme!&b5&u*jv zIfb4sjv*Ddaywm_ju;3WHoCCk^8f#3Zh$ qrKW5fUh1TuJ?S#F`?q)HBi0i>ER)!m3tR(Q&fw|l=d#Wzp$Py@;Ad9= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/plastic_shovel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/plastic_shovel.png new file mode 100644 index 0000000000000000000000000000000000000000..51a9c4222ba8c0808cccf661b405081a03e489ff GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf60zF+ELn>}1Ef8J7@W!6w(Zqdh zE!u)!220f$9&Y`=@Ph<=qrzLBz=oAenkH;9&dXd7w?QN?bH(8k6Zu%ZA5USi m=IzhxSpAVPeFD=b28O5gzVoM@YHJ1>&fw|l=d#Wzp$Py>sxP+y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/potato_silver_medal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/potato_silver_medal.png new file mode 100644 index 0000000000000000000000000000000000000000..36a016775202a96f3af0283656b64a903b7a9f13 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0DIavFY#c-?L}W<;#~B zEn4*a`Sbt(|5sI2@y@uy=G(|$cc7r4fIoKniT@jB097-V1o;IsI6S+N2IORWx;TbZ z+$ufE%5+45$K_%Lx97Y1yRs46SN>y9HM6}ob4v1;#m9dz3a{U1%BOy|rgaX>N!3s c&%d`!7us1g%};d60Ig;4boFyt=akR{02qo|y#N3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/quality_map.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/quality_map.png new file mode 100644 index 0000000000000000000000000000000000000000..5641940b2501650582b650607b21f43b0f278446 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0DhM>SfJ(^Xhfm?d^Y= zncZN>U|^_X2(MPlnX%yhBdcDZ3dWKkzhDN3XE)M-oDfeJ$B>F!rN^%`IvesZ9bn(a za;yH~gnRGb_w8@!U;UwuvBI+H*y+gIS$F*3`rbP7H22!mYimwV?N-^)7x76iib1Vc r(EQNPt4&)Glo&vxMl4;gPL@Mb*+n$O_r>gTe~DWM4fT|!Jo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/secret_bingo_card.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/secret_bingo_card.png new file mode 100644 index 0000000000000000000000000000000000000000..aa5d7c94ad98310047dca8f644368cabd03485bd GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Rh}-6Ar-f_PHg0CFyLX?>{R|j zZ0@q^k`+7;{Q3kkA2=TQ;g^UTMM(ev literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/shiny_relic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/shiny_relic.png new file mode 100644 index 0000000000000000000000000000000000000000..1dd8d1f57dae359446301978184588ff69cdce4a GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E08{x81-yo_p{34kMm~y z-nXyQ-R((6*6Uqgb_3-YOM?7@862M7NCR^GJzX3_DsJ_jaTIDW;BdZZ##!)RdiKgi zW!LvV_H8SSSX-yQL?BMf^~A?Ur#lSiav2sV1}hj#J9X76E@hW@nBZ(LJ9)wD+X;np e+Lm3lc+Dgr!g%a|3ELT<(F~rhelF{r5}E)^e?gl7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6b9cdc5d1421eb5f33c9872e7208b765b2649e GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE06|)u&^){6_t)u%P1F> zP%HUFZ#_*LBRfB5pM=1=sWr3L&)j`#XKZ=OwR=~kwbTlN^ve5c#l^*|qD-0+t<25M z3kwTdTU(Q+%n$^c#aI&L7tG-B>_!@p)9mTu7*cVo_uNrN7DEmOhetnleTjcL@p^6f zBd!let!)*b^ISG|d%bt-ymdKI;Vst08`{}q5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish_singing.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/singing_fish_singing.png new file mode 100644 index 0000000000000000000000000000000000000000..8d6a068ba1ca9faa5e0ffef6538e63e0ec3c9566 GIT binary patch literal 420 zcmV;V0bBlwP)P)t-s00000 z00352RwN`Oh-EoiL?l%@A8=AGK2Ad^JTih|IyW~rOkh!dm3$j2CS7-AyUMwnubI}~ z)pw447Z(?LS~OuxE^%>jg@uJKb6T1J0004WQchCG6rxa!UsI?tF@?xC@;0b%6;Uxq_#HlO{Ob7u>`=bVnUAH;%Nf| zi*^Jq#%rSQduG3FC_aA8ufLP>NTJU?Qtv_Dd!WeSEy#P1ak8!6g7DVEc&Yg{NLedY z(wjvuv&04UK%aRSi6$qev7)=(NJVnx%p!6?C}b&BhhctfUipc O0000#q(bs3kuAW#U zdix{Kfh(LdwpT{(PV-zCWIUO{p~zCEltDL|fzRrx>Z?Sc2F8*gzhDN3XE)M-oD@$N z$B>F!$qsDC_ylh4G?w+*98spL&EWmyjFlAMG)?}fAxV))Q1 V-SFD4ejm_222WQ%mvv4FO#sMzQ0f2x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_cheesecake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_cheesecake.png new file mode 100644 index 0000000000000000000000000000000000000000..a61e053bd59a9097840fd36478f3721d1921ed66 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj{`>#u>Hi;({(s-_ z_1Uq{w^^>9So3fn+nKoxo9e7 z|L?z~e5Z9M3U=QpTev;Dd1}N=y@S#~MT{jue!&b5&u*jvIWe9tjv*DdN>8^6vKaC> zU!3Z^>6iYGLnkM){r~*qr}2SzCK5|_Km4TJ5GAg+u`K3ZZ&-4NgAGa<#{_e_E0GdmYYzD{H|{ghC%?>p1v$4tL29augcXb*#@tDnm{r-UW| D07_E< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_red_velvet_cake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_red_velvet_cake.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f4126ea42649d172ff14869eb65824f769a37e GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj{`>#q(bs3kuAW%) zp*ZS=sp(}!-3^LH6SYNZRRofxdEEs$4R~3VIha$r_?Uni7)yfuf*Bm1-ADs+(mY)p zLn>}1JFp$&6S!rWV>%cP3TeQP4 z+SBu7iunXX_rQRFlM*K)vQ;!RSd#8oCaqb*leA|qcgn5?o=3ZXe>*3sz?*i@*@BTF Yc)o(tv6<^`18rpRboFyt=akR{0E%-_0ssI2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_strawberry_shortcake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/slice_of_strawberry_shortcake.png new file mode 100644 index 0000000000000000000000000000000000000000..acb34053399cefeeb62b084e4d1cdb373e4b502f GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E08{5k@Ycu!T-s-i};O~ zs)lS(G7G)@6IFJ^sxJ>#=yg`fHI&&> z7j0M1AS+u}Z9P+YC3Qw-F2k#}kAaF9OM?7@862M7NCR@BJY5_^DsCk^uxhJ2NS;2u zpyw0M1OfNvQ(OE57VBR2EWXC1kR0_}M07)w^QM@*4<~F9BGhOQ> xV-wukuXKg-BplP~;5nSMdaA(VNasLV28IL`sc!BZIbonJ44$rjF6*2UngEnWLdO6A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/berry_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/berry_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea82261241c69639a4fb6a1975f4937271bb2f2 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|37i*()V-PuU0D- z?CZJLsSq$fcTcL2c~6jfg+sTah-9JxP}vRt|0O_*u_VYZn8D%MjWi%9#nZ(xq~caG z1GAr;#@>XpOdQ$gz8EWHF&$p%F@fWE%a)hfI~sZ}WvWe7cT}2q?A%=*;f5ZO%@=Ye z1o1t;@*z*4xjOo353j@vWYM-*eXh^znCo2 Q1GJC9)78&qol`;+05*J2ZvX%Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/candy_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/candy_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..950e8020830f965c7dca120cac454aab545963a5 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3Id|5yC?|NqpjVt4NT zPnz`JwUT}I>@zA6Ofj+Te8yT@T3J#THvrW!mIV0)GdMiEkp|>Md%8G=RNP8-U|qv# z(55*hFy{_~N+j2fyGjl`?pFntuVQs*n_N8O7t4euq2*gV1e&k9cwS{%W9o5oCHE1I zZ2^Tb3`s8S%RHNSv%QUD8Pe7m#IYLA%NF%uU}V@RB^2~};)-UVH4L7velF{r5}E+o CAx8KB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/century_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/century_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..8f150c6026ee9792df05cad6a05c5a76cffecf90 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|G$0l;{WAk2R3f} z+U4;jU*Ucv*X{tFB~D72dYnK7QXG+2fD~g%kY6x^!?PP{Ku(yai(^Q|tz-vQ8D0Z7 zmMIsd>=T5v}9Rkqi6}os`AFtC0nJOC2|kCaXa*EJMvAbP0l+XkKwnju% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/chill_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/chill_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9c81635c30c2e36c0553044016fd2d7e306506 GIT binary patch literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}NPtg>E0C@ZGH;HwyLNPKW4O(^ z&Ha-zeK+*w%`XqTv}fM@vcRoV3imJTUDF!Bu05_l&ABDo9;ijog;l>)Uf7FGI*OOy zmIbJHV`uQOMTIkR{jy!OXa9Ni52UCh$PZ)>DmW~A_8m~9%G1R$q~ccX305X%MIM)n zrVH*ZI_dMS{@gCJctpLU%7@8si{mhRVY?%ZM*)X2H!?oSk!Aox* izI*M=vVX76mok`s=Y0HZ(`!&jFnGH9xvX37i=l&+H590Vf#ITZ_zWP$SQ6wH%;50sMjDV4>gnPbQgJKUfpraQ z09!Zvl!rq17*uX@_Z-%C=n+a+ym*dNp>4q;sffmj6DCM@q=|(Twi@unHVHfMI43G5 v8yt4?kkC22H9$b=z*bL7-Xt688Ey;==icx(v%b*f1lj88>gTe~DWM4fh&@0M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/cluck_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/cluck_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..4efe922ab74d3bef335c945b19c8dd47ede0615d GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|9|!B)#b~V_wCzv zVWs`S$8OnIkh)S7^NBOY#vE($QqdzPscR yQ(8`l5!-2l4XGC54U&m-Pb(fvFIZ&7z+m@7(8A5T-G@yGywo|%1RRe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/diamond_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/diamond_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..0454afe61af35215cd86b9db36ccb198b4d644d3 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cj|6lm~h1c7g3P-m} zty(TvRJBQup;?(}?|}!cKxxL3AirP+hi5m^fSd?V7srr_TgeWrXIKr~jA!Vid2D6i z6y3UHC!2Ib%i$g;;RYt3gMCVA395=t#}XCTycaB5A>DCsmWsq2h9s8RGgmZ8KGSnd qkYp3SHigCDaHA=2R-nWxW`@8BzSaqmd;5WQFnGH9xvX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/dust_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/dust_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..67ebea68894761e8e84169e90510304d972d51b0 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Er@_iRW1?C_Z6;)*6k zWi_BkPE&2;tSNy>aVpxH*>M~90)-e$g8YIR9G=}s19BogT^vIyZY3RHXNWz+$aO%0 zqcw5stn=^c?|ySr*wodq&;H^Uu2p5b&0qekb3SqO*XIW1TN0KJRi1 xL1=fRVu93+@8WV5yVUqjm-Np(SMpKA zu6%sFm;Y$Q(bcZ2d*Z~z#l<(roKOZTVk`;r3ubV5b|VeQiSu-E45_%4?7*tS7r?fd zV~X~QX$&bAURzc!VSIXnrP=qck-C9F0n18>@TMtSq^y^QHAv*0Y@C$Pws^*+Eo>9g zG^h4$;Z$gw6l58pJ9~0hHS>)hntH|x-wMvTlrk_B{t*;$l+Qi`L>gTe~DWM4f DmL*CB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/eon_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/eon_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..cd09e514d60f12a1fdda4447c3f0825ea195ed87 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|9|)V`R$7ruN_@` zZ1?V@OTUjTD%{u^{M0Ycu>aVMT)!(eG1)HKK$X(-!bN}-V@Z%-FoVOh8)-mJtfz}( zNX4yW2i7;d0c_poQyvCwWb`O9d9&^Xn_<)*?N#677z|I{u6F$7B`7Ld-Dt9UVL`Wb z$H5gD5ka+#M>_7!+9-V_;qLW&Tg7v3^nJ<|KhPt6ce}!|;(4y63=AGKr2k1sRvZRe O#Ng@b=d#Wzp$PyNiB{(T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/experiment_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/experiment_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..0e59eb7441effe0f26ae74651b120bb461ff4e0c GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE08u+WC_v}*uH)HwQJXY zFXy?m#P`ZHDOnx0%ZtQ*{rYupZ|k-SwHs5V&dqe)-y(f-iQb*9Mn{D$L+pf8y~UU4 zXwQ{4zjf-q2GAhJk|4ie28U-i(tw`rjx&Z=D7B(~U)^=?dmRpWnr4^+9kFy!A! Z{{H=Jty~AEx&xiU;OXk;vd$@?2>`d8a4i4; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fish_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fish_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ce78838540cdb1791ad0ba47930a21c29d7a3a GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=2r%{`m3p=b4XJ|Gz9> z@^tHm6A4c?`V^e$_+PU)Z&UrrPUBahjn+k;RXS!s#ZUHB$^$9Jk|4ie28U-i(tw;u zPZ!6Kid)GJtU3m5o0(=zKQLhl&!Z~!HD0EE3`SmMt!>jAm+XmFt~#g{?jq478MF4R zQ1(Hdr4A3d6K49$u0GH+Q+w4kiw243X}aYJ%!WVi-D!;~VY|x6@U%tzylkze6VMU{ MPgg&ebxsLQ07^nsssI20 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fossil_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/fossil_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..df09491d04476995dfb79eec02b2ad9034ec330b GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME09ie;at(=dTDK8MYw!V zj)jLlv%>nj2|x+Pk|4ie28U-i(tw;WPZ!6Kid&(5j9koyJcpBRKL2lDSrC0POG81? zD{Xn%y3Q|RV#hs#kG{BmVx4f#ucsgOZE>&o9sc0KU%{j=@;4-={e7UVaeni`6Co?A j3!^sLy*L`eR=EJF!wP&v~9#If*y|_dDL&~=Qe%J3l>n`5- z==_xsYx|vR82qo7#_|`l2khH1rE2!1^^ON7Zc#qBP_SZ4(%nxdi__=6vG^q8!}Y+n z$Lze{^@K}P-m`PP*R#+0?yzqM$H|XRk~%H+m4AIM!w})jv5AfO(MFI{JYD@<);T3K F0RS*KYBT@< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/giant_the_fish_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/giant_the_fish_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..e0314a71654249f1e3c9be03bc247bba3d774a63 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0VQ5uHVMa;A4vluN_?r zj86wCz4F_r}R1v5B2yO9Ru%=2_{45_%a^^9ZQ0R;i)i$7*h`F(%K#+DTh z!n?Y*zds)nfA-n@1(LEd+lw8&8~XV98XqyddM)dsdZ2Ih`}&DV4|n`}cGmgn2eBjV zQuZ^}9=yV`F*PfAVx+Bb@N4#pRSUT~wxyr&+EASr-L{%tD6Qh>0Wmp0!5=eoDhk~u zEPQqFylmA+mhT*1{sv){%T8{MpKISI?r8RNsYOB8n_p@BQ=YN}*nBJ70CXvXr>mdK II;Vst0B=oe)Bpeg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/gift_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/gift_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..af8fdba0a2914cfd8f968ac317109ae0c80c7dc7 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0F%Zoae?=sXtHm{6ER@ z?)>ck-(S|P*co)J>6;cu7jyB?*Mf&mIV0) zGdMiEkp|>sc)B=-RNU(I*~-XZD8RLIN6~No-+51iA3oE6AhR#%h^64~WqK@v49i(_ zs`3xqJGPHu&wd``?FHU@^V@qao)1dQ&U7v{E-9X(G$S;_|;n|HeASc4p#WAGfR znU=LO5#8a}ANDNmSQ-#^F}^kgomGhlW6 l+B7GJ`S`w{8EWfpGQNAy_~VIz;!>dT44$rjF6*2UngCi3Lg4@a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/maxor_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/maxor_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..21d877cf9a070784422f1183f6e74522eb98a64c GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|35PS&#J~h6O#V; z`uh5*@3FMB)Yj6Hla&R^mST&G3=CRysJBz^LJtw)>B(%A*BSnzo}oLyy65nMc@+2FX65 usd))oFP~NwKF}lDv|8bqvDZQ?1_q@Jq5d7#e#JmL7(8A5T-G@yGywo5oI#ra literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/mob_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/mob_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..26c7ece53a0d40d0e403d2ffe5954323c788c31d GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A9B@3pX#hFG+jRJp_d z|No`BUB$)4FFa5Y-ZV|%;wqu`%8Cc4|G#1=2P$PO3GxeOaCmkj4af=hba4!+xK-PE zl+jg@;c&r+^C) zdmSB357X1;GF$b|FV`oG2G7}<5U2#bix~fG1qvgV@o_wTyZKopl7+5T`cb2WNwi&_ zO&GcgUTdmEqA(Jk5W|Hz89#V{hyV(!Xd^of5jZY4ouZQBe-3{$FF|`(7_u*LL29Bo zyx!G{yBQ475>^50>VJoj%#;Lx64O#xx34%co{Qdl)7X|C9)0+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/oops_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/oops_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..d993937166a4561c17436f8e2b06920a690f8f9e GIT binary patch literal 437 zcmV;m0ZRUfP)x4Jy3! z5UqY9iUXfJJ(Qrx%%oS*5RGq+a7rgqR2CXeDKMS7dQ-$s+z3+|<)O^SfB zP9)O;|9<=wLAJVJZ$E)-_vK;IO`?8rFMcdrhk7l!eu8wlBTp1YO#mKBB5-gm=lcQ7njvk(RKM0 z$h(h$VcGJKJ9CttbjsRpDmbj%093;;Wuw-TsXm1pvrINTw^5x46k#k0@(X5gcy=QV z$Vu{aaSW-rReQpb?~nnH%SB25OCpz!?E9bTD7N(o)4g}~f0Pezzt+*;k(2BG>8VO; z_T6Ofvo8G(TwBX;w@Pn*d392+V*RxR=Yp$4zWd#@sP1)M_HPASYl3}%UV>ZcEaClo Y8G?5+rSCpv+5~cqr>mdKI;Vst0Q*`}&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/priceless_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/priceless_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..1da0509bb1e66819db1ad256d17ffdefcb5625ce GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lw5#Mh%1o(vG{+f!<-w zOXAt2t^5ABYR{V_(7pGt0PS z+4_@b!k%dz)e2X8SF4_Sa;)})>grvq^&KAlmfYs+@G;8n{^B1;XUkdGu3C7Rx!-+D zdtSd(n|qAh47tjx8V&#cIdVVv`F;9rY$s?x%+Bnuu_^c`-*~{v*1)!+^3B6QTboDc bZR!}590z zqPnHRUtC<=K#EIVfX#<>&3T{-#*!evUuasjKOzNwxYxG-eXBZiw&!^6|@f+haUgE+tcCsqQf_5 nKCCPH{J}vtZqX;>_mT|v6B%zE+Q0EI&~ye*S3j3^P64k zRa8{`_dd7)WHFWm`2{mLJiCzwDHrW z{XjlrNswPKgTu2MX+VyJr;B4q#jRuqwjPBhPeu;|bB4}k@;p3JY6=Uj9h4SGcoax6 tgl;W1FxbFi!cb|ckZPk4%NC%_@V|uZ&8FqkUI5Kt@O1TaS?83{1OUUjD|P?? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/snowflake_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/snowflake_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..06cd84ebfdac7ec93833abbf88c955209b822e5c GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=0`y{9p0?f5X%FS!bT@ zsrB6DuRPC1KF3YH*j6FUOx9LgQ(8++TwMJ8yo$9z)r=)Ue!&b5&u*jvIZ2)_jv*Dd zk{g&9Ij%0`P?D99nAOr?(#_Dkagtfb!h>5qGR!*?v(~IQ!;myXl~b0@cn+PW8gmf3J7R$VmNm0jWSritC%+#W|3uzEB~@CdRih;3psSirzgq#_XD_>&jp OPzFy|KbLh*2~7Zqen^%8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/spook_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/spook_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..1cdd8b3a23c20078c40b4e15c83a5cc612de39ad GIT binary patch literal 317 zcmV-D0mA-?P)E!xY`2+JMIlqBf|Gk+#m>ALc z__$9$AMbIW8@}FI7kG4Z)R*K(m*-P|Y<)i5qG(@4w*yTM)7910gwTnY^=#Gq$zFHe z+S=;Z)zukJ8DNw67|0p?Z}P#!sHQtwl~5-movdt#c9=7Gq`f&g9$TB%$7r!nz|Uo6 z0w$DznwCZ*i2*=DI0Ite%L)IUGQeQ$GeQVwngEBp+nSUzz^1n<4`^pF&ofUqG*cl~ z=h|%o9%^sSJe`lh7GxoY)0S;unEpB{@EiI&Gh-@*ipNX`=Tsq92$gLGAzZ)Ay^STh P00000NkvXXu0mjfFe-?` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/stew_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/stew_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..909575682e0780af0db3dbd5feead24299cac439 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=81!u06J>aARlij9fpL z{Ff&2w+j9FmHp3TyJ!bna@uQiTdA`dD00e+G65CGEM>9*Qj8@*e!&b5&u*jvIo_Tw zjv*Ddk`Hh%+u@Mmx7c4Vpl#A*$S;_|;n|HeASc4p#WAGfR5+7H zarN}_v9mBU(lv8)u(PtT^|M!x^3ZWHRWekU6&DxRw&$NR-*6&O8)He3UoeBivm0qZ zPNb)cV@SoV+U}!`&Ws{Vi9gn@|DRU=c-|S#tNL%QFZkGcL6%fA2K-cw1j=69JjZGJF!?)%LD>Mi599}Ziz QftE0My85}Sb4q9e0Ba&kZU6uP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/tree_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/tree_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..958b329cf5fa99aa88da25287bd8f86dcd2fd224 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0B(~)tr{&RT*lvvo&UI zZR&(@huzaVb8>Rp+uMKr`X#HQ7BE3=+Wj<_TKUYC_Vq^sKbWN~1Zra}3GxeOaCmkj z4alkWba4!+xaHE-%IKoVb2Q6h%ia20)pPznQ2g>R!A3>a-+oH}!D{EApLWUa^LYBd z8CJ+o2#l&_pV#?3CUSq{`kB*jTkN^Cmj*zGFnGH9xvXwADq719oHWz)hHEY-Vr8D@IYsbKP_|IB{}=h5{pPB#8grxn YEo)=6UA->W8fYeir>mdKI;Vst0Br+2xBvhE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/zoop_the_fish.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/the_fish/zoop_the_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..6b76e80f931db3e0470811bb278eeb1356a963b3 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}V1Q4EE0F&GGUV<`ySZftoP}|Z+sF0GyLSH@ZGWVbB=JZvC=-D%Xr4qOw?9eGk{^5 zF82}*Ic_V49BqbtadGkWeOn5EhBB4}`2{mLJiCzw_tji=GGEzsSK0Dp0iDC(>FVdQ&MBb@0DGNpYybcN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/wiki_journal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/items/special/wiki_journal.png new file mode 100644 index 0000000000000000000000000000000000000000..78ab614eee7be96e991f4580aa293094d8acd920 GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE07iwVD*(?-@bkO%$YN< zUAuPb)Tw*-?yX(BHYX>izP>&>I{N>o*4LXna&#pB-$*Jol8aRmuoPhK+`pe6sF|@O z$S;_|;n|HeAg9vP#WAGfR%y>sMi)m8=f;ou1~2#DIJ>L((a|UG87q!gwtT%Mx5HKD zV$|yL68=w4jS_y07heZui_b1RP|MF&^;(Th%et)JEGo9uY1S9ny?wJbb)1{@fc=2O z=?$})Qn+MS6@?ag<-~kg*TDVfJ(o}Wo;gNqKGl`mF@DWqn=|`@_!@pW8vxI7*cVo_Y@=B0S6K0iz@ct_kRjIxZU|BL%*O@)q{}m x?dq$hezklSmt24Pc;3}pv#!cZPfPs9Fe`#3dF91fFMwt+c)I$ztaD0e0svX8FxmhB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/pets/unknown_pet.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/pets/unknown_pet.png new file mode 100644 index 0000000000000000000000000000000000000000..dd073d492f25cdf7d9ed69601ae9152aa8f5ca63 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u0Z<#|NkaNF6`{=K4+Ql z0{M(3L4Lsu4$p3+0XZ(7E{-7;w~`&$zsWZoS^brV=gjIb*@Or6e_t~*-lW2qIl0JGR6I~!^JdTW0H8EuNswPKgTu2MX+Tblr;B4q#jT!>|pCPONxApt`1uK&+{#xTK^cP))7Y3o#(YSQ6wH%;50sMjDWl=jq}YQgJK!0Naf- zlY|fOtiIN9)S>J7flDve2HLPooRi7uzBlV&aofW$GoPgxcN$pI{#tD zcNx<^t(C5jFf(vDuXFR%0p2Uujqg5XxiQBq`7w`yvxZKn;F$m(Z&4;=iSQCmg-Bk8 YO}iED@_wDP0%$XXr>mdKI;Vst0OcQ1p#T5? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone.png new file mode 100644 index 0000000000000000000000000000000000000000..e860c1836f181a141b788cbeb22be7a63425cab4 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE06{PNlD2SO%mx|rXJ>+ zpB{2t+r+iMQ)p4TSeqM<&E*d(fhrhFg8YIR9G=}s19Fl)T^vIyZuRyuaxoinu$0@b zU;gj^-i;@nmO3=@2_0ip`uF5pH9y<>o)bkJLZXRcfya9pc73eORM>HMZ}cwVw?>6G zBR5Dn>;K)TpfW|pRjz#MbiRZY>ho;BhWcHwQ{DVwwz*-FKxyZzfAc}E^K|udS?83{ F1ONerNBjT) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/aatrox_batphone_on.png new file mode 100644 index 0000000000000000000000000000000000000000..4dfab1682f0c9c30f2240eddc7810031fb840586 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=61$a$MWQwZBtnMU%v$ zbTO&y>1}R2>0YK{K`kEUntVo?l9G}@WmCL0E&wUUk|4ie28U-i(tw;CPZ!6Kid)GC z*mmp+(_t{a)$FU?Ao9L7Y4+h~d&DK)#c^!1Tyv^=`onW~9b6SJ?oO9{cjx2GX|+$@ zM7D9;*ku~`%RET6IPhR|^({d*xdr=f%*_lx_>6^#bg3X^ aHRFwE3LQ%$y;lM4W$<+Mb6Mw<&;$T!XjOXv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abingophone.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef5210b6f7722fe2624d21620135b6c2bd5d7d5 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3SL|8MPB&9(hJ=Y(yX zVcQ%W9Q5_|8T6N%Ftph)q)JLk0@ZxBRB8uOj3q&S!3+-1ZlnP@0iG_7Ar-fh6A}u< zL`)JHn5NCMUG8teAStuF{QbSl3@IC$Bp5Y%oL{9{YVhk{zd}vz!!mZ~d|2z{SM1Axm1bV?#G7uGf=(wQ>tj>R}x-1h3!{xbbPd!oto l2jz^8)8{OWoYTw1u-(++>6OEIJApcM+JvD^Qc@BqE3%N!8Avgf1o;IsI6S+N2ITm9x;TbZ+$ufq%H$v@;t&}7 z`~F*heUtF{l8l+Ji^915R*MABTjf!g>}hy{=@U=MJV((0>xQQ+&n0$oxvX(qc_3Eq j=_21xJ5x*!fA}kZHHsy&c*k!Gpur5Du6{1-oD!M<%E&zL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic.png new file mode 100644 index 0000000000000000000000000000000000000000..7c668991f2ee468ce1366fa29ca1f7c10d4f2692 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6Vmw_OLn>~~J=e(DV8G*Yam__p ztA(3O7vu;szh(TZ&Tx-?;-?U2ZJl?asp8AuIDDJ9&GMc>z+a}|>-h$(R?Lyk{_`&} xa4_0GY_NaHz^KFAtuV3i?&X(u?*w1`Va=C)bUn6UR}0V{22WQ%mvv4FO#r*JH6Q>0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_back.png new file mode 100644 index 0000000000000000000000000000000000000000..149ec64c6e60295342d8fac4882935a3ce9598ea GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6LOfj@Ln>~S_O&w}P~bVdWA^Q$ zfOQ(xr>?v@lGHM@rNugRfx%-|jeRX^6IeUB_607yUT7ch6ysDQyD4}TE31~s4pvsV pAXcV>OU$^Y#?IpM+VMF&{ofrq?(c^8ZUN0_@O1TaS?83{1OQclF|Ar-fhCE5~ho%;H}I8Fap zmtzqNFN5Zh_RRN86Bez#U6y$Gh$KT$2m9rN4gWYN7i6)W5=>{1^SRNmYL(WUS&c<4 qydOS%_`!cf;i!g$njOz)J_e&D_vdc?Z+aAH0fVQjpUXO@geCyP5Hu+O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_basic_on.png new file mode 100644 index 0000000000000000000000000000000000000000..232bd7f21ad6aaec53c45cd11dafe3d4eb370c23 GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6oIPC}Ln>~aJ#~<`A%KS|;91!= zdx7W-<%a<~q#s_o!2Z1Nz{lCaE8fexOjh34P^*8RQS8D01DXXw22l=sm+jj)`M_^x YyT@I=MpGAj0~*KR>FVdQ&MBb@0Flxz82|tP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon.png new file mode 100644 index 0000000000000000000000000000000000000000..e6e28d0f90923806a712cd47c50e80759a2af361 GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyDgizru0Yz1Avl?{eu2asAX`#W zvedLwPfzc{o%orHYs0Fk9gEH6I z&3k=ux_XVnE1y_hU(@@=)0eND|9;x?lkeWo_j&TqbLq(!;VK~_rf25d&e*`}Q0H3A$S3GIL6BJ}y?|7hpmneg|Qc47Vj^$pBvNzy)roY@Kc+Du(} ceGRx6eCCL!37>8c1Ui_()78&qol`;+0Hu~~R{#J2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..70049950320ee9486c86c0401a57fa7b54e9bf80 GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv-2k5uS0Mf3%cg7BrXJeeai{dx z%0(rut*x1vnSOqLdU|?}yuSLJj*^m+N^BNDl}q0}PXtnoB|(0{3=Yq3qyagzJY5_^ zDsCkoVA+$J>G0^?U2X%$Z^m22CEmsPpKkqp`CDAVji(&P|0*1pJ aEDR5HEEGNFUpNAEC4;A{pUXO@geCyh*>2nb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_dragon_on.png new file mode 100644 index 0000000000000000000000000000000000000000..2a92a83a4289c83c2c2bc3da02afc47f883a8fa5 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyiUB?$u0XnZ+Kh{KCpPRkc;U`{ zJv}{1Nl8auUo(c_WX}2p5_6uiY>fjdVk`;r3ubV5b|VeQY4db(45_#^&1imZwyE{R6s)!PC{xWt~$(696GnT|58) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus.png new file mode 100644 index 0000000000000000000000000000000000000000..5df67c1aa5dd5b2872e53e1b9caf6712546aa333 GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyDgizru0Wd8m{ZtaN+Hz>$d;6p z)Q>XJ)6=_f=l+I02Q7M|ny1Z}tA8L8D92b5*O-@u%fB<)kknVqn&&D53G c*MN(`XO4K9@agtIpo1AaUHx3vIVCg!06;-%nE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_nucleus_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..41ccc766a3873e5bce41ff2715e39f9b0e3853a3 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyP60k4u0UE`TwGUIcjBaJIeEn= zPMmo3=+O*0hMj>7pO!Ir`}k+gjW$WQ-Q4&2-|1)P7kqYH`%NfulbWa6tRme5GaVmZ z$nLDN2?UzLSQ6wH%;50sMjDVa+0(@_q~cc3gsY5)9e9rRB)0txUpx1c_AB)QE1|#6 zNADP_E@~7A3Xi?be|*PIX{qE;bKl#&?Exb1G<;GI-_Z%)WA;ojg89%H9i!z5w|1Ck zoj+u^xn;xgY#D<9) zb6-+YQcq9MqBp8}+Ke;uQ~v^0FqQ=Q1v5B2yO9Ru)Oxx&hE&{|GNF;J*^q}#-*da( z`~O>*!#R6SQaxd9PDH9&e$xH4s-~Er>mdKI;Vst0B>tn-~a#s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9c2f555f3d056d67f744a1adc9e8caa8bcae8e GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>u0XoTTD#9zZ)LmzkS!@G zIV0UnPfst>K>5O*`y2KgJl$^FJZ;9YwXI!1X~vQuzhDN3XE)M-oE4rfjv*DdTFyB3 zwHoj=CobQp$-MJ_Wcu+XEBrT^bbrtNb=rlY^zW9{4>G+bdy8pl25I}AtMp)>>5;Y6 z>g?I%we0!+#hcAN_t^Rdy+8BCs(wl{Q2 ztmkMknf-*FxiRCfg2A^Z?5~5l-$WeZU*peh{Ugby;=;Gj_YZ7l+=WU jy{Zn(Thyi|!OEb1UVPo^&3Q9`Zf5Xw^>bP0l+XkKp~-U$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c20b42b83b737e5680d28de51283995ee748a7 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy5&=FTu0YyYNpfYpL7%T)q=9mg zwf6r*0jJw-b8|MI0?IL#1o;IsI6S+N2IO>kx;TbZ+)7elW4JZ7`A)||1(rp@4YPmW zw}_uNRrV|Eq77P|;f&>$oS&st;uk7e+2n`%2obBJ6C>U zb9w&W(`EJ(-UX)W>$|=33tF`HrB0j^SH^s!QAK(qbFxV+qxcSEYX#5KTr$Teg)jIf nroCg4%CpVf)*pVZ{(YZ6rHm=*pJ0(2&{Yhcu6{1-oD!M<+h$i5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_clockwork_on.png new file mode 100644 index 0000000000000000000000000000000000000000..11fa6bd464abaf486ecd0afd61098c5f0d22709e GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyiUB?$u0XnZ+Kkifwj1^wym05f zo}Qkhq-3Ola*?%mpReA^c!P@h-wpy5F_r}R1v5B2yO9Ruw0XKXhE&{|a-p$}*-)hQ z;rk`V)>FUN--x`O%f%_)`0v5t!a`+TiT4XPOqnnI#bbNKtLK&rH%DZNY2B=huGX^^ ztt(E{;cZQQz@+#4VBvQ5ioLnkdW?s2!-YMSj_8yMG`ymUMK(n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower.png new file mode 100644 index 0000000000000000000000000000000000000000..2385480d9ae4d4a9ec313de62e985d26a1d7e71f GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyDgizru0T47!Fmc$R1ve6q@*N} ztEZ>u%3yfm&ixI04z3bUYMwTONBGJrpaf${kY6x^!?PP{K+aN67srr_TT}WPvkn+= zu!i3EzW(F?f9t7YXBHe-*Whl`rBwJ|rToMd$Apa=CKxoiygYEN=)h(HWv_`=H@;Mr zzFX6|3DVfl)M coNkN^p8RZG3cK>1fDUHxboFyt=akR{07*t_761SM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_flower_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..a6cad43204406f0fb121f49b79af57ab04f93c44 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv-2k5uS0MfW_tgJid8=0ZkG~KR zKk1X-M)!cGhj#PK&sesY_UdicEYz%0p28DV#OyWc#k(+|2F8*gzhDN3XE)M-oGG3z zjv*Ddk`J(~xwg4ph|+JTz#BnIaN8#ZcAIWPCKXcc4g#0?t_ecWH1yTZVB`R+oF z#uamzd8U;wXLDw?u}fxzO0gY$($D z@cj~F>#5)CZ$#eC<>C}?{P*B+VWG0F#QTLCrpy=q;;}vA)pN^*n!J1paf${kY6x^!?PP{K+aN67srr_TT}WPvkn+= zu!i3EzW(F?f9t7YXBHe-*Whl`rBwJ|rToMd$Apa=CKxoiygYEN=)h(HWv_`=H@;Mr zzFX6|3DVfl)M coNkN^p8RZG3cK>1fDUHxboFyt=akR{0P2=%)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_lunar_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_plus_lunar_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..b2049eb6489b1ec15a00dc892e41e366f93b6214 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#Q>iWS0Mf7_xfwsrXJee(KvBW zdhRx7EaktaVz-%i%jfl2?>kv zwR0GR6Jjkh84o|1xmsyq&AN3nH?v5rNjn$SDG;H0V1a3|n$v--g-p#?PR;aAWO{hi zi(8^4O!rmO%$HGd`x*`gcrdFS5D1Jrcwj@sPGzp6hT2w9u^+j0)~;~4dMPe0t}%Xr xuFYL$*9BKhb!9`nBcxV|^?mDNYZK&PXnCal_H@LS*+6G8c)I$ztaD0e0su2GTV?}fxzO0gY$($D z@cj~F>#5)CZ$#eC<>C}?{P*B+VWG0F#QTLCrpy=q;;}vA)pN^*n1b2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano.png new file mode 100644 index 0000000000000000000000000000000000000000..635567cb624b6bc7081d5d54c64c3be762a4cc02 GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyDgizru0YzDLC}*yGLlaS$d;6p zEb{Tw)6=_f=l+I02g_A8o2SkATg}`Jlw&Lj@(X5gcy=QV$XV*?;uunKtL7YMRzrY5 z^TRVj@ulzTZ*01m5wE!P0{_AJiX8{$$QSY1oGtjem@WA1wZ$e|uQ|#^EtusWl)27s z-s_9g)oUDH`NZn_n%*y-zI^5U_tTc2eD{97&y#M?3${gulPE3-b@CZ(vSKlJ+U&%ud+XX6nl8 bYrw_eGeeBv`hH+%Zslmw2OGIu*4&6t$* zo$n9RJ=J&C0W7CZ-@UeoBjB9rPGsbP0l+XkKAiifE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_flip_volcano_on.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf21ee0ca092091ca1effda33f6a867becaedbd GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyasfUeu0T4HPso!&(wIST!=8f| z?%bD@l+@GHD_7NQo;Ks|N1+U$3dWKkzhDN3XE)M-oLWy8$B>F!QzkUBH5>A<>3eS1 zd;fn6bJ)l7_zN@tFL3X7Q8=D#IBD73nsZgUp2^vVpY363UfVm}rAphtGx*`3!>YcH zav}#SSuFL6mWy_C=quH+zS|aYw37YR{;qw8EiWv5$C5YWT}48|{f+ruLK8nqiahY( hzY%=p0?T3shJ$@9-Wi)k(t!?P@O1TaS?83{1OUsCRqy}+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus.png new file mode 100644 index 0000000000000000000000000000000000000000..97a787471709dda57dd87f581a5830835728031f GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F&0@Bds;QBqP;M@MH8 zkk7!dn}?@rp_~bj#aI&L7tG-B>_!@p7*cVo_DmpOg8~mr;4YE9|2wzN=DDJ; zo@I9aK!Ibk(=M${Z{2XdBTIfXe)-&J@`Ta%|N0V!%m*IK)6FIvd@t2EQI3DZ?$ulW b*fLe@XK-XXkS3J41Z1VBtDnm{r-UW|#=SY4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_back.png new file mode 100644 index 0000000000000000000000000000000000000000..f852b2960e0aecdb4727ab382add73a943616f6d GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`d7dtgAr-f#PH5z8FyLV^c9{Oc z!mCLPR!l5(D?X_zJkwsHY+N=?)xxt>w-qDr2h|?Wlrd8%G`LO zyr|}w1DEDW>-a~0UR*2+OpG>6tRI9756n1lQ|eUqakfcbJ{Aluv-f}EovZFW=|*d> QB+zCCPgg&ebxsLQ0JS?iy#N3J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..ac68de07645c07dad60bf8f2acf8d766dd9cbc66 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=6>JEB2a3Em!mG6*Dj5 zR!?VF3}TY-d@iF6lw&Lj@(X5gcy=QV$g%TuaSW-rm3)A^XUdc*2YFN-RaHAW6he+1 zIqE8Lrht*j;PA!BlPqUA3WI`Jjh&ho^jr~8H8)snqq|mSeJ_KJA;*u_dY0utlNdZ* L{an^LB{Ts5U#2m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_on.png new file mode 100644 index 0000000000000000000000000000000000000000..74d348979e17e9c486e35d5f7e04701ddce740dc GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;hrvzAr-fh9oYZ>{rms%;fzy; zruN|>EXfMul829clx|wW!Ms?akNbhC?83AN=>{=}ma9Ed4V-14KO9i;3~ipka;rgH r*n~mSKPiDBxuo!q-w_jr^=S;B!xwJ#b>Hj`w1UCY)z4*}Q$iB}aHKGQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition.png new file mode 100644 index 0000000000000000000000000000000000000000..b795c09a99a8aebf2b1b57d6266a8e5b362ac14c GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Wu7jMAr-gwPUz-rFyLX`?N;`} zPw!IV9M=PkyPBFqR9Kv*l-JZ2EKuB;aZCGol#rnOJ^kfdeXcl8nynSNZr_13B6`1E zFI4}padYGmaoqD+Fj*u2oQX-Av)H<>scDk5 YnUeAe9(~<;Ko>B0y85}Sb4q9e0FPun=l}o! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_back.png new file mode 100644 index 0000000000000000000000000000000000000000..f34968f9fd12d02d871806edac7dff6185e32503 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`8J;eVAr-f#PH5z8FyLXid&Skt zCta|hVci8sr4J0B+U$8`I4Y)ZJD&b-m50n4g z^LcD&IMBdy|4l)Il0buY0fXE`CI*&cNtHSr9dRNO377s%l^2=az`<@|y$)z6gQu&X J%Q~loCIBKMH(me$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..b754c100fd732636af347e2b87b0cf1a6ee34296 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0rhuF3D+D!gny_v9Y7 znlh&JB!X9^gZ3=Ut6Jjrr~qcA9l)!3O5} L)z4*}Q$iB}WDGPE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_x_plus_special_edition_on.png new file mode 100644 index 0000000000000000000000000000000000000000..1df2eb7d624120f225cce33b02f1de50024f8b87 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`fu1goAr-fh4=^16_y2hJMTTY1 zSo;r3oNzv7P{`D#Ad+~rpmGjFqLrQL;oA%@3=>zRU14BZv6E%8N+_?BPzH0H&jkh% lnR<>M!y_LVo7fgGG8{d$uWOKvYn^?n{qYnXpa9G?-?tP+cc)Q=`V=T4`|3sIQT@Z`!Zd@;fNMcR>Hb1fhoW}#L*dS+_+2X5CM5BvaMmu8{IL7y i+|Bk1g&fU{hkrAC3TO5?=)w3EWUHsEpUXO@geCxwOF_*5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..f43d56d58755a7a5c4305d5a825e3675369af47a GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=6pce%%y6gKxxL3AirP+hi5m^fE-s(7srr_TgeBwt*lOIAL!}Y^rgr^ zd9BS_o-+a7LSD?qBBIQ#2YMVX1~?iVHa%h?a;Cu0%#6`^PH%7QfgXWm;qX0XOblzD Waz8Rxxnv78kipZ{&t;ucLK6U@kvru8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_on.png new file mode 100644 index 0000000000000000000000000000000000000000..7104957c20aaea21ee95153861758ce59a787d3d GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cDFg!aK_x}>Z{~Zkb zm-{a3u}1CnOYziI^lZFipGA*B8L9 z&}{1A>1oPvB7uoh`$77KCJ9CtqZ@^br literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style.png new file mode 100644 index 0000000000000000000000000000000000000000..917470020529a3681bbad112a5a77eb65a16e474 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Es)m@VzJtfZu*j*bqH z`~MAtNfG=1OAP)CME>t!n6_sA44^1uNswPKgTu2MX+Tbtr;B4q#jV=&tU|2@Jgygy z8Q=V0w*SMc@Z`!Zd@;fNMcR>Hb1fhoW}#L*dS+_+2X5CM5BvaMmu8{IL7y i+|Bk1g&fU{hkrAC3TO5?=)w3EWUHsEpUXO@geCxR&_A{S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..2f628a9dec0bfbd3c6ac44536a6e0c9804fbe877 GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9b2|JZwNbNPnkoJMzs z35`r;(JVnhzDxrDfO3o_L4Lsu4$p3+0Xa^dE{-7;w~`NV2OU0j`asX73tv(Ulyz-Q zM3qD*NwKB1>{ue&D5-hwRa=7Frb!zWW+X02(_l%P!Pu&BtG8#$$6Fi>YbJ9)=l*VL Q1T>Ao)78&qol`;+0GD+-ZU6uP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xi_ultra_style_on.png new file mode 100644 index 0000000000000000000000000000000000000000..c63880a1b4b2a9aa630d3b827afc563d39e70289 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cDF#Ny7u>CRH{~Ziz zr)B*Yh?o?y1I6=KTigIrj3q&S!3+-1ZlnP@&YmugAr-fh6A}u9L_!i7n5JFm>kD94 zXg0lZti3B!I=?Cc>nj{!qjBYseum~uNa5(Tx+wx_T3HyW%ldA+TNHRRM;`Y|@ Sk7x%P$KdJe=d#Wzp$PyG4mG*} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega.png new file mode 100644 index 0000000000000000000000000000000000000000..e0f9240422b95fd5ce2d11b51c8255d83b228331 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0F%QjN$(dhMj>7|1UB8 zf5V`oqa!IP2^4==%Mih!{{YBhED7=pW^j0RBMrz2@^oGnj_&-d?zhJ9g}Bkit5~t_?uaxn)zi1Q-?9obOujXKbLh*2~7Yc6hamN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_back.png new file mode 100644 index 0000000000000000000000000000000000000000..f4a679abb13bab7de99f6830e34dfbd72a35c1f7 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F%QjNxG|!wflwoq-Jh z-!S~Y1QcWVzk}ib($8T)7Gp_}UoeBivm0qZPLQXIV@Sm|4n^(ehr*pt@w-&AO-SNT;jCRG`C<3Z ixtr}33OSk?5C3NP6wd5((1YgTe~DWM4f^o>P) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_back.png new file mode 100644 index 0000000000000000000000000000000000000000..a3a2fffc37e4a3b999a3c54eef036369d0bf9bbc GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F%U|JC^gpY#1!FRXj` z{|&?cOF%J(|2r5auif<=$YLxB@(X5gcy=QV$O-avaSW-r<#VD{ltF=mAu#h>{EY?k z(m!249h&!Qb&>H7#cdB-r!dW6GvHd#P`ba+)S;-|{7|^_DSnqqwh2l6DV(*7BtPu_ jId`+YLLo;p7pTe1a4tg+t1=;H9>gTe~DWM4f=$S-M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..d48004aee678e218965f6e6106dc323a6b7a2176 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=5c_-yG1mFhlQYtLDww z3@4Jr*Vu7o$*~$T^SJ?K#f-E>ffQp&kY6x^!?PP{Ku(CKi(^Q|tz-wLIXpbP3CF&i z>fn6*oh@2dzM4fW8wiSgzjRsvT qtyd26Tvc!kG-%c|(O@{q%V7FYB>muo6DC0O89ZJ6T-G@yGywp%d_F4x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_color_on.png new file mode 100644 index 0000000000000000000000000000000000000000..4b10169631f39663b7864f2d488d67e1df8c12ff GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VV*9IAr-fh9oYYu8~piS&)IQb zA-O}sgU{D;*|X2wcK_Q8FB&ih@aA%=k%t=M|W};>=0-wHf{8d^w{KUl>1+f^NAC)fwo@{6VP-9Pgg&ebxsLQ0OO}g AZ~y=R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xii_mega_on.png new file mode 100644 index 0000000000000000000000000000000000000000..8053e23d1eb21044d783a1a0c95dd8455f80ada7 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`!JaOTAr-fh9oYYu8~piS&)IQb zA-O}sgU{D;*|YYo1+M=u8ZZa&?N{`ebu##Kreusz|E$DJhNq1dSqw~Xcv`$41v*PJ m3(Vx4&$K|sEp3s7H8X=9d!1tuf3yCGGa z4^!86yyO0TDl;@{{?+ mV7G$lHmBFqb+2}R{LL&;&HS>1slym(I)kUHpUXO@geCxV+&#-IMkped?}B4FLS^zz9~FAa~Q0X53{W}#Cj^Uq%riO_=A0{Y0p^S hrRYycpY`F+e?}d4Cbn<p=fS?83{1OVr5KO+DD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..6052655d352ebfe34a3f6b09aa842c33bc42907b GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8gUIqdha+BLdpr|Aj> z`>=S|C@AYQDy54^sxXLnF*0cY)vybM1pq0=k|4ie28U-i(twrHoClrX4vtbnvuzs>J!H0 y&1%fYwQ@(3WM7k-oGnj_&-d?zhJ9g}Bkit5~t_?uaxn)zi1Q-?9obOujXKbLh*2~7Z;uR{X> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_back.png new file mode 100644 index 0000000000000000000000000000000000000000..34c6a7b2ee15d0f12c28b4c22ce643ab8bf86984 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F%bgFz^9lX(3($F<-7 zUt;+G1}Mhx)lX&(kYX$e@(X5gcy=QV$O-XuaSW-r6?)!Lj6qO<`JyLR?SE;0hOe7` z?XJ;%8g%+sT9=1u#GwW);Y)eUdzk}%@lD~`nZsb6e3)&;A=Xo&C5@pM#UJcrO?$@r hE=7Mr`m7Ik{xj;ZGqHW+KYa{jsi&)-%Q~loCIDZKKo$T1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..ca22fea052325856eca96c48e700aa85be445620 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9PEKb*CAUrFtp$i#Lx zzj8C%G*z821!a8+IR_C*6slJxUZ(-UahWa!f3deeg8Brn6w1PQB(M&UO=D;PXo{an^LB{Ts5_Ypwt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiii_pro_giga_on.png new file mode 100644 index 0000000000000000000000000000000000000000..c278cabfca0c24ac4ad4945671a1e82bdb1fb61f GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`p`I>|Ar-fh9oYYu8~piS&)IQb zA-O}sgU{D;S=z^6#s3pyOwKS&Ih@ZiDeco0i*|Ar-fh9oYYu8~piS&)IQb zA-O}sgU{D;*|Rk}FaA%AF*(C9<#0a7q_j_0eC+RVPd>6d%|gndQlU?(fx%4mnt^9c oRz?zolJUb}pt=)2BI)T2LQxIo=U0|Z1X{r0>FVdQ&MBb@08L3ScK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous.png new file mode 100644 index 0000000000000000000000000000000000000000..efc7eb248efcf559c5bed11e538d45dbd7b4e23f GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cDF#Ny7@P7xx!*Z5Q zsX}ucIqS6;B_$<+Qknfmd_an^B*-tA!Qt7BG$1F?)5S5Q;#P7(f`O1oNE!pvvoq%; zFY`3;Y?G9goy+OKrrjafaOy)wqrtL@Efs7HqT3lnol7bmBos6an3q^E-gGDvSj;f< jV9d)$Mt2(+-|;Xko~NXo5&rlu&~OG%S3j3^P6EM+jiDFCAM9gId&c@M gMSnv2tPgkoGwQH2v3=t|eGFu&r>mdKI;Vst034}3sQ>@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black.png new file mode 100644 index 0000000000000000000000000000000000000000..baa17c7a28882f1bb20025a7c0d1822fe684b947 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=9cDF#Ny7@P7wGa9EL+ zwwa`qlBA?0P~0xte+rOdED7=pW^j0RBMrz2^mK6yskoJ#kYFGr5|YNi^sJ}rn;El0 z^V+?8_9!u)NMJQ&3XpuKD&W>#-RaH{QOFr!=rY~9g>e#-u|t>e1l}hMhEfwG&&cZO f$+Gbjq%$y_*drggAZ~gW&~OG%S3j3^P6<1c2E%>3r`Q=5sqEX_yd>SN}Q oOBqc)fAPMv)L_`ja`-nxlnlSo(k}_oK#LeWUHx3vIVCg!0Eh%U)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_black_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..e781050a33e31fa20af693264fb5ea0b2eeef910 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE07Lc{i1QtXX&atLVnX3 zrGp;7|91TFnK=_?Ffz(6WX)0ls$eV$@(X5gcy=QV$no@aaSW-rmD}6O$e_r>99(^~ zKH<*Gg_cV`C^EWCKQr^_6&<7e3z|Zjuk}K@A1JMI7Prir7JMUUM&YKp6Z*&O~Uhx0imrG2`RkvaRI%Ey(G+t>o+Iu^4jOwvnq5M~yb j$+=%~hUKJ3Z+IA*4#g`*Y`l2{Xf%VTtDnm{r-UW|b8{?o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..7e92c9ec2077e5449e65fdc06b2edfc8de9bfbcc GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0F%TJM-6-8OxU@d6rL= zbc!jc4*vV;;lEd>wy&PSsA{(E?&~=~MT{jue!&b5&u*jvIbNPFjv*Dda?iFhGAJ@I zIczBXU;8%9&XW6o0Mn(M*eN-ec1;mJ!G7Y-RZg!^0nu5BPV06(U|M{=bL;l^E!*7Y kGc1^xG1cO+Gv_|fl64Gk>(>~p1e(g=>FVdQ&MBb@0O|lnYybcN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_on.png new file mode 100644 index 0000000000000000000000000000000000000000..2b5ed6b23bc29ec47fda72ce4604791060f6c488 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`p`I>|Ar-fh9oYYu8~piS&)IQb zA-O}sgU{D;*)z+&IVZXtaxCOE+V2afoPDzL<`gZK$w!u_Sx7llD)dP;Fno>bG4QO( p%1B~RGJY7$Fy-(GACdHQhOim=zau7@HvlbQ@O1TaS?83{1ONocFZTcd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple.png new file mode 100644 index 0000000000000000000000000000000000000000..6a5c1194a964add88c1c9cbad7d9595d88ef298d GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cDF#Ny7@P7xxbheMV z3>!@u(j+A%1sLpsQm>axeGjALJzX3_DsCkwBp3*ZgrqSrJv(#i zM8Za-hV7%$TC$N}t k=D|BJ9~m8PV0_2JAZo7=QFDUz2GDQ@Pgg&ebxsLQ05jG;0RR91 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_back.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_back.png new file mode 100644 index 0000000000000000000000000000000000000000..1850f005072579f18590d4d3ed10a8d770358a94 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0F%b11M*2%8-`Ju<`#T zhW~GXVhs07d4z!!V@Z%-FoVOh8)-mJh^LEVNX4zt^NwN+f&$DJJ-KTCOY<{)-SlgB zjqcN+)4$TXJWL}FHE0Q6%46Qk9Po>83eV0Q2J7U*Y%312o(e5#4817+U>|GRGuC%0 g`V-P;eYo?VQHPz0?Hm8;V<1aCUHx3vIVCg!0LxuH82|tP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_emissive.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_emissive.png new file mode 100644 index 0000000000000000000000000000000000000000..e536de96dadc754168922c7f81e7038655ff0dbd GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08`~yZKSyvWn1+_C|9V zrGvh|d;e?yzPWXEjEu6E=loj_E`7c_-5U+aZ*KTulbEN+=KE%-*z#wWY{0`I-hW5@~J f6!G&PPmEITe1_ZiRP!DI4Q23j^>bP0l+XkKz1Ko5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_on.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/abiphones/abiphone_xiv_enormous_purple_on.png new file mode 100644 index 0000000000000000000000000000000000000000..4621d346c2ba3046221942eebbbdc68bf51967a7 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`p`I>|Ar-fh9oYYu8~piS&)IQb zA-O}sgU{D;Sz2(LNs6n2*&O~Uhx0imrG2{c#3-l5^HH#|4DSLP0e4;p21d5(87g+B pCWZ_XXMWIRIF*>9*0tG~;f+dW`uAr(Nk9u2JYD@<);T3K0RT_9EeZet literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/armorshred_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/armorshred_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab8474d5d64b86757205ac1f6de7f278fac0081 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cjAO7@g!Gi}6jvYJp z4WXUs>h|{b8gksN;YXJORWOzW`2{mLJiCzw#>V+!~8_GM;+iuvv`3cn$knZvF+6fZ7>6UHx3v IIVCg!0Jd~CqW}N^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_bundle_magma.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_bundle_magma.png new file mode 100644 index 0000000000000000000000000000000000000000..233a74923ca257a37926bb9b0722fc45336f294b GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A^+6Du+@^5Nk4SI*$> z?w*m6(bLoO{}jXjMGUbV9OsWbF$5}NED7=pW^j0RBMrz2@N{tuskl{p?kM9C10DuP z!>{+>J01|ZkbjLMe{!I*s#3PjoWNj3v2|^%fhm|-axY%JYD@<);T3K0RS`?L&N|8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper.png new file mode 100644 index 0000000000000000000000000000000000000000..0b0612474e551a94ff4109767504f829f3503acf GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE09hyQh4y-ft8h2XlSUE zl+>|f$L#Ix{j~+oR=X_=*Qs?dagt+H&$zK0sFblJ$S;_|;n|HeASc|@#WAGfR&Pfu z;{gYbBlooKZ2Z3|^p##^7Msk7B?%ffYP9Za0$7=_gKPXX#@ zED7=pW^j0RBMrzY@^oDFmnc8jhCdA*(US@lKI>opJC1M{1s+maY&Fe|bs za>T(e!OC!zvx|yGghIzqYrx_tzGXl9D=G?Y1mjr`Ey5NsdwX zMrA(G6vmPuzhDN3XE)M-oFY#b$B>F!y{A}(S_}kSE?TTJ-ud71`gUo3_N4dMXUvZ8 zvbkHh|I*Mz?dPG*!H4HMdye{F$@x`G=;)o<%dy>gZa4Gp!jvYODp zj00!{V@Z%-FoVOh8)-mJrl*TzNX4xr1tE@ZhE)>W%pHva4Tf>Gr@-i)4u##Q*-{$|M0Tr{O$kO&t%k& v*FW?t>A{()g7Q0F}p1ds!XG~_O_~oD4!Ot^8 wqBc$TBWwSLR1Tl!jV?D`>YTqR33qTaEUDSvH&W5(n}!ILR@3%$O$&)X7*9;uunKtM}AZ#v={_OaYJVF4Zr8F7V%G($wQR|9pb8*PmNkS@(*6)wAEM zUZSrhzvWnjNv-SXS<|+5MW(UojY~>*&iXIrH8-~J{ZtS*=UH{pJZ{T7nL&{aeZ9|= qEq${CFXd}2A%`%bxX10BHN>FVdQ I&MBb@0L^Jn+a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_magma.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_magma.png new file mode 100644 index 0000000000000000000000000000000000000000..6b93026fbfa0037d5d83f9f7a2ae417d9e88269e GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E09hyQn0bHQC3!d@Zf=! zl~rhH=#3jUjvYI8#!aKBsA$EC761SLf81mLm3GxeOaCmkj4alkWba4!+xRs-|J&sYZz#?5 z+B8W(@bZKu?$12duJr8_U9t6KWYofEcVzdii1X5mf4fUCPT%5UrBcjE%ikZ94CVXx zPCutV=lM!|t35??8eV@ce1Ed&{gWKoLznfdGp8K-{D~oKt>U2qi@7X3mQ43*%f%Vf TGx#%r4q@bP0l+XkK+tg_s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_nansorb.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_nansorb.png new file mode 100644 index 0000000000000000000000000000000000000000..604844bf0764be32490086a7c6dc5b68c42c9745 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0DIbvI-3ibxKtTs#S~b z(N39Rv}^y=`O9-HBc%Mb1(J*uq@<+m?d=~tcyR34v9r}~%ffYP9Za0$7(K;`Zvgc( zmIV0)GdMiEkp|@Cdb&7kIjczswj=Xl~?w%h19WyH>-#=}>{^Inl?}c&CryQQk_Ux*Dt9bXB v3%5SDe1B{g_1H-@RWHgq-9478_7Pj_9o9X(e5`+g7BhId`njxgN@xNAQy5(K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_none.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/arrow_swapper_none.png new file mode 100644 index 0000000000000000000000000000000000000000..6e29ac7215275f793c3b1a602409cc86a0f3a91d GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A`QW2|*BSr)Eyw%RSp zNI^amE^>FJE6T`|m%K V*~V~t^F_|L$wil5Pul|h$*VS?q2^+5fM zB|(0{3=Yq3qyafOo-U3d6}OTUgbE6pJj__;GhR3n@xVc#HGoGt{KxnGua%^YT%u>O z&;ESnSSI@+GdTvqU6ED_6Ag||H0Cxx?5Cr2hv)eG`O7VTKfgNh4fDxW(_1a?Ub!Fl u`Pk8iJkIw|uMs*^8(jUS?L4o2gS@>0^WT4Og4=-hGI+ZBxvX_kIEGZ*N>UJF=$gUK(w3yqwMaPn_x-fqE&2Oq7Bgr6Sl!oO>uc=!^XKiR zIaA{9#_!bO{_xH2S3srh!2?^1B7Iw{vbW|wyAZv0tE}42=#Ik?{8jolEEv)rU2@@T seXcBVNJynefO!pP>VcTBdDl z?aK|H=--*H?q20&60C1;Z?7T8&HZX>9#9=)NswPKgTu2MX+Vyxr;B4q#jRuq<{Zv| zTZK$57hf@@`t;{C7_72ZH2KZ8!pGFvnc1a*QSCs3(t#A-sR7rTjKp*sjCNdj!_Kg& Wfrp1LqVfaKAO=rYKbLh*2~7Y`_d1;b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/emerald_tipped_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/emerald_tipped_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..7994bfc9cfa5c355fdf094a394108010b80398ca GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=6?wzh3|M?1KjnjvYJZ z__?JsU7cZ-j=jA-LokDe95;h5gUYhxKR|ViB|(0{3=Yq3qyag`o-U3d6}OTPuyUC@ zyzqP&aBN$~3ZH8^9A~#NXiYxKAe?YO@4y>YQG<;QMzf?B@bH;rGinHPaa&Fmya?3J N;OXk;vd$@?2>>0~Hb?*f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/explosive_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/explosive_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..fe92e81467949f58dc77fba03b5fa4f63606d44d GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|9|k{!HpX?jvYI; zZ`0;!)27|lmzt<6xKUKy#l^+m-o7>8w*{zw}BZvdP5tgQ^M X3^>0e#U%9t&0+9#^>bP0l+XkK9+y0q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/flint_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/flint_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..5a86c6e9caeb39ef90cc46b950ce0202036b300d GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`37#&FAr-fhC8`cwJNB%;w)Stm zo!!3wDw!cc0YCUJ$%u)4lRu$$mtjKNxsuWeiUMbsFil9~wanY`HYJm7Vo>)yS2CCm-83`{1ca@;i*XL!HcqdUEQhZWE+22WQ%mvv4FO#o5F BID`NI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/glue_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/glue_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..f2a448b191606e5317dd2c3ad64aee455a4276aa GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`@t!V@Ar-fhB?LY^d3yT4g3mNJ z35%k4m+Ci}GT&Sx&2Z_$%yoR5=a%RB<$KTA z`Q`rDm%Wilo#nV??_S%NYz(G}8EU5mc0KoD*rd{^c|&L2L!ea*p00i_>zopr0N(O9 AU;qFB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/gold_tipped_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/gold_tipped_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..bba2a2ecfddf7fffcd9a6bf751480af5dd9a479c GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cjKKT1J{=tI>zpi;5 zJ9g~lM$t_vf}QE=_V)Ir8cZ5;+=m||^a0f|mIV0)GdMiEkp|=#d%8G=RNP8Fz$zr} z@IuL4Be_*PWZ7;mr{bK3Qzga+SR^)Z8@M~O`sgm~IVrq=$Im32QE(-f`gBE|NkHuk Mp00i_>zopr0K8x}!TMpg1LJOn$(kV!5xl27d>V{yTv)@(FnJeiMEZug&OrSPp00i_>zopr07;iD AivR!s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/nansorb_arrow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/arrows/nansorb_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..1b427fb73ddc6c13065bbd761a81e25679d5bcca GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0DIgx3`Rt+O>abP_0_Z z45R2C?PJG|J$Ue-GhJOnjypgkA-y433v<4JIYaR{z&;y6LCIka=ywW42ukNeq#*9CJRIIv*^!{^!BL z=Ksh0WEcAwcWm3fUHvY@0yUnqDUwd#&#*E)zVH5Q;S0|BK${pmUHx3vIVCg!0E^T( A+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/birch_forest_biome_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/birch_forest_biome_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..50605933ac2751e2c2cab876b436b4c42edf9151 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G$2^_xi!s6Wgn* zE~dF!$p`o%BqdlKLL4le zFR=(LUeIt^NayfD14~Ai&Ef`DO{|9`UDP(PH$?R0@jOjfs3~l5z+|?%v!mt&wyZ>b p4pvSHCSNv2MaC7bO&Ma$3=U@8er*i@Er1pfpkdt8!rg%$Ksm;eAirP+hi5m^fE+JR7srr_TS*Fx48Nu|i!eAzv@NnO2iZE^pmaBDedpS8#7k9K?3K6)Z?dRL#1+Iq+D4|4-;ds>>mMXTA@ Yw#G5CSG70K0h-F->FVdQ&MBb@03fp5gmvHp} Pjbre1^>bP0l+XkK<(fLD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/end_biome_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/end_biome_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..cd49e894c7cf67a662c28668f0432dec7138d73f GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0Dfs`|Iqn?swm|oMHHN z@7ax(}l$x^t)PKjAwO@JG%QIFQGrVhd SJ*ERRjlt8^&t;ucLK6Udox8)6SheL&1dj*^>bP0l+XkKgDN+}rLn>}1OGrIP+j_7*W#1lw z_w}xc`~Fv$9x%!En(&|hkiky5^49;|O;`V=&+a;Objbz@hU+cv#)%9;JjvVHBmT@6 ze*MG#u3K|MTFd5>mwO8Aln#U(W&PLvVZ(p-O$=Kp?D+CwKyvM*GSYK1S`8~4&(1{G5u6{1- HoD!M?}mhg zaD&KXCwAvsYyyWDG+ImR96lAG#IVRx>c-v!Op-jR+!jI(Itv`wJJ`537&)*?^*HoQ tV3pzZQaC%yVX~t_3DcEDGc&}P85-{M+*UWeegSAagQu&X%Q~loCIBY~K2ZPw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/nether_biome_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/nether_biome_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3595c9d606b12d4f578b70e1dad5a019a7d416 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0BJcBH$<{ma3s~%8#wc z$S6Qs`b(>l?BRBh8pe_!zhDN3XE)M-98XUd$B>F!NeYY`m<<=KUunjmz~(gP{r>m6 zk2$yRu2*p=DSGU$5EEk|y5)(BYX5rwk6QA}C%ry?&+abozMs4DzvsVOd`J60k0f7e XCi6Y@piS*SLm50>{an^LB{Ts5S$aB} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/roofed_forest_biome_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/roofed_forest_biome_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..159368a2df5a0c9508fd73d56b510cd71001926e GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08uxQdgG~@Hdh$kmC!s zkW%mw@zfWWm*BN(P~&1X(gUhsED7=pW^j0RBMrz2@N{tuskk-8@2Dt)f(X;({r?Y? z#pa$=w`<#~yS=fICFY7+N83}`a~{6+A3m_l=J0Bp&n>esH{cJu_QKMly+p{N-SnGMQ1Xk7dzgpxF$bu6{1-oD!MRp%AWJ^t^e?WT{eeT+k9@Bg}DKL*tHjy7A1ex-0V3w lvnQ|qUccR;wBj!Z!<5O4a(yg|9s|v0@O1TaS?83{1OT0dKPLbH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/taiga_biome_stick.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/biome_stick/taiga_biome_stick.png new file mode 100644 index 0000000000000000000000000000000000000000..06bdc630e98ee71eafdf3e679f7569657d568450 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=1~7mZfZKb)1pXk!snL zXjK(u66K;2Y9;Stte9=#coe9Du_VYZn8D%MjWi%9#M8wwq~ccc0X_*y3$+FfM%6Y= zUWK+MCU=#HwwZ~qSOm^4IS|PxCXkeoogl=p(ZX1Aii1f&gQQP!h>?Z{Q|1COHCD$7 mT^lHnZZ2pUbzOtA_j&s27U_$hL;V-en54MB|(0{3=Yq3qyafTo-U3d6}OTZniepy z86<>rwHriC4LP`lY4ReWW~K=TPpC*7;g~2SlG<>Bl}p1R!i$YZAmI^1s!n!;(Iqnn m$w-4^Iy0`A@R-IburW-Y!F{;8DW(}{E`z75pUXO@geCwFn>?NX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/ancestral_spade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/ancestral_spade.png new file mode 100644 index 0000000000000000000000000000000000000000..dea67c6ea1e5465187c06f12e146e435ddb69614 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7E+dA-~yx?;tOJJW=l znwpA=iZ-PPcBZSx#l>a#$(3p_d76ounwo0Jak~pWXa;IvED7=pW^j0RBMr#$@pN$v zskoKwz&gixVb959;tEX54kfVtHaVDJkX$}-k*>?hOw$gbdHbR|4s^2LK4`L=<1m}S w;uDNY2RHLMZJuu5V6fw=MkrUPE0b=)M2k$Zw^$%SQ6wH%;50sMjDV4;pyTSQgO?-&ryikkmE2< ziu8s5@-cjG*OXr72~$#c>dS}`Y`*Id`u)a=dHzjbKiOn9zC8CmfyL*=bH$Z@F|S?c x^87pY>)D)AlWz|qx7VIu_2%?;K_iEA;#|6nZ%v=RdkeIK!PC{xWt~$(695t;N=X0! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio.png new file mode 100644 index 0000000000000000000000000000000000000000..311c4bf924bf07190ab8d92cc94f478f0cb089ae GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=5!;UAlg{_r&(9dEJR= zJ`V1N>Sii3GBUC}JUoepSEPX|7)yfuf*Bm1-ADs+!aZFaLn>}1A7HXd?2#-Gb7pTj zsiAPX%!vej_9iBsGG>NyCNaN9z8|IotzhtU^>bP0l+XkKp?N@O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_am.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_am.png new file mode 100644 index 0000000000000000000000000000000000000000..02ec6136d7cd4970b582f695683e91b2887d06d8 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5!;UAlg{_r&(9dEJTs z8En#g99A)?xf`mRsmRF4$nx;;yf{|N1XRaZ666=m;PC858jus|>EaktaVz-%)1kzk zOIHgvh6<=HZcsS$ta;` z+tq@Np#o})8x#(|;&o`t$jGRuWSk)QE-B|t5MN5j+NdoB--`s2ucsxemMbKGd*!;? zd>xBX+S^-8Qr>W;oMF+N$C*-aj-`n+;td;vi8pY+@Nsy6|X~EMP;R{JM)A-3`^vRAgjiWO;aa)K(?G0jgsx3GxeOaCmkj4akY~ba4!+xRrc>=}=mdKI;Vst0K?8l Aq5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_inf.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_inf.png new file mode 100644 index 0000000000000000000000000000000000000000..dbbbcd891114822599be5731b3b20e1dc41fbdde GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5!;UAlg{_r&(9dEJR= zJ`V1N>MIyT%v5A#WMtzQ7E?$?#)>{}jE-$Lr5kuIUbwJf3yXsCnWHyusPdjTF~>6V(Ys8AW9QBu^U8B@`~Jpr xv-vp&BdhYfAfs%-jIl~WSi8{0*M`!>5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_seti.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/blazetekk_ham_radio_seti.png new file mode 100644 index 0000000000000000000000000000000000000000..835445dc8debe851557e452977c953cf350eed46 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5!;UAlg{_r&%phX0}S zx)T{zS*H0oxErdQsmRF4$nx;;^xZTu1gc{!3GxeOaCmkj4akY~ba4!+xRrc>=}tn= zl&b|BLj}|pHz*u_#p}>kQCaEg&O9MdFe^vq7Gp}u+NdoB-?;>mucsw1{13xqX%?5$`>&$w0>Y#ja`x=m|3D1W3^r(vK;nO*HNyaq4c44xvf+OLgV}$Q zoDFk@PvOS@_M9#MN%nJld;5QeDI5PQy0wz58O+vNGW9=02AP^|Hx>M6sK_Kw^Rne3 z|ApFI$OjW&79~NB(%s2UN#c666=m;PC858jus~>EaktaVzvpE8_tJ z9%jdtIsgBCp61Lok9pNbhEhKpU!HB5qQ?v0{JxksVPYl!_EW_VIl}#KJlijL>5z$N z^!DqL0hJGKuX_0H+m5GZU0&6D*FLkA+g1C}Wd(P031jnmraoy;<3B))7(8A5T-G@y GGywop8cg2+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/holy_ice.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/holy_ice.png new file mode 100644 index 0000000000000000000000000000000000000000..6329e537a9bf7849a3eca8f588133614ea842781 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3G{{onNQ|KyuL(^s9h zYgxTaTeiT$x>s8#P+ikhRNSIq7DzE;NswPKgTu2MX+Tbdr;B4q#jRuqwl~5Hdb<2L zV&|oV@uf{sowc+%G(}?9w#JZ94lOON#t`4~!ji(ZEJhaLth?4RNgLEo6c1oHqEXat ukS5aZ?DHh2x8asyw(1ot1c0Ky^)1QSszucNl?+7)yfuf*Bm1-ADs+B0OCjLn>}1JFvYGUeMF! z#}PX(C5$g^it4PT&7mn0yS6okgmP$UaW#hcmKT;3u4OT@2xr~3j!D{}cA|Iy!x4?5 vc7rsLc4wa_IlT?H46{|Q==m*RU}9kSm?}D*Wyk#(pdAdJu6{1-oD!Mvrq?Lc*mB|(0{3=Yq3qyagJo-U3d6}OTPFdAKI zV2O5PW*0CrSYqgNI^_muN{L^>>p7Of8b@u5-L`i#do1<-B9<(yaCXs~s6AdB8c$R* zgf_(po+y|SCG=>=j)umCH)=h1c8dn^UKc8F`^2Qc?3KjCu)R?H=$u5)UIX5ww|9n)HudV#uGt2W_%)W`~SZy$weMn)~d7H%UW7qBO XhcGV4KBHp;G>gI0)z4*}Q$iB}>%lfT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_blaster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_blaster.png new file mode 100644 index 0000000000000000000000000000000000000000..44f1b439d94f1e6b031d0f86818db25da5fd5281 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0FflV!l$w-r>WVW6h!= z$L(n*YG!Jh;V0LbuCAu0rmCvS&CR{I63ne7=(Xx{0Hi1 zED7=pW^j0RBMrzY^>lFzskr5ODp07|fTJbRKxLa~B+vK#*@a1G_WixD^Hiy7|2n_q z4?C(mdKI;Vst00Tf&hyVZp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_howitzer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/snow_howitzer.png new file mode 100644 index 0000000000000000000000000000000000000000..aac58277e28a7fa486c020ee614e63424c173aea GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0FflV$QKrzO?Vd2X1a|RaMo_boC5BxmWMPA8%G&UnS~kCaNLF-QmL;anYs)sFSfI$S;_| z;n|HeAg937#WAGfmhWj+z5@n4%m}T>ix?Qn82Bw17(`}W;{&Q=ED7=pW^j0RBMr#$@pN$vskoKQz@*O3 zW{?nG)NT+lCFH;srpb$hnwcgXJfZU92**Srk;H}*mRuSR5ngOO0tr$KsXEyWMwiSS mBqI%u>CCud!ebh%z{XJUi@V{i=h`r!xeT7JelF{r5}E+~pFVy7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/steak_stake.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/steak_stake.png new file mode 100644 index 0000000000000000000000000000000000000000..249e4a1b0436f1f3ee26b39ef704a9a0344d9b21 GIT binary patch literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0ER_#zPKRDPhGOb(Io&V%~%rT7tG-B>_!@pW9RAO7*cVo=Hy0E1_ci0K#xTm{vX-a za_IHDzdx?-{kP%mN@pMO)|h$Ee(byxnJTwt^S18mBpKZSq!>$r{DK)A zp4~_Ta?(6q978H@h4vg}JfI+OpsLCG_xq^BpS}Iobym#$WSM<-%kGUq=a?AWw6}68 zM7S>brm+8j@|B>aAzr(6Uwm(z>7U)TmFd6-8D}k4!M5ce^lGH%AME!3IqORP*RQ$< g%6GR1o%^tzopr0Pu5FbN~PV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption.png new file mode 100644 index 0000000000000000000000000000000000000000..52cea6db9a82fba26ae07734b36c8fa728b4db9c GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0F&GziHFWo3AhXOxv^P z@Dk(lDN|N7vL#hjt+sjApTO8^zsfB%EZe*-*f=%Uh|$c^$wtdnPuWC9NjdfOY$Kq4 z#*!evUXLOx{}-u#EQ;H>$)`p_QbpMB6}x-|yV}c>H3dLtFnGH9 KxvXa literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png.mcmeta new file mode 100644 index 000000000..925c0932b --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model0.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1,1,1,1,1,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png.mcmeta new file mode 100644 index 000000000..296e0a80e --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model1.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,0,1,1,1,1,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png.mcmeta new file mode 100644 index 000000000..61b1028f1 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model2.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,0,1,1,1,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png.mcmeta new file mode 100644 index 000000000..80722fc39 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model3.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,1,0,1,1,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png.mcmeta new file mode 100644 index 000000000..4c8253c5b --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model4.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,1,1,0,1,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png.mcmeta new file mode 100644 index 000000000..dafbdb449 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model5.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,1,1,1,0,1,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png.mcmeta new file mode 100644 index 000000000..c9ca79adf --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model6.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,1,1,1,1,0,1],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png new file mode 100644 index 0000000000000000000000000000000000000000..1bde72aaf4b6ae8722bc2f668835fd267b8c1db6 GIT binary patch literal 642 zcmV-|0)737P)fq%(Jvl%|0nsDTDzdU~ro=8s?jg+HoBRaR>^hEp?TZ88BoDn%|M zG!qaN*YM2n00001bW%=J06^y0W&i*I^hrcPRCwC#mFLppFbqX6xUe24R?NQtlTsxa zO)%ZFfA^%9dyw=M(1?D!^)V?>_{LU`48G%iGt6^}Xt2(!=a)RZ5@*H)KE>ptXom%> zA@aS50fDv9ko1pv#FmdtT9sgUmi~um`zhR?-^SLk#U z!&*V#gyfTrFR4NIcx165E_kF86siL00md!_D?yWs7SKavM~)YUPhjLFuO+-L0937# zDh3h}){b{DIQydh^>vBY_2Taxcu$?kW>9LKh6UR*E@x=pg!2h!46^0raylN*r^{s{ zmpzvTK2S@WJ&_*oTG;IZPq6LrnUI;VD0qPL_)3^lnqLd__uwloG48cst$$eX_JYRu`!52c7yS5p&{v>_j1f4u+%UP)ebk z1CudAt!mJ`eJx-FVhRDg6Ka_%VE_%9s_-&RR4_uBiV66%lxZrXf{AX;b5<6b#stJ6 z3RMrX(x8B9kx#8sf91HGVgyMQ%DS(-60aDcWdKbU0-w{hJva~m003YZbbsm#453;9 c00000;2I`77uJhB#sB~S07*qoM6N<$f_OV4jQ{`u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png.mcmeta new file mode 100644 index 000000000..c63bc7fc1 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/totem_of_corruption_model7.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[1,1,1,1,1,1,1,0],"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll.png new file mode 100644 index 0000000000000000000000000000000000000000..351aa99e500120e795399aca41542d082222dbde GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0C_wG7by0ST;5I&hAtf z2Mx*S$~d4XV@Z%-FoVOh8)-m}zo(01NX4zB1B?u@eXW8A7!xH=$%J(t8 Y{KR-=YR!W^K%*HvUHx3vIVCg!0A1icJ^%m! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_acupuncture.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_acupuncture.png new file mode 100644 index 0000000000000000000000000000000000000000..8b5d6da80dafc3414fa5549af88dd63e596c0c23 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=2Te+_goIPRt4>t0!x> z99_4BNmMJasNF#6w05IY57U}?Uh7zScw`P`W@;%a2(AuY9Wu9pr>|{NQTTMG4Q1Cp t6s+i67x326F~H5!gRvzr?%V+ehU@(T9rCLWM*^*2@O1TaS?83{1OTMMLSO&@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_wilted.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/voodoo_doll_wilted.png new file mode 100644 index 0000000000000000000000000000000000000000..727ca7a2c355cfb2d8c14124c32483555e127f2e GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0CU7<-Rs_RY8z;zHUyW zjjWS~kQ_J5Y{9EHfO3o_L4Lsu4$p3+0XdPLE{-7;w~`JpGWhx(XLJbUspPm>|LDGV zpVjT`iS}YC*9;hDRJb<$ar~69+YqIT19MBR5Pgg&ebxsLQ0Ku6yoGq*hM{VY8PIKH+oL1$y#oAx5@y6DiTTC3uSGCyK7*1S~&`_KtSq!v| N!PC{xWt~$(6968`OW*(i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement.png new file mode 100644 index 0000000000000000000000000000000000000000..876a4f0fe055cb87824ae5e9dd24bef081e7c564 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9Z?H{LqE}1GcYr=NhGuxgzF}-8}H~^tMDkMEsXm>PxP^4p=T1@c21mD=ro-i{+)ZlDE`fT1VpfyGO$%%6ZO@MYVc)I$z JtaD0e0stioOOF5m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement_heal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_atonement_heal.png new file mode 100644 index 0000000000000000000000000000000000000000..3e65ecd2e5e6fa336a951ff5a8ded7283d993cb0 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9b4;Bn)v(@QQN=s3Tt z@ylxVJxfZ?bxZYR8m)|CDs*7?H6is_2tKF|~H-MRRaD;*_W69bl3(zFJ^PY_J^y)DFfj1-NjRi=p5_DE!QkoY K=d#Wzp$Py85>1r= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_healing.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_healing.png new file mode 100644 index 0000000000000000000000000000000000000000..cea97cade6653af98427b5f409bb74e4739d004e GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9Z;8;_8d lGAo$u)?}U{*pOz(@T8LW=hT;Nia-MyJYD@<);T3K0RS5mJVO8g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_mending.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_mending.png new file mode 100644 index 0000000000000000000000000000000000000000..8762270030a123f88cbbadf39394d6120a9e95e6 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=6=pFS&f6pKXhRu0Bu$V@Z%-FoVOh8)-m}x2KC^ zNX4z>1AOOX8ZOv~+6K6J^Siw8b9d)$3B1Rb_Tk>lI6L+u9$mJ~*N&~u`1Ou4LM?*B u$M{a%Dz;^n<#(GoKCETElyJ=2q?>VvhNK!(jqb=XW*k zSyJ*pGqWet=!vQS0U7aLX)%8z2|G=p9048!IX($~Hs05|AwWHhB|(0{3=Yq3qyag; zo-U3d6}OTP@P+9%T!_it8Q_*A=JFymDoVWN;zY)@4}0fcG!#Fg(YL$$JCnzO6JP(c zZ}90bnvqtq`KpZ1=ec$Kf)DPqFFDxrKSPX}Vev=F9Y(5NJwSsQJYD@<);T3K0RTG$ BN`?Rc literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_restoration.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_restoration.png new file mode 100644 index 0000000000000000000000000000000000000000..e41100c02f4b3fe4760f76e3a54ecb2bde7fc36f GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=6=pFS&f6pKXhRu0Bu$V@Z%-FoVOh8)-mJgr|#R zNX4yWhGsT4i3be^=VcPujVrXO6du{=+Oi+$v6huJl}T``tmf@_w%2%X4PVDZk?Ln> z7$-C=dbyiDVP=A&!P$c9l~OaF-7V!;Ijqb=XW*k zSyJ*pGqWet=!vQS0U7aLX)%8z2|G=p9048!IX($~Hs05|AwWHhB|(0{3=Yq3qyae* zo-U3d6}OTZnpxN+5}FOdbssPo@3>W@_$a0`lKVhUcxGm7PJ)}en|Q~wYU{ z<=@}2PH33;`agfdOo3E`vmeq{Th4f9{Z~%uzgTe~DWM4fczjER literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength.png new file mode 100644 index 0000000000000000000000000000000000000000..19dec5a5efec921e09b0f2187873c70d7a2395b7 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4x{e;iY?-p%kiFgW-> z8{0I7Gd7Nn3;DQAOiXeFcp@0OL`6kK7_3*$T)zpZnz1CvFPOpM*^M+HC)Cr$F{I*F zvI8q`z%FH`LytNxbuk$45Nln>U@W$^ZB^6LJY6oP?t=H1UNNnnX<0p0%%jbH$)|Tr zYyyXmerAd|KTpWh;OyL*XACnAX7f&AFn+hll7T^XrI^w?-_K`(7BG0a`njxgN@xNA D9dt$f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength_life_blood.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/wand_of_strength_life_blood.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb4441f7d37474a074c271f3e92c0a6a5885bc0 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4x{fBetPd}8Xqo8fa{ zaPR>c@o5ZaY#beXrNvB4Od=S%L`6kK7_46_!@p6YA;W7*cU7 z*@2Zaz{;2RP}1csAe{}{#%k)Cl8sOE{KD9}3*K)z!?HSZYt=GUk2d!$uivq- z2`HPqVv0CFFHF441fO(f;F=~@uEDVU*!M1=I>wS9zhDN3XE)M-93M{?$B>F!$qY@?*w_pn z6uoRRu!ylau!XsMF?Tcbgo7uPZXDv6C^RLZ;e;udg+qiMCy&5{IEGZ0yauB*HV4Vc ki9D$@rl_{fI;+6OFteZ6|GK3K2hdywPgg&ebxsLQ0NNlzg8%>k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weird_tuba.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weird_tuba.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2aa3f0f90203edd92719c8af535f3e8b466869 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E0ErlB3P=y^yakd?M1?` z-i7~rrX>y(Wh@Eu3ubV5b|VeQiS~4H45_%4d)A$)!GOahaCyOhZSG|KdRG6*I`xUW z*00i%RWW${R^F<9hWY}v4}Urt53QAc!lApBMMhvnBVSg7=S$8B5)Gk31$%k7UP-w2 kXOc_@kL2@v8&7Xwx>C-#CY$4wEzlYUPgg&ebxsLQ09ji<(*OVf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weirder_tuba.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/combat/weirder_tuba.png new file mode 100644 index 0000000000000000000000000000000000000000..3aa2928bdb5043f0ac6f4af23f2a4f152a04a290 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0Df&a?!d)H9oC3&bV7x zB_Gj^>R+ZUTVP?`tF5Eqmm=!u8mO*mDk{#QrnYZgrxs8HV@Z%-FoVOh8)-mJp{I*u zNX4z(Q>}$Ah9b^^i~sESU-a46Q|#S>a~id$)BdaX8~&KyGb7C>d``udgHK*I^#+ z0t{>%sqH{f#*!evU>M#61?YVrnW0|>9-h-fP zi9ye~)}7r_XTH~N)-1;k7Gqc2ZwXSJaz3Ah?q{$ul=?92=$IWB05pif)78&qol`;+ E0RN&e?*IS* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/divan_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/divan_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..94310d26a1668de8d405e67650239f80785ebc20 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1l|7hq^JU^rZ({Qh+0 zkB>#=H&|x?MHx$i{DK)Ap4~_Ta;A8?IEGZ*Iy>oNmy02Xv+c!y|Hb=n7TtUs@vU~o zo+}v|6$W{!_rkoVpH=#@ZQ_?X>sB3IC#V0-`?u_k;FUL0ZFyJgmdh-hbVS(B_K}c7 zjmQ7WDS0-pA1VGcT^{OvB;RS$OYz5_r$(NR6JcpbLCF=al53=cUSqj>s;{u8J~6)$UV8>CcOSYF3;Tg hEFO8B=XDKP)D`deEsX6v>jyNL!PC{xWt~$(695#pECB!j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b3be854abe27b37c5e93801322578a2fd1baba14 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=4@N#=qPsdS{yOrWC>SExIZt_ni!>VC zIo+z@)Y#mdKI;Vst E0QO=q5&!@I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_3.png new file mode 100644 index 0000000000000000000000000000000000000000..00560b6b39c848aa42489543900394d562ed7249 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0(Dzfd^3Rch68!J;aW zxL{*rW1!&vZoUUVim@cfFPOpM*^M+H$I{cqF{I*FvVu5^gT^)yb`IsUoTog(MH&t6 zoNiTcYHad)wobuq!h|Bj2>I2Uc51o=8h9}1h;S`qNT_1JThHIr0W^fc)78&qol`;+ E0J#k>egFUf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_4.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_4.png new file mode 100644 index 0000000000000000000000000000000000000000..7ced804358269402f1e7f1281a69697e404d8e68 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0@+3a-eR8yg#UG6*Iy z@#rzI0tFZ6hG}10Ja2&SaIAstn(rR$% zbgP0>XOq{vLdYb+}dHu&e iU{=38d)6{_1_ov>&i38!&IJI~F?hQAxvXdYb+_2Yjv< cSftLtFnt-z9}O*^*FYrzopr0JGB+v;Y7A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_med.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_fuel_med.png new file mode 100644 index 0000000000000000000000000000000000000000..bffabaea3af0e38111dd4dd88d9e6353baf2377f GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`vYsxEAr-fhB_tC>dYb+-FaBB2 j&N|Cnox$|7FayKNWVY$A?e;nY6*73b`njxgN@xNAD>oJ; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/amber_polished_drill_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/amber_polished_drill_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9876fc5c63226cc162118b90bae6c35115bd2d GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=7zxefs}w&DBSb{+|!r zdGzR~Wei=DCKZ;I?F?k__4T!|u*g{H_#UW^u_VYZn8D%MjWi%9-qXb~q~cbx1Dg+D z0Gl_{E)Q?E7CrOXcNiDl<~_WOtDI3%wrNr0qEH97=oJexEIR@>>29&%J)&`Y)7mqt z+$UDt*_OKewvNK$n?<+3%~V*)mwfu|)726VI>7?GX^j~Sdsw7TpLeft0b0f2>FVdQ I&MBb@01Yxv%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/drill_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/drill_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..d82be63129a3bc395ec11f35de2829683039432d GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0Ff}_3fH8>F|XM&pv&! zu&^jBD?5BQi4iElSQ6wH%;50sMjDV4>FMGaQgN&G6eAat0gv-Vwa&f&E7=XSXFgyt zG`LZ}rOx*k)2H*UlWXrv7wlh|$vxpN#}@ZxXPGr8b6t>{wdcSu215qE4W~k@pP#kx mSKrH=J#~`4t@GoF_l1v7=T{LpF{1%!34^DrpUXO@geCyI%|g@w literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/fuel_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/fuel_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..40bd6a6242b902a91b2fdd74fac346f515af4090 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=7zxeL8&MLf528g=J;F zzP|eU`ar?l!!|iUim@cfFPOpM*^M+HC&JUkF{I*FvIE<(V*ybC0%wZELd=9pSdC&t zrZ%@YJ1Ti~9Xh5UxV%X9aZ#|q;Wa00c+Yrv8?_mnnRMpT!JbV@E2O?EeNGZMeAMIQ l4V5X3XP7P~h)r-~VAxtE_)1HbZ!*vh22WQ%mvv4FO#o!-LAC$@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/gemstone_fuel_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/gemstone_fuel_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3d523680c0022a8bda15670b0d4ca889b7dcda GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=5%PKmPMD@Xz4~ORg=y zvf$t6IW`?LXO}I>?n%CwRZ@D&ST!srR$EVBSy>sVIPtB&B#>e(3GxeOaCmkj4amvx zba4!+xRva{wmQu5<)`f=^oTQWd989ZJ6T-G@yGywo;N@ExR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette.png new file mode 100644 index 0000000000000000000000000000000000000000..f9747eb3fcf00d663643d3e4d0bdf023076a65c3 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cD&G>jLN-O-#rK0Z=XQjgoOfz&gW1o;IsI6S+N2IPc!x;TbZ+)7s9YiVO^ z$P9CJyvnNJHeu3&0FjQ+MT=Bc%sP7Dz|?n3G&DlCHa4DSQdz>6GNaT=vu&EVfq~Ap x8IRtH7%{HMh@lXNqztT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_blue_cheese.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_blue_cheese.png new file mode 100644 index 0000000000000000000000000000000000000000..dc73d1e1b71ec312cfb9054ef9b032fb108f63f6 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9ci-~I7>)q?X!>dyZ! zTRc;H##f(?Dy6s}!N8?_u2x+7Wh_cDcYaE@1C=tC1o;IsI6S+N2IPc!x;TbZ+)7s9 zn=)OzA+yX``7^JA+s2KHicCAMW@YK5%sYGFz+AzcB`faKHZRT3OzV9{ zLc)zlJ57{!lrRQd+_q+^Y@ov5JL!IFqZ*DXG4MButCf4+e+IOH!PC{xWt~$(69C&v BO_Trt literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_pesto.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_pesto.png new file mode 100644 index 0000000000000000000000000000000000000000..5c55b558be69ca27c9afdc6a7124c56945ac29d0 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9ci-~I7>)yA`V6W0Wl zEy*tJwfApu4^Gw5i7<5ZR}!?*U=U<@`hK=FP$^?ckY6x^!?PP{Ku(yai(^Q|tz-qh zB}-KsGR>ToH}fjEZQ8h~$gJaPQj$(e*x3UIVjt!#S#hVfq0w4MC517i<$RHu*8RH& z4s0+j>fBy@l4-%Bx1ru;)s0_@=UZ;gVifCUVA&$>wt2c%2+#%wPgg&ebxsLQ0AT4# AnE(I) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_spicy.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_spicy.png new file mode 100644 index 0000000000000000000000000000000000000000..f3f0460a0fd8344a9f80dd84a18640d6da1e9b05 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9ci-~I7>)!ovVy-|*H z+zqeDnHL%>Z)cE<(v<3C5KLm?(PLl@rGOvQ$hOLW=Ogci7k`z;Jojq{i?z@~NYh!8~8m(6!ITCR~=ERAJmpNOq z${CptZ(E~z@0_<9gXr5Ab2i-;UNZmpnUgbxH$<>7{1X!ox>)j)1850@r>mdKI;Vst E0IPXTVE_OC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_sunny_side.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/goblin_omelette_sunny_side.png new file mode 100644 index 0000000000000000000000000000000000000000..1c0a4d1ac6144ffc1b76c992a7b52e3d2d78b2c6 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9b2KK=T9_y61Ox6dzq zcp>}SZsq&acn{2UTspJ#M3vyIBHh}O@Wo-ARW6dTCcMI*T`Pck7)yfuf*Bm1-ADs+ zqC8z3Ln>}1EAZ{u5#E?7cJR>_R)x03RZ&rInH7?|!Xm43<(Zk|mtVfMd-}85ga_U8 z9z9y5!I|RnrckJ4re$N}!^|&&zOL#D&F@{$Pn>C`@VDmw|2dWoN0k_ie5LQ-xW+9A Pw1vUb)z4*}Q$iB}xmZ?r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_drill_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_drill_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..81e26b18e9a8682e3cbe8104b7bf79e87881b6d6 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0E4>Te;`yv&TQa8Cm$x zK6F_@M$I)eS8TOHDo~EGB*-tA!Qt7BG$1F`)5S5Q;#SfDR)*Nqt-K730!#-FDE=+~ zv+m>E10UGG@&AZE@Xp$?Vebk9-WeHuFL-j#Jz-(e=6!cGW3d{4&J+*z0O{OXrVSTg l2jyHb(~b#=sk}Iq`>Y`oU-`$}A3zHjJYD@<);T3K0RVp5LIwZ; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_fuel_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/mithril_fuel_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..1992f6092dce9ff5dfe7ef731a83925fbeb64b37 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=7bqyqSIIa$eg?*U(%e z3x9omeW2jw-Ivz_DaMi@zhDN3XE)M-oG4Eh$B>F!$qsB@UI9@70%webLJEaK*o@|g zhBmeMH1en?yDEwsEWUGNsmz%G?J|Eh<4aR|E-NT`rX>hIH&T6E6fSUh&xt)OM+ywh mj0!nZ88$bVNHk=yFfbIZ5)A$I?aV`- zzx4lc*^=zfb8P-R4E$7Nbjn!Ozrj7vZBtM3#XpB1Tv_n1W9ICvl2XT&4K+Y*j3q&S z!3+-1ZlnP@MV>B>Ar-euPq9v8apYjWpt^AH=^g(Qr#BXQX8wEp-u=wyp!Vl}U$T^@ z&t`NgZm4v3FgI$qVBNwuLFs^rx=HXF?J31h`Kz|&h0I;v@Je`B?kiz$r}kUhgk}hN wscv}Npp)Lfak5lgP(dNXUe5I7>+gSmdKI;Vst0A12xcK`qY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/ruby_polished_drill_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/ruby_polished_drill_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..645ff873762311dfa319a3b7eb48585c449afab8 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=5dyeB1N%*{7WcW*@rz zpr9bHZRHg?bJx&ZBMbjd20;ZGHAa4J2cSB}k|4ie28U-i(twXSd1SG+_yxybVO(^3&YkHiN|_~Po3#9zb~pBXGjTj>GQs2Z7n9B+fyK42zI?fm zrLZ{r*OkbJs~vZ3T6R8y_1e^Fri+M3a@HsW3vzAe5(wUCC3ZIrJTzIgW z<5EM|#5-3LR-cHu<{);Ehc`j6A@%}`AD^$>$4^Y!^|S4pfYva0y85}Sb4q9e0B%D~ Ar~m)} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/starfall_seasoning.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/starfall_seasoning.png new file mode 100644 index 0000000000000000000000000000000000000000..009466abb0ce9e07daea235aa7661be7b6091caa GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=7!-Kfmzm<%$b8j~+ex zseg0zy6to4&b^nl=77iP8CI(!BO|{{t%?MyV=M{s3ubV5b|VeQiS~4H45_%4?7*h? zRA83tt=$Y~67Foe%Xr2>yhM}Pc#_whvj=#%RiCCNv}GM%lbO)gmMJ~s;FVQUX4;HL zII`ZJVKJU%oz@_E#yD+FOe#arlxvpWoJlhcC%7>%lsy!UK9gE`7ibNGr>mdKI;Vst E0Js29i~s-t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_drill_engine.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_drill_engine.png new file mode 100644 index 0000000000000000000000000000000000000000..30d79d6b08bea22adf0a1aa1edd58da35394caff GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME07M0i7oH!>6kfNTv8Iq zwXm_>c~<`$ki}RMuXF4n0n&;9>(2EHa&On)ZcXDkZjU3=7lrg*}e?;#;EzFw8_b# fOLa?e=5yiQl8m>vtGp}$n$O_r>gTe~DWM4fMkqkB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_fuel_tank.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/drill_parts/titanium_fuel_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..5852a68f6efc7f14cafcf5bb99c5333ba48f6902 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME06{PZ9V<4nAoh6(vF$4 zm6es*_HSDQ6lE+4@(X5gcy=QV$O-XuaSW-rm2`lSA@&p_mlGpTQ)0;Nzx{KnO&7AT z{XahE?-Olp&CH_patmY{F8^rwTC2q%#3^DUV5oKG#wDM`)ZY#jb_{YHAHF%dh+S?B d`n=-je)Hd_!@pQ|amA7*cU7^eiJ+vjI=*!!N3yTT9O@Jo`6)*HOu5 zHB%1#57d}jy!^J(d!t7W?ysVB=K^Rw4Fdjmhs-n1?^>ek|~PMXpG)4nP0oqFa@sC)BC%>Hk$> zWx>tGn~CoIWVZ5Xj;jsK4<4wCD2Oj%DUbc@KiF zB?dj`T6cC!o%vq7S+g8FSd3k5za>a@%K3a2x}U+uQ0l|5qhoel0MH-?Pgg&ebxsLQ E06H5nq5uE@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb25f97254bca03976f273e642cd9feb56499c6 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1m5Ru)wARI@3u?%7d) z>HpPrGnPC8iZYf2`2{mLJiCzwc?}d3!Kdba*+r%$()~!0aPEP-u_ix!7!7Fd1+VZZ}Etgq1>4>nM?IR(F z8jt^#Q}S$HKT`Z@x;)hTNWRmgm*S5@3fTvxOB(}oY`pFI}!nO;0ouujT` v;S7h(9+y9=cXq5VK2VW;ul?Zs#~+!U)f8hNUtoI%bRUDKtDnm{r-UW|Z`Nko literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png.mcmeta new file mode 100644 index 000000000..cc0cf1468 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jade_drill_drilling.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill.png new file mode 100644 index 0000000000000000000000000000000000000000..5834159e65f918982d2e65e61f4fe436c6638fdf GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9Z)wchnL4-O7qD9>wb zY@8;-CL$ujC3Z&%D92b5PisW3A93gOtp6&7C(G>XB~ L)z4*}Q$iB}5Q{Ju literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/jasper_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..88e3020ccdb8a6b449fc1550f48a1ad82d452317 GIT binary patch literal 357 zcmV-r0h<1aP)8(rV9(HJ|I59_Zvoe51M?e`F-~)UNs<@@??GYOgDiJnNKtn)iWqr6$hQ*-z>NF=_o!YiJ(}d~{Y9@W%fCAk6NY3@wEa>fhXbifoLA6+ergvW$ zt&fAz`%w3+w1S=eNAr<5dXULSeLr*$n#CT}@`d4b2S4xM{y&oA|6(WI%bB>xJO4j? zk}L)VyOROio!a_I3Y)e*G}*U{{{`*jTz^+VFX`hCy(bjehOI#^00000NkvXXu0mjf DmL-Tj?5_JNwY(;~(A_ zS@<8!&FcV)GL{7S1v5B2yO9Ru*m}A+hE&`NIek!+A&|v6P=De7Y0u@m9m~v>@*V_T zOALC>weIYeI`h4Dvt~JVuo%1AeoK(*l=Jy4bU%ZQq11zopr E0Q}f9TmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/mithril_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/mithril_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e0d5466d91f6eba5912c5c3f13e68c03c4850f GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1mbvha5e&CP3DIs4G% z;~(B={(j2|6lE+4@(X5gcy=QV$eH5l;uunK>+Gb9T`q+*1wdGx{TQ0M3(h*@h+ebnU zH6H&fr{vkZex&%*ba|-vk$k5~FU22!o*H@brdW?{xvpmMrwt#>KYJ|dGrf4GV4ai= v!x;{nJuZJ#@9bD#e4rxxUi-oMk3TXyt0~4lzQFbj=spHdS3j3^P6~CoIWVZ5Xj;jsK4<4wCD2Oj%DUbc@KiF zB?dj`T6cC!o%vq7S+g8FSd3k5za>a@%K3a2x}U+uQ0l|5qhoel0MH-?Pgg&ebxsLQ E06Eh!mH+?% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/ruby_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/ruby_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..efe6e761ca39de61c4a2c940fefb92435a1524de GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1mzV&ds!5WFI1{-B`X z)6N4^FRu9y6lE+4@(X5gcy=QV$eH5l;uunK>+Gb9T`q+*1wdGx{TQ0M3(h*@h+ebnU zH6H&fr{vkZex&%*ba|-vk$k5~FU22!o*H@brdW?{xvpmMrwt#>KYJ|dGrf4GV4ai= v!x;{nJuZJ#@9bD#e4rxxUi-oMk3TXyt0~4lzQFbj=spHdS3j3^P6_!^Id-rZyV`zBkm{84`7CrlgN>oohhay@?6?4+K@6U*elF{r5}E*1 C6)$%H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..f64c0a54cb647b9ce4c962ee711ebb734fb97671 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1l=0&P8gcVFMElG2Wu zv*p!oRsw|>OM?7@862M7NCR@Fc)B=-RNOi{>0+0QA&0Z=#ee_B`)?NAd>iqtcE+A7 z85$J^d8zlpyr-X4`m$}}mpSWJ9bG4<|IPci?2X`+H&ShRSL>F`ESz*i*v|HmkVB2f z|H>(OHm@Hk{xn@4>U|{NY0^va$DgN0p1dj6V_UAPS^R0k2lLM!i~3A2o+(%-Wy5fW s!)A}mAJscM))ybB$iCNpaQ@?u%+6|xv5zmXJp*~b)78&qol`;+0Pp5wfdBvi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png.mcmeta new file mode 100644 index 000000000..cc0cf1468 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/titanium_drill_drilling.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill.png new file mode 100644 index 0000000000000000000000000000000000000000..9c3ee37be51df239a4903b7bb752fa9854305863 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}E08`g({Waj?!yb&f4?7& zHQ{}z@bNTIl(8hpFPOpM*^M+H$JW!uF{I*F$mxTk41p}pf%*&oPkS!k?O0~6l=mR$ zT4K<1u61X()S2(Kn>EX^gT>g@_FIBfr<~7cq5BzZ45dB{J33~^1pp0V@O1TaS?83{ F1OP;)GzkCz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill_drilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/drills/topaz_drill_drilling.png new file mode 100644 index 0000000000000000000000000000000000000000..c88586458bf57b27a996ddef83c34447ec132d20 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3-qz8@W<}lu&?Ah%1neHQ}9AqJ5#MTO z?75PmQDKmmdN0g-`dOtf+a`XQvu@SVb#nUOynoBy2wr(3)s}a)Zn@0DNk@e3Y##|Z z)Oh@_oRVkr`jO&K)8(PwNAjH}y%c}^d1~azn_@k-<+_^1pEi6j|Ln1-&-CJ%f^||h w3}-lO_PG2}y|ZI|@qvo$d+i73KmN$t9^V;%L*Iy zO|uFn>2{{8%XO6pWa?!2$$6TI^4Xhd$Z>P1DoEZ-nhw;!SQ6wH%;50sMjDXgbP0l+XkKIL1HB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/advanced_gardening_hoe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/advanced_gardening_hoe.png new file mode 100644 index 0000000000000000000000000000000000000000..f28fb2fb981f648ee43d4d7bb0afdc8622b262bb GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7Z^PcJ;>t9^V;%L*Iy zO|uFn>2{{82W0AG_{n*iiSpT-X~=PNs49eQKH&&d%~%rT7tG-B>_!@pQJ1sTEHiMR1%oea_Uf@ehL!!>U7^S_c*}iAFqO48F*C j`4U^=oJ0?YLMDcqi~M)jyxrCXG>yU2)z4*}Q$iB}_OC!h literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..415a0868eab3317b949e3f05d10361fb207e4c0b GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#=(OJ7oPH+ zHf>tV3Y&sSx}E9j0hu}(esV4@E}mwh8gkqc5)!7GOE`cU7)yfuf*Bm1-ADs+d^}wo zLn>}1J22jnUeMEfDS$CCcSXa-vrGn$7Z!bBHE4d{yHeKW-IY|1=H=7hGtQV;#He)e w8Jp=l54DzOk=DY8ED95?S_-ExWH`#ou+LwJY06|zopr0Q@#aW&i*H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_hoe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/basic_gardening_hoe.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8476d3240ab03a83f47913008d93bddad3f51a GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G#nL#=(OJ7oPHM zSz%K!Nw+gyJs?vj!%xn|#l_Q1R6;@`R4w*CP$^?ckY6x^!?PP{K#r5Ai(^Q|tz-wb znAHn4#^8&LmoKp; f&PnueC}d&?Y~KptvZC=WkCvaOIm-Lg2IK1yrMJi hFr=Pgx!uda;BrD>tJj7_3xP&5c)I$ztaD0e0st+KIn4k7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/block_zapper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/block_zapper.png new file mode 100644 index 0000000000000000000000000000000000000000..870954f299808996efeae97cf584dd5fe79e1771 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08YLVA_--_;RD@->>m^ zrV0PL=4ESR6BZVxr>o1y$ET#AaPmylIiNbmk|4ie28U-i(tw;ePZ!6Kid!{4M;V<1 zdAOcf{_ek(eEYp#A!Cl=&5I$Wcf8jIhFml56+n_C1OF<%bL3w=pt2U}oF@Mdo8Q&?W{?S3j3^ HP6#<|UfXq!Pf`7lp-6B_PO=pR=0;*#w3GxGKEt`DS0?3Q-ba4!+xD|UQ zkgvgjgE`>X72Z>S&u6!2b^d+r9V{8tXuu-T+OU`B7Q>A=?#<$HLVq7lyQJ`|<0120 zN6Gy2^3R>tpGbe+J}>Zm(1CM27n|o^m@9CXyKX1rL<6QpmyS(-2egC1)78&qol`;+ E0FnYr)&Kwi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife.png new file mode 100644 index 0000000000000000000000000000000000000000..a162c85db05f4bbd2fcebee20b440dd0e412aa8f GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=1HUS1nl@UA5UMWrk6G zgIjcuc4xYJP_3F%szQdJoMnWRrmqpnWTDmu8UYg&bP0l+XkKg>61N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_2.png new file mode 100644 index 0000000000000000000000000000000000000000..49920904240439b3558de0b4933abb617dc113aa GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=1fse!O+-*2T+JOO{4g zZFWkTVN~DXR#{mY-J=~;tLBudU>PCha8}lo-N!h8t4)v2fkzw8eqxxBxG%epvEyLgCaFcO3vb9e w6?g0wX^`|4KXtI@?xuj(WsadnoQ|vvvHHUHvPXIz1C3_zboFyt=akR{0MiLbr2qf` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/cactus_knife_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a99d4aac3c829e5586b4541bc15b79fa7a981c64 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=4@N#{atJb@6i5lBLmA zo1Ic-7}YnpMfYfLN)ZgIRdY&Ju#Au@)nH2KHeLx-%~%rT7tG-B>_!@p7*cU7 z*@1btxkJY53lbd3t8X$IoRz)Gylm$7C>b}ggu)wXg$!p5?q5x2NZK%aOR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper.png new file mode 100644 index 0000000000000000000000000000000000000000..138604a962b188ef0d5be0a442e71ee4d6f586e2 GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=6Scf_E01PEU91Ojn;4 zE|uXYSKy+Ws?Y6dChDUt94y7DA;)bX#r2=#=MkW4#*!evUapKd{S)2mLlrAzS9J@QaQBYuKrn@4KpL}0l2SWgBgaUik9g!F& eo^*)-Mh4xNf;rW$KbwI@F?hQAxvXL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/coco_chopper_2.png new file mode 100644 index 0000000000000000000000000000000000000000..833db73d9036c8f93f2db10ca3a2e6bedb67f1fa GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Ffl7B-OLDsWMqp6<4@ z*fdq2ds?{E>Av7#Db8EBZY^E9^y9~mPEJmp>FSl0l^K3=o@SyNa@@()Q=5RA8B2ov zf*Bm1-ADs+{5@S9Ln?07c5P*3F=RL_lXj>6-1_~y3KpH4R?seBm4EKVp65*lhg?oF z{PMn;@1e2OHB}1FW~-gQS2Z8A-15H z|0gfm*xr3x-`K5ngJF}&HiK z^vRA+V}>U&8f-UtF7cSFgwCH`vEE@W? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown.png new file mode 100644 index 0000000000000000000000000000000000000000..c1890fad2f3958480553d844c69723f501b34a58 GIT binary patch literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`iJmTwAr-fh7ii9yA^l6f>A} z$TOa66=`X#9Fy}oHaQyn`>Fi(zh)8d1pjH-C(Ie1JlU@A*Jv_nedW`pkV|vlW~y;< z8GJG=U$*-H^a&Fb{EOS>%Xoa|*dWQ+Af-6#B`?FIWBJ!on%DaREo1O>^>bP0l+XkK DL{2!m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_brown_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f8cfb959dd76b54a03e12b826741b27d7da80681 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`6`n4RAr-fh7ii9yA^l6f>A} z$TOa66=`X#9Fy}oHaQyn`>Fi(zh)8d1pjH-C(Ie1JlU@A*Jv_nedW`pkV|vlW~y;< z8GJGc4-5PE-Y5LOzM`Vzyl4IL_LJ8CytX#_|J*rqPJI4+X{qFi(zh)8d1pjH-C(Ie1JlU@A*Jv_nedW`pkV|vlW~y;< z8GJIy_Y(Ybf9AS>@lH-nHfQViADg`X=XKNd|CdVnJo)+aoJry))8;=s7k&5`eu+Oy buVQBStyp?gNUziu=mrK)S3j3^P61sx( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red.png new file mode 100644 index 0000000000000000000000000000000000000000..e40298c53e5771a6afad8019376fc5d473a16e49 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1#w@T`oDkw`6KoJXUtf+ zAhk1H{hyXrhM(LcA)%E*Ql4g_5)u-=)z^A~N*POn{DK)Ap4~_Tax6Su978H@B|EUq zF<#iC>dGa+c3o-x(SU0u`ZH2QThgXQF(gW`Ib`GoujtBUU%+JB!Xk0bU;z`u5lP-q Utf2+SnpP3=Auyucm+OEow!i`0n8#NF6n({23 u{YCtb%$w)8-n4&tz3jh7{F~g%*K1ZBV$9ojIz|X+7=x#)pUXO@geCy>*HE(n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/fungi_cutter_red_3.png new file mode 100644 index 0000000000000000000000000000000000000000..052204714e97bc85c134a84be97309fc8a74f010 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A6(B=vvBjDK2MkA#H& z@8AFTYy74Z!C%+BN;R17OcP$YAocBwQ|FJ=dzy)MrmIUxNMtSjdkUzHu_VYZn8D%M zjWi&~(bL5-q~ca-_i@1k4g!brCO=;KZ}r#cGc)8Bw(d_++f^A-xUpz+qvl~>Q=Y}M uzli^ldGq|%oAxiSm;LvMf0KLpdd-SMjCuP`#|QxpWAJqKb6Mw<&;$Sp5>Dd) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/garden_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/garden_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..c018a628eb10f6c4402323cdeffceee4ee75e639 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0E^1HnS=%b(a#;NrC_UTc1UBEAFZ0 yllzbr+mmhXv3mQeZz)p~c^8S5vL9jNOlAL{#w2TZ<(UQ0dH$6>u0Wd4-b}8mTz%6liK(j zz)7yqiEA>XXJ=NmiZ;Hff8gkHx^iCgC!6;&ARmd#&un2yT@S(EY=(}7i|5W~| z>i%bL|Ni^n&T@u5->*EpbNp`L9QL|WmxtO6ax9ysPn7uybPt24tDnm{r-UW|3?gMj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_great_tilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_great_tilling.png new file mode 100644 index 0000000000000000000000000000000000000000..c88069cf4a55e7a4dfa0c14dc68f79149ac21a38 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&7LlfAr-gY_8W3FEAqJAwHBWf z6J4-gy@10h|AEF^-8sdq`m;arYEC)SfAUZLhh-n;N%T!C7E_G~_Yz#XHLY7pUjgsS6xc?jRd)k!PC{xWt~$(69DJwNx%RA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_greater_tilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_greater_tilling.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0a13c4bfe44363e211d498a14fe8daaf6d4bd7 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`?Vc`vSnA-| z%u&Uoz|HRAz^qizID4m$;Zf7_-IM>cv`yc-{%X`hon6@|j%_D*tywV>=p+VDS3j3^P644YvJl)TZO-$pMzxQUn#I)Hl{dpXTXOFG-|9{GWLPm#=Pbi&w$kH=nmN`2oyFkk>gTe~DWM4fsJ2VN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_no_tilling.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/hoe_of_no_tilling.png new file mode 100644 index 0000000000000000000000000000000000000000..3058b400ebd4020f88bd2c8df905176193764875 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeXWnifI`@ihfyYQDAMLW~g zn_|T>{Ny~%MD6wXG~~D!54ARW4r=xRTEgJ99^ZtHI;{#L5LyrJD2W`rE@{nGkCiCxvX-J4`} zuFh~pe8hqaUo$2pmK(nUu>Cx6k|z{UoeBivm0qZ zPNk=dV@SoV+Ox+QnGHEyE=C5h?YUgP^_b=C$^U{6-7kEeEnFAdXK3T7S8&g%OQYi5 zI;A5A!q#8dwQ|CR(zlX=TcxfaVO9E8tLMDiVeZZ9V>z!2+H@6}*LHmQEI<3iEN0h3 wCI_q5Mx9g?oLC^J9;>_Rp-x(X`>uz@eFnZP+rRpT)`48+>FVdQ&MBb@02EGK<^TWy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/infini_vacuum_hooverius.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/infini_vacuum_hooverius.png new file mode 100644 index 0000000000000000000000000000000000000000..fe1e6ac66940b7e84dd590974c94004cc9c49c17 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|6lm~h1c7g3P-oD zh>wt%Iw>e9sLtL}C?zgbQ`N}Gh|k{4SX_uhRRO4YU0G8gkYX$e@(X5gcy=QV$SL=9 zaSW-rmF&R0+ukAL9lvygO7%~+JXV2ZduP+hi~(I|J?787$ao^*tjVwQd*n2P3!im7 zU(cqX{OnHm)HM!l-sg8O=UtoK$TPEiE%%`*LJ~K4riO{A>@`Vv;8XbR|GMwz8X6O4 ro&I-!n!lQXLBY8v_a;2*+#t^|*;&niU*sYa&qa0Jp3E7-mOWsOE_wsze9$B v`^u*$4lH^MoEsQgj)~l;V?4EkdnqHUg=q41-RTQ~Ml*Q2`njxgN@xNA>Fz(f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer.png new file mode 100644 index 0000000000000000000000000000000000000000..9e8024d3a5cccf00eac8fbaa2e24306de11bfdf7 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=82H%|14%V)1N+mQICx zUN)WS>iZ3qBh#cZ{N!Bx`PPeZdzy(>N$^EV@N39%%eI8h0qS8a3GxeOaCmkj4ajlw zba4!+xRva{xJP_J&+6F=m>%*g_PoB@#hY;Kt@|MXw#f??v%9>zBBX6_cJleH3}-BU oHZm$1$Y^(i3(zzMPgg&ebxsLQ0C;IV>;M1& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0b4094b6d9a3e73283a2bcda3c33d3fa0329aa65 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhD~Kz{?c&c@Sy>sGCe_lZ zaBbV{W0NWt&sJD3#vLiazu!>#o|lc59OuW6AD1p&dh6CLCnu-QbahWN(JBePRm{@I zfkrTv1o;IsI6S+N2IP2qx;TbZ+^RjXmGOW94}+s;+OfaszFwcpzZb0ke)Qgoo99kl zJSVC8)1W6bh@W}N6sN9_CQ1u43tSf*eDhtRJF!g9;M%1}R?-3wud+vPVG5f0nza*X OEQ6=3pUXO@geCy$08Y*T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/melon_dicer_3.png new file mode 100644 index 0000000000000000000000000000000000000000..28c81d2f8a198140c16829a30257065d22936abc GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhD~Kz{?c&c@s=*YQCe_lZ zaBbV{W0NWt&sJD3#vLiazu!>#o|nz9YhD?Ca(AW)|NR=jDMhd|UER}6v`T`{+F7y+ zXar+PkY6x^!?PP{K#rHEi(^Q|t=bb?85tCK7!IoJc>QnlrAPPg9^QS=yn1n%wRXC7 z`jjV^4Z=Kac>{vDG@o7WXjyhrv{7w(he7zKX9vW#Z`rwy&Eu0VYb>q(XQ00|7XQ^{Vl&Q$#_`7PJ;Ozopr0I-lS`v3p{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/promising_hoe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/promising_hoe.png new file mode 100644 index 0000000000000000000000000000000000000000..b12208b387490ddd0efe380bb3fa99d135e3fc11 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=9cj|G#nL#)=gyii(Ol z)73NltYSFq!xqB8uzx0(R9>Jf$OR0Zu6{1-oD!M< DV-+te literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer.png new file mode 100644 index 0000000000000000000000000000000000000000..13d1bddc62437e073f65493f9cabd80478fbd654 GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=3&lWlJY5_^DsCk^Fy?RuxGjA9u+f$rsU(>w|*GXnGv6n~nnF38^@O1TaS?83{1OV5U BNXP&H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/pumpkin_dicer_3.png new file mode 100644 index 0000000000000000000000000000000000000000..7feeab0f9b43e2ec20927c027f65a3b4be637e06 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=4@N#{atJ^>uIN<7M7= zrU^gpl0A|yvMEKdGhKZ_7e)gV7|uHj-`k&Y`U}uh22WQ%mvv4FO#lmBNGJdR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/rookie_hoe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/rookie_hoe.png new file mode 100644 index 0000000000000000000000000000000000000000..82d0b696d5f8c3a35c81032dbb8971e1cbea8558 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=1^4tY~U#>P%OUi;K(f zlXG`*@iY@v)YI0G|jQ_I1N zDq&oymXS`X-Zly*)h^5}fi{d<0w*0-F&y?`3t?b*V8dl0A{0>z)Xm`O>gTe~DWM4f Do6stL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1f3591a3796e7a8a55aef3f8116b22eed3527e GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^ahW!4+Kn4G{{R2q zvchKJDc^uhoq|cao$2ZsesZ2>q6*^dmU_FN0+lkB1o;IsI6S+N2IPc!x;TbZ+)6#w z%6lL{#3@kj>!E*-uRXopS;U;T=i%{n`%^TPZp<~EV56zOgKPFA*4qcaObGMr)6a;l zIg~E3x$r%sJX64%GtJ*7p2#pIZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sam_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..c858a7c038acfe1d0c380b70adaf3fd4db57ee77 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>t{|?9%d~0JZrr%>|NsA% z6*db``4&vl4an5#OjpnFlk+qaRS;*tbd-4tP$^?ckY6x^!?PP{Ku(LNi(^Q|t)=H& znOGb-oG*%8I`wz`ZN1e8Jhr``{$Oql^UM`<7YE)}t4jMaZ~H>ddn`7ASGOD}_58g% z;3QY*#5Ebxvoot&MH}DLKX7z8T{*A$lg)dXkmrS`DrA;>SOh;v_)uAH^j)r%e=7e} zb^kNBfB$`OXF0>3?^hn)Ies^A4trgx%R_AjIhIY+C(8T;x`)Bj)z4*}Q$iB}f|qDv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/skymart_hyper_vacuum.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/skymart_hyper_vacuum.png new file mode 100644 index 0000000000000000000000000000000000000000..6184d1ec93d8ebaf76c3272b0de1e393aaa47136 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0BKw{{4do4~`x^x@5_c zNs}h6h>yt1$_fe!s$r{DK)Ap4~_T zawm;uCVBhy3$Ndh`H?5OPZRadhNm&rSsPNxnftRyZJUPT^ v6!lol@Z?=#y(Gb7k9-Tn1ZODP{!Z@Gf6cP7u_yEZ&F!$qvlB?Hw}S@k=+TRR3hlV--lYcQ#$j7|?atWB%NWj3*LeGr!EQv<*;ubVjg0 zp4Y+c%ueyu5sf_S=9T+PM_o5E*l==BcC5hCDF+T@uGq3D;i4xq+c}Z+|L?8Rc_bv3 r?R@h;w=#u^nfbZTJ6_Fs9KRV?JyMJLntf0a=mrK)S3j3^P66jEuB&WQ@gyghjZ4iVylV&I3}6B|(0{3=Yq3qyae#oQA=8KFc5_HXfo!=v;Azb;azwq1tg~i7j8W)~P p{h$9?nbm>$^iK07JCxtBGwhh8<`=!u#SiEP22WQ%mvv4FO#tkjR;>U4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/spore_harvester.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/spore_harvester.png new file mode 100644 index 0000000000000000000000000000000000000000..7176df926eb5a62336a82bf97593f55ca5ac8bf3 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=43`R&1S8J25x3GhID3 z)GN!+I>S$HA=9=-;b}g$#-3)Pek`#Xa@@Jn(?0-JGnNGT1v5B2yO9Ru_<6cGhE&{2 zc3@n?7~r-*E98KO$RUofZF&sGVzW5o8H{&?sYf|J*%sesU{SqOtU=OP%|T^{HNS&I t^g9QMJ6mmp6_~^=6nl2_%+b(eV9=N#XvKBdAO&bLgQu&X%Q~loCIGOuIjjHx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator.png new file mode 100644 index 0000000000000000000000000000000000000000..8f59ef47b431e8bcdce343b88fcce3635b3a6c99 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=63se7pJJ>GlK1UaXa! zvviHs#&0jmWd(a)zp$6(%iSIs8OajZYinz(p`oF9IMx}cfw3gWFPOpM*^M+HC)m@) zF{I*FvICP(Q=35B!VU8nI@0(;O`AFlxNI8?W=y^BBvE5qBXI2Y8fJlG*&5C7%Z^JK zG~Z2)=AZHL$FVdQ&MBb@ E0DH1d3jhEB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_cheese_fuel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_cheese_fuel.png new file mode 100644 index 0000000000000000000000000000000000000000..a541a6054261e2d3e5ed47ebec7c47ddd5215528 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`=AJH&Ar-fhC8`ocdYaa^@BG(n z5IO6={RzhGwu>s6ZCNdemw0d9JjrmWp{X(Hh;);yvP`hd1_stp&%j`Zw5vcP7(8A5 KT-G@yGywnt10*K^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_compost.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_compost.png new file mode 100644 index 0000000000000000000000000000000000000000..f9d7e987c414418877ea11dfee3adafe6c17bc93 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=6=KF59xQxH;XsJ5nLu z!zjx|BFIL<%RoX$hBx%P(Hx)(#*!evUC&vg z)Aodixx-^om3oWfly#hG1%97(5*jwB`7kh?@L@M+&YQjfsFA_b)z4*}Q$iB}v9B$& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_dung.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_dung.png new file mode 100644 index 0000000000000000000000000000000000000000..4aeca6b21aef20330a10f9c42b32b362ae2d96b0 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=4k~9{ItpaUPCAw&u9E{-7;w~`m|Ch#^IHMKAuFzH^jK+DA~@&xah n1Y;x4<`tZLehmgUE=e%tXtT&F8*jS_)W+cH>gTe~DWM4fudOEA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_fine_flour.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_fine_flour.png new file mode 100644 index 0000000000000000000000000000000000000000..da1ffe7fb2dea2b1acc64c9e2c5478a8222bea2c GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=4^2{(bZM>HWJ`&Yaq_ za>=ymlUkmwN;w3SU@Qsp3ubV5b|VeQQSo$f45_%4yg)Fa$xwt@Vav(|Of%BN%8FQx iBU)n@1|@QG)G~PQW4d*BHyaO7J%gvKpUXO@geCwT9xl27 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_honey_jar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_honey_jar.png new file mode 100644 index 0000000000000000000000000000000000000000..dac9ff52013cf8cb6f75d3dd0d3343a5fd59a5e8 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3fZe*b@2ck}r-XVx$M zKT&K!M?-A?q3ih)5w(jg<66{RQ+D4tBnDK+SQ6wH%;50sMjDW#>FMGaQgJJJ0dK_0 zoeYOO3cVRF$L!u6?@#I>M@Pvh_w(NhWf=?n}U>>SM2NkyVSO$?r{elF{r5}E)D CV>HPC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_plant_matter.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_plant_matter.png new file mode 100644 index 0000000000000000000000000000000000000000..967a2e22fc10241e3213679b4ffa01235eb60d6d GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`fu1goAr-fhC2l2%^f1NdZ~L#3 z$+2?k|Nb?SZJpP64tGuKN$6elibuh$kZs2juRrD=1sS9nQVyGHzt}9C-q6SVzJ7+H lgBi!-47H;I0&W+17$Rot#@U>-4Fwv`;OXk;vd$@?2>?TCEqed} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_spraying.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/sprayonator_spraying.png new file mode 100644 index 0000000000000000000000000000000000000000..9252a06a5db8fc8d94e18b1843074c517b854836 GIT binary patch literal 89 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`3Z5>GAr-fh71(QjZaBs0ayi&| mnWBQt2E7D{xCD_NCWbH_fvfi&lR1ED89ZJ6T-G@yGywp8a2DnO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/squeaky_mousemat.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/squeaky_mousemat.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e20664bfce61be35df0f133bafa5b60be097a4 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=1g0zC3z(|D_dk*RNZ> ze@b_MU(e+3=9apOj*^0k(xQyC6ki{2HC0tkPR{KaMvH+O7)yfuf*Bm1-ADs+qCH(4 zLn>}1AK;5f>^U6p>x>yY$KJhBtUm8wXx(3Q;J|^+i&rIAKQ&=%d+_Gd+|B0EYz77^ za^~j*GA@yf*fM>axE;gFu-nSv<%~xX?tR#n%zT9DUET~?HV-joh8qb|Nq?tR*#oU% N@O1TaS?83{1OO>xQxpII literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/talbots_theodolite.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/talbots_theodolite.png new file mode 100644 index 0000000000000000000000000000000000000000..e19dc8b573dfb12500036d1ef9913db711de1aff GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C_Uw_Fh)@#R7Cy-8Mk zvowq+Ovu=~S1vW}|NsBN+T07m1dYXouJO&}1}bGN3GxeOaCmkj4amvzba4!+xRrE( zmm%~lC*NTM4wt~QPM4(K)!!4kzEXP2KX##+)9PA%B9Fg}Om0}&_F2~0Sjt9UPs2sT zNTyC!IICyXsXaOWKYUirNnV~1*cMjawWLIT;x9h&hLYutQ4MM(VTW~NcUS+rCf~i8 V>DuNp-cq2g44$rjF6*2UngCv+P`UsB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe.png new file mode 100644 index 0000000000000000000000000000000000000000..721c6480911fe475fa259ac52f8012669fb680ed GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=4^1{F!^=zh&)JlallL zS$j3(R;h%}lyWGmxt1#ilx8dm@(X5gcy=QV$O-avaSW-rm3)Bj2KR!VNd+9S8Yw{x z(+a{wx)?4lJ$9_=87~jd(o@IWPPvKlym35s%;}hx!^E&u=TzYdQhfr7$@~i#JWlX> jG`AeGTENzv>BGQq;{%_@oB){spy>>ru6{1-oD!MMy40L8O<17OnXaDU zCuf~3q2L#MHr}pu_VYZn8D%MjWi&~!qdeuq~cbx1DnsOfVM>w7+Vg; ztz%2wD5~zPdiJcMiF-t&;Ean#jg5jj0-P!fn0StG8k|XSU}flL;oNeCb;=~584RAT KelF{r5}E-0DK8rU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_cane_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_cane_2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8f21433a99ff22898bf8a34435232afda04af3 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=1fse!O+-*7UC~OP4OK zIb)izK%=s}hr7b`Wj3q&S!3+-1ZlnP@Zk{fV zAr-fh9oW_+2Doj=WNJBBtj2Zfk<~UHt(lXV7gnardaxSj*(4;eai3{kwW5My;mxND qm|Ue7MD1C~WNzjl`CcM`k-=P#@9_R-8!dq*GI+ZBxvX z(}WWiXlzOm>`YhB@RPGnmMGO=((>W;G!xa5FVdQ&MBb@01gH{lK=n! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9b716e302569caa0e4871ba0a037bf525990fa05 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9Zymj7RF|G$sZc%Q-L zEZ)v^b@^E`Yb+Tu{N$L^nM*a8Jk3NI0vNR9IE~XLB>*)rmIV0)GdMiEkp|?rdb&7< zRNP8-V3UyzaNC^3+;VWQXLBlJOX{5me1f;LcFXvDKC_Q+qSdzrrx@yr8S0vn$`@Xb#8BKPn? zRO<(W5NT<@buMKeRn}RED%h?1Klx$0i`IJI_-U-K1b$^%tnLdw9l-VG5ufixri@;e RObejl44$rjF6*2UngGooPHF%E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_carrot_3.png new file mode 100644 index 0000000000000000000000000000000000000000..7875040f2368f9e5b60b27a7aab7f69cf985b044 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE08YLV3MCD!<^1+yw89k zfMHXL;NP$Dccuydy5{x&VEN@N-V8sv|I6+F_i=Wnt9zP>YRPe~v1G7O3A+!}%vciS z7tG-B>_!@p6X5CM7*cVo_T*K@0}3L}7u5rfe!ss}uj1c1-YsHI9=Ts8iMgz0=IEPj z=)Q2r8n+^mIZmE3H>(uHF4jx!Gm`mlS!H{#?YgmAS#a8HsXguY%F>OQB0imI1UZ_) M)78&qol`;+0DpH%0ssI2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_1.png new file mode 100644 index 0000000000000000000000000000000000000000..1bfd5104ae2145cd8f2852813e0111eb4ff1cde9 GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`d7dtgAr-fh7ii89J@r9ea`Kv= z&sH7yuV1eE_kZC+UYE&v0qZOu*DJ7P$K8L#WcJ}miS`b~B@!&x?@Y^NH*ZLBem3oO zqhW{dq%?oyi~l9-iWGXEWWMtW|G!@KIOjEwzOyNra$9H0FkIod=#$UDkj9zopr0BH$8%m4rY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_2.png new file mode 100644 index 0000000000000000000000000000000000000000..017bc279372af57d5d4907b859120cecb8b5f48d GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0CTQ%Ah63*_p0hSy}mV zSJKT@fhVS0ef;=weTz$5rrnPVZMSaSTDo-U+;Tl9C#MWQIZrduTyw^7@4G*Nni)%i z{DK)Ap4~_Ta$G%K978H@m3FuC9&iviJWn$Je`0iDZIH50((L^=%wK4J>+n>$Higmi z6mRpytxs;h7c6_vQ~&KjsQ#*c-}+VWZuTx-|Cxd3Cgat0&TPU!0~tJB{an^LB{Ts5 DniWmX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_3.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_potato_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b2108a422273c980971527b79c49d1194a18aabc GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`y`CF?M0JJW=JUGvKDlk+qaU8ZW_Cn)ye(~%aSYQ~ZvzhDN3XE)M-9D7d}$B>F! zrKfibGB|QD1q8nD|GT~V<)Jf^Y^U5{ZLl)lIy13p3fC9)qOkh+D|S1*f3^7R^q-cc g^|Pa8L$glvAGczR*e$ih9cUDTr>mdKI;Vst05Y&YTmS$7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2f92f0aeb32ffb075da4bb64f2b11dd6498869d GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=4qRr=Hyyxom21Z@F!K zmT_mgdWN4|SfGWcnW&Z==cc3Y&jS@PmIV0)GdMiEkp|>gdAc};RNP8-U|X{=z-@xS zl%p5d$S|ZzZgo<%R#GrYcQtm&yT#Pbw!uM^nLUKT!+}NO1GmANBnMW8CRUysuNs_w Q0Zn1>boFyt=akR{07v69U;qFB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/theoretical_hoe/theoretical_hoe_wheat_2.png new file mode 100644 index 0000000000000000000000000000000000000000..fc4a464bc7dea667029f1a5fef779f6a2199901b GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1fse!O+-)}7s{XE#PJ zUAlDH)Zog>%HDF@`YhwlboC5Bxv)SBCnqOQGf^!$&N&@BbAWmnOM?7@862M7NCR@* zJzX3_DsCk^u+1@E*rTZyAa>qxJ7+-HDbE#8W?Bl&%0F+|ac4C@FZ%(e-;xyvm_p?h uv~E0I7}cfcu=R)&Yg}xD(Ldt_Obp=xLSZ~}gnEERGI+ZBxvXk|<`0`z9#n94FsWSUXvT6v?Y6*-Gy~sBY5v9+|4Y^t{a@I2 zV6W4bXXi@3{*Nk}lfb+8>9+rgdP>*QI?^;0qCPJZacns|qhZ6d{qc`aUjOrY*7g5E zylO!v%71FoXBpg_gTe~DWM4fEj3fe literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..fc507dc07b82d612000dbf8447fcc0f9e472f328 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0Eq;Wi};6qcdH7i-kve zfKG;=+*D1YZCp&#goQoLM6*OiVp&)e#Mzg6=xqY3W-JNv3ubV5b|VeQiS=}G45_%4 zdiE;g0RsW104>XfiT?{<&--4^RhHTw{c^Xjrd{8Si8_C8&6U}{*mY0N+)E{Kyq-Ge z*)mm*u6C5(a!7QtV&dbvYn_+xC8QkX_WgSIfx?wPXBxwKIpw)$#4$4+&pr4MXc2>_ LtDnm{r-UW|SPn@q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/thornleaf_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..52d6678babd07a8275150617ed095aadab6a8a4e GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyS^+*Gu0Yz;Of)?}XG)63#wxRE z!ou6Qm||I2wpe&%iHdZlt54N5%J7p@5N9u~@~#A`W-JNv3ubV5b|VeQndRx?7*cVo z_1w{^3<^B17diC)ZnwTs@g)DfGW!p?y^ThX3d$G9as828C-}KLi#_u`@5GXn_tt@Z zZ(95p-HoVrFSx&fn_+XpCayH4)d!9$Zm3kUV0>%;;^3SeJIdx3>b*^B*ik9>wkb(^ zw(6Zbw`R0Ero~?8Yu-1*Cr<9*$2XPVY+m(gI-T+SZpawqv&{L@-dy(2d+qKgTK!`@ X6wmU#>8E}c(3K3Hu6{1-oD!M<>WOM! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png new file mode 100644 index 0000000000000000000000000000000000000000..e9b9e82cb34a0714b97ee061485f83f316504f25 GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3HEH;(vt$DH~50$B>F!$r95NL|WWg{w?<~ z=D2+`Iw0@F2F^=?23&58D|{4o+cYE=%x3a5<0uWnIQ Ppg9blu6{1-oD!M<=-eU# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png.mcmeta new file mode 100644 index 000000000..cc0cf1468 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/farming/vacuum_particle.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frametime":2}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chum_bucket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chum_bucket.png new file mode 100644 index 0000000000000000000000000000000000000000..cff23bcb33a0b2463e4b23f112874cd99fd2e65e GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0EUKx0x|_b8gwx__QYP zzzk_QjobHL9z1$w<@%#eo=NUoVzYsY7)yfuf*Bm1-ADs+Vm)0PLn?0No^j+m?7-oC zv0U$|DE%1dTs05-+4x5I!lOXLyK$axy%gnmMa&OS|2V`d*bAtc0_(3 zvpk=Mg+d}Dn*#6W7O(f~el45A=6%)oz3#HtTjlTlWOm+p<&g}~A_h-aKbLh*2~7Zg Cf=gil literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chumcap_bucket.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/empty_chumcap_bucket.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b4c1d43454a3548abb2479600e4299f32df27a GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0EUKx0x|_b8gvGC(opn z>yO5#H61*9<@UXopH}Yq*1Yf|qkR{nwgm&jZU+5K29Zrq%2|PW7)yfuf*Bm1-ADs+ zQaxQ9Ln?0N_Aqj}C~~lFHrXEb_22fplfEZ5+AA0}-?(@3k^ka~pjk`h-yLggcIjwo zS6=hi)Lx*<5Bc(QC%t&m7m(^FYO!F^ b-cQUu^{k~!>s)sLEoAU?^>bP0l+XkK@7h!lng&P7Z(>#Gf`7hQw=$8iMfn-f%@4> zg8V?{F*F=F=NOv>WJG(qIEGZ*D(yPT$l}P*EK&Y`|Fz=ShtnCJd$4Y;-#%eQ7SH~Y zTka-_*5m1yDgrV{>LrQ)jw5P(g;D98is?nW(9$sfHYP z)Jt1Kpjq4{L4F{!A)w)a;r~A@Kz6*Ri(^Q|trFj6K^8}b)3?I@Pu*8}!r++Y4u-7% zMW+;3ZT;c8{o4PJ348uMJ(=<%{+`i-eKk{B*B3l~drtBHPxFn>&-pg&^*5AjMb`d2tDnm{r-UW|bLmHr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_lava_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_lava_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..b36eca162421b7bf085dea770c8e43517ac61cfa GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=3SL|Np<%5AjMb`;cvRzACQv<{~?Z+>WJG%fN<^|Z_l0<(H+YGasV b{X!W#T^I$c>bP0l+XkKTJ}6Y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/bingo_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..ef2901b107a7084a2b7ffc1db6514149059b8135 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0DHfNHt+-;|$w2_49wu z3EQ}~pJ&it-YgY08z{$E666=m;PC858jxe@>EaktajW)(Arpfk2a_YS`k(*D!_^{o z+|7CWlc${Tg!-Stt)_2FmS5x$U#|Pn^x~(jou3{vWxZz4v|_l*m{IW?Xb6L+tDnm{ Hr-UW|jlwje literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..a225ecebfc2018e3f44e99315146b3fbfb2175fb GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`^F3W0Ln>}1O9*VpsXS3HpyvH~ zuBF$1Ru@snS^p=mjg0Z@FJYcna;nL6^^08%rnmF7e)vyHld!1%rW2ujk*$X7iR(s5 zwRKxlUeza=B;WAa!uVT4;sg7QDZT$sUiG=bFyq;`Z)Iz`YPdQt@USL0b4WK_;PFmf z;BYw0VcJQyH?y8|sQhF9CEMdzGr_GTZG(c1T7eY9p&d^iwoPXKaFd52@z3N`u~gPG QK&LWzy85}Sb4q9e0AEv8)&Kwi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/carnival_fishing_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..5617f11694e21b06f901a9f364e79575e06b9c7a GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|37>7?43DE%a(^c z>6C46Z~qj?J4YaK9|MDmu8X*wo`9$#P?vs7NeWWM5*j{$5-N7Jhq4pmsSCo)Djd}nC+_{WafnaN{;*a}va zLwlJs6g-wW8#FZXdu*;?mrr1LnRm0G&G7)ki5t8}+9$qYXV5+*Zg5I_rUuXo22WQ% Jmvv4FO#qD*M%4fS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/challenge_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/challenge_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..4953f35b5da6d02bbe2330afa1945164f842e12b GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=4v(=bvu3OAdAc}; zRNP8-V4fqspl2n&g2{TtDTRSjS_!)t5AC?cD|(@kE5@2#^h9IU!zez}H8BPZKAS68 kov%#OxxqUzvNg?~A-RbE$%Ma*Afp*PUHx3vIVCg!01@6jl>h($ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/champ_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/champ_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..517d6a9b20538f663fbc5fad7d6af83b55631abe GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A_^aXH;?tCgf0YN=#g zZ}k68!~a78X)DXkQUZOZwB#L~Uu3OqtRyM#F10e=pwCyYq@*MzB_&Pi(*vMp#*!ev zU!ZaMN1snTQvRW% wth9X9>>8Wiq|H&?GoGH>KUuKS(BsW72G+HV2XgLtg51sE>FVdQ&MBb@0CclPEC2ui literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..448497bbb37fd470eb7107fb612cfb5c2277fd40 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A_^aY;!@`TzgFsj2Cf z&6}r9n^sa%;w7uHC$nj~XJVhIluxM6+^J9EU*Br+8JlT%(`(3&Ajm($VGVZQ*iLnHl%;4$j=d#Wzp$Pz0BSu{S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/chum_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..3bcaafa7488d48f39ffbc6ce30be9d309b697a6e GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3qKZ=N=7+Mdj&l$4a| zo{6QV_AV|irlzJ|vMMeXo)JJ5j3q&S!3+-1ZlnP@Hl8kyAr-fh9hh}k1KP3~TGIIa z8VpYPEM!_}z-YX}K`Ugz6&_#i*{WAIgdAk+IAG$+k(}nl?xH4qwvJ)tG_I65of*wQ Pa~M2b{an^LB{Ts5XPz<- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..65ae1d07212d0733014e03227358b6cef8963026 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0DI;QLhZOinP^?^KjhR z8k3WgGcCufq@-lpv}s#5Z#FeG{r~@eN=k~0iwoE6pyxmhj3q&S!3+-1ZlnP@ex5Fl zAr-f3&s=46P~>n3+@1J8H~vQLUn{K%)eVy^WqW)s9qbB}xo4?r@xMJyR@})ny>R}_ yn0gM&+m`b6X~tP|<$eA<|1ei#sY=@B<#CVm8SgO8uUZB)nZeW5&t;ucLK6U3Uq+Gu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/dirt_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..1601c3e657589b2d6e00ae546f4d19dce9f6bd87 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^af$PAG&MEdvUzh( zPR=wS$ni=^N!i&N6KShi8ER##qaJkGsvoG7u_VYZn8D%MjWi&~#?!?yq~ccXDMP6S z10JWutVOpD{5}8rR?36i|Lh-Xvv*wCv*T*b=Gm&h>yO86Ikt7V@ne&(DJIH%&P}h` YFZ^Mgy2LQY5oivBr>mdKI;Vst0C(Q&UUxE&M<|EG0pHATt;?PfnW! zq{2L1978H@m7a0rYf#{ExhS~AK=jn#eC?Io-aYfLW~)8eKcz8oeSeFMMu((pdHB{B zeyyz9)&@bP0l+XkK0^(1p literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/farmer_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/farmer_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..287c5c7e7d9e74c3cd76e624b056c2dbabc67cd0 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0F&G|NpAnCDW!&Yg!SR z+3sFaQj(IA;^N}6W%K6K+YI)vHUvtoo}@aZL2gN)HblzQ)U>^M^BSOL&XOQMkYNx| zoHBbMkQMIf;uunKtF)(C^hkgRtNOF#|9jU7{7$+UUKi;)$Y%pI?2kf7i4;{y^`nC dp2ttq)*P>7oWyNrQwB7U!PC{xWt~$(698<1Ku`bx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..d89c6578ca0bf88ac6bf2440f73db30841e9de88 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`F`h1tAr-fhB?JmK_d95j(>cd-~D&++4I(+SK#ayHU@{vgyvMi7pH*sFnGH9xvXQ_U z^=}B&d-a&Vl>V8g@I7x;b@}z?+i4F@+J3&2r(XU)b$a{cm}(mt)^~fSxzBKAUi0YE tR!)(smrA}lu}i97E%Lv=OzZt?zOZA=3_R_9*ML?qc)I$ztaD0e0s!C;MtuMP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/giant_fishing_rod_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..cefd5f9eda7da92a5ce177118dd5ab7a11866b1b GIT binary patch literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyDgizru0VQGgt~?tx2KtChM%0J zmOy8^`v3p`@7%eQX~=zhzWu>EUA`~5DnNCNB|(0{3=Yq3qyae-JzX3_DsCOUU?_E1 zfyX)VqzdDj-}kpKlx37A z#pYSHU;A&fZtvlp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/grappling_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/grappling_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..657fb435db036f3902919f66c5036bb7ed578eed GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3krS)J+X8GdpuE-s#C zqGqP1YHDg4a@;_v*F75kK#H*>$S;_|;n|HeAji(r#WAGfRh_ix9 z2}__PAvpVGnNGT1v5B2yO9Run0mT6hE&{2RuJWI%Dg7R$e|o@R!}Kn z$ulJev4C9vLUzL_Wua4-xEgr++KRrF%wS}#=w)Zv8^pn8Bz$i#&;SNcS3j3^P6Lmb3d9{p+M=vF=~b(xkdy$9!G%$8@ECpMTr*U&{G2bv4JWAIc>v?=FdU h1RQ++!aRq8p{14Sa=;b&(?GizJYD@<);T3K0RZFJQJ??- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/hellfire_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/hellfire_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..24457e3bc0a1529f3c34e38ca390881a827f8450 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AthX4<63;Pv+A!rw1U zO-;9K-uyg~;X@z8|FtI5rcF~)QZg_wu(Gn2TD4r^=+*#n7N8dK3jbq3im@cfFPOpM z*^M+H$IH{jF{I*FZTD8j0|q=StZCo=omP7q-MCtgGa%6E$j6X3k?!{e?$qW>oY`0* zXmD;`j(zpr_U-@6zNuV$E@1QP2rF}^j~x4%FUMKq?=ZPVrd?+Rn#$nm>gTe~DWM4f DsE9~v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/ice_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/ice_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..5151d7005b509f3c571f9e7fded6bca5fbb46436 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^aY;!@`TzgFsj2C- zY16iB-ds{rGHK_(6L6g^rTUKh9)&Z3=mIV0)GdMiEkp|@Wd%8G=RNSgP z)5^%8$isYqZTsKjwMXyjJG{Ij!M6K?q#4`Vi#OSvlE2To@j&Xp@v2=n_TayUq@Dk^ zY~DO=+O(9EloNOUFFgF;#l@xh)3HN9MT{jue!&b5&u*jvIToHSjv*DdT25?bWKa+| zaG?BleS(+FrPv2^uRl6+QnWMw_?tg7iZ=SRon3Nj^2K9~EeDzzH}bA;XIx;$$W!ri RsRz&u22WQ%mvv4FO#tp^L5KhV literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0994845d74f28a04c7d7fcf9fd011b4cbf5f39 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0F$m&1;h$!^@4Lf4|0S ziCUSOnr_*=dD^sTLR^yn*P49jV|bp(proW^U|?WnWerpxAkNaP%yeg(@R3zhVu5_d zk|4ie28U-i(tw;ePZ!6Kid!*0tb8nv9M0EjAN;SkHM$kk8KBC*E$pOL9CG8veg2jY z_t{y$rJQs;v5$%0K56dj>Ux%@w)xYe|DF8jal+pITItENr~GekdN4KK&HIC;-r*jj eZ!_x-voYL~VfK$IR=NbViNVv=&t;ucLK6VEbW*?o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/inferno_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..854fa79b3515b4cce203a27343e84ddbcbda01b5 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AthX4<635FpN?q@?t6 zqo}E=>6Xo#r%jvop^xGJT9fCA41d4I8yFZ^Sy|tiCj9G~7f{QJyxCbmim@cfFPOpM z*^M+H$J5irF{I*FO!rpC0}dii5AUS@Pn|sJ_j)HqneqiY4z4}<@aAi;58t!13brk8 zPpGds(+p8%6z?3MNVbkLuQ7eLMDqjJTLNqhBA1%`njxgN@xNA DJOE4) literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9895b68045b5874f3fea2fdcfa6c6059922b1d GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cTH2gmlaJt>Lq@-kJ zyg^DzigCSBpRb-)l4_B)wu_5PsHKv;yOgn#zopr E0PLYhd;kCd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/legend_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..c83bc8f17b83c0fb92fa00d3458f72f9e49aeb5a GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cTH2gmlaJt=gWxPR3 zN{Vs4QJ=4#R+4IwwYH0kOQ@xiyt|aKl4Sf7)89bVj3q&S!3+-1ZlnP@PM$7~Ar-fh z9hlc}FX)-TEimge)2WCVyrKcO84`8cI3pZbr+sl^ty#eICVgRBs)lGo<~EtdoC$8X i8)pj4G|u?O%l@MapT4fvzCL= zKn`O`kY6x^!?PP{Ku)5ki(^Q|tr(wHL1sf9W1HZD|B=#t>pnHMvUCV>D*8!IUGedT zEyv0G{vtmjN)iS7-mr71*z@wreLE}6q4+a(=kxP#oSpvtOzzP=dn~`U`#^8Jm)S?t j*hVeU8tuPrybKJ>?=my}6JgN;TE^h%>gTe~DWM4fqRvrU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/magma_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/magma_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..6cf9ba48c15752079ff98cac41365720af36dc93 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0AthX4<63aO1{}rlzL< z|Nonsnr_*=`FSG4hdze?YfYw2o3>)bilU+-D=TXQ0|O-`r2ugjpss6{lXn6s#*!ev zUU#wwE^!X*nl^2ksj2DVoePtEou~Fx9+=a5ZuOFKplZgFAirP+hi5m^fSedl7srr_ zTS*6a8AAJ784oB3Fxwx@{a+Y;=dE5upP~4jwrv)lpA>xKFkELSHi;#>uT~*kPbqai zL-!=_hE*F^s9Mwqh&@hqczr>gTe~DWM4f26|4u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/phantom_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/phantom_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..5d169d63b53c511bad323763bba30e306dc5609f GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3fyPdU7E;g-#t56o$u zHf`F}p2}s7l>v!MoCCX(e4Tae!%R(0HTAtrO@gz5su@dy{DK)Ap4~_Ta=blV978H@ zB|9+YcxkcEztNyGJ);z*;8=_d#iu*b@W7)a=U2$7GvaC93_x-Mr?)Rou>hf sMUR;UmWCb_aQoS0EHE>aX9WYp2_xaa$0xa?fyOd;y85}Sb4q9e076qjmjD0& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..6cb5569008b09186511731c548a0515022b0f62c GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A{dDnBsO@$dJ;4=-eY zd0IbX?F;9SwY%=WuIThGuPwEJy3Gk;^z#rct&uBD|W&fR`0sXzFRZbb~Aedo1zHj|cnhp_z9xs!MQ h-^Y;iy_dg6GoCPGocw57BM;C_22WQ%mvv4FO#sV!NB95$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/polished_topaz_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..aa2d69e431d0306fc54b7627888db51f1c9bd4fc GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`ah@)YAr-fhB?Jl*mOcI->ALIx z$!jqe|32QoINb6j8$&K@_Px^orW@IMvdZ`(f7c(oC7zP4X1{C2qMz@-A6D>*>SE4n z`Tg@@>zn`a^R6}XDnuHa$arj)T_Lz=<~;_6-m5*c8B-jN0BvIMboFyt=akR{0Phex A!vFvP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/prismarine_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/prismarine_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..33966c3291af0b83c8fd21add65c5cf7e2d8c377 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0BJZqV>N?|NsC0rlzLT zrcK+jd2`L?CBZYACLUU2oEd$^QQ=qJIZ2>8#*!evU60u*Bkx{rm7GMb*BpFJi1*W>#kHoMJb{Jy+Iwrwv;!U&rUXf~xfu!9{)d qpMCPM)GAi6$RnEtUQs3iyAgVcN85TQ+YtH8nlFY0jJb=T^oW1V?5nBvoqzbuyL&`2{mL zJiCzwZ;wg3PC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..e098e0bb720d41c3b2ba7f6f91cacd30c6051a61 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0A_^aq&qAOr26}=jR+- zp0dx)rO4D^f~Ll5Q)5$8(=D4fPn$OF|Ns9bB_$~-DXywcmOwp>B|(0{3=Yq3qyafW zo-U3d6}M`9ni&r`@a%c=_HX*yxBH4+YDKFOrkVS!c_Pd0`9Rozb?pm>%4erH>%YHo zOL9Kn>a()D1^zs`v$2zVV{-Nb^*PJ->Lg#YUsf1l%fk>B!n8K`+R8kj=?tE(elF{r G5}E+;I83tu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/speedster_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..88f2ccbfd39306537f4c1afb993a4b100b50dcd4 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%``JOJ0Ar-fhB?Kl+n)K=Z(W6i8 zZ_cU}V)}pkr{&~4h6`aEp56E)vVk!r({FB&%@z~oKR)$mg-uKyX6$*vlzHd*vrqd^ zTxqa5yV|$+fBwxql0Ck@zW*n$lFa$MCG)a}F~h6$9h)1aJU7d(5L`6#9s|Sue>rNO T&*_{4TFv0;>gTe~DWM4f)*?pJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..7444fc3139ae3ca1c623f0a2133fe88cf1e5a0d4 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|9|*6@a#FSEt@wV z+~c=>jsLW1)8_VDmXwsFq@=jGxR{!nR`oX>0V-uI3GxeOaCmkj4af=gba4!+xRva{ z93#D;XDO$^tli9~Zb&gseAMUBV6bhLp$-GLi8+I0f+!Dg{7f~PeIRRlRN{gTe~DWM4fx#L2; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/sponge_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..c487fed28eeb8bca9333a012ee2a0d8e0f906101 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`lRaG=Ln>}1O9)JuH0jg*qeq|G z-<-w&?&I(MwY~N)*&1@@-p=Pdl)&t9m1mP=%Rx4VpDNjHw|PXBeLvqUjuSZBu|eV1 zd4;nHQo077pN)6bczSZyo#mHjPrBi=g?quaNy{alJ=dLW-n?<;O3g0Cie!eH=Pxhw zZI*VJlJ?~STb9ekKmY&NTl9(^_}jzG5X*ASr<8%g`QY>!jZFOqfzD&_boFyt=akR{ E0F=#ATL1t6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/starter_lava_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/starter_lava_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..95d5c85cefa1ecf702e10d45fc5f402d58efad82 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE08`JX9^@Y=`l1bGX;pV zeCT8Nzt-e=B7>Ec^^-CN0|NskC8a+zo2E^hCd4JVW%FiJQ&TNbtEHZ5FROymQX-gu zni)%i{DK)Ap4~_Ta*{k<978H@#rU)e9#9bAei!mRek#VA{E_1<3|>7$r{DK)Ap4~_T za=biU978H@)poiw9Z+C6bYSn-|Lb%6Gu-_qIBYoPWZ1ViYq@N0=ZEaktajW)BGb4kc0Ly{iwg0+njh{Vf_$jc&NY`F?*6I6emYnjKDyXe| z?QhLfYiI4~+dDVxzm%%l%iX_GGST?{Gs7h|`Ng~BwD}F0B9~@pR0Bgs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/the_shredder_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/the_shredder_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..67d092eb3ab8c69a8b30cdbb88904a1e32906082 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`8J;eVAr-fhB?LaaPdxMgd-jrl zlh;;jZsj5ji@5L`6#9s`5fgwk^fZ(f}R+R5PQ L>gTe~DWM4f1{*&L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..ffed2280296bc6a23c373c6619f757910f2d92e9 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=6c-mo%-2%xri6|NsBT zZ$EFn{#!0*dnjG#+={W}Ly$Qm8X0kvZbPR)#|sLdOnlU|7Yfb13ZG zfdjmgJm2m(aDaJ9bP0 Hl+XkKnYT~@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/winter_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..50b762271ff65177aa958abddaf4d0a0e3a48854 GIT binary patch literal 213 zcmV;`04o29P)#zy<&T$PlpRTd%+U-}m6#f0A7Svi0M)pMcWH z00lrOgrTSMW}ami`5mwp2rHza|E1BFXWaQ)9Z+XjT$QQ%snA6sED@L?u+ zzh~xP+kXk_&f73MA8Xwe5f78k3+T)M#K3?F>B0!I#9Y3O+L=WFdU&c6!oA2nyU&ct P00000NkvXXu0mjffdpJ_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0e147f55fdb9f9334049dfe4b3f931abcd144b GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0C^P`X!+L=F{*0Pu%&x z@bG^KS3i1Fes0eJpfqzykY6xELxYa*{jET5fTxRNNX4z#?t_9Xh8%~dm^S=g|HJM~ zYiHf2hSmy>tv79>k_4|^e0!+y$=$~+_x`b(@SM}%*?eqe{ri^Ez}S9owhuNXOZVKp hpB?Jqt9O!PC{xWt~$(695_;O=kcA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/fishing_rods/yeti_rod_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..b22da47dc8d637cbad5e4867665b41ad38036a34 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Atl@ib$?#i!r@pSbgX z;o<)^OTPrv-_(!Z#C3CJBT$;TB*-tAVdu`;Gq>1*TsKb_$B>F!F{ciS9&q4b3f#2A z>%ZvnIZZ{s^Ba02xTm@GD;;;N`BCn4aofGVmyg@t?R3*CU!R!r)JSu)mi|+*lz$)i bEaktaVzHx zBNwwHhx5f%GyTfX{yl&DqJr)QdB#r+@#i=Go;~quz}ers-kn+S;LNS(EN*F$lhh&- z#O(^0?z~}t-^MSMk)e>Rz#^#kLVZE@{B4Q3yBs!sZ~B&UxBP}JA48@(^XXZRlj?w$ OF?hQAxvXm%_M@IW^%?m%R+;jWh%lNdWgGaCAmQ9^8ck{~iN1Z&AwDoOlE*=A!$XF8O z7tG-B>_!@pljrH;7*cU7w}X|5$&lwjm}UIe|NW^=&T6?q|CpQ2k1`&(+nEq~ed&40 zS!Va6cCokQX6G_LskZ3f+vxG#!Qzj_dqu_uKT|ZT?N|A;OXk;vd$@?2>^}=VB`P* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/hotspot_radar.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/hotspot_radar.png new file mode 100644 index 0000000000000000000000000000000000000000..0232dfe3eb988be1779d6c3bc845e684b2126ae4 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0F%5vEqqEgM_&FF6HDt z3Gb$+rW-eItXQ!ED5b5f9Tyk(|NnnWOUrtgD$OA=)cb}@Atj!YtJ%1<6L#-mKpnmE|0X3*7$nP%`uXwCuHfOI|gj+E&)Z9!nm*0ou;s>FVdQ&MBb@0QdG}4n2(Rogu5shsG6}P$S;_|;n|HeASct)#WAGf zR z@Wz%IeUj44<2e%&1gv8BReuj%AT%-9S}VO#g3oTX^)}foxm>YY{BLFUuyQk ST{1wc89ZJ6T-G@yGywp~xm(k zYt{6e46f!mOGp>{X&z1Jy>TLS%9NrH%Qwsw@INTO_v6Af{V$F(*GqCZ{9w4J&#wH= RlLO=`22WQ%mvv4FO#q5_Y#9Im literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/common_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/common_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..25907106ba4f3ab4af186ce02564ef9afe777b18 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3&s{NHxwvhjicUI#^u zC;vAodCRbfAtE9|KV&;=2P;DngNDrnh6skPJrlx#su@dy{DK)Ap4~_Ta(q2q978H@ zB_Cj0mC*BvRp3^t<&?ss*~~2mcS|o*Yin#YWIWQ5k|4ljY$Q2j)`6Z(9+_bE28rWp u21}YGZ6;pUQM|QGO1{Cs;<-XJF9Y)~{_ot!w*LYe%;4$j=d#Wzp$P!C07Ga1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/festive_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/festive_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..33988da63517dc6fe6efb5a233e0a5378b7e122d GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C5fR@syy`2Qr^xo)ZN z{}b1XC{(fV0>w=%tj$+i$J`5d+-;*Z$(ScnxyJY4bD#ucNswPKgTu2MX+Tb%r;B4q z#jT_Rj0~YCT1A-*cw7S)UH$X-_|m!sv&uU;>Sfpd_i|xwdRh9GQB|&J_jiGVQ!{eC zHD~yi9uNtQdvx*lB%djlTQrLU&t*CliEoZNd!+V|fUs%s#=G(p_$GW5NXt*Gvvsv- eO8ut%;E8w?Gs_y2N}fKT%?zHdelF{r5}E)Y3Q}PJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..80b7a301a9ed1c1f1d64efa20aa410b252e218fc GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F$QyTv&${Oa2;iA9wi za~3b#eRzdV;{QE2{{R2~CVIw2hg$VrOa1`WF_r}R1v5B2yO9RuqHN_4GglZ>> z1T7cxo^bG}sNgI{Lr=wJDXIB_%-b$VUF2tK-nim%t>oFvw7%Wy^^A|FGN~UBP&^5= OkHOQ`&t;ucLK6UyP*o8C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/hotspot_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..940311215895320cfa8b80c345e47cd71d96a83f GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A8U5`EF3_UhX&|7*9r ziJtNQ|NmvX5C7kD!^Fb6W6olrf+At-85=e40$GeDL4Lsu4$p3+0XgZOE{-7;w~`Jp zGK8LC6>2aLaK7ldD{SZgN=`n>zw4P2{?1B`SIpMsvw3@Ls>JpcXC*e~C0^CsD}Vn0 zzd>4`^MVx}8NxHnU1q61JHn`Euy$foa9%)m_q}iGZ+9s$&i=N=Wyzl3ORUX%J()d1 T`Qsl0tz__Y^>bP0l+XkKVklHN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/icy_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/icy_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7f5f70d0656aea8e10930d6e79747a86a7cc3f GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0AW0`ENG;zsIWoK+yZ( zf98q*m;V3nm~xw)TXFl$rOG=#fTqoK?BZi*}Zh rGKoq4Z_eo_e)#j^-43VczgdEhYiu}m?9O?h8yGxY{an^LB{Ts56TNAR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/junk_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/junk_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..770e4053bb6b5bd67026364d1b29bbbcfc5ee8dd GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E09+6wlPZyOj}u=cXWPM zp}WtN7KfHnpty;Jb>NcjK3~1ibh*gY1~JV>r`v5;#v2q_Ya1&`hFU5qX9o!Z)iIU? z`2{mLJiCzwQ0XFnu8lhhq~sG&z5)-ewm*v8s{P((V0T zLxt3ywpYCpy*nKZ7R{O<H BUK{`b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/oasis_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/oasis_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..c869cdada96d1fc4dc79f5d9d0ee31c271643de8 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=1hioquv~<)t&TH?FLo z+Lz&VP_#GCxx6T}I@Xk75kroTHERcJgpKZj6D!Mssu@dy{DK)Ap4~_Ta)Lcw978H@ zB_CkBQKax?qiH0&gNgsGm0M#HIPYy;t`HQHF1es5ijB>UU10UBMn{e_GtM5k!jkqT z$9SvFl|Xk_Hin&A4^3}`%qr>mdKI;Vst094#Y AQ~&?~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/phantom_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/phantom_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..3451db261dc99c1830d43335f4e0f755a2e265d4 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9adOI*&E+-UlLyC3gl z`42NJSW7t{rmHZhYZ%)yv`8=-vaql(cyW3aP$^?ckY6x^!?PP{Ku)lyi(^Q|tz?G= zW*!@XV=`^V0>{o+2CzMrVdQ8|KgYP@m9ast6c5iCZU-JyHnw1c!@Z4_+A}5|Izopr0RPiJh5!Hn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/prismarine_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/prismarine_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..6e71f740a4b6ad88a64d42a9a4209cdb0228823c GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ETV@&%Gt92HC~tly+) z{cqC0|MJenLu-~?Je0j?vU_)Fu=GA*pbEy4AirP+hi5m^fSeRh7srr_Tczi=GO{=b zI9=Ro_+tN^;BPS}{&i>6yKUNUx+spd(7daoLSZ~ zeF9I>9mmHKZ*sSmz4Enw_BV9eGzamLCu`rQTQ7V&tt9UAz1i<7*^W7~vA;6^0dhTq Mr>mdKI;Vst0N&|VPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/shredded_line.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/shredded_line.png new file mode 100644 index 0000000000000000000000000000000000000000..691f3dbdd54f47744ab7a13dffd1042870af27b0 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0EsLpwrCA5Xs2!*dqRG z{-*hi3`;H^YTCNUy}MM_)ygz4w%ulDI8Ys9NswPKgTu2MX+Tb)r;B4q#VyyKRza3P zj-v%{_uv0r_D0%QjiG!eTXyrqck@qmtjqc?x9*nF<5}Ncbi^2O&-++w)N{xC=dR=$ zwoFl1kN%S`p{$u)hKsjq-tgPN)qK}v;arxLEZaQx+3)avD5>=9VXBq!ZZ450>$4PZ aJd%%|&tlOR8fOo*oWax8&t;ucLK6VT=Tm$D literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/speedy_line.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/speedy_line.png new file mode 100644 index 0000000000000000000000000000000000000000..285c2cb7ad3bdaf134094ac1c3862a7fd557253d GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C7aDdd;((s7vP8MnP^ z;-{@UkAM99d&-Pu$4=cYsqCD@ytD#26Z0}LEa zfd}9HV?JK8?$f)|ws%k3hZcXIe}zZo&d1tME?c7?uo=gOoKof!xDpe)!u*-L6WuN??b!Q%wt&HTBe%Xr zhnsHM#!W#bRc~3>FuV=&NY-UhiFUD5@3=5YVOhWLN)hi!0Y*+nA9ttU_ZCL~V@_pZ V`qZ=dq8HFs22WQ%mvv4FO#sytRlNWJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/stingy_sinker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/stingy_sinker.png new file mode 100644 index 0000000000000000000000000000000000000000..d3db9b77b261ae7a229bcfd3dc74367d65552bea GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0ESSEtTEyOz+h%=8l~} zu8D>9jg|lRG`(J)ey=&|LX^jPZ5!7-paf${kY6x^!?PP{Ku)Hoi(^Q|t)v5t456nP zxttt1S{{acUupb(fBv&15rq%+7AjBI3;xu0=s586tyjmT=xxS{YT6w;KG}TAyyoC^ z)%}KH(TU9o(^l5;v1?6ETg4*fwkj&(z!&d;r+M4>bwg6`mvx`{_wCX%X|`3&e@`EE Q2U*JC>FVdQ&MBb@08BDeB>(^b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/titan_line.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/titan_line.png new file mode 100644 index 0000000000000000000000000000000000000000..6f724461e1aace9cd58792b44c9cc2bb9c18bb4d GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ER<3o&Lh3sx}3=@5rUoC!>0#wRa666=m;PC858jw@$>Eaktam)2= ztDrL@2Xnw4ha2_xKG`m>Y`-w|-i7J!PMzuBmDO-^&UR+@vRI?Y;H%xdyHwd{Y!^Ns zBzC}j#SI37%7eN}N50H1xPI39U>#3~#_z8!<%iC5uF)}>ozuhaIQ@^$%{u@1neXHp gnw}`;+~xSoI3zopr0CQJb;Q#;t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/treasure_hook.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/rod_parts/treasure_hook.png new file mode 100644 index 0000000000000000000000000000000000000000..7afc467013bedb16e227c6d78fa80d52e9964877 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7F2Z~yx>{?|3Hmm5Xz zOcUOeBG~Q79Hb_k6;W?Gyrp{b!Jj1ZLaWTu9x}z*@A_mQ?i)LB6 k+}`wrjib4kZPQhTi^V)YmcH6s4m6j+)78&qol`;+05=Rl%>V!Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..118802f738b525ffc9e0acacd73aa1d2796c00be GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|9|%E*^2-FuU)&g zd-rb1|Nr@K+>NU^&ah;YRlr1JV`Bw_cyV@5K0ZEn2F=g}H*ugI#*!evUbP0l+XkKqFq&T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle_empty.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/storm_in_a_bottle_empty.png new file mode 100644 index 0000000000000000000000000000000000000000..431fff39728b5884350c996c6c90b5a5e9089098 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08ueHokW48Xq4Y!;($A zckdQw_he_#l>Gny*|TT-H}3xb|G(oFcNb6{V@Z%-FoVOh8)-mJu&0Y-NX4zvGmTsa z6gXNQ?p{;!^WS^xZOMllSSI{uKAO2{>)y;YMH5Z5jkG*?WNzeb`0K&6f5m36TbEs% wm~IH^WF7p)xZ&CDf2J3nmwXTKsA~DeHf=6rVZRtlDbRQZPgg&ebxsLQ0O>kRkN^Mx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..fa04a3358459c4211f924aa6f575b2d996204a16 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0E^DaaWw(lbu0R^8bIU zfQbqQ@o^Q$SN#9auw)anwe2pT3dWKkzhDN3XE)M-oG4Eh$B>F!rRN-loDDgcE-$cE=`>P|g^`y=6V0 x*?knsudpjghZa6izq$MT(n&VcxBYz|e>9Qt{)@#6w1BoSc)I$ztaD0e0syPSN6-KO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle_empty.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/thunder_in_a_bottle_empty.png new file mode 100644 index 0000000000000000000000000000000000000000..1859e7fb83f67088fec5d7acba6c7a44084e5479 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0E^DahIJzlVQmw$^ZXX z{Qob`?#b>KZVr@SED7=pW^j0RBMr#$@^o*y$)!PC{xWt~$(69CWvIQ;+s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/umberella.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/fishing/umberella.png new file mode 100644 index 0000000000000000000000000000000000000000..428f8ad5cc88d3c1bd6051b7dc04f6451cc695f8 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0B)RRclUhZVNQ8FwvOP z649Bip5Z6wX(no;qA=^yj1xc=j3q&S!3+-1ZlnP@NuDl_Ar-euPqZ?!IC8K!CbUic zBmA#!`|h}oot)D38uz3^;k=5@9YetHUw=blZ- zQ&%!hIzB6Aqh)`?`(x^7Sl9SVWH-vMHJq`(<>wl1r!pq}pCuvpfVMGsy85}Sb4q9e E0HpLs)Bpeg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/abysmal_lasso.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/abysmal_lasso.png new file mode 100644 index 0000000000000000000000000000000000000000..34caf0e257426c6e73d1f4c1818d45d6321a9443 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0nRbaNUE12T2egAAfP zbUeL$96}Y{9PIq;)vYXSZS<9mbj@a6nR)@Jl(8hpFPOpM*^M+HC(_f!F{I*F@&Ps; z)>a+|lg%3{cN%pZ)H`z^z=ZL{0~4kqn?{~%C%Jg$OjKZd9-=CozhT>nmwKBI_As=~ z6<*+`Yu#|>0mCI*1esy3&_-Q3e_!` zq?^-VxT#pHJ4EQ-p}_xtumAX5du+PHggUFsy90Kw@Np3m-moaHPSV6a+9#K zu=Vuv36GJDUfsb0lw&Lj@(X5gcy=QV$O-jyaSW-rRocbK#mvZYcum&d|NZ5nj%HZYdyEnx6;^>bP0l+XkKSsXm_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bingaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bingaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..f84538eb7ff74f82777ddd218f7e5f75b3bf9584 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3SL|L59%o^!&s&UEz* zKRM2@ZJuVL4EoDW7}_-CxNR6x8D{6?0M#*;1o;IsI6S+N2IP2px;TbZ+)8#}%#jRm zTNJ=N{an^LB{Ts5JySRG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bubbles_of_air.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/bubbles_of_air.png new file mode 100644 index 0000000000000000000000000000000000000000..6736ff52732f4abb49021fde4faeae2b0ec93c94 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=64Ye>(H))bbNcXDplE zzM{3Nw=%XkDIhr}JVw^rUsBIN=-dspdZ0SSk|4ie28U-i(tw;0PZ!6Kid)GC*mk6y zi(*JyA=S>-EO~2nSw5R_gro%10UqAs?I{9hZ@jtoFpVK?$?mO<5pSFtQBEhoRPs`wwh70R4D!BAwfH!`3#<}elF{r5}E)ZOhtYG literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/cursus_ferae.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/cursus_ferae.png new file mode 100644 index 0000000000000000000000000000000000000000..d96ad6e5bb4b227c5e5b8513c35c03f9ae8de567 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cjUjOmA_THhu%ew=1 zukb0Dq&uO`DyP9PAXCRFRJYX7ELKL&MM#)sdO{gcHDgJTUoeBivm0qZj<2VSV@SoV zWCzAOlNWA@P-{7uQNniU#=^bEjAtSWe|=#wIQ;6`yuAWDr><7yIj3`vJHhP)O9zX) u)s;JDD;QQkXXJQXaxjzQu^zK|7dJ!UA7NJwaU(^b!3>_RelF{r5}E+!xkhsU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/decent_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/decent_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..a27aafad65a1e60a20102071e710ce1dc9d72003 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=7=|P0P;C?o3xNjZn-E zl+W;!b8&I;G!r$~6i`!B(~#purZ8cC4V@Z%-FoVOh8)-m}y{C&~NX4yW2gWz70d5N| zLL6?$XeDUOU`W$337N%^R-ha5t?9&8-$nxqrJZ69EDc%*m}Uk%jw<9dIFsVQ$`Eyr WN9&BvrHMeJ7(8A5T-G@yGywo+6*!Rq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/entangler_lasso.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/entangler_lasso.png new file mode 100644 index 0000000000000000000000000000000000000000..0e3eed50d8461cc4ac1d63af8e7bbd84a61d6f5a GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=0nRbaNUEyM3(!GIi2} z4CedSmgIh(Zjmp~1SB|(0{3=Yq3qyaezo-U3d z6}OTd*fz7OHE6tZa$lS!ki4sUYM6!kgo8`Z9oTS0N+p!*$qr`8InvA$J5D+BBwoFc z8>w*BXS4Y7x6HE-pZxHP@yZEd?gc$U0?oV{0<2*Z1BI#?b@u%ZW85UnaB!{YT#vTX R$w0dpJYD@<);T3K0RX-fOFRGo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/fig_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/fig_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..0d62bd1388478431c1bf6eb5d2d89a74ab41f17f GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=15bJnAc~I@8rNQ*>fN z6*K(gJiUB8+@;(c>^y8mtSoFj%|wlK%{1h=r@no~3e><@666=m;PC858j$1e>Eakt zaVyz@QHL?0ZLvm(!xiR399+G648~$R&0-mhcZ5}EI6T=F->UIw=IN~rXDt3SFe*)8 pUnan`rYfLu0&BoAEw&H_2DS%$Q(gw{v;rE*;OXk;vd$@?2>_;CId=d6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/figstone_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/figstone_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..699251e35aca9775c0014935fdbe2f729358fbd2 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=15bJPIc1)>l~NG#F;4 z=mccy#Dpq(dihxSsCl?cxjEQ**os(L*c$1Ytq3}P6R3f)B*-tA!Qt7BG$6;v)5S5Q z;#RT) v{FNO`I0a^1zs$MnspBl>86W!?MHv`=CkjpWTYohJXfA`NtDnm{r-UW|*6~8u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/hunting_toolkit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/hunting_toolkit.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d3bb6ece9c94f7915209f00f811987d4576fc1 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3HSK3%hB&DYY>j*gC( z0RfqrnO9X*wup#WSy^?mvxhS>aycF71FB;z3GxeOaCmkj4ah0+ba4!+xRva{D9gQ| zr1C10L9CJpS5oN|t9NC*Ynd)BytR5-yPL5NAMe*F!Kf!^H=M9AvDvanb#`Lnzbs?PWuiMZn=;tWWr})gIY=GxV!V_f cHiM0!;=k%i`xg^-1MO$n+a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/jungle_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/jungle_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..5013775a2d9cdcd15cb6778e98fd7cf2668d24a8 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=1asrd2Eks$(n(@(X5gcy=QV$no-YaSW-rmF&Qn!x`YV zNg~AI0*{u$qfmx49}~}e3~2@Dj6S!V(7n%;Sdd!m$8ga{mQjF{H+MzhZF7f=JYH4~ iv%8?X6VfIX%UP$QW7?0akD4bfm8N4x^xiQ_CRZB{tXZH#C% zVn3&fzySl5KD$0W0lfcy|I0v4tuN5`y<7{Bg24+2V0RxF=+?`4E#P1f=LfE&)b&80 zWvmPW4C;M^^B`k+>Vd~z-ydgfgfsEL;IWCqUi<(0sxZhn%)$G14*Ud#if}d_RCu0) zv>*SoykBHYk201;odFH_RJV~x`O_MYcu9`}Mm|foxR` z!~g&PTUK9GieJZRQ^&00$7WM$4wPUl3GxeOaCmkj4akY{ba4!+xYg6`$alnmgE`wL z_`!evxH%k8cNIHSEUEl=MC!qw-v{m-bWA-xRGV zUkx`iDR&3?#1LI?H_eO~lgqmU9-qm2f3xo9p|}$peP^~i?q1dp8O)JH?SsapjSYGqaWU?xGblKqKf9K|XDQeA)C;!*ZoIWMQ#bo9GJ?g*fCS6dv z*~L+>eO)KAZ}a0#@BL5zWMFH}S89sr+kAM(`~G{`3|(6$+Rxpekb3vLmj35`@Arxw zdf}w{Q`&La@tZHbSe^dtx+mYH>V2H~)RyRElyRk(gP!AGHzxBuop3XTwW0N|Rw*7h)XOs6EyQi>|8I|5kM;V>@bEuonA;uT z`QS*e_`1gm>pz-LyFOX^^HOQ={DkEb{};cU9_jMcy8e=p`o-Vqc-*B7#*GuNVUmELvIoQ`Om~VH%U;f2%{x6r&glDW;mCXH;L0si#_mzo2 PLl`_={an^LB{Ts59=h?b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/mobys_shears.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/mobys_shears.png new file mode 100644 index 0000000000000000000000000000000000000000..76647387b450f4d179425f353329e095e4dfbcd3 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07i~E)fq1u-dxG``#}7 z=`$PtAIRwmYFU|j>+Pu}=j(Ozu1EkCF_r}R1v5B2yO9Ru_;|WFhE&{|dgdr2gChs? zfi+Ao_untAzW4NK!Vfuj<9*li;@Hb>7tY%D_D$)G^n;6MzM7t_Kjqx~ez}5o5-Gta mt~a#3=wH}iJ; zS6=`4T)TUP&xAUw%ew;#Ch0nb>IP)$lp31F%Ez-@s> zh{FXDErpaohBP0OvM7eMGjkRuaZb#R=SeI`DfDaLUqzYOv@!yLdUYc!YU?I@#xW`tJkdV>+8$N$S8^uXas6zED7=p zW^j0RBMr!@@N{tuskl{o;wmGvBL_oZPHXXt{nxp3?mWwv`*Zs4{qudwFAIO?@jGog zoFkv2+2eOyP~2Olq3?y*^Ee*i6(P%Z1j!pH7V^%}Y-CTE`#h>c*yg|nz0(X#EuU3R z{ODnvuvSxgb;mX}PNlVh*GqHvvZr|3Hl=@>!QB?d@jplTnmEu644$rjF6*2UngG4T BS^@w7 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_basica_set.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_basica_set.png new file mode 100644 index 0000000000000000000000000000000000000000..120310b70be7d0c52aa112e69dc97fbc5dcd30b5 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0Ff~_AaW-)7I8@v5=LM zP|r-!32{?%NUD&~vCN#jtiHl3psYP6RPpH1qpR1f?(6Hz$jG?Fr1A-+373 z%=7m4Ub3j^$f0EwWzqNU9Ig>xFh_Ccub=N?LKU^Owd*UaGAAzs>XOj03@B@NNUD&N zP}gz^UA<;?Mn;BE>ERTh9Ain4UoeBivm0qZPKT$9V@SoVqywxBzNc7)TogGP9&Y?R zmFvV`{awezeE!NCe2%{wwX*!#``%lhFHB!^aqf%ACCf!lFXPYRUA2=fp=Vy{^{rtn zG7tJB<|ex3NKg8%7o5r5an1dM<;68^A#4@TV;FL_?sK$|KgA@VqBe)?RD`0#N>(Qg oSD|;&o|cKX6fD!OFU#M<@KS&)Y)3O^E6`00p00i_>zopr00{?e)Bpeg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_forta_set.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_forta_set.png new file mode 100644 index 0000000000000000000000000000000000000000..48e1814fb977a29689da5d190832aa40d6a2fc11 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0E5}$XLB*wU$e0UteEQ zWnSjwWdUXFOBOX9Ikc>zEc)J^!!_ay<|yv`_48d!sG_#Ec727Fx3@P?qeD`KoP@fB zj%8+wPKcYDi-qj&{Znm$5{xB5e!&b5&u*jvIc=UUjv*Ddk`Ay+F#4Wh6=F8zaJbl6 zt$XUPe$z*7o-HE~?C1 zy=HY^UtdN>hD;>eXP|M6B|(0{3=Yq3qyafio-U3d6}L)H98El6AadZsF`t9|zx|_} zB}*<>|I`otTX)Fj#p9ld{7yn*hLck`76=vZ-^U`mVak$A{$B;(2=oUjeXV}Ss=G9T z^Btc!Z-?bow~F}de+5cB43Ftl%zrMOW0*SQf%z@AH|Lrg?wh^8(~?`mdKI;Vst03Wh#`v3p{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_meliora_set.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_meliora_set.png new file mode 100644 index 0000000000000000000000000000000000000000..9b586da4f9b45ae0a0e52e4ccaa73ea973523da6 GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Yk*IPE0A`vkk!`K_V)G;aZ}4o z(W$SnTC%9=$f0EwWzqNU99Eq!V0}m_CRFj)&v!?U9+l9sbV#a@lTa_J%v-%?bzfg! zMn;A$-W4;ubJ*n{g?uAe1>^kr# zTy4puYGE0B2DT?tf(-Y(|1IrwidF26@kbfzM3>Gg>X&)Mgpv3iN)<{WVwL YS&!oaXUMPpK&LQxy85}Sb4q9e0Ax97)c^nh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_robusta.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/retia_robusta.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb6b0e7eb73e596cfbad83b5f24df1431a7011f GIT binary patch literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0E5}$XLB*bzfiK(W6Iy z{d{-t&fz16mMvM-R8bZUlyyj|&~gctlTZ&RYnRZm)YjH6s?78D_KpcvREk)oU9zpd z!Yaf~Ei*;O#X{EYM@%PB4`WG?UoeBivm0qZPM4>PV@SoV(i0nl8XS1o9{v@!5#XpQ z+4ukQO=~m0BXb_Vh}dzr?$7ik`=6(|?l<@S=bT<%Jb&Mb_BG3QMaJgVvn|>h8K-_! z?7*iBw=TVYB$4n&t-Jp?Ly*WG$%z&-JGc$SPy1+{`hC~pq*O!pbI#_q(Py`=dvdN} rnT3e!L{6p(Mb8IQ^EGxIXQ*K+?Ut#mS!Z<<=qd(JS3j3^P6leFdVSFp04ij ze=3{Dr_`G35}$Qn&$;4#?{@gngt=SePM>;{(NwIHw!>n>wH%$(5-d+V+}CQZs9XGe z&aGQXF+wY!ToaE@Dtao(9?xnxn(kweSw-8ua0=exeXzN1Hvu3ob`BO@awRI$FoD#T4KGeyV6 zLU!XDLy!%OB|(0{3=Yq3qyah2o-U3d6}L*y9A#v72tHujDlf%(!Ruvf;VZyZ49FnGH9xvXl~l`uQ#+1_BYu9oKbx5j^lTeq? zv5dd)WGB!R#*!evU~b7;>~e6p;>p^3VNl<2ut{ z^|gvh|FZ5ozu&#$|I5O8*Qdw4z4lsX)0AgBufMkVc41m~;gk)}jSrobe^4qDx!UTC zl1=96vb9GQF0Z*7XWlZC{j<$Q#)!5sfdvybEHuq#aOhxV=n)y!g8b*{>gTe~DWM4fAZ2e( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/rookie_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/rookie_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..c93e953f84559733e20d11177ae3227783934a94 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=1^4tY~U#Dk>`KOjnPK zi_7qnb9Zs^G!s?S)7FsVp2GR34XB8*B*-tA!Qt7BG$6;`)5S5Q;#RT)FVdQ&MBb@0O;vIiE9RSiRC6+fWt)EggpzJ-v!1n-@%A zoRPRAYpPL%!|LR#j~En`PjHzopr0IA|S#Q*>R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/sweet_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/sweet_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..9b483ba0cd823dffb4e043ebbef7f143ff298191 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0FeRvitFP?Td>u9-Qd* zS!(Ms$I5e(ZD+bVQ2f7)_FZw+3_rP24W>B);+|%rF6tT~oO~K`+{xGH%miv?Dhcuf z8df&>tObzg>FMGaQgLhQ$!1ZOKoRB(HPV%Tzwa_*`>t`Ier@fSIk&5?FI8-vZpX{M z=dft8;c`~4a+ThteYt@qMFw&?N*dBN^{zmo+D*-gF&6^k+wC)AR-|K zE_CwtQI?))7YaD4t}I#F-E)2WovtG)e0hWdS7~>D&bL45I^e}W&hO@c1`Y4spzHSb zbUmWDmn!Eda0~73KDvUV{QaJv!=lCZfHv>x`v5UU@S&W#fGz?%M+X4K{eA=!lO_kO z!r*{dBXCAg=i=z9U}=;C_*L)kcTEITw2NSv#Gvq{X5pzqSH|ug(DlFzZiZ0h(5PJ% z#_u3s<$24Tzsi`0WlV=bDRZv5cB4oLPyfVqYuiWSKiwETxFCSD)NagAGZWj^E`rBR jCX>lzGMP*!lgXH0af}e2Vr9+P00000NkvXXu0mjf`NqQm literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/treecapitator_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/treecapitator_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..4160877443b67e069f63153fb28129999085fec6 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9QbvR74x%rEq+ja91% zG0*T*$Z*q-bdw6TlJ_+hcQ6yuli|`6;X+{ch6vOVV}L)w)0-_Et2n0uEo@xz&?Z60%XF-%N|;Wl08 o%IH*F;mmr=%t3OuWB?;Wb0PnkTzBVFKr}1A7BmpqyK|{iN=Js zjRhXc5g}9DI3AZS5e`UV6|nky{AHE8!VzuWBwo=>76pZ~3=C#x{c_ei*v0^jVDNPH Kb6Mw<&;$UE03hA~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/turbo_fishing_net.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/foraging/turbo_fishing_net.png new file mode 100644 index 0000000000000000000000000000000000000000..cfad7b41090ec810a88e39ec7f6cec0fb4f66d8e GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0Esucw+KdG;_54o;=)^lCi2~!uLx6WEB)+)bR`f92=uDl3(-ge|; zL8G;e+s;+&XLxRgN~ZmF`7oFJs>PF6&5}R2N?!{2tsxvF}SeL6cNbZiGZ_7UM_D=Rg4|<+eGo)$wHF#{8 u;n-W8*Kol{h#RPiQ(K{@oJU4OkAXpwOC-4Bu~Qb%UEaktaVyz@H8V3aVU}-zr|hACAiV~o zQwz0vxD;xVlQ|CGxWRf#L%)4RLEER;1wwjy3j^2!SZ4?_J!zJF7|?xlArr#`BfiRV S=c*o{fefCmelF{r5}E*b5IS7| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/anti_sentient_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/anti_sentient_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..37decf3aef3c0898197816eb3eaf908b056fe1b0 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5%Q?ccR)SM{}>Q>RW1 zoV}qlUEMi-LR3^#hM%0Sd5))POYI4S7pi;(?AirP+hi5m^fE<5M7srr_TgeBw zyquX2nCxD-;iaEJ_SIDnWL7*WE9N+ByL=17nHyyZnllbAI=n&ROhHzIL4=8f#56sI tl^F>M511}BnFSb6lX8$;%@vT##&F}QV4gTe~DWM4f()Kz- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/bingonimbus_2000.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/bingonimbus_2000.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e31afc123f2cd31e84945ebd3bbbce11155c62 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3SL|L59%o^!&s&UEz* zKRM2@ZJuVL4EoDW7}_-CxNR6x8D{6?0M#*;1o;IsI6S+N2INF}x;TbZ+)8#}yCW>+ zAmV=fjZg137KQAhwDyex9S3(-r)^GPcDZVn%+YMSE0Xz)Mx;S9Q-nfSqMMpaL*nzi z4GaNaSvD|S&{?pqPj5mbZvvkHL+4C~%oGL&{cnEaktajUe) zwTab$<7n5m6MxTJ_y5ehse0m9=dInZU)Aw_I8&_{@ZoN_sGwR`*RDC;zo(q}!=Lu9 z<4lQFRnx8+oQ8Sl)|_Dvo@dZ^VETL?*8L(HHL;cg&(7><&(k@wuf@9X+^mdKI;Vst0JKb5od5s; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel.png new file mode 100644 index 0000000000000000000000000000000000000000..9dc4e4ce5ec7bf3fbf2b8b6e1cce0307dcc80cb1 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`y`C4VyYtXB}lO&wquxOrHOma+&%pHaW79aHl1VWeiZ0^##u~UKB<8sdK zl@In`o3!$OEth$d>BJ>JgB9NYSD(A-fB6xk3392$EJFX^Gh0;(F*_N1)`?BO%$%hX wXl$}dfzhq+>;(-bck!EmdKI;Vst0JS$rYybcN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel_anchor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/carnival_shovel_anchor.png new file mode 100644 index 0000000000000000000000000000000000000000..0b6f30176e63bde68ffccc7b26681d61dcc4f735 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`(>+}rLn>}1OGG(j{r>ddz-QVs z^Z);w3%~xiPjL3Q$a9(Fkb>Dqwhg9F517u1*~w_mpy9WNo5e*`^YWTSubD0}7&Vxj z-8P%+U$*YdU-y?6C`Sl;&a!9y^soMs=I?rU9p;yTX6_0f|JyB?tZt}aGWkh*p{4Bt zHz8AVQ`5ifNfix^M?B0Dj&_OufBfiC!>p4m4rc|JUvM(CvNe}q)V=u)=tKrjS3j3^ HP6+}rLn>}1OGG`$VSipPq2~Sh z|NQI&KVFv_Z%|y4(U!@QC@{N%S?%}c1E%-llv&IfH2n5(v$%+AUS6~4HPa;qqXv_+ z+h%k9%hsLw>;Ccrf)eRL)CO=6pw6tB| zCS+=EYWkNwsiL9rh=*Ci(Js;dj~_j1n01oH;j94j3r+?D^_rD!O$!eIoyg$n>gTe~ HDWM4fv-?j` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chisel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chisel.png new file mode 100644 index 0000000000000000000000000000000000000000..bef941cc4bf3fa713fb9b0e407a0e25a92001161 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E08vF=yDEOTUMIo>+5Q5 zZMJ{Ux<&K*rcQ22D!D#m?Td=;AFQHt?g7;?mIV0)GdMiEkp|@0c)B=-RNQJkv6Ye8 zQQ*LV)HnO%+y5n}D(^Tt`Dlg7?+TR~i$gMN>dQ@EKhSDD*eiee&AS-eo{J0?zpnBh X(_ze7_OKxfXbyv?tDnm{r-UW|&w)T$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chrono_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/chrono_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e7dcffabaad341064b50842bcc8c8133b6303a GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=72A?V37u>Xftto$2a% z!P}yuqB8vCLX20s>UVgWiE7Aki^&;Gox7zNsFblJ$S;_|;n|HeAjjX+#WAGfR`LO^ zv=Wns%yS8sJDw(7n`ylEUckwz69s0it~$nIkbJUDIDu`l$>Bf)XG6wA2|~#U7KIE; tlo}fw**&D)ozGebGNjI#*^p(-FiTDNU02%QIY6TsJYD@<);T3K0RY7#LW=+Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dungeonbreaker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dungeonbreaker.png new file mode 100644 index 0000000000000000000000000000000000000000..c8a8f78a1a757577243df7f42f4527a71d443a4c GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0ESRwr=F-Utnu{C?X<| zn_EFaL0e19($W$rMgS|BJgPbUpTdZl)ZeIpaiI2gjQu8V-j;9YZ-M9A4WWa{27t zB^OKYKYP5fSEu{MhkZN3&V7D9U-MM0LC&?3-TRkRR{fvP=VPhxL_fZCFY{z={Vzg5 Pn;1M@{an^LB{Ts5WOPr9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dwarven_metal_detector.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/dwarven_metal_detector.png new file mode 100644 index 0000000000000000000000000000000000000000..04c390d64069e025e9a128b4c2ac96d57d4401b5 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6!aQ9ZLn>}9J!dG|5WwSnF=9oV z#flz%?x{OCQxdZtFueWoPT-G4*RHc`PbJi!y7bL5Shjdx*sISgry4&iWS0MfW|Nk2|Zfv>oaK(xh zO-)TjMMc4hB}PU@%F4=uf`XfGsA~fiF_r}R1v5B2yO9Rutnzem45_%~b8h3t!wNhN ziFa2wyb_(K@SNAE+1wybb*;Ch=+c6vMwj$%YAS8a`DZ=reG5Z@a>z|l!Ma=q6$Wd| zHKNSnzAo%jgp{UFdD0|tJFqY!Ii*i?%|7PrgteMhKeYLt+Xq=D%sDQ(z03cd!`kWb zlFuGmH`=Z^`f9>$7R9m&R~PNpKbxE&Sj8Rnw?$>iO+%w;y^m?Ie2jiEO f9S72#`4|{tvcp#TJj#0ubTxygtDnm{r-UW|dOd8B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/eon_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/eon_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..69ca15fe67b427cc321dae47c37edf2760d308b2 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=72A?V7aW!_=u$(~7Tk zrmIIqMY#s<%2UVOJBHLZ^BS^@8A2F@zG)rVv=wMHgQu&X%Q~loCIBPJMNI$z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fallen_star_tracker.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fallen_star_tracker.png new file mode 100644 index 0000000000000000000000000000000000000000..69e35a10dbc6718905603eff4d2fa03572a605a9 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(a1=20&UcJxwnm*@PRL15l zN>4hpc7>@t0^9EBS(AijB+e0A!ZwjBRGU?s&wDk)B?nE7vj-TL eDDoKeGBA8O$3L~*(VYWmFoUP7pUXO@geCw&m^yv{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/flint_shovel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/flint_shovel.png new file mode 100644 index 0000000000000000000000000000000000000000..eeb7333313c905fac16b5f314e6b358d1157cb3a GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=1^4tf;TA?@U(@3k%Ee zle4w4@iY_F)74c{P|%R$=HugA{QLb4pgP8qAirP+hi5m^fE*i77srr_Tge9)Ez+GO zFHbUaU+&?DKGC&0Gb%gn{|BiD)sQFE6CC5+4=4UC}+WYhxoFr0e8WDIo2qHvz8 Um8=_ufaWlGy85}Sb4q9e0O%w!-v9sr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fractured_mithril_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/fractured_mithril_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..5aab5a16af69ba35a592753057b66a79589adea2 GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3ePyxn;7!R7O7HmvDs zS+cJ)UEMV_H^WcP$im;#OjJXT``r7?tw42*B|(0{3=Yq3qyah3o-U3d6}OTPa5*_M zEAW)LP8Agh+xaPH#gfgOEzhzzbs3DO}1DKIj;n6p^8!BK&2 zLG~TC$bgKFg{wuz#Ja9K`fDq(Sh(gdKbh=XhV}TX`__TUVXu?M>S!D0!Sge*J0x5<_h4%6%f0&^sDi=M)z4*}Q$iB}tx^>K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_amethyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_amethyst.png new file mode 100644 index 0000000000000000000000000000000000000000..5418ab45ba593e25b58d12b2bbba7dd7058296e1 GIT binary patch literal 80 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;+`&!Ar-fhCDtT}#6*60Zy&2G c!@8J(p?C^&(aOphEzopr0Ifk3F#rGn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_full.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_full.png new file mode 100644 index 0000000000000000000000000000000000000000..4d5a28846bdbc0ebc36f35235dc14208b09a9296 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0ErlB3P=y^y`|}|Nq4= zH;VrK8t=K(QhUbND+~Uena1$Hjp1CEaLe+^M}bNiOM?7@862M7NCR?`JY5_^DsJU; zb8gTe~DWM4f2s>1J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_jade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_jade.png new file mode 100644 index 0000000000000000000000000000000000000000..ef84175b7d0558c84aa9d01afa1aca2c9c622ab3 GIT binary patch literal 79 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`VxBIJAr-fh9oQEqh*aop{bR3W bYsbalSjD6sVeBpeRKeis>gTe~DWM4fZ^RMC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9c4105a7d00acfd443557775bb9a3551b5fac2 GIT binary patch literal 207 zcmV;=05JcFP)kdg0001%Nkl)5 zLX@a9;d!$`$E+ad?FJ13D?9DBxns6BWUcl{8HT{hk@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amber.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..7aaced67d9ab26542d2bee543a2105f46f1a6060 GIT binary patch literal 88 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzc~2L|kcwMx4>B?`Ft9LhU>6Sc jX5>hUp0Vz1I#9a6G@a@6e$V_cAe+I{)z4*}Q$iB}ANmy& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amethyst.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_amethyst.png new file mode 100644 index 0000000000000000000000000000000000000000..e1cff18cdb1f21c684b12b8f95df8466b6ba0d26 GIT binary patch literal 94 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzRZkbkkcwML4s44boNB87?F!IcFHNS`v6z zADS25p0)FTku&>M#Ob?GT8=PfQT~e37;vyG$lm^3 n>t+o14F?73y1nN_fhr857c+^4w7n_@vKc&G{an^LB{Ts5yhj*3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_sapphire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_sapphire.png new file mode 100644 index 0000000000000000000000000000000000000000..576e56e24d43e6340597e454945f4f3b62959b1e GIT binary patch literal 91 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzB~KT}kcwMx4;nHuIB>8mc>TF` o|BB6i%LGn5`ui$|1*n4g-yfzOd+Lv$0J0f8UHx3vIVCg!05eS-&Hw-a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_topaz.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_model_topaz.png new file mode 100644 index 0000000000000000000000000000000000000000..70682292db229b1bf1e758da282cc87f0304e1e5 GIT binary patch literal 92 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzWltB!kcwMx4>Afe7;vyGSikw7 oqSzsWs%HWx7X5o2!wOWwtYyV?`tQpAcr>mdKI;Vst0RGY%GXMYp literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_sapphire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_sapphire.png new file mode 100644 index 0000000000000000000000000000000000000000..11c818d5948179b77afa207b046f086cf61da074 GIT binary patch literal 80 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;+`&!Ar-fhCEg^6WSsx;YrdXX dZ&M%x!<1`GJ1+kF9|csx;OXk;vd$@?2>|!27mfe` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_topaz.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/gemstone_gauntlet/gemstone_gauntlet_topaz.png new file mode 100644 index 0000000000000000000000000000000000000000..c0934590b9417a7e96a72f574cfd8466208919d3 GIT binary patch literal 80 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`;+`&!Ar-fhCA1Pm=FB|yVg53) co~A$shRwW8NmgyjJwPQ4p00i_>zopr0Jeb?OaK4? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/glacite_chisel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/glacite_chisel.png new file mode 100644 index 0000000000000000000000000000000000000000..6a59e379a693a8265b962ee59db59a0de4d74dd7 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1HjzB~Tm&93{e_wQLZ z`_SbXYhNsy-&Z~B$JEI!d2K7pO0%3p*82LoT3eeLS@=g}@-_nXFqQ=Q1v5B2yO9Ru zxOloahE&{2c3{0@aBM2Cz^wA!=2Hy!vM7~QKesbDo3`yeRdD0nKCZboFyt=akR{0A+SaF8}}l literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/jungle_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/jungle_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..bff6cfb3dfbbf593d8dcc9d001f83e71fd8692ba GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=8#4q81i;PS0|wja91% zG1qTm$naCpEM&-V(+{v0Q;cA+GZ239Dzyu!l(8hpFPOpM*^M+HC&1IiF{I*F@&PU< zXXXPYt0yivQe>cAv}`NCOP{r_^q~i<%;qqp=~x;Ho_Vk`aRy7$hPQbQ2AirSB-ENE t-1!U)3YtPv)E&N*y>GZx!ge-|;bxl9kps3_o}nXaDU zCnsgw?`bB=s*z*iElWk>TGJb@MfYLZ-U#&mS=1o49pW4#S${I8aND0%p6!GEEX^Y=ms3~F`3OM X^_*XHx3knCpm_|Qu6{1-oD!M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/mithril_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/mithril_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..beff7e833c5bd7360c3f8807a51eec1bd80e8474 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=3ePyxn#G^~ReIE}vgB zW9^F#YkFFi?5pVh;T*EoH8j`JtNg`_N7I4o7)yfuf*Bm1-ADs+d^}woLn>}1AK*H5 zn)`ss?u`o~wP%EGJ(Xe_Vsw<(skmjTK7;WrGaWW#i!GAVnk9qH9VF)5<>5(KDJd-> nvBN=Y(ZaMXc@0Koi*NEUaJUK8ok*(!IflX0)z4*}Q$iB}fbT}; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/perfect_chisel.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/perfect_chisel.png new file mode 100644 index 0000000000000000000000000000000000000000..c5781b02da59e38cbc825293a1ff24d74032e46a GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1HjzT0*G^^)`JXRLj3 zZhn9DtRI{DnraqIFK;MpC{Hab%}UHJaSmDQ9S~`4?zBEUR}iR&u_VYZn8D%MjWi&~ z#nZ(xq~cbx1M3}wW6ya7X8mt5onpB65%Y|Xt846LJPVBE7c2;Bx}eikDX_Htik?G= r&&gH}ncklaiGSXtH_T!aJix-BwNvmBE0Fe3YvR%`Ti|W-_wzFSf2 zdsq7G@Ai+)=j~0+aWP_0nYQpP1M{p4rE@PBuX&uf(Ej`N7l~;po-!4`wyE(Z`{vBb zD!I=7I>vO0FVdQ&MBb@0M*a3)z4*}Q$iB}uG%>V literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/promising_spade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/promising_spade.png new file mode 100644 index 0000000000000000000000000000000000000000..13af3628bfb2d862e4b56027b32a648d2056ad5b GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DV{ElAr-fhC88FrSn zw!Aw#7|mKl&KmS4@UR?_PRPpQy1panDAx`~hr&m(4>HxfW?#!kvh&6G_hb2rRVWV;~Dz)*Ohs$F>UxphGM7(8A5T-G@y GGywo3bT%pg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_mithril_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_mithril_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..90ed494dcd777dd46142f44d4e5efe8c43fda9a7 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=3ePyxn#G^~ReIW~_bD zvSeRH_YdcgwXUJLj$Y;F`!`DfRWOzW`2{mLJiCzw-9(uJA3X_{0|mG?l^A)z4*}Q$iB}z#u`} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_titanium_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/refined_titanium_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..9d1aa495781ae757e16566b541325416cb0520f7 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=73jzn-!7MaRt972Q9I z>KnsiVx2?QI(n6B>*>dYNK^n-FqQ=Q1v5B2yO9RuczL=whE&{2KEQS9lF$K@=oK4h z3eT8oX(EiFF& z`v2eG*Zk%;YLPjc(A)j&`$1mCn++=`M?0`h$ly3sCcq}iv~2C#vmKXXF8+P|zh|rd zKjzFCZj($88^kD|oaLCK+^+Y?)Vh6*YJBnD%@6-u>Ix?Gda7Rcyd0Cbi1FH;IgkFx zX9&0$YbrQ}^DYt0Y3S`@s`M0FA-Jg0gOTB2Sx?bJv0sycPGj(N^>bP0l+XkKdUH>6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..e05c112cdfa86f8a7f8e379ee9a8c4ce8af581fe GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=1^4tY~U#>P%OUi;K(f zlXG`*@iY@v)YI0G=%QUtQ2IdKjVhlzKOgz540*q{YD;Pq!rx*&KO=I}6 XhVRgVfLSYm#xZ!h`njxgN@xNA@hUZ8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_spade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rookie_spade.png new file mode 100644 index 0000000000000000000000000000000000000000..e351acdb5675bc60466a897800d85678ea0365a5 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`X`U{QAr-fhC87@8J^Iw1XY$g@ zqg|p2cdlGvF>4VyYtXB}lO&wquxOrHOma+&%pHaW79aIKmy|B&3nvE67MyjG)#0oF^9xRf;O}Y1r=F_o18rpRboFyt I=akR{020qQz5oCK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/royal_compass.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/royal_compass.png new file mode 100644 index 0000000000000000000000000000000000000000..6d015d11bf0fd9e4dfa9393ec0ace82baf3ac2ef GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A^#&23q-FRyLo>_e9~ z-h6QN!`sA&u%i6z04K+ZeLc&U%>OSUa#~8t$ijc}kN!D84U8p0e!&b5&u*jvIaQu6 zjv*Dda=X~KF&Xe2eskpQ{DS}8pVB-Hs#gV99ZauyM?>rJw)t)5w0N zp668_17}822d~}*_NxzWJ#ppeV(#BZ-}ZUBl#A?IB@?wE{4n$0jU~+2wkiF&o7J;$ vg3-+A1F7eVJ2uQeWyt&b=J}Hm_Js^P8x+52KWSbGbOnQ_tDnm{r-UW|evM~r literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rusty_titanium_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/rusty_titanium_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..84d0d693ad6194e6f9bcb7f6b58e997d7403f9e5 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5$#ui3DsXM3evQGH`) zx_U#ROIS>7ldn>SpPZ+esJ5QIh8(x+2HWXCrHmy(e!&b5&u*jvIqse=jv*Ddk`Hhh zS#cdOX)o-$>}9aJs{EnciY1E#TAs}c*~WM#qDn#X%!65nH|%6oIoqZs5Qw5x{Ddz?3VzfXB~(nUP_3HCM?mg_JU& OF$|urelF{r5}E)l)HgB! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/stonk_pickaxe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/tools/mining/stonk_pickaxe.png new file mode 100644 index 0000000000000000000000000000000000000000..ab75af583dba183b18510d6cf0f5e57de24ad6db GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=3&tpMCRt{oN-^e_iuB zcW&CtjiM_Tm2658^fE~;)nKw#4^fx1Wn<=UJb7**P&H#okY6x^!?PP{Ku&gn-PR`5+Ojb|W_$t#td(RyUF|EowGESf0m})T?2kD74OXlS92ppTJ)21ZQoc>O$ y%}L<#msU}pHwvFiB&7~SHE}Iyo4WWW55txQ!QGn=iM{}u&EV`K^U@Rn_!)|bP0l+XkK`C literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow.png new file mode 100644 index 0000000000000000000000000000000000000000..c2b1115f74f3b9d16549611b518278cf4a936294 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`S)MMAAr-fhCH@?^?DNImO3kx4 zeb=x5Joc6XZ5um{RjjS0U7Oov%y|wU{g5@!EcaHuLhr&0M~||ma1_pRtSLErJ~KB;$L*-V}M3Ar4x#?lPh{8^H>c21iKw3Wfr L)z4*}Q$iB}+0i)O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..933ed88486abf7466bce8d7fa4b38032f78b1c2b GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A_^anX?D?o3zD&d#1T zZQB3;|2J;jc;m*63_m$fGttHNG7o`@7)yfuf*Bm1-ADs+{5@S9Ln?07cC#`aFyLY0 z^!)mt|K5!3z2&S5j}5(QrFNZLS7>-Q`g7T=8I4b_zR0{|Ar!l3(l16y>xj@_k^=Mp o3+>sY)zYcY`S9+8L<0$725-jM|Mu)#3N)I*)78&qol`;+03lRFPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/artisanal_shortbow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..d7a9b2c994f913682d94d8f4e21060d30adfc31f GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A_^anX?D?o3zD&d#1T zZQ6|+H#TnE`2YX^3_m$fGtrZ2hR=bD7)yfuf*Bm1-ADs+0z6$DLn?07o@r%dP-Jil zWU2n&=)Z3F-}47fhrSQkwEymPtt%N@mz8r7YIkmH^< zZCZAA_W%F?H*VZ`*jw7AXqU%%mS-ZXc`75bm$Uny=1@4ni#!B@s--{R{#bJy&7Y~`H0k&nsiidDy% tM7~4WpXE3ULyj1-&FnuTs$oBaVZJk?<-xx-(LnPVJYD@<);T3K0RZ0JL*W1b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow.png new file mode 100644 index 0000000000000000000000000000000000000000..371186fc39b68d8c4afd510eb6cab308c2d4521f GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0AW;Uv9&Y${DuJgrSXd z!Zxn$=cj)D@8aU}S~rLlD9cz9{4C$ph|^Tms)%l~&B z7UE7yIQo<2Pv!hdL9s?=&IrLtpEKSbS+eqe^WN6wA1ozZ<{W>!_QCzfGo~*+?c7v4 ndtLR0cZ=W8khtI?@qvM1;WkF@9hgTe~DWM4fSN=u9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..bc7f12366e0673028f097660e89c8c0b8249d888 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A_^ap_D~*O23$`uYEj z8#gv?-1z_hf3EH4Im5PbPS|F`&}PGs%Amh|Rm2H)plZgFAirP+hi5m^fSe>x7srr_ zTQNP}d`A^{n0fd3PrmVee_rT;*a^NS%9RcFeZOn3>)-0(a}b>pryMJJ>W-S*d7VuX zr(YQFn&)&|GWCq#;b+>Wr^TioUH+%&$edY@U1{drxf@w~%^YQ($uY|@FkF7m^inJE RcLC5g22WQ%mvv4FO#rgkPoV$+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..282f7ebc46e988f3e032404407beac212d8a0b14 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|DXE#|BV|rHg4R= zwf#Kjgl(Pa>YQQQTwGij^p~43v}wq3+c2cA*_u2FsG6}P$S;_|;n|HeASd0^#WAGf zR8CC(K|- z(K-7_lfih~+f<8loJ)3E>lu6qVUpalUC&{PfzIs%29p`j?BHDFc&j>bn_hwgBg1-g W8J4nHyFUS~WbkzLb6Mw<&;$THgisd% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bingbow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..21b86fb4e77ed2e4afb9bd4373cc705a137852a4 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A_^ap_D~*O23$`uRT) z+_-ULASc*Wb}UHu)=7rXu#eq#HhS86ZLaBf0xUi90!iJvCSa5GvOvZZ348}|VP zlMkPmV;ZmrfsBT3wfo z%&xFj4FgKEmIV2Mlru0K%4XXLq~bkY978H@<#e57bP5zWG^6&{`UpF_@?viW2bUe@ zGbK;xuhvqXaN6a()54U!yY=iJOMMhxG4mr=4fD)(1@;Ydy7>fN{&$`pbM(&LgbJs^ o8n%SAk1EO$AD);k@Ru}TU^w-kX+prNu5^%zopr0H**=RR910 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bone_boomerang_thrown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/bone_boomerang_thrown.png new file mode 100644 index 0000000000000000000000000000000000000000..158c0713d5bb781854d77d9e38a74bf92d91c66b GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE0B(i2uMy&^7XdW(N!%w zEnNl_Vk`;r3ubV5b|VeQaq@I=45_$P+vO>Az<}fMo)7=c%L}bJEf+jgO04;C?3+1AkwzC{bZ z|GyGezv2J?|9P`7h^W~nW;<)UrMtMeF!W>`1S(}L3GxeOaCmkj4ao8Eba4!+xK(@H zTBt!mg!zEV`^634?br7`kDW7Ipe$y;u#e{GZ{Qx{an^LB{Ts5Y2`-A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8db582dec7451c9eed022272c9c735a0695b10 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0BKhee$A>+1AkwzC{bZ z|GyGezv2J?|9P`796WeXM9o$}Kp?xTOIljm#Kc6~Ej=;Y*~P`hMljg~sFSfI$S;_| z;n|HeAScJu#WAGfR;^z%<535m-p>~=|J!`+n_*SM_M=@}Qcvg{(mcO%^$f*}v!s>& z{#u~(Q=QSrlDE?P-mwiIHJ3^3<>F>wJ-A;nB-!t;B1=|OM!5a8&+Y&B>+F1>vEj)A pC+B_NeWI%)rhJ;#r!BvU@6{ysr42&W*+6?4JYD@<);T3K0RRtPUL*hj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/crypt_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..74afaf31e1b9f5e7daa2970c2b54fd56a766e79a GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0BKhee$A>+1AkwzC{bZ z|GyGezv2J?|0X6Td9yDZJa|w<%~n7_AiJweT3R|W+gaN!-NnUa+9}U2piah;AirP+ zhi5m^fSe3Z7srr_TS*7l8FJ4xGahi@VZ9)K?N6!WWT8}?`7~AF`E&hq^p!1+1AkwzC{bZ z|GyGezv2J?|0X6Td9yDZJa|w<%~n7_AiJweT3R|W+gaN!-NnUa+9}U2piah;AirP+ zhi5m^fSe>x7srr_TS*FX469_gwHurS80;>s``i9E^ZQ&b20_jT4$5mz`D`r-W8i79 zxOw&e6+bzr2Pp{^=Gn#KOMYzhtnB!}_Q`U&-ah?*l>+}g4#n469y9BzbE&?iA)Wow dAnN8rw)lC>a*t*m`VF*=!PC{xWt~$(69E3XRz3g# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..291759cbfbdb1d74bf062ba7113111b24649685f GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0CT#v3E~Vf!gBCrO}bu z+1Zg9VSCI?Br1I-D=UJzX3_DsCkm zU}p&RJIcu7$deS~@k{^9z3q0Vw41I<7k{2-xl}1vb?$kQi8sDI@Zi=+y6wx5AR1A= z;w}64w+;XQ$lkVN-Y$El>~{9E*Y^CL%j`e+{j&aZDC4iXiknZ&-bE~lDlZ+PfL1Yh My85}Sb4q9e0FPoy*Z=?k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..bed931f2c0b2db204824fefb9829223ac3916c1c GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Eq(RPg`*|BV|r-nel? zLyo&MT|GNHd+NmA$;t|m8DYWPoO{eoO2tJaDt$PeHPjYoE{%=^>e`~Fs0E}LOM?7@ z862M7NCR@RJzX3_DsIL09A$Ji6gm7wlF9GhzunVfuASvjuJHl`Yi~D<&S?^Cc_t`s^vG^}b@_CgXzCddkJYD@<);T3K0RZ%oSXux8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..37a4483b635de1f08b4574b93b0a4fc99767837c GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Eq(R3K65!|AM{wm5TX zbmag4|2J;jc;m(m4LR=4boK1)?5PubCo3zIii_+qHwotEjLZlF>e}|DR1-)smIV0) zGdMiEkp|@Cc)B=-RNTrv%`Vhzz{7g+=%$yhFaEXnw#}cXv%|LkXE1-(`4epu*O+P_ z-)MQ$BsnbFu-ty4&eb){P6?V0UN82n`PntaAwXQEH+vo1be5(x50;3R6JG2Qe>{od q;KL;@ANVdl;GAurKXtzP`n=Z`%!_Bc&(Z?g%i!ti=d#Wzp$Pz2fm(wA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/death_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..18563fd7730ab5d8f73651d4189cf37d927c3d84 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Eq(RKV%1p&`fJnXaz3 zI5Rstd+NmA|NsAQ+_>?^jT@7d7512$L}r9ZRQd#SbC!yWERBu?>bh(`^B$05ED7=p zW^j0RBMr#O@^o{TXH_N17yVWUwy^Q&&hMp{EauvKVqOU05LS zcK@SNeZL3aDlbg-XHYWUv8U8?-C~uqnR6Q-UwhnK^q6aXy29uB#CHpRmK41?TBR@d aoqy*kMo-o0zVSda89ZJ6T-G@yGywqFTszhP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..5478c51563b135d163ca21e958f86a642a9a1cb3 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0Fdy6V;I8?o3zD@RPf7 z0jSN3I4LR=4bahWN(I>u=AZ?5#L4Lsu4$p3+0XgxWE{-7;w{m-084nn6 zuyngL{C(bAySKNfJ;z>quAtyq{pmm5SXOeKzfrRwT>RNVgP^lH0**%v8Z{FxUSw@s zkz~M9)@}JbEMZ0smpl_&cgsilHQg^0I)pD4Dv8;zVD>L&5}VAwstITngQu&X%Q~lo FCIEyiM`!>5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/decent_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0bad43f5b534bbbd52e3b38ed91b589848d8c796 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A_^aZyuK%g)Z8Hf`Gf z|Nl2`+<4>0jSN3I4LR=4bahWN(I>u=AZ?5#L4Lsu4$p3+0Xb2gE{-7;w|e^=`3@*> zun18G}E%1$ZL+NwR9_BaMIi4`xcsRY`>;OXk;vd$@?2>_k= BNR$8o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb20eacf756e371c7b1069fa48bc43d9ba04b81 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C6zl`SbLF*Y^^vb(yv zc5!^_V!O=G&mR#H!ICC&1SrZ_666=m;PC858jut0>EaktaVzNnGehW^tBkIOJck3K zJv09|%HO;6JaB=C#f@qq!)@8h8`34u9&227`o+u}Io?^X_x+9eZts7d_4&(56WT*L mE^l)cxF&i=)I_Ibx^Vve8H|;M!QVi3F?hQAxvXR~sySlnc zN=iD@)gvMzc5!^_V!Lc?Y^)*2Eh{U_&(9B3sdM-^3y@+g3GxeOaCmkj4amvzba4!+ zxRsoc(!i9)s_;;VOJ$p(!JXP&s~Q>`tsA!+Ydy2@SW)DACTN1zyD!!L=UEseRc}jJ zI5O?IoUh&>X@1QpC!4`AZ(i~PhKoA>k0qoI^sHEHd@yW-UhH9p#5J9bx1tVnrEYN6 ZVCd16dUvPe!DpbY44$rjF6*2UngH|;QeXf8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..65c15f36c79b9ff1f876d974ce7836cd00e18492 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#>R~sySlnc zN=iD@)gvMzc5!^_V!Lc?Y^)*2Eh{U_&(9B3sdM-^3y@+g3GxeOaCmkj4amv$ba4!+ zxRva{z^G8h$tvW=!&5$gomN7^1HT7vd%7(7L~e!cR7=zJ5G?<-cX>KfL(imK9vzopr05hpjVgLXD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/dragon_shortbow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb3b5bb635c2a63c8cf2cde7869a94616c4c149 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#>R~sySlnc zN=iD@)gvMzc5!^_V!Lc?Y^)*2Eh{U_&(9B3sdM-^3y@+g3GxeOaCmkj4amvyba4!+ zxRva{s<+UgX=3BUcb7w1d3ern?U@^Bc)Zc+w$}9{I;@%x{PutU;=?c@a8qw%BGZIt zbL*@b&+OPZEm7K;c|zf58Rl}P2?sx!@U0L$(qVP#zyZc7iLtxV(%hLlHmb2@CGu)d dImow=;ZU4x%S$!a>p*)MJYD@<);T3K0RV;DR2~2T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..c6332575417fa0e3dada60063af2c3af715b4a39 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0A8fsN~$aY3g#eY|Px& z>LG7_ufO|bsf&xtlfPL9fzpg6L4Lsu4$p3+0XZI?E{-7;w`xxuWjyS_aOA+!=6}+D zXL4Sf9}1szI&hV5B>&YcRZ0CaWzLfHLQVsT3X?1Ao}CPM`snZvqbn6gI`euaNj!fn a^M!p$E~Cb#0M0s~nGBw;elF{r5}E)zWWQ(L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/end_stone_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..61206ee06766bdebfd08b84546d7a4b1fc3c135d GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A_^aZ#7EWn<>?cC z8=gik$>d#NwEJbd;OYfZQs;jC%zXFHqif=gqBp;a>Mz7M+HRuAb+ zSJ#l^zH#Hm#*G{Q|NsBy_xig}mYzE|ZRMg8V^(nwplZgFAirP+hi5m^fSg!Q7srr_ zTS*FB469}^i?SpLa2$S}7rpe?zxB7DxnAPu_|CZReW!HV!Pk~Xch1;o+~l4o8aSc4 zFeD-O%wCrMT@Pi#tJ42wZeX6oc2eHsS9_e6%e+FV`)ZuM^BZjK`goZZ?%sVZ9B2`P Mr>mdKI;Vst0QW9VEdT%j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..406f0b9aa28e75302e86f7bc38d7def76b0d582b GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`1)eUBAr-fh7nuL(@A160WOdq? z_z(}77RQ`FZ3{A)E-%^f;Q!o9@d~{WrY@^ggs=Vi`QrcoVw>xSMT1<8BYGGZETvbc zEjY+x`j{tjL3c-&QN;qmOFlPPInpODmNY)#QDUdG>Vy$Ptnte@1@Q^1B^f+^=XMDe Sl!XHAX7F_Nb6Mw<&;$V2*gt6i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..c76a4910ab2390b2101e4bc156639544f4b065a6 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE06{PT{R<7A@Mt zJmA2?RJr}l{yg5G$6q@bh3$L!G-a&rhq)RqeR0lnqGU;tl8)&1tOMP}iSjdgQr^6g xVYW`MXi5{^W85I0o*p_wx%cUsNv-{d+RLu8F{X2_&lLkX%hT1*Wt~$(69ANyN1gxx literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..d6cd34b1e3aad3872a4cb6a243b08cdd8c5ba7a3 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CV!xxO=9T|MdAc};RNTt#ZDnjQ z5MX{i>+kiWpAIf8`~IwM-x_v?H|4r+#XXfXB<}c4mNcmqkYY{xP!qUdxkTUeOrG}{ z8V28A-7Qhg2rCL_JKHQ8?kXN!k$+^;H5L>8D8@~%m>xc3`RoL=g~8L+&t;ucLK6VL C_)B~M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/ender_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f57550a20a1302b294dea3a78d9459a145334cf0 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0DfZ`l~ZtT|AmIV0)GdMiEkp|?1db&73#?}J{=v1IfpPL(zp&EzNP~gc0SSZI>JAzV_nHJm6IkB80b0P|>FVdQ&MBb@03|~~6aWAK literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..ffea2d2df99681db737def9d670f75b51897614e GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F&G|No5}H-O~bn>Y7u z+Wg8{B0D?#w!YLvUBQi_>gHx)(o#0bFRGpal`@wE`GK_lDm!uyNX2`)IEGZ*3O(B@ z*kB;Qda?C|=l{2hF3SGxmu70;{9Il4tY!To2E~qRQD1*A*l|?j7t4MTe@}*Vjx%pv zU)N{b&oIqoS5%we-ov@R!(2eHVdL$`d0RgHxzAE;X0WX!+WgTmW|Ng+6*qxaF?hQA KxvXW)`IWOoc6Rn{eW{7Mf*VEE&CSB3rEFLp$CU$Bvy=q+fpjx$o}4xdNTqnXIEGZ* z%I#}qWKrN@Zg#%?#{M1mzoH+khvj7qF9dPLU3l!;vuLg9TQ^5<&o4*steR@+&Crp1 zVdK5cS(meUH>b9BXfofG=xf-+(=H%bqMW>TRU(VTl%Ljzb$bq|mRSYdv0-FlWA1t; R{$mQrUQbs)mvv4FO#s{rQ7Zrd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfcfaf2b901b226486e6ff5ecc78034cabc2afb8 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DU|@95LY0*QB?hvv&3zEsfoIR z`!;R9d-LYgr%$u9v;Y79Z*CSQEoCEop;-Z_j2vBv2A;zrYn~*s#Qn^%;mcgHb>5q59_MUcrHFgG72QNb)@)z1 zw}~U?ZEc5K!I$Nw%}s5W4K_dLQes%pF{5ss?}9y%2fly%#2@pJXWbWLc^^9uHF?KL t{R$`DCvbP%u~VB_<8$swa^1_v{1Ra-(#Ip_MgSed;OXk;vd$@?2>{1`U)TTu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png.mcmeta new file mode 100644 index 000000000..962b55a80 --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/explosive_bow_pulling_2.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":10,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..fe2644b3a912a3c62c332c452fd34609e0ac2852 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJe}GSjE08{>WSt|x^Pi1vAs<(` zHJ=Soh_NKdFPOpM*^M+H$KBJ#F{I*FZBHQAQ3j5~JzxK&*D395lGdsBT=>z|^tj3i zQ>~>rWo&L)<(;$s-8X+=|19p?&Q0Y3w`Ak|?j+222(xjDS@)lz(uLvVC;Nx0KqDDE MUHx3vIVCg!0P^KEeEgTe~DWM4fV#7xb literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..afa3434309aeba7b022eb5b9fc8d6a900a0e6890 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A8u$8}7}x-(r}Lyr5# zjT;*`Zv6lMe~tjpe>OI@zYk^sRWOzW`2{mLJiCzw=IEGZ*%027J#AGPo6sVy5 zegB4~SKQw2=UU(XU}1Bg=&HR{H!r!GvLDU9&(+}}d1m`O<>hQURhFksoXB7wzyB!5 uj`zQsPF!#M$ZBS_%E5_ig2&6cwc>AnGtN`{W>EvQg2B_(&t;ucLK6VxwMbC_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/healing_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f18f31e31f3294b34ebd518f779494ad432abc3e GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A8u$Mv6$?f?J(8#ive zapQ)D9Cv5B`Y|Qz908um9~{JhDi}+G{DK)Ap4~_Ta)Lcw978H@^`7SDI$*%j{BXv` zS@-@Qy4=?Ic;|kHugo7;bB9`Ncy1lC{?wfpVP3Zvap25@A&t;ucLK6VLMo8}f literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..9d003221ec17777036e44f509ac8e1b6ada708fb GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0CTxZCZAA_MhKxUp&2Z z`q)w+x4I4}knQ5)a&MpTbf606k{~~jj$dU*?g1$uPZ!6Kid(U#9fe#BS=bVVx19N_ z|3|08tLppTR-MXUp6%&HMaMT;gqSLw%DKw&>3x30q^+^$Pvx#XmN;*~)?N6F?Wx=% fo5MTw-{sZ+@nPKbdO^=?pt%g5u6{1-oD!MPJXsq=(D W&iqp(Mff?;N(N6?KbLh*2~7YMEm^++ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..0f95c50f1bc46c38d5c7c68ed18cb8e50d298c0d GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0E64&i?=Z|DWG)Up&2Z z;sS+rL4N%8;Jw<!fPw_Z>o;RUPf6PUH*SPES$~e zU&p%X?_{?8-zD;9!QG<|b$azIQl@XI71%g=9=kQux~g!GhU4!Ht~gqGsMQB`v&eF< SY48ME$KdJe=d#Wzp$PzMd{?dj literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/hurricane_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9706e0d76218cc524f22be10ed214ee86504b97a GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08{YY-x2}HW2*(|NqbL zw=bSvx^d$MP;leMjnk%0gGhCztGl?kXvlH13QGwC^{|u#`GL$}*gQFH7LdyIba4!+ zxK-lEF2t-T@aR{Y?brYNd8OC+aEHxO{`cU*Bb5aknC2@tDV}jKJd$zyTL4-dLY0_v-K|-6xAh)W2WZ`r?P`GKHu1jGX^^<11S99*E{8 eo%tzi#LqD2EGy^5SB}~s2Y9;rxvXOfz*p`+Oer=1l%oM;U_K_Nj5eSN_;;2h_<}666=m z;PC858jzFV>EaktajVp)mGOuJPgBLKyY)B9#r>KYne7bx=AYR$H^28pm66lRcN^H9 z^`vH2C4VawW_9>}T4#>F?GfH3F|)qkUbE@N&gXW@Uiz*T0FtdhH{Q5$EaktajW!1Yon8)h|9%Fq3{2y@3wOAefKtEkJoxX;nSbh#db21vWJ9{ zN}lPR@tymMy5^}w}tx-ss@S>DWG_0Gtjx@<;~Sxi8}DcMDbbMohkM}3xG{=nw* imTEWMcexvX+-2Rb%pCAdI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/item_spirit_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3299005ccf0cd69a4b53f466a773425ef90f3635 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0DhN;(uqlx`rJ0zhD1> zVB^M(H*VZu%`fF@Um~;gwyj2x2)C4`q;Z*f$+9c|XHNX@rycR`vB6cKPR5cTzhDN3 zXE)M-oHS1t$B>F!y(b)nm=t+jF0zFPH@tlEZ~D~64F!o)>lt6R@2|SozuJqtVsGM> zu+@DNCY?MTdc-;CMAYbP hfz-W^cVGOt%YJG%Gv5!fCKI5I44$rjF6*2Ung9}TV1EDr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow.png new file mode 100644 index 0000000000000000000000000000000000000000..40c8f50f1317a8b21e437ac2dc4c813166bdad8a GIT binary patch literal 209 zcmV;?051QDP)}1Gc^8pIN-o}V@KiR z|I+4p0cjm=GT;B7D=Fo1=9wJ)PdV9=|MGtpUdL;93N2p!zowqRlh*EEqIOO||D5;< zsR@R4&PF}||F=snIu+Tp@WPE768pIw%!~~=4)8c$@3CKCu0P|)|94Z96K3C(kTKvX zEG+!#AMkmbYVCjP)!qLWw{r#n4H6{22WQ%mvv4FO#tNSVB!D( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..28a0e751bf4a24ea9bc0ae1df1aac80087a1017a GIT binary patch literal 239 zcmVBY$Yv%6f&a+fK{Eii=FJNx{=a+W7}#bu z1_!K$xVX6d$E$hUlD_|))y4nO!vv}szwO_@enQcVZV1^1AlpvR{|EyR8o` p|A8S5!WbG!F@*el0oF`U0062jt>Ye8y<-3X002ovPDHLkV1hYMXioqD literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/juju_shortbow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0807ed9c236ec8b5d61fa51fa936f4a3de73efab GIT binary patch literal 239 zcmV63tdz!=O9pXiL=5Dhu*|DEaT z|GhY0AZtLz_zlT0{{J6lh$?3ZhC*XwWBe`v+04Ws05=3KfiM8K=FJNx{=a+W7}#bu z1_!K$xVX6d$E$hUlD_|))y4nO!-OaUzJL9Mq8Z%~G7P{pgpe0-8UVK)7XWI6`yUw6 pU<}fLzzEGm8A5h`0Bfcv007s5v3XQbgp>B zD=8?5h=`oY$zK8#Wh@Eu3ubV5b|VeQarJa@45_$Pd$y77fCEqSL(`YHzSlqY&3JL_ z?}L5L#dBY6U%E!g$Bk*j;+737pI`s7cT)cB4WaBgS3CDxUh+IM&pxOB%{KW}zZfM? TZ9ioWG?2m5)z4*}Q$iB}U-3QQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..029e41a43ea495e7100175e0970c2f89570136ff GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE07iu5m{{$q9MoKnXZ1t zBmTyX8yh!n{Qv*IzK)KPf&x%Mp00cA9EV@SoV7~fW2 z21ky^F)#kz-Zw!(zt?eU#wGs6zo)XOXk6X5)jUG7(pb#+^m?9cb{h&-R{iW>W9yic zQM}E5vzht)?`svN_5J;)wm-b+%TdNTzix57VBXh$h?yZzm|5mtRYxY!9tKZWKbLh* G2~7Yv+)9!F literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cf192bd688e54cd848a078541e619d59bdd1ad2 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0E69bqA743JUr_tDnm{ Hr-UW|JBvt6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/last_breath_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..98de0b4c34e39f0e93ec3971f517276f399521cf GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F&G|No5}H#TnEc*P^W zGhKbPO-P=uyS|Q&l7fPU9Jh#w2vCjrp9M#N6k|z{UoeBivm0qZPMD{QV@SoV-m`{M zPKrD%4?`;>nRfoKJbT>a#?H`Z`HS{{3(DWjJik1>;@p`P%C8H>F5k?1X!JJXJpYo` z8GVx`Fx+Y2NtiZ)dxD|@y?^y8Z&&k19aIK`ecP9{G)wV0gY$yboFyt=akR{0MhM0i2wiq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..3e77ca7ef192791bad61532ee6e35f6f1e43895f GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#>R~sr%jvI znXVoYQIp{(=i=gGY8v2aCaR`pr6I>HA)(2|CHUOx!cm|G#*!evUEV`^}k&tL)2b@h@njrSJ( Q23p17>FVdQ&MBb@05pzJYXATM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3a656f2c5cfeb4f86cd138f4861f37431ccea4 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSD~Kz{-I=cLX(r0WB^VJ= zBO#%wre7Cb=lDB?Q{0O2{>=4$yMgvF Nc)I$ztaD0e0stl`POAU_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/machine_gun_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..e61371710b6efd9268c1c9cfbb0e7a7925654baa GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|G#nL#>R~sr%jvI znXVoYQIp{(=i=gGY8v2aCaR`pr6I>HA)(2|CHUOx!cm|G#*!evU~Wy1EUyBaKku1M%qz;68FaX01RwvC R*aWnT!PC{xWt~$(698{jN?`y1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..d534e70b8d79c3eb9933b202509762b497a6e8bd GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0C^NR5=_!@p?_G0y;%17k^$UoeBivm0qZPPnIw zV@SoV*j{!a21Sk|*Y5rOU)(?QY0k`98Vo5mQ@D$!N>21m#p6~MflgALqSG*zZqhsnCe*Gox23Ig2B_( K&t;ucLK6Vh(ooz0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/magma_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..90e80db3bf653cd9a60fe7d1ed4fdbc401c38b23 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)D~Kz{{r~^}FE9OW+_(bV?-(*H)69m^Iqq)wT4=tRu&4cDIe%sjqfn%QNK zDRmKMnSzH}?VY~73blCnVv)e2B~O~(Kf3t2sPRET*vyQbf6G<&h^8O)<eHr8I~psIot@p8uD(UW%EiS6qD(`M+ae2b?#ie Q3eX}3Pgg&ebxsLQ09lkxS^xk5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..36c0e7d520ba2c75d1c94a8d5fd9c2d2a4702fb5 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=9cj|9|rG<&7IRmag5n zV#SKiboIEnxC}ozPcu;sIqt{5)29O!F_r}R1v5B2yO9Ru#Cy6phE&{2ZeaGaSUtHh zF)f2}g5l!q)Kv)<9(kz|=_?HbI~p#nL{2aFr>8@Yc;rfofTy{z*AN{BbAj$gMlGiMj-!@*d;@tRScf4elF{r5}E*G CQAQmA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..e9bc86da9f69c1ffcdd2fbe172852bdcb3552bb9 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|9|rG<&7IRHg4Rw zbnV6!D^_%-tH;H~W%$W?nu%)2aj#gJ)B;q;SQ6wH%;50sMjDWl>gnPbQgJIeA*F#y zj9DVvn)&dmEo=(OrC-+>9pq7H&aVEo#w>Y(!1q^OtTM7Z4sJ>TQ<*$gHSK1|Irb@% z=XNtoLr*HV#12shrA}TR2Sx$q=0L_Z%g#D6>Kr(b$hdh;BO@yV!(mmC-oMM$)&VVK N@O1TaS?83{1OQ=HOMCzT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/mosquito_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..72c96488a23ef7a744764ff526bbafb9173face5 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|9|rG<&7IRHg4Rw zbnV6!D^_%-tH;H~W%$W?nu%)2aj#gJ)B;q;SQ6wH%;50sMjDWl|t}|U-Lyp_iO!S53t;0Zdj3q&S!3+-1ZlnP@DV{ElAr-e$&KZia zC~`1gXj!3M@c;KZ{|Ar-fh7HI!C!ti1Wj{!qN zqQsB?;pNhO3vW#pNSl>?W7WL(g71@N7&M3;dceW4jcNYj9r9nc)=K={8vR2h*qSxu qljn}li8^N74Sc`1hcn1%bIE^rUH{Wj;A|t%0tQc4KbLh*2~7a(;50S> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..f7766c658637782d1ca6393a0f39ea4de094a654 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0Dh8sPMl@UoRoJX7iH# zo{}XO4+YO?dXu7c^YQgbKxxL3AirP+hi5m^fSdqN7srr_Te;_sGCCM?Fkg7^X8(ul zyY9qwE!@wN7N`>Za5YD0UT5p>E{|O9D%OC{@w3v^TkF!UFik(19}sJuV(_8L$~si7 iIWohfLwLqyPxBKu7+pmjUx@?FX7F_Nb6Mw<&;$V1kwP8- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..baa55fab8eb57b0d27ef432421f48f7628ec3903 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0BJZq7^)&sWV+&LykMY zr{u#!sf5lNDX|D52plZgFAirP+hi5m^fSg267srr_ zTcJJ8j0}bh%)!RL`=dYK>}KdM?fhC^Cb;y(oAk98JWok{4(#DkTsDQpK(y@DLCq7( z_UxWi`9{Yv!0p^qS&mG-bQ`B|qq1ZUa|6r#Hi<*GW`{LZNStZ#!sf5lND=i1plK-G*TL4Lsu4$p3+0Xa#YE{-7; zw?cc|nHUr~n3-=+{quh}cUkc%9#-Q^r|))X9eZ)UTjA=IHM2e+SbBeY(Ydc@c$E@b13(f_-uZ({_ag SFP(t4F?hQAxvXHV$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/prismarine_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e02fc571f00db666f99befb7d401d3b4c8e6894 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0BJZq7^)&NiQL|X7iFI z7Z3ga|9|7gjW=%G$nPo9kmK%5SO4Fnf5lPZ@?@?rK-G*TL4Lsu4$p3+0XYetE{-7; zw|vjCiycuAU<&ZiFZloZ-JS)jmwd{VNVHr0GoCLbS}Wwko&x>f`*LT`vRS|VEBEF! z&6D#luYE47e(`jg%M8xnTrO%IE7odsh=edr)PJL(62!RjUgE_gGUuPNC%Z6pOE+>y Q0_|e(boFyt=akR{0GFLpBLDyZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/runaans_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..d816d0f2f329e4a44fe4a66ebf1fc938b7ef9604 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0CTxZCZAA_MhKxUp&2Z z`qeCcBBcYh`A)l52Wc=*^zrdD%{h>F{I*FXiqp3s{+U2 zf{QQyzW?18z0YI8){OHBiSOg;4j&7eQry<7nY!^twpT;+=0ugR?{@tQ{(3m}%Wl5Q x-ETzOV`u)`FTZKeciDrFbZ6Nz$+5jLi&r?t_%o#7y&ljC22WQ%mvv4FO#n(#{r3)th3)?DhD7%F;G(JO$LlToU95GUHd-k$XTY z-_yl0q~ezEnO4CA3IePbdl$$T{VkU+Y17CTtYA35kLBX|=_0pO4|vr(pEzgP8QC=T zdMa;qM%7x4gXZT?gss~*k*nwDtsCB{Q_p>S^76y21*PW~R8KLPyGgiLM>yu);eR(B m?-sO0SvGxynqYG5h}@&g)BHu4Bo(nV@SoV*zQKY!wMWOD`!tRnfdeo`nwmUe5*7c-dlY_JN4b<%Y1B}@e}W7K0CHV zq0@E!t5pjUJWQ>m8j9{$f8p2t-THe`-;z0sGk?y%e>f~s{&8@^%qP#dt{utHFVdQ&MBb@0C>n}9smFU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..33fadfc60aa25ea845486b5f8487919f4c5aa430 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A_^aY-`}JCtibGeA2# zJA2x+Y1PFUnMsiW-VPn^8eisTy#y*^ED7=pW^j0RBMr#$^mK6yskl{p%8{?ZfQQ-f z@vzopr0IIV;X8-^I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..99d3f79ef7fc4b23d375da4eefd49c49abe4cec3 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0FGR*U*sT?o3zD&d#1T zZQ6|+H#TnE`2YX^>f(&dq{skohnWG|hjQ)H48&YqTrRO0d<5!YED7=pW^j0RBMrz& z@N{tuskjx}$I5g>L4Y|pKl1ng?2UWpJTzuu%=S_VY6a=2#x*iJT2OCmr1a>l&Qq+}8idG4WZu)QV7M V=ACPn><8M#;OXk;vd$@?2>^s3P~ZRn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..73f47fe33f294b3f600150226c2020314e674139 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0E4iiqw$f?o3zD&d#1T zZQB3;|2J;jc;m*6nE~3>#TfzK4u^8>(+tEq+%;TWTtb%5z6{jESQ6wH%;50sMjDWl z=;`7ZQgJKi3@g(S1s;ZjOX3tB{$GD|+UM1qnorDsUC|e^_5Zom^>=OC1ln}6PnRrD z5p$jJc3W9z%7NJiOf|P}>q+e}cVzHCc5*$d8pi>y7Hz*1n@w+cNGZe%oSc4T;RlAp X_n0+Qi?@dXEo1O>^>bP0l+XkKcAQlP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/savana_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e15a98475c5d1bd9ae5b29eb34b98496cad0c86 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0C@(&iMcT|BV|rHg4QF zZQ8U$x%NPj?Ck8$boI=n$e97!9qt+d-VQDLWe!&d;b$ydn zfxH+`7srr_TS*FB469~vGczPAbS=!d`)&TT$L!aig--h%?6p!;_29OsU2o>BmXkDm zvTpUJY->FY77BdvN zWNY!E)rITHJE>KZ+Ouvv4%UD7v9uvxc+DNnd}f_|;VH@T@7=At3^bG{*D*}H#K;>m SapfzZfefCmelF{r5}E+4W;AyI literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..db1476709a2e5a7328e576d0b646ed9b4e5acb15 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^aS>t@*O24xOjo~g zXP3V(PU;^60;OXk;vd$@? F2>={yNyY#G literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a49895ced34f080924a654e0ccf4969fe153e71 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4D~Kz{{r~^}8#iuj+_-Vt zv}xJd*`4X?E-o%k$^phA4nSFXZgn9x@td7@-T+lIl?3?#b(c*(YXRiNdb&7Wh}AaMB7?zz1G|G#r9;*JpCCgR2%y`e7c^0(ec%U@-3?f2g3F+n5URqUmjMXUJ1 z=MzKAPnUK%eYpH%=l_8FYx55lhUrXu=@fs*g7NQ(CE6xu|1jFUV?G=HdDcCkMGT&< KelF{r5}E+rQBeW_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/scorpion_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..51328e1f5320c895272bbd9b88ab2a55f6c9081e GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C7wRu^Iu|NsC0jT<*M zZrnI++O+KK?9Oy`7Z(>N-#C-Te z=#Kff@6YFGv0b2PW3PX4#fFxiuJ`fYIbIoRvxV5=1KB1>bhh1y?BI)MXEA5b;=T&B OjKR~@&t;ucLK6TZzDkn- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5d4d58ce52fb3dc802dafd46ac7fdf7294b8f1 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0FeavHyR=_VP5NCROHb zX$l=Jl@$dUW~TZsE-tDkET02aFqQ=Q1v5B2yO9P`?&;zfQgJKk06RnIsa9SVM-k_Z zPf|DhZ{nZ6@5ZFuL(cOSZr^_(xzF|7!wuIaeVac+?Bynptv*|iYfXEu^{?+$q;7kX hW7pJqNf#?V@oqL}bjYh&SO+wh!PC{xWt~$(698}LL&X39 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..3e00a29008ebe9413cace6db5bbe906b309b8d9d GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A_^ap_D~*O23GQf1zj zrf}oNjg1>O{{R2KqouN}oGx#r=PZT~m7a>cxdT6RIQrnNBLIQMmY#QC;p*#+A@I1`iwN Vue3XU!x%1-6MGQ9iC-`4keSCal>8zqtO043m z{xEDSxEk;HKw;i-yF2F}Zn_!Fxado3%!5Y{c&Dcx=6@5CQSR|3t77Boiz`F-Kfc8* U&9=$wJJ2!)Pgg&ebxsLQ0H+676951J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/skeleton_lord_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a4b66599dc17523a4870bd0891fcef7a5b138f8d GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0A_^ak+8h#>R~s|NsBr znXaxO$L-@{-_cT8QIKI~s^6r_ye&=P@-(CWH*B++p5F&*U@Qsp3ubV5b|VeQiSu-E z45_%4q`<{6ONyJh!BK(j(Y!bNb@Q$#eNQ{~jGg6ptoEgL38jcnK80dFvPr2I$~Uii zdZ+Wv8-1ILtM`?AY(6i%u{(8NPwKy()M*UoJ6Jpaz3AZOI+uL#%=@bh`+qPCpRAbt Q4QLaCr>mdKI;Vst0NXB95&!@I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..210f41a693510820e1a481d66609212fec16ae85 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`<(@8%Ar-fh7ibr(FZ$Kr<9SWQ z?xK7Tvy{!j8!8e1?Hzkle-}BXUe~A0bM^zBz~JfX=d#Wzp$PzS);N$nhOV)3gBK&L5p&%o@-wd%*Om!^p&Rqgp!QkoY K=d#Wzp$Pz~=2C_L literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7c6e8accca6f484b7e44d53dc61244ba6ab33159 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)D~Kz{{r~^}8#iwBTyNUA zabwxO+-cLMg-`SkXzZb+c`Zv!d8E8%O4RZ*@2-WsG7(zJ zdRkTYP{GAUgQ#y>a|C8-v`k#~r0KrRCG8yt9u$Pl41D(W{=@>2^rP{v8<>0;_b|2@ Wv8?`-Q?L+d8-u5-pUXO@geCygELGD0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/slime_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..4097956710a8234a60bc95dad9868e3b3a7ef2b4 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A`taxw|l|NsC0jT<+5 zt~YJmxUp=QaR@wjn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7af17b4362ea2692bd3c5b7a19b70e451881cd GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0Ffp6U=pz(30Yu5Fu}^ z!n?It-$Pqq`t<3!xw+G(O*2#Ac5!i$7h-#GQhhs6HDgJTUoeBivm0qZPKKw8V@SoV z(6h%G4;XMb2XfxY{T6Q?ShZvCd!~Jdw`SE$|n=@;>bxh!A( W0#k8cc$EdvP6kg`KbLh*2~7ZvxlDTi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..2f260261269ecc474d5390489deb4c7495c7ddd4 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Ffp6U=pz(30Yu5Fu}^ z!t0?eu(eqK|Ns9tZrpG+;?4D!m^N)%XS#Zbt&oe0ir;5L@fH<8y$T8B2ov zf*Bm1-ADs+Dm+~rLn>~$o@HlhHQ->rz_R`Bo&Ov59|*tvcUQr@3g_47w2wE%98sNa za-dXH&`M$It-jpbVkQ-Cx~0JkjAnihr!;b0Kl?P&xooLt9ly?uNm_?c>o4Jr;5L+^1nKDo_V@Z%- zFoVOh8)-mJv8Rh;NX0GRQ|x>!hCEJz8 zlJ&*!(D|QjWJR-LewX<%$UEHq)~m?ebzJjj&JA15m-CyGPs+E%M9=5unV^!*WY5rZ wZ}-Jzd}~UNESHS#uvVIASMNK!USVbhBZoDMFjqpZ5zu-DPgg&ebxsLQ026XkMF0Q* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sniper_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ae1d9e6a5a584b72a0dd91f62e0081123ee1108e GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0Ffp6U@!c)so_zHf`F3 z2zeJ57i$&X|NsAQE!OwY7PxWahN}^;nF4pNzeH!cdWfx1u9Jkk5ZfirHannZ#*!ev zUiHY@Fy8+my=1DQrsRcc!H2Bf z+`&B;l@_Gm*%%zSn<3HuoL*W^)x6`HzZ%Y1Jz=Wio~oxG^N5Y(LaP1o_OClqN^i+a rG_BlO6)l`yxK!Hpqp$1#hF#o2(^*ais~tE3w3xxu)z4*}Q$iB}MLJcR literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound.png new file mode 100644 index 0000000000000000000000000000000000000000..608fba0671150347056e1b0318fa135302d5d58a GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0C5K*0$9M;%Z+a#3la! z|NmuI{;Q<>?*K|LmIV0)GdMiEkp|?rd%8G=RNP8Bz|N3*hLwrIk%P%0nt8^7*Zt>oLqH|`i`6`XaOapK?x3(0AQ{WsOS7BGC? T?d!Z1Xe5KDtDnm{r-UW|EzUa3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..242739c9d4e129449653a486e858c118a46ce0c2 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A7x4LR=r z|Nn2?xben~8$w*-wi-e5!rHl;ryK?Tc>qU>MzF&(a)v@8;YzWwrrDm zcI(qopDUryVjA8x8yIVS|2D04X*Yjwi-e5!rClvJwc{0mIV0)GdMiEkp|>Md%8G=RNTt#VHI)?6gc$2 z^8Y_}z0Fr{_o!+Aa6aDL-4eO`$cFD)#Sx_?QJa?soMrIZ5fh+s?%nE&rj9Ai6{nx? zIGpLB7$>bMFa6+fWStye8T(uhCe;>)mI7wcP{zxz=FOM`w1&ac)z4*}Q$iB}x~oX5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/souls_rebound_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..fa6eda4e1a2b74aa6a9fed9650a47f7dbd4f65dc GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0A7x<-ZV@`2YX^JJZ!Q z04X*Yjwi-e5!rClvJwc{0mIV0)GdMiEkp|?1d%8G=RNP8Z;9^)cg;}J* zQKD^8@71**|FOrJvc@uew14$_X7+)$=Vwz49_UHR=2U0R*8CO7EB}|h#dFcFnVwuq ujzxN21$tgA8V#8rSlm{aH*BfikS)*2!+5FPc%v!M3IF! zsVA;79x&ixzUZAK&hxuJ`q?Y*_dnL($&X~(xHRgtz|L7g%Gp;7x7-!j+BHk^hukJF z{eqd7dyQXQXS-0?dNFR$HZ40lyP8*huAHtGgFq;gl9h^}rWDWYo)CMWX2y~r zzhDN3XE)M-oLo;A$B>F!F(+8pIT={g+tg<(0Irj-9@_{MHI(wiR3F z_U(1aih281jmd6U}rv!O8tamnW-g`gk#(~Fq95cU*x9zc4IuOtCkoUd(r2UO$ tS`+vy4sTR8c7Cs^nq9$rc6&w*LkKfl^4|Li1we}#JYD@<);T3K0RTGtTfG1P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/spider_queens_stinger_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..97301180df072aa405d8ecac07fcbf68f17d701e GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0DHQ5oFCTojLLUvMc|! z7zF0Z=>}U!{r~@eF!sV7<)4;%2fTr@V${GTWts`ZTNTm6pnPtISJU<%MWZh6dS z(em}a&%a1aHZiy^XB*Qjx}cb|f-8N?*7^nf9TsmHHe@_@VH49&kZ=*1)KLFb#cqxX j^Te&!JUJee*Z*a(HejA3vHJTjpoI*cu6{1-oD!MP%PHkmJtI z&emcOsOD9lE2kT5AvJBP{WY}~l<|Ns9pC;ne{<-e!CIBR~Xm5N~Cu`eA!&5R{M ze!&b5&u*jvIjNp5jv*DdQqHo9u_*E|U)ZL+ z;(P7uPANYx+*zHv-Zi&Vp*bPkreD8cdcd)``$|*1K5%Qaa4s-$VhG@vdp~*p0;^*y kM6(Yi_hig-e#*?SVm;F@;h<$3ffh1&y85}Sb4q9e0PVL`!TDyd{zGtmfj8MND>D8&e;qLdMb6IO&&w5{_xSXXV;CETaapo$H qyccTG${9HYtbP~1>)vRWXJ9DX$i%&=bG|vya0X9TKbLh*2~7Z?;z^VM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_bone_boomerang_thrown.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_bone_boomerang_thrown.png new file mode 100644 index 0000000000000000000000000000000000000000..6046f12b2b44042564d0b3167197d5a81ec06a83 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0C5GRMHjIv9?IE4@?S* zOw!R+_4T$*PELx92oT^B*(c)-Qp8viz z|Lgh{7u@gbP2c7s^gU~>VubqLNUu)y4R^m6oy%JLde-|Y#pNs|0l&*Sjx$$rs%9(+@(X5gcy=QV$O-XuaSW-r zm3)A2T6iAA<#YEInkqz{+_Ado8l!@9U<#x2dsa3!F=u8rz6m^=IhmcAIyNrpZsc9F zyo%AKVc`}Ar2__~PRuPEYuT>U%-d=(``n@^9tQ5sf;u<7lTQH6XYh3Ob6Mw<&;$U? C`bVVz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_item_spirit_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8a19ac18fc34fa222479e6a3881b089e35c3f7 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0CV&HGAg7|DEaT8gksr zuKX9_miqVW|BV;_Z``=CapT7S|NqM@y=|)z#F}5q)xJbi(%4TsqRhM`&02^JsF|@O z$S;_|;n|HeASc<=#WAGfR%y>w#-jloM=!nhOZ*=@fAmComNI(2<(2(S|azjz(x0n;3@ab)hTvC h*EW63yZYlf&uTAbp^59C0j*v-I|j8#gv?-1z_h{~Is<|NHfS*_Hn@C;l%pFY(iknCCTn+E$rnpk~IB zAirP+hi5m^fSfc>7srr_TRkU^iXL&`VYw(Lpu;(*e%-Q*w>Q5IlkflaK&LZ;>z@9O zohvSBygaKjX~yO!w`Z$2%=lclJwAU2gSPQ;-P^yuc-#qcDEg;bA8=?AQ`oUs+ZKx? lYvEaktajW*+QN{)b9+!(dzQh}x zd+_IWH1FT5!Qv|;4I>tv;n}S#U@_;#%R|-MEFLCRtZWru99FmM9JBQM|A~yp)UU6T YW4!0anB94;@Eyo{Pgg&ebxsLQ03$X$dH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..21d5978b01d7e782869c66be43df370cd452777b GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0E69bqA9AIyy=U3O8=t z*tl`y|Ns9VZb@I2=hT_5t|7;L#Up;TO^Aqy$Yhu57NAnbk|4ie28U-i(tw;8PZ!6K zid!+g?0iQJIF8Dtoc}HVUD>cMI{OwUgGtQ_)?=ayYci)5sa;d5(%8t5AsN}46T#K; z;bN(Oi%rRAL;E$ex6l6`EjUT;_Ybk}Q)PZD3G93+c(tM4`5`028fT{6=U?tr0oudh M>FVdQ&MBb@0E=%+WB>pF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..ef08f3194fa9a6d4d4b0584779b593a69ca78557 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE06|)JY9Ds1%*|4PWn1J z|NsBrxN+l+8#f+qN$*To*O24B;t{{vCPYL;WPU=gJy11cNswPKgTu2MX+Tbbr;B4q z#jT_RObnsDoO}lqI9OP>Z2$9rr>lEz7GJqqVtMq*ySKN?Gv8U`b^5z##8#1s2|i{o zmvHbqJ5|^{=5mYho5A({Roc9k3mdn(2yT1euVePoLUQ4k^Ma}Mc0Vt2PhZ8fnVIQP P9mt)Yu6{1-oD!M<-RMm% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_last_breath_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..c8351b47b43d8d270390bcdf3590caaf3615de29 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE06|)JY9Ds1%*|4PWn1J z|NsBrxN+l+8#f+qN$*To*O24B;t{{vCPYL;WPU=gJy11cNswPKgTu2MX+Tbdr;B4q z#jW16M;Q+&FgOR^N&KI?(f{qWkk1Amwe$8$-F$F(O=#rm(y7r!Mo~i7wrKv*+|_AW z>mc1YXJ46<)&eyJ)(zJq^&MUmpJ)EUyh_Y!xrXY!iSLaV8f2I@zv7Ek0=duA)z4*} HQ$iB}iW*Ag literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger.png new file mode 100644 index 0000000000000000000000000000000000000000..2412af31454a0563beb18a9361f5b067b87788de GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0CT!@&B?b|EEoxmYtm) z%A{1ytFFZ$z}3EFuADAweyNp;pr^jLrW8+Kc*sehYQ~ZvzhDN3XE)M-oCr@B$B>F! zsV9ymvN#GHaNsq6CcmzB%bNJk^mAdQ-&r1QKBi%6#8~6fXBc|wx-TUrY zy-6!hl>YpVHQ;9Zx^7LS0KV%{ddHLv&nXvwHrrA5**>L($)b8$)oY*~44$rjF6*2U FngBqyNGkvU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e9816006e640ab8188612e9475adb8d857547b GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A7xX_huDV%J8~+=B_!b!1p3ow1IopH?O(_8D@zwxrtL(XXZ7BE)zahvS)R%9Q%A< m-P-I2P4`*__B6h)+smMu!`xV^;4&9zC4;A{pUXO@geCx0URh)S literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..77a49011c3fb478279f6cf15c183c597ea7f33e7 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0A7x<-evBkClpGXS%wE z9Ji;w__S%${{R2KapT4tH*U<8)8%SkqQxLk&8wcBogK=g#F}3^bK?K%sb8-EH8Yk3 z`2{mLJiCzwh-Ars*v;0nQLtgA^`we*uD!wqq2=UGp3lKW^Tv9Pc)AIid orJuj%)H@~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_spider_queens_stinger_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..791b7b127c0a8f60227ead89f7b0e7a4e2f618f4 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0ETd;;~W@oH_CTvMc{R z^~Jf`m;C?#f8)lDH*VaRHf`EmIbAIVfofj$?CfmT{L)Y+B@H?5&UE!Ol^>!&&5R{M ze!&b5&u*jvIq9A*jv*DdQcty(9&zAd3D|g(`|tNGDOGpwrvGhq{eL?6%h!hby8P(t z5x%}lH}PDL$LrtQ)-BvAeBFEAN`_Z<+y61%_M0&2w--y`fg(nh1%gwO&L=FJ(xi7z nqDN?kx8|xF@(a#?-Z}rnE#}}UH`lxXTFKz)>gTe~DWM4fL`z&o literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch.png new file mode 100644 index 0000000000000000000000000000000000000000..646aa367908241fb4e9e8843aeaede7473192b57 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08`St5(gc{@~=9xpKOX zgoOTSX+2oCbAe2cdl}&r4kd&u#^hux|#*!evU`PX@;uLgx%X^_x-(bhZ=O+Ap zGD>&8$H$$nF4}Zpe)YoWdGFHNzM7ooeYNAxi{v%Gr(gT^>wLhO*J2v>j?ep<_y1$L XmCh{P)o-Ezw2Z;i)z4*}Q$iB}{QXrO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..1484e776616e3814e9a5e04ad13faf84c1823cb4 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhD~Kz{-I=a_L{{yQkkCIZ zt!iHN2Pe-wShr=aobHkM?EnA&FT3)et9{ALiT^{Hlv3HWwHO3e3Q29;xben~8}+ho zo*6dBqF14@>FkD zW9#Ll6t;CbKh`$(*6+9P{BvyO+UAP?I#UjLuBa_=`g}l=ZBhw~m}Z`w0niByp00i_ I>zopr0Dg>O@Bjb+ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4293da576a7bdedb54b75767444614b6beb3ec GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0Df%$d#U(t0E$^x))~YF_mtvT7P~+@0y_XP0fT z0UE(r666=m;PC858jw@s>EaktaVxfqm5IrK!`0rhxc2{Mu5J5R{~VB)dN0!7CiLK4 zCdWgCBTlYYc@N%_$UeXItdsp5xlclj%a@#4|8O7A!n(e{h0Trb^U9S1Ud`OY9iSLz ztturXV_YNN6eQQ$#lCJ@>$G3F34VJD&C_Zw=+qQ4cdD|5Ioqjz0@}~u>FVdQ&MBb@ E04FG4;{X5v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/starred_venoms_touch_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..517d0e0897477271b8618cd39966aa351077f627 GIT binary patch literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE0FF?SJ#l^UMVDX>J(3EOWxI! zjaNRYKH0c6OZ}d7!_A}f8(q>R7O)o_?v!^()BM71dN_U$gYP63spng2@_;U2@O1Ta JS?83{1OT|VVo(48 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c218760b5702d14f6d7db36227db124b96e427 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`S)MMAAr-fh7ifPl5&qlX=XvSM z%ys|l5BtB{-zH-&A$+al0?VR66QL_}=Fa8a%D?f%O=hMTh(`AP~i&AR{m0NTpn M>FVdQ&MBb@0EjU>KL7v# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..ecde4e83d315f1f9b7ff22b8eba3498a10560f57 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Kz{-I=cLX(pQCCzqX_ zJ#E^w|NsAQ+_>?^jT!^*^9z`=Cz z>%af^OHX|YU}Tz-bZFAcEdA7p5kfQk)Mr}Arr$J}|M1xt^Zc@TpCqsKJ~@17W{tGP s@o|Nky7E~Raju|P$PB|(0{3=Yq3qyag>o-U3d6}NKxS{WG>I9NQh z|2G~zXWrk||L8}-#Jva0m7H3XR17Ay-CfkwmML*V=c#Y=RYh60K#ggM35UWerItu^ qJ?+q#R`MZE$@Hw^gDcq;G5T%bvRw=`p25@A&t;ucLK6VLZ$rxf literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stinger_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ffb26da97176cc60f875f166175703bf391ae006 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGD~Kz{-I=bQ;U|}!ojq;Z zv>P{WY}~l<|Ns9kE-s#Cq7VBQN&*!zmIV0)GdMiEkp|@WdAc};RNU%4%_`QQAi!{u z_t!u6X&a;6SN?aX3!QOG=J%Xm7w?=2arMyMG3m@!y)~tl?JLR{_?vVt^lU%D#HY|M meL`@8=&L(CTHgK&zuCSlW8C}kL`N;qWCl-HKbLh*2~7Y;97OH_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5a5597fae355b8bedcc6adc4ddab4ea431ab44 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Xn;?ME0F$qpJ!<>!_U(^+1c6u zzsxw>&Eoe;*Z?TOSQ6wH%;50sMjDXg@9E+gQgJKk06RnI*@L_X3^<%GCQRS||3qlk zN+!QbMrMaN(bDNt!y0!_c=UTQKi}_jYO@a6TxOqX{o}TkX-!6NonMamO>?1-9u)@e bWx4y;|7MhHe7CR~Xf%VTtDnm{r-UW|D1AR$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..0f761c044de5647bc029230949d5b91737f4e36d GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08|h&GP@tjLvj*4LR-` zH*Rd)xbgr0|36RjEDdJ(d7p9EV@SoV*t4um4GtVE z4qmB0|JU;#+BI*l(ybTa*HXi3re&M;PV%s@N-X1KyEJpbgG|B8F8VGv6=O-*vo_zP)ww+ns`I_dR_3^T^BK4;L9F@)>WJO{sSW+QZ=K>gTe~DWM4f DY93N0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/stun_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0fe74bb4c530e9c802e14f729603ebc4474e984 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE0F&GWyaEAhM%W-{{R2K zapT4tH*RRiad)Px|Gdw0wwvYVr>FOUiWp0R{DK)Ap4~_Ta^gH)978H@<@T{M9W~%_ zVxKwj_xF!y=MdY8Vop? zFKnIdwex?Ys==h6>GlC}*9_{OCh@FSu`$2P%aY+0Ik{^`i1mhLp}Xz!_B~_2a_Fza z$LX6GyJj{qeOt@+Bg0aA_XSa*t=C027rH(F#N?vNWKz};Dh;%T!PC{xWt~$(69A^8 BOho_y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..1c566772941bdddd353dfcb2c02356c07a5fec5e GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0E4LV(d>~JiNsC-4&l3 zdmUFavi<*a^#A|*|KH-ie#(1wIN^AcdXBjGG*|H(H*Wm@|Nm|8lS@Etj3q&S!3+-1 zZlnP@;hrvzAr-f3Pi$pmaTGXmKrW{3&*a*+$swk?f;*n|Nqzj{}%W4Q{Kjn8($qxINqc_%~d={TwFtryE9$=|NsBukF`^Q z`WZ`t{DK)Ap4~_Tar3cB`RADdN#=`Pn9zM&G_=r)LD&3Jq)K*am_6LH`6R)b6mE;4vDMN4ffth tI$dWW>2;~}4r{ssi?z>%R@*O&>Q(HSv+d^0Q32Y@;OXk;vd$@?2>`YQV4eT~ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8628097d6179bb930f2d0c262ef4b7aa54366e16 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0F&G|9^i1W3Cb7jlGVC zml(gh; z&!jqMcCudI)gN`Tlb>U@@7u*D3@pjd1UL3?6Wgw_vtL{~Ypv{O>o*DeYuFDkJzpPP xVUiWX^1~&E(_GK4DcqrJb;E->^K(8r*R%RDhqDz07Xxi(@O1TaS?83{1OVOpVvPU* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/sulphur_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..128858b3456f6515455e4e47c04705062be4acc5 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0FF?SJ#l^&Jh>CvDfkN z65|z(Y|~uDk2k5mI-Ia^OM?7@862M7NCR>rJY5_^DsCkmVBgWe z5O6d`HGrqZKt#1M@Z0`->bWbPyuULs+V5DDu+mLs4uz-JPMS0?wYl|w>bvQ@aSP|0 z*?#bgOx_Tq7=O?4Z+zmx2k#gB*Y>$leWK*=xbgr0|7p{v)n{i%W`v0|MBD>vU@Qsp3ubV5b|VeQN%eGb z45_#k>(?sEYRJL8^7X&l^BCjxzTVI__~7)qZnpS4<7L(HDH4mj4O93Ul{PK(Ir*g4 zyh*%xxx$6=mDe7-=-tX`oVxPtvgXEHe^jr$d@tEiYRl@!^YNelLi>_MyKgI2KkgO| Xna||5Wad*ZpoI*cu6{1-oD!MR~sr%jtS zbz-mD;>`MN5a>)-kIV>@sPu7hap82<(2(PHyHLFhsDZI0$S;_|;n|HeASct)#WAGf zmh3S_zC#8K3z)TMZq1{?0@xgYOP^@?GGbGcpN zlbvte+cv~4pA>jMd&?b;SDyd? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/super_undead_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..03c32bf69d88792b9ba50726fb9e3745065c98d3 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C_w&gOL1(2(QqOjlQ1 zoSB`SJ#}L5#*G_q+_>@o|9^=}pJ~&kMP`J#xVZFYXvqLIFqQ=Q1v5B2yO9Ruq%-QFt2OUUbD=KJa+aY&%dbfH?IXMU@Qsp z3ubV5b|VeQiScxC45_%)<9n3xfB{F(?oI#K_1<0|_<-kcyae-syTM+T*H^2y6djup zQ2FhgKw!P*wF42Cer@@>b3 ztKXW>2{M|oB*-tA!Qt7BG$1F<)5S5Q;#Q1LD`SHJ&*?pFhyO2sG%qvRp;i9Xv-3Td z%dEwnDh$t6&!2Sn%!A+_!|Zy2!>3XhRO4NCe-}B#_`E$ax#j1a;CofOjtgvGezza literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/terminator_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..b85d8e33a7ae77abee4fb0820ada3bce0d40e51d GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0FF?SJ#l^W)PImV`uN0 zw08jm!!>4R1}UBY|Nn2?xben~8-@lsN6uX`%dEI^YM0pTuJ2zz9eMtx=jEfj-~Q?b z<}KA;;tn*0u_VYZn8D%MjWi%9!_&nvq~ca?4=YoPfxr>5@@xP9hvb~=SI7-oDBX77 z!0);Jp)(v)jy`;+cWIy3(?zT9T;;eL_(MXxuI-;qX^W^_Txj^r*=%|>cjv6Y& zpPTtEd97jFftNi0Ez`5j1=IiL?EPNF%OkhsQ0+=C_VkbETK{KP`A)B@wBpgJfn$;Mtc>87MFMeFMR&~~O!KTh<_jfP{oo6vvFj>C^Xf1=MtDnm{r-UW| D*-K-| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4c0614b8b13fb2480213e3df6470df18fbe2db GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C_w&gOL1kf`+W^z>9) zoSB`SJ#}JlR8&+&dAXvZVq`{`i;GJ~bm(88QpS=XzhDN3XE)M-oJda>$B>F!Ne9>& zLeCs!JnSICeDP;g+rQns?wz@J@98|b&euBS*o(`aORW194y|*I+7MZ`+9AhcwyedJ z^&guxHrcBFeY-*Loac}FcEkSvvVZLPYK!j1yk4T-EX90iy8X<9KuZ`rUHx3vIVCg! E07P3#rvLx| literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..a321afa4637adb4a371baae4b73c8fd508785f1a GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A_^af!?bQ&d!}C@=T) z^o)v%x^d&i#*G{Q|NlRAVy}iAcW1hKc6PSf;>`N&Y>7%APG^m>JO+?Kj3q&S!3+-1 zZlnP@*`6+rAr-e`ds-P?40)V_%M<_W<~QbVNe`*?6!84CT;kjL*j@L7-d8hRj>;Ef z{58kmScYPz?2i9k4B|VNyKvT?)=qD}H)9W*8~fy`0W%Ulv2Q4@HdlPS>2~+#wx3sC l)d_AmJp1jmo;2xFrsyXu@h?;bP64fD@O1TaS?83{1ONz^SXKZ4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2d065cc799177b21b0a95f87cc822cb37e885e GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A_^af!?bQ&d#+^z^JK zFOQ0f`v3p`#*G_q+_*7yVsCbKw%X!MiAtZ&baf3mZcb;7`t0o5nU-Ndos1>aUSrY&N literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/undead_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b656fb5bc71d7e8e5bf794017a18d2305e7d155c GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0A_^af!?bQ&d#+^z^JK zFOQ0f`v3p`#*G_q+_*7yVsCbKw%X!MiAtZ&baf3mZcb;7`t0o5nU-Ndos13Gd zsoKeXy4sR6gSwdFiozWP3TA%ioy2f(*8@SvXikrNhd8Eh-*7rsX4A&Kj{<~L80{Cd k3Vd+#z25y}deV14DIexVxi8Kt0WD?lboFyt=akR{0DuHjkpKVy literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa35d48454a83cf0c0327650cacbfd207575f64 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08`StM=gJnYnVhkA#H& zX=y!Jx8+EDb~UehD3ekuo3<8%z)B&h4GMSLfJzxlg8YIR9G=}s19GB0T^vIyZpEHz z=WPfOaSD86m+-&x=(_*QbP0 Hl+XkKtH(?4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..f049b5c87ce7f9edd81ddcbf2adb87c64c842083 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0Df%Kby~;bFYzfjSvWg8YIR z9G=}s19D0{T^vIyZu$1M3LY@vVcyT<_i!;whlh&T y^z(t@8sm}>|x&*16m=d#Wzp$PzKS7PY^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9eae9199d146a041a7de4b4103cd69a0a232e9fb GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0Df%46p-f6z3<4T*+@0y_GMnuhfjSvWg8YIR z9G=}s19FNyT^vIyZpHeuGO;LdFz;^tU;k}J-1!)Z3-Zf)vzq^=EZQp8av+3h_krwl zTLpzx^{rgKv)OyGm>zC4`jhg?n?q*v+kEqiU3R}33@i`rJSF(X^P;n~tj>)24V?ej ues!Pkbuj)Xn88z(y!P##^1U224;f=+*yLgtw5R}WXYh3Ob6Mw<&;$T*c3H0g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/venoms_touch_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c754415460342d68383547ad52560af1ee7e6ef GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0FF?SJ#l^UMVDXKpG|NsAykkDK?-G5qI)x7Fj3<9A{N~vtxGkH870(CN$1o;Is zI6S+N2ILfax;TbZ+$!yAWn?zsVDan-nfQ15(N|5y|3Bz^n3kUtjwxBdBRG+znBnZk zX91#o413>Rm9BnT&-m)?gDc$3FK)R1|D)?*;Qk^s@j&dZ>rD(s9~_w)&OA)tcb!Qj tNs>!r`ob?Pi5A!89V7(jEzGOnWEMTgyuGO6{9K^r44$rjF6*2UngE2>T513Q literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..da7b88cb1b5a98c2b2b7defb330b3974b91dbd30 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`-JULvAr-fh7idqIKK*}xkLR_N zq@+*r!NI~U2Xg`g1Mjpg$Z*PNNc=O)f4;K-r za;0VAh1=J~*Khuq#mB?<&tKz!!?|M@cpfp&^$jrAS#ZI$Io8Fee6ApFxPjN_zBi0S!@i49P9Vjm3(^)bQXiBtDnm{r-UW|B<@kH literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_0.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_0.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7c6abcef047e8d76955ce36424026ffa741c19 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0C6#mp3sn(bUw`kmK%5 zS8r-+TDyAf>60h_|Np;nfisbuWMa%Hn)R8E8~Tg2coY3_*$ z3O@x3jehE=|7<>Y!1d=E?y{558DkT|k5n^vynNhzj{EQOgKtFU@zg}f-)0QVXNo^5 S``sI85re0zpUXO@geCx^H&KNE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_1.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_1.png new file mode 100644 index 0000000000000000000000000000000000000000..55a2c8efb0919f812b393b02df7b6879f6b37b4e GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0C6#mp3sn(bUw`kmK%5 zS8r-+TDyAf>60gK+_)uCOixJj^*(XW`PI!2mz Q70@0APgg&ebxsLQ0Kh*@vH$=8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_2.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/bows/wither_bow_pulling_2.png new file mode 100644 index 0000000000000000000000000000000000000000..fe31ae0bb0f97321cad5681ada1387c521393dd4 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0C6#mp3sn(bUw`kmK%5 zS8r-+TDyAf>60gK+_S-#XNIUhaY7qwr5NRE!jl)`diAt`+q+G|O=Na9sNJ zhSkN>7IHT*+~Pc8)$cWd>4L1n_oI`l7$2PzKk}11WW_n-eIY{mKWt6R?U|~#$jsjj Pw1vUb)z4*}Q$iB}Nvlp6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana.png new file mode 100644 index 0000000000000000000000000000000000000000..966fd15db3a68ef3163805754a17578d05ae45bf GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0E5QjXLuD3p0ac&&x+w zPVIVn|C-qBE;BP*EB37t3<mI*-FVdQ&MBb@00qQa^#A|> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana_soulcry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/atomsplit_katana_soulcry.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d1c33025550286c493d62b26921dbaf3d09dd9 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0F$m&FlZ)2Y?u#N1_J@6i(jT#l{E_Ehtk}0oFeETDNN!3I{QEWj|KA6{u6eDyGU+Bz8)He3UoeBi zvm0qZPMD{QV@SoVBnj4rpl1&l93p`YPXdztY(8UoN|Cd;3n;s$ylyiFfYHCG_Pb<%iw4E%1-=s2OuW{44_= PpbZS3u6{1-oD!M<%0gDC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver.png new file mode 100644 index 0000000000000000000000000000000000000000..df0a3a23d00cdcf79ae81eb69b0f00d163c03cf1 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|NZyt|BV;_Up&3E z?8^Vs$Cj>L(J^!4f0?DXtLw7M%u87FOZ~JXG$oBixTQ93W?BN&!&nmJ7tG-B>_!@p zlkVx_7*cU7nSuG;-Q9{jajLNfXP>2TC4OM@-^ON~=d$e{+eOXj^p*zJxbnQ(V+Rhz z9oY1^M1I2Qr~3-d^RiDka;SCdZ=nM{M&b&*)1p}o|GnQ-VlcOCes&~d$HW~CjofEW dL@@+1GF(fOHK}LKwgXzp;OXk;vd$@?2>^o`Tm1k4 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/bone_reaver_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..4a7ae78f7df0e76293997ac3170b926cbffba979 GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdu0XoFF8lxgziU@?oIbYn z#nVgwe*M4k;=jz&+cPKrUv}j`SNjqXZYkFMQa|m8GV>BmN#pOc`zHXkF_r}R1v5B2 zyO9Ru^n1EEhE&{2l3;Dv_e`aeQGjKU#^lXS-|cggQfIflef{Wgclpf&*=y%jTrvCT z;FA7&?LrqrxwZYz7=I^!Gn`u#e&>IckJyd=ok?-b%)1Q3dc0K&<=6B7{gH6+-SNlu z@l#j)D87&$IBkA&a$;cli}$TllUn+_jnwzeJ!|su#*v&^KTkI_&a^+CerO86g?tUe Yw*#y_{IhTE13Hbt)78&qol`;+0PWFwa{vGU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore.png new file mode 100644 index 0000000000000000000000000000000000000000..598629e37bccf5ea417fca9b3879ce15f90e5d35 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A8aXwkcO@8nI~G~MFG zl=c7r|1U2u4-`Lr`t@Lq52;MmyWw;Fvf8EWX8E^UwTl<8 cV~D9^44cekrQ(*f4QM8Vr>mdKI;Vst0Ft3UPXGV_ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/dark_claymore_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..98c92aee6e980fa25b1e09850d8a182569c6bb92 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyiUB?$u0ZC^Aty#q4j<>mkX z|8Ednpy?JbZ{jAVtiNc{qTG8EUIXPAOM?7@862M7NCR@xJzX3_DsH_!ZOC_sfyepc zjlP9v|DHe9qxDRJ)9~B+^Xqn-#=EM&d@||Kfhkrz9;PbRmFeZ(_SSaij((Is{%Wz? z2g#R3EcvX6xNcK#H*>$S;_|;n|He zASct)#WAGfmT&iQ#s&i(=2*}Ez5h3r6nwGvWcNNcb?by{vsm&jZCdB5JJU;U=#bT5bRU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/felthorn_reaper_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/felthorn_reaper_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..daf47f215aa722037a03e2efbde044ba8bbaac59 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyHUT~%u0UFZTPiAYp~aQ=#Zr}% z1g2jzy7|ld-=Dt!Ygcqs*JZzWdg=7BrT_o`wYK&V7gtnMGX-kNpYY8^(Wi6SQez;8 zu_VYZn8D%MjWi%6j5&dm%cU+C) zy>$9$lnD3v+}`Ix3k#kJ1sUG3w>sbUySe&~zv_{id)I|lTPNlHshFqA|HRsVgM5uo z7U%b?Yd-qU_t0JU`~GvLV2+e|C8{TWzm%S}K+$5m*^{ddoB4(AxOMUVWBGP_59jCS v2Ko10H#|JsZ|;zg_kH(A?L7SxaX%Q}IgTe~DWM4f=0$uu literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..757ef8d58bf92ac9e612354f45d3cb28823b1ff3 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=25edEcIIf3QxsGhKaA zgnD62OopG_4k;;r7ne*!Zcj7OHc?R{eSHl%?)TXn9s)HmmIV0)GdMiEkp|?1c)B=- zRNP8#V7L~bp&Y=arNErZVy4%?;gR9UI?I7+A;9>A)6RKAYb}I*(&*16m=d#Wzp$P!~ Cr#@`} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_eye_sword_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..ae248fcc8474f0a61647315d2bed3a3fa6566886 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyW&u7Su0T4|ko#br?(O;Z{w^+s zF)KT4=8gks8W}-W!q}oJ9U+nT;6rryA?pz2^Cu2#FUoeBi zvm0qZ&N5FI$B>F!S5KQK9SGoPPMlDXU-19*v0Sf;ioR>_r;BuFPyKEAw;=23amTEu zzw6lk-}?A8!)j)w%iBd2T(g&5InVI%N5;%}*YuL-8P`(vs(xBVU0=C`Q8ulhZ1EE5 zg1Kk^eyMRNXTQX^$k-x!pDx1-8L53|PPY{|f90LOJv7B2_-t41yy=%+f9?Ap?Q&#O x&i4Ih_1Pttn~SR~3}Vw@=2ckb@FnJ;z2!m9ndhrYn}IH7@O1TaS?83{1OV>8c#;4B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..6ec357bf391ac6f2d9b61a41bfa0f43b74ed4e8f GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|G#nL#=d>~rcIl6 zuueBSJG(PoeNlvZhM$~^i%Wrtpr@H=s2ZDw9JhpoL~Xe8E1(|6k|4ie28U-i(tw;$ zPZ!6Kid)GI4C_JzjyYAXXxLyAa^M4Vh=aUV0*jDG@&hAAZk@;ruXw@^isszq4?B>( z_a~Ff%HwGqXN`|CC!P4n{(ZBO#lD@ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/giants_sword_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..54f283d299c099d783ee0104a7b789514ed326ef GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdu0UEsLgL1a8~gU{n>KCQ z|Ns9BOavE2sE4Yt9jw#sOjpnFlk+qa)sW-P&d%1;({pigk<+f54%Eh2666=m;PC85 z8j!Qb)5S5Q;?~o%Hw&E|Ia~tew#>ZB^V2uHl+yu{TlD0=p(`{Wo_-Fre+G%J2BAW z1dw7Z3GxeOaCmkj4amv&ba4!+xaE5~Q0TA%2TK5Bkl>bFrtkLI$?D4Q?(b{ewDjDY z1Iaw+sy=Mk=N$Yx%d~uJzl459Qf!H>Lie{-Z)dPBSRlMNa-OYTg`m>OJMx@+65mxe zJ&6dCd9>{6`TQM+SG_Bl)*-V0(f?@zf#3cx$T_n_H_iKbA80j$r>mdKI;Vst0Hv;F A00000 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/starred_felthorn_reaper_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/starred_felthorn_reaper_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..7cd55b089b2c06f7df4dfd31ff16d003fbc09cd4 GIT binary patch literal 316 zcmV-C0mJ@@P)rI2F$b4k{Ferv6$h^>YE{qAP)+&o@BqHX8Ci5M-71*7)yfuf*Bm1-ADs+96ene zLn?07_HAW65WwNG-};Sx-mN{|7YgMnJnQa%n$7h4!~EAL_Se-5@0I;~amMXq$7Xr& m`@b>d-{R?P``BZ8D)fab7;k;DoXZ9@jKR~@&t;ucLK6TgDn#f2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..95784b3e2b8fb8e4d73a7f1ee6e90fc34c811764 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdu0WcJK|qzWM1mn9B%w$` zLV~w8pUK`_Y<8Efu5QoEM=mZdUYsx37#!|?`+Ma1msvZ`?>9=%18QR|3GxeOaCmkj z4akY~ba4!+xb^l-Bx8dC56i_ZU-tc7&B{F2^uV8ezHi<~3B2nosBc-nmiT;*Nl~1SecCFm_eHK^cDz$evg?Ar4@sEj6+B@CXfelF{r5}E+%$W^!i literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry.png new file mode 100644 index 0000000000000000000000000000000000000000..347731307e36d6566137a7e924c38f43bcc30768 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0F$m%}YW;VpEDBlfAjF zuC9xV3vX?{*zB%5(}X1$5>z=${(g=B|MvkCgTR!%hYNuk7)yfuf*Bm1-ADs+96Vhd zLn?07o-!0`FyLUhs3Txn`1o&s_URylyY=~P&yLD>nZGW$qVJ!-;(L;z)$z?XvkTp~ kSzf(fl9J4K(&q>BZyv@iR}3#^1I=RaboFyt=akR{0J~H`0RR91 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidedge_katana_soulcry_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..c018de04e1cf5673ca14158539cab33b82669a1f GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdu0Z<#-v@uc#{atJb!VFJ zrW8T3*F!Z_gZOY;fRk2}~(o_CITD<6Og-zt_zbZvSH{EIzV3d0h=d?M`MsuHqjJ z)z8=6_^Uqu*Fu_=rzsV2-U<@Fz|m!U{lSFYT0iFPIINePV9yx9$y_EN@a81Y O4hBzGKbLh*2~7YB3{JuT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana.png new file mode 100644 index 0000000000000000000000000000000000000000..6df88c6a04d1813b937ae925a011c59a4f4c5105 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AVl5K!eT>3R8x$=;l| zHeW(QLRVMU#l=N}A;F9Dh1l$_zs)-q0o5^<1o;IsI6S+N2ISayx;TbZ+^Rik$aKJf z!|7tk6_cX>zsq=e{@!k0+WJ%S^GC%DwzEIJGG3MWdgSdAsmRLR+^@>TpWgR=C05sJ W&8Scudwws_90pHUKbLh*2~7a_96B`s literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/voidwalker_katana_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6777c1d58e0f7173e9c07e5ea90a8c480e5d26 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>u0UFBc302KM{EoZO!nry zwfPbf61uv&E-o$-3<+MGFH|{8m>2|BmrMQyDrGDQ@(X5gcy=QV$O-dwaSW-r_4dp` z#s&ip=fEZh(Ov)d>~fgQdgklLjgSBJez<#Rd8_pk#_y-+%55q76~58eJ5=x;M12o>9V&sc%t*K{n6^22WQ%mvv4FO#rFW BNk;$x literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana.png new file mode 100644 index 0000000000000000000000000000000000000000..555c264ad39a671f3f1abc2b204f5408aea175ad GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVpki7ft?~&(UX6-mH z!H{6ZzBRvVc}PN$nVIeH6}MV}Di}+G{DK)Ap4~_Ta%?bkzh!$ zV&7_JAC%v)ld+3uM*P{JKEC4hvbU6b>(}ux>BQPwu>y@}@O1TaS?83{1OU-`NlE|! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana_soulcry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/longswords/vorpal_katana_soulcry.png new file mode 100644 index 0000000000000000000000000000000000000000..f18a7d661d4849e5f4a2ffd250d8257357c048e9 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AVpko+je2|9>BB zN)fy>O*kZ>$clZd1Vci8*K#v6+quUMJ^`v@ED7=pW^j0RBMr#0@pN$vskl{p%24cp zf&f#X_>mna|Gu9crm^IAzocEOeM@|rf$@y;!+&+!3X9(^y}U;6x9j)3hbC1wPW@$G Xxu4PUF0)t}&>RL&S3j3^P6CGTQUcgH2UC(z;I1Qm!auQss>M{)WkPdGkhgyElq$`kX&ms>7018-bQEc)I$z JtaD0e0s!hxR8{~0 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/other/pumpkin_launcher.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/other/pumpkin_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..7aaf6eace30a2501d358d3451e9b1b3d2547220b GIT binary patch literal 508 zcmVNODxtjd+f?|Om zd2~QrecrL~TEG$uU;&>!a{x{SodC>FOwSC6@bpB`=`X*-*l`_4?Hpm#94@c z$rQku9H0~*1!%+c%mP6GAn7dD{N<(9Vn`zE*}UfrJj=5ZalUkE*ji>p>9t2ucs)(B5?H-h@iW4_>yEPqa z8Fvir#pob}WtNpzGrivfs`LEqnNFPIv;W=!V1<|0t^m{fJs@c*-A-r?Z};FpE!|$= zC@qaCLQcb#--hHTwZ50`%``>n1?}0000i*N*SGTwso1S}SCM0O8CcIY5a^YH~Unkhk=&TZMU}#8XXnHPl_Wt^d|4e`T d+uMKKDtyV2FJtF`B literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/frozen_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/frozen_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..d11614491fcb65ab6ecf84c039120d606008a799 GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyasfUet{_2icJJaHDKkG$+WGI? zgZ~Q;|L;s!&+wD;G!xATkv$4j!B`UH7tG-B>_!@pQ{?I57*cWT>6x9PM+|tF13zs0 zm0wY7trT(Kljd*b2iCj!&(2JjnV!4k_srk2rpD!mh4vV?*%g*YJ&?P&^2Ex5=SW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster.png new file mode 100644 index 0000000000000000000000000000000000000000..657834d9f356764d4fd82d04b6f86d36989df5b6 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C69SJ>;q?;z?~t=<_c zml1Qj_vW8x>;Im0-dps47lWde^NkigMGbABN|T;1H-HplNswPKgTu2MX+Tbdr;B4q z#jVs6R~cOmIan^n?kHUFKX1PGlRsx49F70*_?mo9l;A_>GfegCRX-nm-1FI|Ic3NH zw#=Z=W91S1e>CX7bn>~vV!U_Sxmg{aD`!Tyopd;?a^32?tY|wkqbG;5HP8+QPgg&e IbxsLQ0JA+$K>z>% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/ghoul_buster_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..8af3bbeb0980ae774d616567664bdb6499026ab9 GIT binary patch literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyx&b~Ru0UFbUBN-rGgdAm=63J; zzh|q}J8%AZW*M3Ke;31z7QMYL{EAl2iW=HLmGcwXUjQk_k|4ie28U-i(tw;kPZ!6K zid#$1x{4if;9(9lU6#D-e{OqXYO2HS`18lA|4B^R`DVMP)X~(uPaO?9MaGGo?>alI zJ{>tTMU-Q|n$&;sb6m#d%C0dLx{KAXIX*aT^J&492Qk^6JFjU^4|$!_^E^j2b)}E~ zzU`}p!jD~ub&TC{T{)lK&bzO+=hlk+X!XACem=RFJ(tCs=fAjfUa5ny8F!#+=8_=4V21ts4}HC{1;`Edba4!+ zxRsockf6`Yo50W*l%5=H(7o5@$W4(W2`O6n-kc1ZCBl|$HELiCj~1KpZ13(x+%BKz z*cF$Fb`(~xYL14hhd2#6AufE#5<=<21{m%M;Z>yHbCPUJYD@<);T3K0RU{U BN{#>k literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/glacial_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/glacial_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..5912f1f8df8afd335aad8fe84bd8649f0f9e0992 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>t{_2i_6$F{&UE#CA3ps5 z|NqX{uZ4#%&At6U^TdCTRsR`c{(G8vu+h6?1eea$pay#wYl{GHWlRZNO40@-w%xgPv zdrr&g34#oF{F;m|aC+^KwP(8ilf#~?aXrIh28$xb37TE4o2*&97T#mFk}#cN{Hx~v z<}+DUo7a5bwQJ8c)7>%QzB^aGnt9vq*1msVUYjoX!(leRabklFgU5B&XUD`7jDU_~ N@O1TaS?83{1OUnVaQgrN literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..7850584c872e0348a857ba34a5aa2bc4cdf47651 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0E@!*v#pyG2zFH$c(TI z1`eK7oBHf*1#xyyGtmq`xz2QTjvE`))YL33Eycyf4H=lkfqEDia<#6u0V&3kAirP+ zhi5m^fSf2#7srr_Te01)Obreku8h_ve&4@(O|oY7{DOtz9~xh4v4^(YFgc;b*s7eg zZ_=w1Yb+g~X%&3Gu*u-{nKO@h*C^Zncy=ZD_srA$7t-ec%3OBE|1`(W^K!@L-)AgH VW#0VUbNfG#)t;_?F6*2UngEC@PTK$g literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/reaper_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..7f22e8e0e646a4e2c22cefc0e9d63334231b3534 GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyHUT~%u0UE`T-?&q639?fQ{!~j z;7PUdG!s=2XV37H>r7X#&(4m_2n%6g%V6LzWMC3!V3_dZ1;>pId=r~bMb6&})W%p6 zH z(-iZ1(<{sG^my;oPF(gb^{iyaT;or()^|Q$RM(UneZKqG!Tal4Q9 Yla8_f;$X8%0J@67)78&qol`;+06wH>Q2+n{ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..107a96355488baf4a85b6b505c469b62280725ae GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E09iRVA#mO@c;k+RtAPE zSFSu}VCZ@INNjeO7v~EJh6H8?Nv)u&BA`0Pk|4ie28U-i(tsRaPZ!6Kid(haj$#J{ zM3{vG>fY7gf3!6rv213gqk4$}$3=57*Go&YIz59m*Rh@5aX3fa^ULStQ)z0S?k`=@ obn&yfoA|cB9M|W)m$mxFEfB@T_o(bD&>0L2p00i_>zopr04BjgjsO4v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..f9b95a4bf5afa8582bc0d6ad9abaf9ad33b12e99 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>u0WcZK{ABSq37izvDsZ-oG%PnmPjxpyq7Z*2P$PO3GxeOaCmkj4ajNoba4!+xV7}0 zp%9BAhfCmwi;`1+&o7VVRa?aQ=F8tj6Y@70bGC(@KeS@a!JP7kb1&QUs(exvQr{-* zv7`1$W@X@{LkGBw8$?+%wo2LtW-mSX->H-ND$}WVQlE_8uUc3&->;%)Wl!~*)5leI x{aLDG7rLVV$o(Vf&!&GrzV!R<|1QG+8S}QYux}Fo?*w!WgQu&X%Q~loCIBv^Vz~eS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall.png new file mode 100644 index 0000000000000000000000000000000000000000..8174335c62268fb6ea18eb58f8dd379f69cad8c2 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0A_#a42Ue{?EV=$q=@k zfnf&2ZRGQkS`%70e oUHokBCcf=2$Mt#dWv#w(3q&#TJu17p5oj=jr>mdKI;Vst0L+L$HUIzs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/sinseeker_scythe_sinrecall_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..e4317777604a90a6e4eab612069a53f0cf7870e0 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>u0WcZLDGrAA(A1ioT2zX z1H*O(h8YZ#dtN>go89Hb`NEK8i3CH!txt{*fJzxlg8YIR9G=}s19F-?T^vIyZY@1$ zD8!=3;S#vvqU6-y^UGs-)fRES`SN$sg!~Q0oNZy}53N{pFsJ_T)F-3&s}@$x_p9hx*;Bpd^l_D4 xf0pXlg|6s7a{oyBv+3WDFa5szzl-pH#=Pw;?3={@I{{t8;OXk;vd$@?2>|_NVN(DA literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe.png new file mode 100644 index 0000000000000000000000000000000000000000..fa2b51fb23be699950c95a0eacac4bcc472be631 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE08Wce2F3EzsIWonJ50= z`TF($|Nj|&a-Hew45m{&%|sQ%+4p_;5V~=J98f7^NswPKgTu2MX+Tb>r;B4q#jV&A zM;ToMIhZf9{ABtP|Nipo&9j@WH=VnX{PTH^z=_L#Z;}Fn&h9bbDC*)nsBC0r?7G$Y zh`CbGlE2@lr)M19DRIzb<364BpW^p@D^KdYEuXQHNiT7$@=c%x44$rjF6*2Ung9|n BPh9{2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/scythes/starred_glacial_scythe_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..f5cd959c477187ff298f7a5905d60885a0564e44 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>t{_2ic26_WeIGvj|NsBa z*RL6Va-Hewg@-TAz5PG)#D9-f{~2Qb8*Z8*2UN;f666=m;PC858jv&1)5S5Q;?~h~ zhGK^mc$yPEoDNKSUw==_pyc4W3k$1k^#7X&?2~>xNBf{#_S;KQ9c|lsF3fAVyk)|L zWr`nW%r%g_B-^lc?gE~YIYQUA$v4`TbKdUaoW@Yg95IdI#NLSFRAY`7CtG%t3&{bi zpZ~PTnsN0@Rz!bY`p)mW)ht)eDhj$9ey+;1`n>hWYk$}Ot$BU@$I9s+FWIx2uzrvH SR`Jf~|*@LBF|8yRg6&UtDx^<>L97x1!aUt8wdb>-If3xA*W n@BDJy;sxL91H$6>u0Xm}gX!NjO9L^6U`@7g zTeiXgj{k4`e_ivsy-4`~x8A>B<2R)Uihn9g0xD%J3GxeOaCmkj4aiyJ>EaktaqDbv zcoVB42TSe&&I{k|-%Htv-~HiqUSf62CeD+hGfux$FFt6wbGHt!)}8a0gAZmI^IT#{ zJjS0IAiC*6DDTA%rcCD0)dE|3Gn>-8)f#jy*GDNR3C`nQ)%rrwxH;uv@1m<))YuN! zemH#V{ulo_ON#exUsBie%WvzYe<2AAI8y~Z-uF91N+0O^+;*hTob65J>EEAT>(BYq pbU*y@?N1-47Tk?yJTR@E;cN=qKJKq&2Y~Ko@O1TaS?83{1ONi|dTIaw literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7fd1fb8201c9f14b3707d030dd83f8546c7022 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0Ffnju7FNDl;!(2=wJ@ zU&5MSswrtKv-I}NiU0ro`oHYTe_M?p)}5381C=tC1o;IsI6S+N2IRzfx;TbZ+zLJ0 z%6PcC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bat_wand_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a72116cc6e0d716bc9ff187a010dcad49f5214 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy>H$6>u0YyWBS=%ym?6-2*_Hn@ zC;tEU>%Yv>+g$BSSo2HE%uD>VBSg5Re%Eaktack@O z(4-bc0pR`OlS)KO{CAMP4f2A9hx4ZMvL9>*SN0`}c;u#17#<|?(B-;{g_2`U9@plTI#-Y2J6bfHtyGsREeQuvF{jR2P z0*ChfzsY}QK31>$9Y6o^o8+_gUw?MqKmI4QrdIy$uDP}sPd*fzFLO4%o~7KC)o9`G S|7AcIGI+ZBxvX!8C_Kw1I&knSmkI@+n9IV@Z%-FoVOh8)-mJtfz}( zNX4yWhNf?y&aRelXxM$&>jcA@TU8#O+-Dwaj$}zaA```vcBeKgnRij;^*z2qV9BfjVCNyw0Y>jE=x?^>mfiXXUXCJ$O6vOUv$*PB0)n!17 O7(8A5T-G@yGywpTOi~^I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bonzo_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/bonzo_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..643ca4a20b6b1d7e6d8ece93eb2c47ac9abd789a GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyx&b~Ru0T4OfuVtcVGe`ni^mU6 zAKrIK+W6at*Z+awxc2`9hU-?s%Q=`nHVPcFW_;b=#SPTJSQ6wH%;50sMjDVa$J50z zq~ccV`GZ1-6*yWFr@3aDe*AmiEVb%{XTkdW_7)+$Zo| z_@KhU#Q4N7?OUD0Y6h>h%q@!xn5Gsxu39^rJ$~u^`;+f~{d?*B`_B({MQjpU`u!HG d4NKFldUXlb`ro(ZBZ2N@@O1TaS?83{1OUS=bhiKi literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe7dc59d8f979d96a40fb717b6092a3b18a6315 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE07kCJ^F5n#Q(dF$D)=0 ze>2|gxwe_LD@obzJuo9dRIO?Qsnee(Kw>g{h|KI$#2^qfEAc>iIYM!WU$Z!WpZ gg$Ygwo9U9MU%<^0ImdKI;Vst0M&e8+5i9m literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_freeze_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..739d33eece9ec579a1a082f1fb7a4dbdfee61844 GIT binary patch literal 378 zcmV-=0fqjFP)2mk;80d!JMQvg8b*k%9#0OLtSK~#9!#gGMZ#V`y+1!?$` zqt*Q{T9C`FRd@JrIPb}`WBMl|ltxKjnLN>78AQX&=iTcHDx!>1r)A=BRWQjAu-q;A=nVOZ5V;U>J5kY3)KHUY-nQwL1C(XtecmRAIWsao@B1EtqgFs7O!Ln3Zo->@!z Y0Vq`vQs1*DzyJUM07*qoM6N<$f)=-(lK=n! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff.png new file mode 100644 index 0000000000000000000000000000000000000000..67a69f19e08cbe8b22044868624b262cebf05e99 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0F&GqwfD_-9MYeFIF(* z7&0Vi$~a03EAeq9^1QbKN;8%O`2{mLJiCzwA2{DN$++4D25%|5MsRIiA~a4-2+<{k18_1;f?H{ w;LWaCeoa_g^yOna(HVAMe!dicV*P_ze=(Du^oH}jK#LeWUHx3vIVCg!0P(j(SO5S3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/fire_fury_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..ac5f32ae0dcc2da686e281037be88ccb756a81ea GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyasfUeu0UFek1NNJ;m;=V1Wg$) z1+o7>>i&P$y;#BEC@oy)-8==Tg0UpXFPOpM*^M+HXQ`))V@SoVnu(4=M-(_%7)2iZ zm%lgj)*X@OLfUsN~+g>8|@yrORiG_OdZb@N1Z|FzkwcGwZ-_hWPA-u<1jJa?LY96KkzzXS6aG|nL+FeXO#4_*oIZQU_|Uln#|0lgiI}W@ zz~mFd^=I#FPX3&}tol#!1M&GEuCvz_NnU@k|C;yxn%DVqU)Qbtrk=icfBkwr^El_THB&i#^lw+bxRv?y@JI_y0dl6uWMBNoVIL#`vEN`86u>KRvpmpQc&%bU_qGdtC$6M?XE4u`qoOaWD$Ne05=r?btnQH5fMEk zB>(^af0=ne00001bW%=J06^y0W&i*H`AI}URCwCulm(K-KoCM1iTm{Z@398lh+Uj6_rw;R1WgUkIx^015pGpVvLAl=7<#hm~ejj2XDYE6rkL3;6SkH l`O|*MbEf|*`(aC(KLJ#N6p+mvWrzR(002ovPDHLkV1hLtr)~fM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st_hand.png.mcmeta b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st_hand.png.mcmeta new file mode 100644 index 000000000..e37b3133a --- /dev/null +++ b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_1st_hand.png.mcmeta @@ -0,0 +1 @@ +{"animation":{"frames":[0,1],"frametime":45,"interpolate":true}} \ No newline at end of file diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/great_spook_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..4807ff2d7d9a6947fe9e7258057c0fa822d169ec GIT binary patch literal 390 zcmV;10eSw3P)(^a*3^tc00001bW%=J06^y0W&i*H_(?=TRCwCulm(K*Fcd>&41>S#f5*MRl4d-V z#2Q{yxlbS3Btl1K1|=)xo{wk#4ivJUj4fslFFeIloe{1*#4wA|`xad|&Lm4^luj`i*DeAwTC+||z;?&A0C-<;24f5%xpz8?mdKI;Vst0AKS)>;M1& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hellstorm_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hellstorm_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..b42b0645087ec434901ab3a353bcb5c94e760492 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyasfUeu0UFllXC(CLjVKAab@MN zss8_G6uTQ4nJFu)ii$oH&F=%MU@Qsp3ubV5b|VeQ>GpJS45_&F_FN-dvmwusk0!pi zcYm*c7|SC+r_V5f{lou>N5q*WdMu6gop!FeB>c&tc5UcO>vJbp?cJ+zFCmwco#88U zY=!}^K&C?ARNgzHYhS&5=RNU^WhSFa$`T1V50eQDJQ6PRUwYj>&ajA6a-X}&giUiF vS3bS~_S7T6^FtI;T3n}{w{ttZ;?VO}!%N@f=hocc-hIb! c-S+>CjtopwOs`&=4z!TL)78&qol`;+0H~T(9RL6T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hope_of_the_resistance_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/hope_of_the_resistance_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..40b34ce59c6ab93802dc3446a542dfbff466ee18 GIT binary patch literal 361 zcmV-v0ha!WP)}Vp~g@>s@C~HS$ zk=|uf(}Fe;E!Lx00000NkvXX Hu0mjf+rXKX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f0762da82721e4503413fc2ffadba726d320a0 GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=6?wzh3|MY}2>3j-Ok^ z? z7+<-pwxKa&+1shtFFWu|E9J?#?9da-$HQ~EvE;jz!s3R;#^meV9i}>U0o8M*7WD9G a@G{8m5l^}78*2r$lEKr}&t;ucLK6TjT~7u8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/jerry_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..79b0f482098cf6ffcc5b0379ad963e5e24d11247 GIT binary patch literal 353 zcmV-n0iOPeP)%KBj*sTU&exLwfs8L$RSLFB)O1$=DW;rKbIxtC=uyjdC^JCzRFrZ@B87kpF_YNoC z)R1l({`!FTqY`V>Z1_A*7?`QY5oC*Kw&I&U6B<)ha=+>1d@Xc0^H))Fif5td zxpH(}nCKf<-`nXr^I2S%#J-ybatazfN5S`BPp1hu-eK6I00000NkvXXu0mjfdv220 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff.png new file mode 100644 index 0000000000000000000000000000000000000000..7cb3bc9ff651724ca3fb70ed408fcb9a1fc1acb9 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E08YLV7fC+_}4YB-`}@u z$Z==*$^ADszr(<=o`In=UER}6^#A|=FE@(*{Tjb1Met>%;clQF#*!evU*rUXwG5uFelF{r5}E+-xLwr% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/midas_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..0c5508bf839770126ea4bb9fe6eeb089cdac15a2 GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy1_3@Hu0Xm}gUQoO^zYaBU)Q|u zOcQ>&QS|rs?f?J(zr(=r-`spX14D+NTxYtvh8*{%6v2b@UQYt*VJr#q3ubV5b|VeQ zndIr>7*cWT>N(#iW(9%fhf6*)JDGmpzt(lS(dMr&x7Ttu=Hgi&RoQzM?fv9ek6{k7pTsto2vGB#l?|!Yb zx&HrQnjyFB*1;8d6*l#EquC`ASIy;lFXJ=))c?5}TloHT+uyI!|GLg(k@q|o>FWP% Y?+w{vZ41iOfv#ilboFyt=akR{06zM1jsO4v literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff.png new file mode 100644 index 0000000000000000000000000000000000000000..c580fa6c1467b8f97af95699c8569181db1b2c7f GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0AWY|Iff>$-p1Pb^JfW zr~k{M|1+Gw%`km_DZ_sshNZ84d^U-Q{BKNH|L?!*q(6d>{xdlrlA9g43aFE@B*-tA z!Qt7BG$1F=)5S5Q;#O?8E7Q>c9wyG8dcHgUC%&#d#y7*UQ}TkTFWaX#(Zx$EB^R8z zaCX&0#XKKF5tYS}L4HeDd+gFw@;>^1zv0yn_r;@k_xzsAu;R!@9Tci azEEG$khx;2f4CpeCI(MeKbLh*2~7YvR#xEv literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/runic_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..38d30d6447e12e227d6c6a9ad3b03b32b74e8113 GIT binary patch literal 331 zcmV-R0kr;!P)*oF}eCYLvtPkQB5HBpb7N8^xc;Y+hGkD162+yQ(1}@3AUb4Llf^7WcQ& zAWWndv*NV(&!R+AH#1kOIfxRC{{DnQ2!x5Gd(r2_x1m}S6T^%Q65pKX{k|ZvG9Je% zzcCRBdllmGn_=KMN`<5Z^z%GOM!%-QG_mjHnQmDo$>_FRDD1lY?(&cC0Ma{~7bJsM dlM5sz;}08$3+c5poRt6o002ovPDHLkV1fYTiIe~U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon.png new file mode 100644 index 0000000000000000000000000000000000000000..81d2eb1ae216e06c511075b4e1648507275e220b GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=6oxz1n%`c;C$V^CnKO zuWC$A&G7d1lZ%XD4N8tu^ffRvWU>oj(6rSO*9I!S;xNq&NHLZK`2{mLJiCzwj4q$ZIsH&l5&?uo<*d(B;8rLOoY@3EMbJ~PsZxy?z@;E5n z(Tsa7A>z=pCEz;CgcGaprs^rM`O6=EXEfnJC%?eiJ)akvWz{tpO<8EdAh=Y}#5r0n Q7iblOr>mdKI;Vst04%{pr2qf` literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/staff_of_the_rising_moon_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..5a680a3912187f840b5ee64b1cc776fd2b62f45b GIT binary patch literal 340 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dymH|E?u0XnP=6nM~LvLTdXQ}r)!C8M=AQs2*}#Yn8`)PxTXZL1|>6S+A`S%0M);G^=jv#(y4Xy$6q`Oy~Dp4&72>hJwIHmQh`H z*w4liDp4@WDsS#Z!SeY%8b+)!M}1~o@KTx+G1b5K@=YVLFChv`@4Qd9XE`V8Zrmfb zr2gsmm;bCD&*AvZ_b=y;(7wF&$uAE`>Tf!K|HISyHFjS6*0RbsZ`=FG(fz3AqGuM$ j>{~z8u$9H9Uiri5#>5eS^=UaP&{GVau6{1-oD!MUMeqwK0|i`2{mLJiCzw z zS^ja4{TVlnC!77BT#Bi;(-9F7u@q%+bad3$*H=(bU}tAf@9=*B)W%p68}Ydtm9?RBs3Te|hu^(e_+ zjjdO;7N5OpoVUt#iC1oIm&%CBehlNbCKd%Mxa@}ClmLzs9r+t2-9t8ahoZT{H%t+L+ciJi1f$I9k8HO%ovOvJ*?|)v%f(<{@kwAF+991sHI3fUG@0l$*niDy= zM7HPEjloH|4CLO|{Di7ISYM5N<)kCl8XY3Q>K&&j!UkTpBo*cGy%2pQ6C}%uo0kCv z0g$Hr!(HXf)ee?u+~QvU?Ng!uClP=IYVhY;X$Ly9Kj5l)e*5(RaPW_I_>JSYzVht3 x*T4FD*tZgDH;X~Gpm!yrCb1=NTX!P9(sG6}P$S;_|;n|HeASce##WAGf zRx(4=rY%Q}B^?@8-w8Uwa3*S#r>F3l2V3W{q*mn5;z^scGbxvKQDxfwy+Lf#ZWcFk zpUK#J`oIPrm0~834a^^3a`Pk{C=_@4ER)+{;P)=Iq2aaxn|_EULrSqEW0{P-GSDUl MPgg&ebxsLQ05qIW0ssI2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bonzo_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_bonzo_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..496a68eac51677f2a892e41450c5e9f7d4d53f7e GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyS^+*Gu0T4OfuVtcVGe`nC28Xq zj~{&d@cLt;z#(hK|3HwyaNSCHIS13}!}}I(h>8HJW-JNv3ubV5b|VeQnd|A|7*cVo zwm)#)5e1$jR)&e+rxyKxZKtxuUR3h`tuCYM6ASNupUfG4)Y$D()cIW=zvAD|-6T+Z z(PzRI(KALfIBi!lpY@q>{^U`o46oul?))v^ZY4V~C#|<--_PA$$RQ%2tuZm_r_zo8 z-do$JKQ4`(?wWZ2_J7Y~%9iJ^*9m+)SjF*P`djUX&xd}CR-AXQdmz4FKJxya{YSWT bKK+xQnaT9a$XU4#=uievS3j3^P6m`iFT%|XZXq8VPII#!0_MP{Qv*|FE@(*{Tjb1MUXLu6=W!5NswPKgTu2MX+Tba zr;B4q#jViu#~F_r@Gu29yzD&k@AAJ%d46>}9?Ra|$7b*#_x28Jt(Y&@5+CQaYQ@U# z`Xw&n?5V!%hqQ{z#hLB>1+kt|zopr0D;F?9smFU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_midas_staff_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/starred_midas_staff_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..52b44df3a6df1a2565db9ac6264929648ced0c40 GIT binary patch literal 308 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy1_3@Hu0VQIis0X`@xQKl-I*q= zA;;aBuI_0jn&Bt6o`K=Nx%nL+`Tzg#@7rH)6fMDe8|&JChx zw!dsS5+fnj_rK2PbZMhzJ*VG|Cv&Eq;ACif&$@qhK}U^7>8uz^q z6+Lx=E8_13!7RD;FL&u(uueSmn(M-YJqB+B^3`4T?%jEM*V+$FVdQ&MBb@ E07-j?*8l(j literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear.png new file mode 100644 index 0000000000000000000000000000000000000000..0d106981611bcc1170de54f1eaa83a623e434352 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|G#nL#)=gyjQ1H7 z6%}=+tIN-l$?%h7PG|Ns6E!t8)sW-X3W+HIDrGDQ@(X5gcy=QV$O-avaSW-rmE6FT zETPM_Os0vI*};T+^&+Ji56^K;{kZ1V8s4;!bryRW&pddgnZRg#$Iq{v;o=*+H+l(; vQ(1WgL}vzE4wq@T;84jiBa$I?PU9s8-30zRdxL6gpy>>ru6{1-oD!M<9pypZ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/staves/tribal_spear_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..811eb23b657919ccf1237d298b0b27911222651d GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyS^+*Gu0Wb0fI)ti40AejQBjep zsp*OpEB^ogf8)lD3_rQfbahWNQ4Kk6<9!AqB1`IliWy6S{DK)Ap4~_Ta%w$Y978H@ z-Mw&}@vs38v%`iJlYg(5)@RUqDqh3CL3N?udvQ5Fx%bW0hiduaJZx;#%Uk z{eEsegVwbw`OO!b=3buH@NCTnmPs4t$f_;7Qpz4Oc~|O!u36LSE-m@8cI)~bZx$zA u3|V>S%#%(3U;aikS5Oe)e`Qc_YP{A@7`pBMs_GL{7S1v5B2yO9Ru1bMnRhE&{2ZeU85 z(B)bt)5OZ`V8Xq6k0)L&oLA5o|bOujXKbLh*2~7Y)**jJM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/arack.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/arack.png new file mode 100644 index 0000000000000000000000000000000000000000..3383d80f4131b01b5f1e01e3f6d08f97bee95db8 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0A`#GffEbNM+M@WmTLj zr+Xwm+uzm3NLx)!L7GQgoz{>TM@lLm=r3=sw22WQ%mvv4FO#q1gK?-}1F(>t*^UT+K_G;QZzCKi!#srl-_= zS~)LXZpwxKAA;(pw_A5kshFC+v$g5m4i1;;3ldd!i%iVu>%H6~V_zN+XW()B-cA9w hov)YG-1GVKnQ8q;X6yIMJhy|~?dj_0vd$@?2>{6qTowQT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_dragon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_dragon.png new file mode 100644 index 0000000000000000000000000000000000000000..28c3a1804a9f1ff8127f8052ccbb99bc122234b4 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E06{PV`Jlzk`h^2*&jjw z`T6;~*e>tl_|%!Mt|7;r;V0*5Cfe22_!@pljG^) z7*cU7w6B%%fC3N8=b-I>x9d*Os{0<1GI85lABIW%K~r}s-xLd-xugFA)9&`y)71Bi z{CV>B*`YR(x4MfyMBE4wJj>JCe<*~j%Aw_{2;=uw=ZA|w?rJ!D0oq2e86ciLZEE04yon=H6*_gSHd@0KV z8o^i+!;>^Dvc4 zaNGJMDtw|dj|iJ(Z;G_GK;atC2?qmMY~2`Cw8Un2^?Z3`XlUr{?99W%qoAO`Q;^JP zVGwR#ugCsf2WS>!NswPKgTu2MX+Tber;B4q#jVhutBef>JTCgB2Nhrbd%clm-TU_< z@^8+CTR+!oo*ZQMw)vym+$=Un;dOJk7!5AAq?nY6G~T?CVP5N1aDC%F3vrgr*~^3l z{6tz_FPr-JZ<0{j&HMRx`;~rwxpufh$NOi7Yl-fjm;G}@{EANfc-V7%x~SVJ)(yv( SY<>-N1B0ilpUXO@geCwQd|-e8 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_teleport.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_teleport.png new file mode 100644 index 0000000000000000000000000000000000000000..bd5c5ac7e37190b3d17db5bd0b11bc624e1db8d2 GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M}SX=E0EUFbY^4b7MtD0tfnC6 zVJem2w)II=_(W$O5jM--6lraN!Zn@~4hFE;x-qC|85$ZoJ3I66@F*xK^n7{5Q;^JP zVGwR#e@UR+2WS>!NswPKgTu2MX+TcBr;B4q#Vy~nu1rT2cw8?^%j^sB{J#IvuDOw4 zIQtJI&r&!dQU6aTWs*Sfx09R24TQYTRpuw?H0aya?|B@unqT$J)`@H7j=u_HP!ikf zYplf~%^dZ=H}sfpfqBN-UF`EpZ?FC&v1?xM)biYeZ}cbS|F(@eCw~9@^j?WFm-!XZ Z4EMIN+A*9xv=!(S22WQ%mvv4FO#uARUta(K literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_etherwarp_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..32fbe9fcb54446e780eceb7fe975a4b83edbd437 GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE0AVm=9Upr)X{YIut-o) zP;hp3HZ(L0x33SM=v=tQQ_jOwT3cZ2lPEQ7>Frx7srr_TcN#285tA>n6IA`UH;$geCo{b zNsbPJ{w3S5={bJC+7iltPU16fhd_)$vCn%4kwxA4?kbs@vU}{5H>LbIsZ+7$e}JH| w;=jEgU2a|f_bZ~@)!f9jz3$Dz1gTw%-W!Cl>?yda>;tmf)78&qol`;+0PMe0H~;_u literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_end_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..fe0a114ce3c0651923a58102565cae4481528a2f GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0E?l(UYpkwE6!ae4?}4 z;k7&>Y&<+XhK7a;3JT87&eGZfg=;*wK8cd^Ff~cE-1Psyn5W|osRxNbos1=We_`s}>!N-qQSGFxVDNPHb6Mw<&;$Ut?N8+Z literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry.png new file mode 100644 index 0000000000000000000000000000000000000000..bf84dc0bd6bbf33cb32a1f57167b399b97ef55ec GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE09)@;F=KUyuGPtUq{a7 z>LgDy(F{L14LR=4bajSlg8%>jk93waRuObJ6Df7qH`f$!e-so2)W%p6be8lq z6V33G(~#rtOjl=^CiwsV|IO7&#wvpQI&!u*6-|h9R*>M*(3^Y?sEx5C$S;_|;n|He zASc$-#WAGfR;*tu;{gMX#qU)A%UhdEylW9L+r&4xEzQ!R9kkK`MsTo-~w*xn?G2E U?jPGa185P0r>mdKI;Vst0I4ia1^@s6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry_signature_parley.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_jerry_signature_parley.png new file mode 100644 index 0000000000000000000000000000000000000000..07f25ec446cedff41109d3f334c471b2056f931c GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0ze$V!3-qTOIhuKlyQJhh%1nu5a+zTsc2tE&gSZ* zQg?l06~X`i|1(Sz%EaktaqCIIQAQR;o}RU*m;6sUU-08z@x&c`rR_7TV@sq;R<>30RlT17eCO5a zq0>#f98RS3)&2Zup0xjx(Dd22&WG?^&%MjA#gn) z88-C~4Erl?G=Jo1_+mBNR-&K5qrZPFhsW93nZ?$Pi9tZ;>_(n~bawg2NVQcE*`!6OW&-^w`qTUQ^J;O7g~+CG<-0g9>4nCoP6z@ zyH+l%nQ8lOX@TC+*K%8q@qbwGGcUPPvvPBJNcO3@d!owkZ~ZnQNl9X9(Fe}9AIuEO T8OK9`b})Fl`njxgN@xNA_3%y! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp.png new file mode 100644 index 0000000000000000000000000000000000000000..5c2e7e4f1bfc907c45f70df07399763f8455f90d GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE09){He_RPkYGqKWLcu1 zppaqwzvs&%vDsbB401YWH!}G+85$ZgF$jd)*E>5q^YHL^SS09ZI?ISCvN3b-aIEMD z8o^i+zW^JagM@1IxFI%{1IyiOJPxVQgt^1Gf1 kr=KZZ-Lmt8WzIiV?MN1p^L~6^fOau>y85}Sb4q9e05y_P1poj5 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_open.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_open.png new file mode 100644 index 0000000000000000000000000000000000000000..78ab599b2a5c5b226db3160b81b63c965c56c842 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0EUFbY^4bW@B)WU`Q}z zS<>_65i^5ahVg$UA14MCEf!lhCI$g#XJUvu)eMEfW$F<2l z+vhudy*h>K=gOX06N0_&W^gr}x3heIVFTM4yC)Y)razFlxpzS#PfJ!WQ*&eMhcM4u zzn=)EWxn^GKiy-tUTsY6%3n*@8WuY~eY10;#GT*0@=1y{pV=pevmDX*apf-11q`09 KelF{r5}E)ynqR&E literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_teleport.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_teleport.png new file mode 100644 index 0000000000000000000000000000000000000000..23197063f41a1f7ee50b99c3f5e58dda5abe0028 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E07MiuNRx$#b{yB^W_mw zL9!vs5($O`HU!dMdI7tG-B>_!@pQ{(C47*cV|_w3O`Rz?n%3kR>y{TF@K>CJv=s~- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_etherwarp_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..43432f8ff00c351e2db26afd7bd51cf267486707 GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE09){Hst3IcI3an!^2}} zXvpN_BsRNC=j_Hdm;WmK)%^Tg3P(3=`v0G&AelcgjEOz$pQ6%-Ua zEE04yon=H6*_gQ(PHJrhn#foZF$fSH@;rD<=QsJ1yNa>&;4V6_Nwc5dBgLmZ%_X>KQODU zB~o~OXq)x=qYYmk%=}va+2z2#Zjokn-T6juW0I8KathpH4U1m!<0sHQ22WQ%mvv4F FO#mn2VhI2M literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_transmission.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/aspect_of_the_void_transmission.png new file mode 100644 index 0000000000000000000000000000000000000000..77acb2303e392b1b5bbdb05c1ea6ccecf57db4df GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0E?XNZ$1SzY2df4-b#C zv$KMNf}x=yi>(`jik8^yuAVQCbk1&MVi4fx4|e3g(B|@=pI=Mi=msVqrwDJujX?d3 zB|(0{3=Yq3qyafGo-U3d6}M{7H8Z*x3b0(bdt=tWY}-2PD&b4-lArB8df;BsgOiKj z$GGRG+WmTc?RARNqyE!x@`ap#oXcl=fB2Zo!JiwpZd7!;7op8`X%0)o*SCiDT2Ebe e>npwa!*+K8^P0Si$tQsJFnGH9xvXyR#vLNyF__^LeSg hhcYhmCA^M!GifI$7mxOm|3F(AJYD@<);T3K0RX1wQb7O! literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/axe_of_the_shredded.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/axe_of_the_shredded.png new file mode 100644 index 0000000000000000000000000000000000000000..91249f8ff9ad088a5b991a208ec2e15f42ceeb9e GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=6ekf0FodgX6}A`s{4J ziOrE2VLYie45?Ah&d!|98d_Rf!a_noWqbZaR{|-Al2E~Sy)I&OG^u=kZ)r1Z%ONWKo(<3kY6x^!?PP{Ku(LN zi(^Q|t*sZ$7quGjuwI;aV!?+0SO5L+s#!VXo5k$kGWo|WKfhrODZ0Ps==}J~({}kY z4a;UI8=c<7_AXAaH1_NQy%l@(LduqI{bZI?_VU5!3wIfAu-%hSe=+$>=3KG2?A@P| z?dM;!U;19>mT0o=$)6M1POY!H9=zMO(*E!J-Eu4EYQ4SxJD(;0X`JCZpnDiRUHx3v IIVCg!01L-!_5c6? literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/bingolibur.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/bingolibur.png new file mode 100644 index 0000000000000000000000000000000000000000..761d4486c7d2b79574f7df512ad55694b45ee320 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0AW;U(PvU8`t*pQ$PRL zkmK%5SI_X1^E4B+VMyf++h)Sh*39SN4phci666=m;PC858jus~>EaktaVymKC?m5W z1Jk3#|FN&{b$>X#(ecu`t8=hPI++)ANdN|tO2>s)78&qol`;+ E0G(z=c>n+a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_dragonfire.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_dragonfire.png new file mode 100644 index 0000000000000000000000000000000000000000..1be85004bda43f90b036b33d6088fe924c550cc0 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE06{Pp7Kkwva-g;#{W0* z+$m=Ge~za!U0p+t+tW-m!%vP+t5xdgP0oZJb02@6094Ib666=m;PC858jw@v>Eakt zam%!qmFa*2hpTFO(f`Nqk~duVzM`n9a&7I0V;ooa96Y8ekT@ek=}S~d#ikdJ1qy8J zvS!7W{r<51e9MO9r!IfFets8BE8sF`-o+}hTVP3>jo0QSDHCQtf1tE+Xa5?@(`MJh rPJEHrA)%|@ZR_|s=1-Spf5k`U?Oe=CzFSxMgM8rW>gTe~DWM4fE&yDU literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_the_volcano.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/blade_of_the_volcano.png new file mode 100644 index 0000000000000000000000000000000000000000..2732b7b20984ae98c3151c9ac229153dc3b04b65 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0C_Y(@8fHwiIRXR_1DO zmKR}S5D^h^baZ5AXV=%)S5Q!Raw+C+89fM{DK)Ap4~_T za-uz5978H@g`T_0=xWHp9Pp(|@wfi(EwlDd=DHxn(EXEhjo$f~CE_2FPQ1D6yX{x$ z&tDrB&$4**__f9H?1QD@*PXtsTGuO;Hr-?Mj6V%Vi$hlZ`<}k#(4=QKoU`w(Udk-} T=h-DkpfwDhu6{1-oD!MX(&fqS(4d^;O-51UAK0{cHQH f--+(+-}#T>mllipxv3!MGcb6%`njxgN@xNAyqi-R literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_ashen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_ashen.png new file mode 100644 index 0000000000000000000000000000000000000000..147ccdc3f897facaea05789df7ac4d0f1d4e01fb GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE06|)JJW=JUGq{^Rh{F) zbfApq@7MT~&J4}UOhG|Gixw>^D#~eUYI1UN78MmUFfcgeWMBf+!&nmJ7tG-B>_!@p zlj`Z>7*cU7v?r8_HITzebeZ$b|7r2(bpP?CHY+7Pd427`_e#-b?S-#%T65cX-SJ4V zK4H@Qn(JZyj!QLMmKpuU8m5-twn`Muiq literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_auric.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstfire_dagger_auric.png new file mode 100644 index 0000000000000000000000000000000000000000..74f3287878505d95f930822a621541dffc361279 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cjZ~gl<{{Mf5U)Q|; z?`OC(P54QJ^no&-lg_)Ma6)M&3M8V04c_jAirP+hi5m^fSgoM z7srr_TgeR!=Vk^R3&~#5kZ96TRCHTw595&;b9n_53ace~ges0t*k4-4G~wg#gZFRV zmucYn_v-rh&7uxHC(G{JI4bc(ua!Jt;{NRme?oAy*q{6Si|(fy8vJ25yytMF(ME%r ZA$+;Qr{n4wD}WXmJjpCptFIkH~*I`+J`1ybBxS7rWR!TYE!#Qd*tl zrUx2)0qYjucsAjEf}Q_A)*APP&C*W)A94oub~2ng@mg-ptzSY3qWYT}n2yW-VrB>0 O#Ng@b=d#Wzp$Py(xK?ri literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstmaw_dagger_spirit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/burstmaw_dagger_spirit.png new file mode 100644 index 0000000000000000000000000000000000000000..f98eb13ae8c3ea06cc2bafb40d49931de3147666 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0E4LVm!RW`1NI}Ph`=1N;-i#%hliB?7P4EsL^dYZSgZCO|q8?<;o)161$5%Zbs${*;|1Fd54 MboFyt=akR{0L1oI7ytkO literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/chicken_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/chicken_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..92662322249c34eaebf6d64a3e4647d31102bfb6 GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cj|9|x8(dEmRj~zSq zV0Y%_bx{{q+8>}1J21-d2Dt4u3Rw^!p{1~7H{+QZizU7=oOximT8(Mq?!O+aKA+bm7dCJ(gf_5# lbL`#S>fP{AmRXB|AwOT>)B=umJAsBVc)I$ztaD0e0sxkZL`?ty literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cleaver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cleaver.png new file mode 100644 index 0000000000000000000000000000000000000000..ad9e98610833a7573a68f82e1de8d2dd2ef9650d GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DI=<9l_Ac)B=-RNN{#&MMU4 zz`@`k<@WD?T=e?#qKEAl4jp(Wck^EFra9{lPdl6Wk=ty)g5Xv5Yws3S@Yv6vY*E?5 bp(W4o(wwm=%W2Jdpjix_u6{1-oD!M>2`tgXQJrO-xKQH8n*=Ma8tjS%sx%0yQv}1o;IsI6S+N z2IK^Lx;TbZ+^Y3%W^^^=;mNxH?{J;n>R!Js)yX}!?|k`ooEE;ec%4<^gYMU>oE>AL zWB+c*In5?~MeXpG$`jRZY+g?*G!)o;j_1MQ^3P6h9>=Hp?_oUhi0P55!LK-=@eH1> KelF{r5}E)7-$bSW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cow_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/cow_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..63d217e468d972ae4d800e2676c1458ec786b8b0 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Fdy6E)S6?@U*Bad9y= zHlC7^@ptp)%hRTXg@xH0sJNJ^ZQi_j;lhQDjg1+8avE~neN$sr0JSle1o;IsI6S+N z2IRPTx;TbZ+?wjMmGOW9PqBsJ|N7kJM%hA#ZA18HslMAHaCDNnr6JpGQ3JE{$%RQg xd#AniHaIS2Ze@97$La9GrI+{1+@%53|KbX}{Xi2LJYD@<);T3K0RT%=LF51c literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/crypt_dreadlord_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/crypt_dreadlord_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..0fabed3242ff110cd88daf9e56142b09805493e8 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0A_(Wb^6%S$SGQ4Ky8dAL4Lsu4$p3+ z0XdPLE{-7;w_^KPnOqb(SWn8c75qP)C%witU&mu<`T0A1f0BQ+`(K0ZGD{QTelUy(8kShO*FqyF_upf<*mAirP+hi5m^ zfSgEA7srr_Td{qtOfHHXtS9B!3jUwYlU`$+uj8?_{QMohKgmarY$`4gK6Q_M_TJjk zNAo`?ywE?^Fj0fgo@w*L+Uzp R`#?(=JYD@<);T3K0RSsfPI>?U literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/daedalus_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/daedalus_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..4ee072343199d6423c1cc9f83ee0ca217133b15c GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08`^EA(=s=yYGMU)Q|U zR22Sw@3S&D5)l$eS7ucHR=x|Ug0UpXFPOpM*^M+HC&<&qF{I*F?YWhV%!WLy7wb=M z{FQH!@;D-;-PTNE;=H)im%HNM9R2b(pkI{XXz~rG$Ul-kuMXd{n7a9uQNXE!>gYXZ oj)lEmxJ8;__J75m9KL$Sb$N_&p)X!^0!?S|boFyt=akR{0Nt-edH?_b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/dungeon_hammer.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/dungeon_hammer.png new file mode 100644 index 0000000000000000000000000000000000000000..ba51943064194afdea2af902eefce2ba1072a1f9 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE08uZG0CW?=uB7lG!xD6 zlhcsn4rONU5)`yxV33xU{`33oi>H@PA6pt29Bkw0C@(Mn*k=n9P#a@OkY6x^!?PP{ zKu(0Gi(^Q|t(cypjLZ%kESAR?{!e@C_G~*>zEnt5e*LcM*`c$yeJ#B-*Y(!FLLb*J z-=BAEa{Zm9(p^w*{aN6N@AK&OzhjTN_dl;axqnN?BE>z9iqVHke=smK&Sg5d*eI- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/earth_shard.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/earth_shard.png new file mode 100644 index 0000000000000000000000000000000000000000..8780bd50015dd4cab31baa29a68767e394396b78 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0E4vtkHbTKv7ZA)6+95 zDypKqeBm4CNL$UyP^+D-G1GFq>@}q{M$GpuofIaHsTts^y;Cb3Y#Nv=;Z}>T2zJu!z|@OWwAK$8hf2 znzQ!jH!u79HD^ix0Uyc5jp>W0wyg8jI@su)Ry42X|K(3sJNL7nyVxJZlgC4YebZ_#o%J7rZkmK%5SNAj%)s#E1 z5oiQsNswPKgTu2MX+Tb>wMpSNEpxoq8q2kR spIv<8VddO{>tCz)X3v(@>)#NszfFyG&TJKCMxdn(p00i_>zopr0Cfdc?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ember_rod.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ember_rod.png new file mode 100644 index 0000000000000000000000000000000000000000..8c0eb7f97d24e49a27bbb36b0f3891f4968dfb37 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9b2)cybA{{OS?|AP#F zHi_R@r}k$W!_LVv7b_TY3>m^17~B{b^cfhW7#OxZsgnU}U@Qsp3ubV5b|VeQ3Gj4r z45_%4+`w>dX23BQ?G+8JA|VSZ8C@LCa4Q+?6jU(~UcsbeP|6g-x?C)P;Y`3R4iSda zp^h2%VxJ03wB`?MY)yNYoDjhp#wf`CX#o#I=zY$km|0 z;~Kbr+06I<|C_U2ta0Gfc;1(|k$Fe<)ZeRqeg9=}WNVRMa`}{%rk4fNs^@q=Tg<)X mr;KYA_ZPwSpMsre|HIf z@>Ki6-0$99>w8^uIs5ktFWAAf;oThj`DLuX9`J9?WSVqFj#(Y#G*4GQmvv4FO#n}_ BNJ#(y literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/end_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/end_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..3bae86b5c1cb4778958bfb58f15117e4ee0b7ce6 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`)t)YnAr-fh6@>q^CvGx%y-Kpt zu)}xSGmoh$I~Y~6=RMvzujXvISN&gcQK98?({d&$_`2Ng321rH{D((e{npNavkNY? zWvf~CrK*Yw%<^P;lKss@`0xCO>g=DH?g%V0Enl|!|Mdxv+t`(=4m|3%n{Za(?2Lvb eFBaEdV`1R6$z$mcFFyx#27{-opUXO@geCxUXGXdJ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/enrager.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/enrager.png new file mode 100644 index 0000000000000000000000000000000000000000..9632eb9a2d03bd2cfb573a72ea699d58a8acb2c3 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0AVlV!9e4V9dbqph2w| ztS&V*)z{Z|of2CB1H;?x-un9b3fZ3O4wh^#T8if@?gt$d+M;-=S-t!l(}X)6ZR|ix7(8A5T-G@yGywpO CP)DZ# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fancy_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fancy_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..fe96064b5ddbce2aa50e32d4f2a7622d6812b981 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0DI=vYR_3Se==pv*66+kG@ilJ)z4*}Q$iB}7f(uF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fel_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/fel_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..fa7687b34d7d2b793e74f60ef516a75a0dbad321 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0F%b^5cBn`FbpR8gks8 zW}+E>a-Hewg(8Kqe6e3mzw2`8dJFpeyt;WdP$^?ckY6x^!?PP{K#s4ci(^Q|t% zj0X%jTmp5h^}4eev@b%v>3@YQ-MLxOyhHk9?}FK!X`PUHx3vIVCg!09ms|(EtDd literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_ashen.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_ashen.png new file mode 100644 index 0000000000000000000000000000000000000000..93fc926453c0ff316080e7e95900f61e830d14e0 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E08uYFlcIOa&mGmD#}^3 zXpyIxXojDhh8%Zix_YxR(@AHB|Ns971qG?9s@}M9LsV1@sO5Xudm|vlSQ6wH%;50s zMjDWl?&;zfQgJKEfw4jB*ddMt2DV0rS5n{Px2;=#;=cQl{o;?-uhw~&D3`WTBYwgA zBj@`o!}c}#IHU<)v7Eu_@0fjTYmbj#nE4%NkDY)2`Zlz`U%4XdSjL{cxe1@+j9xzz huw}OY@bgc*=%gg(#MNDI0)SRBc)I$ztaD0e0s!p6S7`tM literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_auric.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/firedust_dagger_auric.png new file mode 100644 index 0000000000000000000000000000000000000000..08d6b9c3d9a75d07cfc89aefe1c042fce2ad32ee GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E06{PQBkq~|NpD1sy=Cu zHZU;A@RRd26V;I8?o3zz|9|WM{S5#AGu*gw~C`W$6E8o<+Z#WeAM;{GlEmJeS%c(>P1zx0>Yxtu$PWv%+73R>sc zh`-xVmB7YQx{HZlgV|mDv0IVaOt-eSoFAomD3xjDbS zV0l#F@~tz!a*j&1WZphstE{zjJDX)xw&jw~#m+3f`=>Vq&3He(WMK>U72O5=_V?y8 VhqT5jiU7@L@O1TaS?83{1OWD9Q3?P6 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flaming_sword_flames.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flaming_sword_flames.png new file mode 100644 index 0000000000000000000000000000000000000000..88b55cd8524be9c83b6370a986f5285d62b1d756 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`X`U{QAr-fh6~ylNPtSJ{U%d9& z?@yn24Sv;Gu}scknDmS}WhX-i|AaL=Lp?a&gw)JBc+c^|47QwU6DkVg<(5BVW;x7~ z!Vq`%(-Kwzopr098ghyZ`_I literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb98796289b5223fd241400f3fc633fe77c47c0 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0DfZU1qPx*Ay!jBE;!w zCaNLF-I=bQ;U{-zns93`Uq~c-dM^7GE0fFdkUc9zwJ}`uKjtN%9wF;rQ}AmAJvRC`;8JKS?#7|!b Pw1&ac)z4*}Q$iB}{0B@< literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword_heal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/florid_zombie_sword_heal.png new file mode 100644 index 0000000000000000000000000000000000000000..9b7b3facc56e36ff042cb736bc5c43cbb5eeb82e GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0F%bYSo=-!gs36{%2-h zj*o2Z0YWs>117ZSF!q2~gHm<&0Z6H7QRttk2aZ~9cpC%2ADk7gN z+4rsEbN;rErOP4iC?VFk(neW!Di!n?8C-$i_()@bErnReT Ze=wY%#N6G~-T`ttgQu&X%Q~loCII~>Q$GLz literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flower_of_truth.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/flower_of_truth.png new file mode 100644 index 0000000000000000000000000000000000000000..b9f3ef8bbb7ac5a4c9e354d833afd4aa32ed06fe GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE09)jQA&ZtJ+g}=d*bs%{{DY8iTRAcp;@cgTe~DWM4f5#dql literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/giant_cleaver_hand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/giant_cleaver_hand.png new file mode 100644 index 0000000000000000000000000000000000000000..03937f2f7a63a6f8867deedc3976c79932d12b76 GIT binary patch literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyHUT~%u0XmeR_x_Q(N~uoUcC#y zJ>UMtF7JbNx{D&zGYz>dB$%rDzEypDT=i|m_HR{prU`!o^3GR%tE#fsgTe~DWM4fae z&#FU9dT*aSbnV);ElcOb)amS;+1#0~Ub5JzprF9hOf^;g1^ea_*x_vb(J)&KF?znh`! nz5VA;7k;oc9rNT#+`%}llUZ$@?v>|2n;1M@{an^LB{Ts5-Z)?^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/great_spook_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..d08c277af9fce7a9e9a47a912f9e467161b8dc66 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0zj<5!3-pI!a4o{DYF2d5LY1mYpVXeGT8%hqOXmN z=6di32M5;}^G{@0VPj*H%}{5nqN1jz=FSi*CMG5$D5%R|F2c*}r^U+))X7*9FmWf5!`L5S7kQ;jPhG!+W(XN+XTBp zU$1jMcfPN#GIZG&ySL+SV%byQKWq7q_{;BjxST(y=Br`nx0j3Cf81qP{P#3`crg6B=Jj%;=xZaRO(}w<8cZ^Rg0?CuieJ)Z0(CN$1o;Is zI6S+N2IS20ba4!+xV3jeYa^?ofHUX2OZA)0=dTejSiPs+?@Hm?txr~OwX4kgc5RN$ zQHE>sNvn2-HM3Us2hI=<_|7WWd-mSRhBsU47L_fX%UW06DG=PYneR^bqKxg=)!%zQ zK6$I(uXw|p@}ARQ&OPq)zH&U_Tg{RBr-F~w`)51?;=^;kJG*K|zZaEh;L?X=-Y6a&i_G6*Dj}IDgm38>ok|B*-tA!Qt7BG$1F{ z)5S5Q;#O$SRYq4s4(G;Qj^EmFzh+%JaemJzf1=);T3K0RT7FPtX7W literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartfire_dagger_auric.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartfire_dagger_auric.png new file mode 100644 index 0000000000000000000000000000000000000000..448e34212d21ad186015d3495ff418e5c061db98 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E06|)MGOoU3=IE)Xhxl? zs_Or^xEcnA>kJGA1_n=8qP2HQf;x8>Zw`J==0Zb(0VAN~CN_gn82EZDdG;xlNR zANNf18`Bw=1v$+Y%u73eIkryL)-FVdQ&MBb@0BQD8RsaA1 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartmaw_dagger_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/heartmaw_dagger_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..e030dc0aa95e1ea260fbc33be10ea0fcaa835557 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0FF_U|ht&P{Y7*oq@rE zf#LtlkpFRU|7X&rf>jm`fV7!EHn&NX8EA0lxRsF|@O z$S;_|;n|HeAScz+#WAGfR_N(gUIs@2r@&+9a$oGfUL3vXz4`A|4M}u_! z$<3*6KmKS%{p-XV^*Z&@3)n8*|2Kb2)#FEV_8glr_gvt*fa6Uzx=vT)<~cX~o>6$h h{(%(NPnMeF`~owW=cV0P{{UzogQu&X%Q~loCIA8-UG)F} literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hunter_knife.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hunter_knife.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5f9dfa80cbd2dd9d2a35f049ee10f5fafde149 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^aryuMf0eyzZ?I*C zpPZ+esD>POXS#ZJcJ_@MH>ORSCLtm5KkkwWP$^?ckY6x^!?PP{K#rrQi(^Q|t=f}Y z85s-&4m)W3{60VXTl1@P*US^P7WW-p`&MrC@7o>M*8Yyrsak(cXzEc-zBfW%*Cf92 g$8DRjv@~+|y$_5BqC}sF0u5vEboFyt=akR{01iY#$^ZZW literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyper_cleaver.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyper_cleaver.png new file mode 100644 index 0000000000000000000000000000000000000000..b6727b3e15307e92b8bc05239edb515ac2878352 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`6FglULn>}1E3n;o{qe85*Tb`^ zKO;=*t>eGSPgnG5$+=gj)c)}1$C*60Yl|diB^?dmRb25i`s#n{%Pj|gJaxPHf4!dN zpLQvyh~lf;MI~lA7OlV6+RUrC;HTlPGy^ri;``=7rpZ8Q<3#6#S%Qr2To)!h{x|=j zy8FIo9_gAJ7!{^pi2uAT_jX&$*%@sU)=DzGw%n8<{qom)pxYQcUHx3vIVCg!0Cs&; AfB*mh literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyperion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/hyperion.png new file mode 100644 index 0000000000000000000000000000000000000000..be4fc7af012e2d462374bab6c875bcd757817598 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE09il@J>!v*3!~aTT2Vb zRZvjS*>ZNvm*1M2no3c1{QUgt?aK@}8jFB(j3q&S!3+-1ZlnP@(Vi}jAr-emPq*?q z7>YOrF1UC6-{-pNLbm3Nr#;s7d{BQQ^H_Y36yLXx)o1SRyIa9#t#(fHV)6g>lgl%{ zHrla$|%PITmtLFSD)|+r|(&u-zS^fn_H$`3Fz}PLpG%M$la2U`U22WQ%mvv4F FO#nSTOeO#T literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leaping_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leaping_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..83217e9fc6198c6f6aa794dc5dffd572c0eeb90b GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE08|L;L@3{{+}T}!%q&# z_B0cn!JyX6AXUsDs3FJwb?t^wpdzM{AU~j{vdL#HfV>b-7srr_TfXNSxtJ9=S{}|S z-hchK{Rg25ejGpiJf~l0yCa~;&tX&GykFt?O~>eGYjXS^?Bm#)djI&>Z>=YD_fNbZ st}yl3{LLYzZ0BD6+X^_)78&qol`;+09z+TY5)KL literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leech_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/leech_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..59ad5cf0713c0c9773d1626892eb3523179d23cf GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7d1moAt;tF3>=l)k9C zGMCPD_3(_^3_rQR0Ao$tP){>aa|;y>IqrbV-Pu6Zj3q&S!3+-1ZlnP@$(}BbAr-fh z8JOk5895#==uv1X{BkDH;Ot8cWu~-{b0Sk2FLE!d_$8B&ppm}f#obQobWcuZz Q8PGZgPgg&ebxsLQ0IR`FDgXcg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/livid_dagger.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/livid_dagger.png new file mode 100644 index 0000000000000000000000000000000000000000..ca95b60b9e6d1da6b40278b7b92a1d2587a0b0ea GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=63d*FD^lzADeDGhKbY zzJ7+ET&1e2r|Ar-fh z8yM7LHJmq!X(>o@i_WNG^f5ln(sO{xjpxj?gr(N3B1aEu?daA@l|0b%=_QxIQgd;~ zjJ`XeObKqM8+RutzLsHYJFU=mjdjIdFE#-whWf2S;?8H*asw@3@O1TaS?83{1OOA| BKIH%a literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mawdust_dagger_crystal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mawdust_dagger_crystal.png new file mode 100644 index 0000000000000000000000000000000000000000..d24a4e29dc7947d540e55b66b08c1b05b6cf8b33 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0E4LVm!RWShcbF^<|&y z|Na+0e&%T=n&Bs>A;;aBuKxdjQ(&NHSy`_8mhJyvhOAw?viwteS?qiYv)O^RF?hQAxvXf8do1m|JhW$yP+p(uBwt2)o z%l>IvAu{^~Q{SW4Jnn2W1b_DH3blquZFdfnR-bsUVy3Uw@!DB$y?(K$#s=B@ZB1ZK Uu}OEX2U^A8>FVdQ&MBb@0I=y)ssI20 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mercenary_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mercenary_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..357b73f3617867adfc01d3c9defa3ece037ad664 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6;yhg(Ln>~~J?qGOz<|T;;mH+k zuMV7jzualrVz*_F*2-82dTc9t{hcHHZ;Suo^OB1n9zFKs{C9P+MR(1_4ppl69oetl z=g|3i<}CKfMuld_7!MaI9VzJxwv2fC^hQRrxTsW>!0p)QK0uooJYD@<);T3K0RUfS BJp%v$ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/midas_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/midas_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..dc437a45b9643a1fced5cbdd5c87651d18e0e87d GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|Ns4c``@qezpi<` z+$efyn(%)cn@uT#o$2b&)YUWmw7Rew>5EkELghsrlpw9 z!-rYife-gRVLLKm-d5g(S^4?5SPdROZQs2!;q^CTgFCE-w-g>Z$W38nm=_`8ue4L~ QE6^SWPgg&ebxsLQ04}yq+W-In literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mushroom_cow_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/mushroom_cow_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..de32d3b8e1a43504191f045eccd7def31bfd34ff GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Fdy6P?1x-8+{9m8D+$dY^L1>xb*UVnL7_Tg?%P7>0ex7w;yOCgQu&X%Q~loCIH=3Z7=77G`F%xwzET)ItRWG~~F&#Kc%xSOVRH<^VM?mIV0)GdMiEkp|>MdAc}; zRNP8#V0d>o;Mletje(cp2WF7d^>WlC1}{g~8L+ K&t;ucLK6Tc`$qx* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/necromancer_sword_flames.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/necromancer_sword_flames.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2df5d720964b490385ccceeef30f3573773f68 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`cAhSdAr-fh7ii8~+-&Xfx0d1Wfy3$_e{jvHM?5_cb&$oSmJ;#l`;v!O#EGlNx^=KXiSI&G#EI;g*Ui3ZaKQ9JWNNl=xzF+8cYrUNI-3u=ioh9>k@6vp{c;!C{LCbm3^(?dRpQ>HK#IT-$ V>7uEA$1|W+44$rjF6*2UngB#|RFwb# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/nova_sword_flames.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/nova_sword_flames.png new file mode 100644 index 0000000000000000000000000000000000000000..45918571fcac3620ba48572629983082629b3ed6 GIT binary patch literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`R-P`7Ar-fhC5}C~{?VD;VTR7x z%af%Z&N^wv(4zT?=|+Pi=f3+Lig#15Z@(eKkT@Z224jk}6SIFW6NBV-)&5H_eJ=w| OVeoYIb6Mw<&;$URLnc}P literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..5b360b44ab4cadec85157cd21aeb8683fa6b2ade GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0FFsk-Y9^V!hg&-XP(Uo$mfO;59g8YIR9G=}s19DFVdQ&MBb@09gi0y8r+H literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword_heal.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ornate_zombie_sword_heal.png new file mode 100644 index 0000000000000000000000000000000000000000..c85f0eddb5c79fdb51e657fed85e2ed49adec347 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0FFsk=Wv*&=f0Xug7=A zi(5mE+tW<+&NSf+Ke^6y_1_ulM^hbJd-*~l+0%2`HAJ|AbOfT>6}JL)GL{7S1v5B2 zyO9Ru#Cf_nhE&`N?YqjzpvZG{)$?QjPRpHBuIIdT$%P}4?^9ic&YwH-KWgpGS^EAh ziobaO(W;OCzMAzX22Xr($$ixvJ~`&yyC1OW=<)0;I&z@D^~@I0XSEAEz6#X4zgav} YUZj%Q$Fn^|3TP99r>mdKI;Vst0CKlah5!Hn literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/pig_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/pig_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..fc8b2d0c50fcbe92bb0f18736031258e25cbb00b GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=7Fw?R&R$$;Wv!o=xn2 z*4q56viM0x*0IE>eF46m>FS;CZW(@Zo@SyNa@_lr(&T^|7)yfuf*Bm1-ADs+oIG6| zLn>}1J21Xs4RBj%72l(%c=MytA3jyR7nhVNL@FLudo* mImh1Jt=GbIGnxkvWFCXaG zv!uk+OfEaktajUkgmGOXq0Mp}t7yeFPyW3U%-IdhLwd-%rcsJ{9$e+~j6B{*mH#-}o z)qe`iTwbGgTe~DWM4fo#$8O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/prismarine_blade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/prismarine_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab7dcc568b1a75b7c279cd80143f361cee406f5 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0Fd~i7`kC+j8U7{g-z# z{Ny~%L^b5NJJZ!C9$K^H;-Q+&OM+)K6)l;u;Nn*gplZgFAirP+hi5m^fSf>27srr_ zTeaP-j0}bx%&)z^$#2hFANo$=&8ChQrxZK1k1N&9)bqK>&!$zaWz*vFbjS0B6*fCL zOe@=eoOCOmbIjtjMgL`nThrFBn7aQ+_H!+xmeWkrjpa`40UFNW>FVdQ&MBb@05=Cq A?EnA( literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rabbit_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rabbit_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..347a9ca5bec8612db41835548cabe12d68ee7dc6 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=62BeY$=7_Mt^g4)z4*}Q$iB}QH4Uo literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ragnarock_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/ragnarock_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0a27bfe100ce6c83bf61d79b79e8e1f52980f3 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE07L6v?uTX50(5J<4Jv@ zzTPr2GM=8E#ugSyNlBujq7U9Jncp7t?m@{FoK_^YMeHx$%}~8YI#*ru}Cwo~bPXRmddkz{DqavE~no$2cT|Nk%5VET2gTe~DWM4f*fUF; literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/reaper_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/reaper_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..33ca76006f1e1811fbdadf2d85126afd278b5191 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!eSlAhE07i!7YCAI46JHuYMy4I z8gkqjesX;FW*n*tqRFA1>FU0|z7mx_YKt>Doi%t;ZR)eLBQwG*EiJ1VxPSP!&jM;@ zED7=pW^j0RBMr!j_jGX#skjyD)5^%8$gyN!^xgVv+gT@j8)&m^yD>lGV{K-W@;{Mj zzbj4uy*s{m_0^9DS8TT_V%Rg!{8aBpk&nwc^)K3UI5;wGUDhhleCRlj%bgjevCqB) htAFD?bIZ*8kE}oQB9q)x9YCuXJYD@<);T3K0RU<#P4@r* literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/recluse_fang.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/recluse_fang.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0f0979e333d99f42daad74ac4840e7e960d16b GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=9cj|KD}!c;D{$O2nwt%4+Gp9Cf!g~rB2(Fg{OO+^R27BF}?etUP*fl)y@*9<7OeO4k< zN7}VGR>LC(3E#5>Y=fsZCYpB`@+$E?ag=1(9wKkt>UU}}&<+MqS3j3^P68JwF(KxH`_x>-spK7NNaB{WM8J%xy6u<3J`e^lKkB0O5&q~Rc zm~?XYE#~D36n(mc*=_#bdrX%PeLwno9XC(7!*%P52X7U=8#mTPESulB)9I6^Vg2+@ W*0<}fE1w41#Ng@b=d#Wzp$Pzq6;TTS literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rogue_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/rogue_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..9c1b1b3cf70360d7a711178a5205f678847fca69 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=9cj|Nr~H?A5#Qmm5Xz zOcUN35YU;f-V`g=V`Y`$C+BG~rcIj` z;O*ez;u2w$>1=Q2q#R(Ruc59gZ!F>C&Lop>Z}!7Tc~^1uY1z>n`{=(`;J?6pE{pC!LSk7&M}41;#x mvuftFIW-3kFkfUb6=CS*6BRivQPTo6j=|H_&t;ucLK6VhWIdDs literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/scylla.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/scylla.png new file mode 100644 index 0000000000000000000000000000000000000000..f779bd8632a688fe4802c098a8aa59cffd6ee837 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cjKKT1J{?|3HBlG`E zNcyuWMKILxYN-a3rKP32>|$*#Ed>PyIayht%4vmv9snuEk|4ie28U-i(tw<3PZ!6K zid)GI3}WIMhdpJSHcLf0N+h1*R$w|ADZt3TnMpzN(1E8HxgOms@z5@0Fsw+Ia18m7 z=b6`_vG)<Kf_N>KPbY}OjOj-RYQ)OLrrbZkL~$DrHmy(e!&b5&u*jvIT4;Njv*Ddk{y_3 zc^#UvuS)S9WOX<;Y0H9R4g$@uuW$uwc61$Ez?v}2Inwn@Rhwk`TW;1=-g-6%f%R7xH(`o&~OG%S3j3^P6O&C z|H_}43eFlv3U{_lQ3~fdeuJ@%^C=^DzwE1~Kn8{b5@PfFla6x$^)h(6`njxgN@xNA DohKg> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shaman_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shaman_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..46303ef8a13ccabe4f6884f5558d6af48d4e5023 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|NZm(?Te?EP9Ix( zXPWS|Y169fvVov8UA-w*EW=OE#l^+bOjJXTTS7u2wJ5n6sE4s6$S;_|;n|HeAScw* z#WAGfR&oPFTC&FB02wU>j#LXx(S}Sh)p7+%2H_4yt`*Hk{8@IaXbAoAgqig~&z1#D z9rqSLS2TJ5&zSo_&uspG&8_F&Bq#h}6|(xpnDxG1gPB2DL3Fpv|Lyfa3m80I{an^L HB{Ts5k`zmT literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sheep_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sheep_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..7babf3132123af166e805d547afe06c942304632 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=2sheSP!h&Aof~E?v6x zf5(oaM~^<6GUdR$w(V1@JJZ!O{N%#jtUS#`%{2uy_!@p zgTe~DWM4fTsuLk literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_astraea.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_astraea.png new file mode 100644 index 0000000000000000000000000000000000000000..d7429ae816ff0df2d0cc970312e891b0fdca4c63 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Zh%jSE0C6v6p@pa^>?wbw6xUL z(gKPoC@5%ZYIfEa#Rj_W&Q|~brvCdj8&f^?X|rEr^Nsc$uAL`{T+Fv1^AX-MgN|{`NSt*rODQ Qbf8@fp00i_>zopr03EDOKL7v# literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_hyperion.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_hyperion.png new file mode 100644 index 0000000000000000000000000000000000000000..ffdc4389e6a54598511cd6b004280a8723dca063 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0F&Gre01~*3!~aTT2Vb zRZvj)|MQBbrsnQ!b$)*S@7rvudLw0k5{xB5e!&b5&u*jvIWe9tjv*Ddk{lQtRy{q$ z)}X+#@P)za3-x=KuXefb&rmSw$|T!0rQBAzN?v#6-frC0s_&6A|19&B2yND$NBz;W z>-!br*D>udTmHr{q1fk{op(?F{n>5-+mbEkKV-|@%2dd=YDpr{9tKZWKbLh*2~7Y- CrbgZX literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_necron_blade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_necron_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..adc2b591a9cdc49cfbf2223554a8a6c6293d81e3 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0EUK(z3L)R8Ua(|E6A3 zQ}g>ao88&!AbDBY3tDgTe~DWM4f8aP3b literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_scylla.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_scylla.png new file mode 100644 index 0000000000000000000000000000000000000000..72937c4c0d5f80aa0453a94bb41c4082b4b8cbfb GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF4e$wZ1=9cD)Zae*|NAzZBlG`E zNcyuoTYZTGd#K@6OG`_4*~QvgS_%pZa4WA;{O39)so0*%+oIvPS;m?oH{ButOud2~RY6|;=n_5x@PgQu&X J%Q~loCIB<;NV)(3 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_valkyrie.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/shiny_valkyrie.png new file mode 100644 index 0000000000000000000000000000000000000000..30f5a624477ee130562452411aa18a03b0c69d1b GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0F&Grv6l&&i8FL>jDHy zRG39YMY9{bz2nkNOiXMX9W^yI6%-VJ$}BA{wY9Y5WMyA&nj;P5GnNGT1v5B2yO9Ru zhC^IO)>0g8$xqI>)#6+^tWTv9fP&4D;WzWnluA@y>StPBHr} z<~l9Ar`*u(=hVsDeO@izC0`(Jpjvt^Tku@)GIvSeX)_lxYB()8x$ROJW7ci9O>`?Y&AjMb`7$Cj<^-s5l`_pZ4|*$!W0oR=mXITdIFgQu&X%Q~loCIAx2L(c#J literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silk_edge_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silk_edge_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..4c6f68b960ea1167fdf37fbfef67380920ebb011 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0CVSpmvJE z9Z=w5zHn?;{OsTJ%e8efn3?ng*Rl%sepoKv7h1wxYR3PkI!A8h-mXu&^##+Cf8X1> x-rYp`>0=cKwWrxq#;FXKU+pX7iRxB+$|`-0DNgtW-wvSp44$rjF6*2UngI1fKY0KE literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_fang.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_fang.png new file mode 100644 index 0000000000000000000000000000000000000000..eea0665cebe2d668d4335b999356bd9eef850fd9 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=9cj|3ClnC zQd46Q5n=A-_2_WNW}qBnNswPKgTu2MX+VyPr;B4q#jRuqwl$0aY_m0dGz8VAq;Ms7 zI9`=l>1e{LJ+o1=vB@hhfzi=%A&Y@?pvO*zHCH@O$}ZA8x`biX?m3Lw3=Evi?2C_Y Sp1A{P9)qW=pUXO@geCxltvNCP literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_laced_karambit.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/silver_laced_karambit.png new file mode 100644 index 0000000000000000000000000000000000000000..3d93609b16589f47c751a27ff52f0a5df0c59ac7 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE08u76`!zYPoTQy*4wvx zwRQgg|9}4DM~jGvkeZrl8&Zz}RWOzW`2{mLJiCzwQTo?Aa4iQ5F?}KQoKT9k#c#0%2_YUCescdA z82nvr-0e(P@bP(?iQ1azYADHS$Z^{+G41noX#}cfED7=pW^j0RBMr!j@pN$vskoKg zz_2bfq3dqVMzfFwSEaNHl9_!LFsLOQIIy9sQTyaB28~TM2R|7tUZ1)@L=j3q&S!3+-1ZlnP@5uPrN zAr-fh8yLjIH4X>LYAK}gCHip9V^~({W2?yI9;C-`(wN6aZmYt(kId?~^&3R5_|E4J zjNJE`$>rtC%>uKOzw@{(DLojw;lfNEwzk~~q5)HVoC1C`zS|<mdK II;Vst0CHAFR{#J2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/squire_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/squire_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..b2055fc65577bacebc1957da4a488fc970b3e586 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0A_^aoMzKlZ1qXh8%Z> zpPZ+eXlJ^*mX_9;GiRnvoA&bM%k1oIi`k170hKbA1o;IsI6S+N2IP2qx;TbZ+^Rjr z$aO?P!1-cI@4Bpa_4kx6BsG{Z9RAIdwC!@Xp)LFVzttP(vb8@f{8wzm^EbO zi!ZB`J}+U()ufp!Nm7zwsRc*-M-v==5x|=wuRH;*S);< nCAjm8{EI#Pwah`?DecymzA`SJn65YzXgq_btDnm{r-UW|?UqFY literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_daedalus_axe.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_daedalus_axe.png new file mode 100644 index 0000000000000000000000000000000000000000..7914057d0de2a9dfb7750621048729c679189865 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0BJUc zDhgKSM*qI|r7JTYsuglbuxG$6=F&^Gk(G7AlgQu&X%Q~loCICq&NRt2n literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_midas_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_midas_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..80f967d9e69f93d3363a7bfa1e93854a1dceb261 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9cj|Ns4c``@qezpi<` z+$efyn(%)cn@uT#o$2b&)YUWmq1Y*pG*@Dz7ag~hWpZiISUh*gfcR- z%lcSXe<|3ymmzJ3{?3UE*Y0fIX3FF8`K>SWX@fm~3e3fG?$)uj?N)G;c9A*JY{c*& XOfqEi!7qz|wlR3R`njxgN@xNArSVi& literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_shadow_fury.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/starred_shadow_fury.png new file mode 100644 index 0000000000000000000000000000000000000000..c2725fed9a5f71a51656fa56f33e39f74292e56b GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!T!2rAE0AVm5tUbn(9@_6abB>! zI#7UL_w)6-hg;I81}`&Q^N|Org0UpXFPOpM*^M+HC(zTyF{I*F=!xTu%nlq!9L#<$ z_}?^F_*ZY1YNqwIqSHUWPkesEgN_X`OQ^anWFks9I}AMGkCiC KxvXnoDJBL2OMn)8JAicj8= zRj4p2{0#G?`gPwV_`~#Tj!b;D=T~ZmUheN_X+J8W#S80sBV#^?%cvbb)AvJK4hjTu((@%d@%>&wdLs4q1I>R~Ji@(X5gcy=QV$jS0_ zaSW-rmCVr0DV_Uwi$+#KL?y<6ll)x>*t?w@9&!%r*A5V)%)GIQTW>T z(EqsiJ6;~1_4oc;?9XTNNV@lrU;04L)&G)m4O2F~tL5LQzTw|{c7eUO=QPTnxxuM& e@PYjlMuz{q>eu5tU%Ua@%HZkh=d#Wzp$Pz$>suWF literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/stone_blade.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/stone_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..a066485b9d97c36a42a11978e12f93b5798456b5 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E09)ocFt{SS+Hu=qvy}} z@6emCQ80hL=!RXpiaR=D8Eo?Nnd*3kd zpAn}2e|&swujf320$Wu`un1&YW2+8_4s yt2sOITu=hDgWkgZ&vI{X)f$g3D_%n<6gRs4?L`GY`*F?hQAxvXPMcdh4E7{4Z`yuY4cRr+9BpQ^B7H9fvY|I&|InCOaD1#q=gT<(MvT x?BH@2b7|iS>Bl+(xy>tbe`j*nz0$38Wi)xg_;QcjTYaG644$rjF6*2UngATYLR0_% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sword_of_revelations.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/sword_of_revelations.png new file mode 100644 index 0000000000000000000000000000000000000000..5f5ce6e284ed8d9b340f4838425f429637653218 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0DI)k;#q}a+PLo%s0I? zk-yHBZ*F&ZU!G51h*f90x~G|FhM$~<9QXhK|Np%6KEHQ)q`6S2gLY8*-upn!j3q&S z!3+-1ZlnP@QJyZ2Ar-emPab7F;=tn^Sey{?_xmoMjd}08FS)2xpPPDDpYdkD!nURV z6Mt9qxL?@cS*~8Xne~rX#*Td-`Pf%8O)rvhoIdqbLwt={(y<=`D|+P~$8#(*c`Ebn XiUzZP!=zR(pe+oZu6{1-oD!Mg~+P!=C$B!So zEmmr1XgE7Ni;If`r6!#!>j6@XB|(0{3=Yq3qyag>o-U3d6}LkBU7462IF2MNx%=~f z^J}J^s;jRok=JRT^R&U}PLo^4%_jx+mDXQ*3?{x$vz_Dc@Al>1GoO=|vn`w!zwYI= oFTtH(z>% literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tactician_murder_weapon.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tactician_murder_weapon.png new file mode 100644 index 0000000000000000000000000000000000000000..6765a4327a3b915c234d636eabf17ddfb5cfe9de GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E08wV6i|@hayJu+be3GR zX4(J$|2@q_GyLQ<Lut;@{$Z+diY$pTb9b}rOjp;CmzB3+Vlw_6wF9Vvu_VYZn8D%MjWi%9%+tj&q~ca`1H(2GgQJTksW6Ii zTx;O+$!*}YIKUzzA#v#dlf%R*Eg}mTJR05F*#j6(1bkxPW_W5OA>&|D?ILw#!Xr*u pNrhXglNuK?A1P?+V6F^cW8gg@Y?3|KpbcmPgQu&X%Q~loCIEQ3H~jzr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tormentor.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/tormentor.png new file mode 100644 index 0000000000000000000000000000000000000000..d7290e2d91935102ae41fb4b36a6eff082c139cf GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!N`Oy@E0BKBpteqlEr5Zcn1MlG zU!RGI$=BC6H8s_kf#GV1z}xNKuXGeQ0M#*;1o;IsI6S+N2INF}x;TbZ+{*23Wjvt3 z!}55_`G23U@ou+Py3%tdCvs}E*kjH6&(H19mgUkHo-{eYHQ%ns(^RyoZA10p51W1* zcM*%bGpSzj;h%J~R)zehe7B!o?A8lxnk9I#i&yR_lWyY75|EV)p00i_>zopr01t0P AtN;K2 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/undead_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/undead_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..1c751ac7cd7d516d20898486d9f29ab2009f8178 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0Ff|^o)v%nmVypZE+^2 zvj$J9jYOqSeRlTdjq5wp)jiEbHRQN6{Ny4t!Yazk6%`c|50|L{wK0|i`2{mLJiCzw z}%6m75u P+QH!I>gTe~DWM4f+Vf3A literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/valkyrie.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/valkyrie.png new file mode 100644 index 0000000000000000000000000000000000000000..74335c270777906ae607991e91c5813f52842a6f GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;VE0C6xmDSeLvb3}Wva=hz zz2njq6ckKMOl%w-H8nLwMMaavWXNX4zt6Gs^j1n?XVux{;d{5xHDabDFA)p!5rzhSknd&Vp!_-_x>v$K!uNO z9<3CcopSwI8B;sM@{?z;E$qBZuT7fWOKF&9auia56k{T(^{4Q0*hf4pAu ZYl}59w=@Lmz6aXJ;OXk;vd$@?2>`eeO%VV9 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/void_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/void_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..edc079463b81a5daa648468b65c9e6ff6572939a GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!M1W6-E0FGDyS$6zldP<)v9U3b z`y=Ro64R30#z(7x9LAC$zhDN3XE)M-93M{?$B>F!t=_Io4F)``)&AET^2Pe)Y@KnE zd4WZ6#|f`L44Cw)Hja)aCMKGingRj>&kuac0V-uF3GxeOm^pK12IK!QAV0^`#WAGfR!A=^(*Xq@ zW^2!hPyWA;olz{jBkRtZIwg-|haa_X{cv*j!_a*8Hx;#?+js4M$MyWX-g(2$i}x=U z`Ufwwo!hR>mh%CTl!XRkY_tXD2~nQEx`Qi4mKVVO6x V^d^z()j)e0JYD@<);T3K0RW}wT?7CC literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/wyld_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/wyld_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..3412d7f9afb60e1a6f9f84d2805ce12af5750a1c GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E0ET`XlU}sQfZAkgR?9{ ztcHdhcZQ#wrc@8yPw|-;)=Kax&zFs+t6D8WNt^AjN=t8He!Q5SsChU5& zMChqD!y)ZOaStsz=iI#=_vF*odC%-~e%DDJ+5cvD;0*Qr#E+>hf3;7V?92OmDAnXf b?hfV@QD$Z5@Hfdo%NRUe{an^LB{Ts5RwPp- literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/yeti_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/yeti_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..d36cd987eaaf1b8f3d03621327a8af04b6f5477c GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0C^P`X!+L=F{*0Pu%&x z@bLdhJO4pMI@8tlqc>&v$$6TIYRGZ-vQL%(s%9<;@(X5YXwdP!zZJ+$@N{tuskjx| z$;!lR$a8ql(YbpM{hwdWqvQu4-bdBWJH0SW`{b?5EPAzfzoehfm@R+XKR7=8iBNjd#kM~m)n{m4O=>)N uDYpLzcfT{^r*=PkoBBUYi^9Awohtt_pXr^f@<$e+@eH1>elF{r5}E)T&PO2t literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_soldier_cutlass.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_soldier_cutlass.png new file mode 100644 index 0000000000000000000000000000000000000000..86a13e6df5f7c7ea569f89c20e5197cc3f628dfb GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!R)9~4E0A_^agkD!5Rl~8Fjx0Y z@Uii=){x`Q@RRd26aD}H|DHX2?%cT}At7<;$I-Pw)r=)Ue!&b5&u*jvIo_Twjv*Dd zYJ0XaGAQt{JpS?TwUhXt-P@ZZmp*t^eC%v^OpWeVU&eQK^)?r`sXzYezi8JV#hITT tB?~M)%3ST>a=5!v;qkdA{Lfn1Wz+vKC4FOc+ygY0!PC{xWt~$(698&(M!^68 literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_sword.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/swords/zombie_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..63e5869a6f939cef6492b19ed5e8abea0e2ec855 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E07M-5!m9QAR!^);^Lwq z$L(n*n&BtcnXaCloqaUbk*`;qJyME2S58BOtJ_3k#zt*ppdQAOAirP+hi5m^fSedl z7srr_TOsF;GCCM?FbAyByIFthy;E`ZN(SA;XIm#2&W*TmyCiR|dH915AJ(-W&ox$B z_t-en@WF-}W!}&|CnH=o~Co^xe#HRN!?{x>6Q2U@3MXT z@baFV-Ti3|x6aL982RMzA6reomu*VMFYP(h4%-}AoEGQ4W!Za`B*~8}{<7&*?7C3S ZE~d@wyY$5VcR-sMJYD@<);T3K0RToTQ2hV^ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/bingo_blaster.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/bingo_blaster.png new file mode 100644 index 0000000000000000000000000000000000000000..04e66d767e38755d2415d7c3c1e6ad33f79659c4 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv3GfMV1=9cj|G#zX*3{4cU*xlL zZ9mUBVcT&V2F|c;6OJ3!KSQ6wH%;50sMjDXg=jq}YQgJI;L3GP* zhYY^QCF}-^O#=;>U5X`_Yj&A3NOo^#VimS+?8)6NzH>#FPeQ^2zq5MfUNH pbzfuJV0W&_f5k*&b%h>whF~p06H&(0+dz{UJYD@<);T3K0RWo!K!N}O literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand.png new file mode 100644 index 0000000000000000000000000000000000000000..6c17accb92eab11bb1982e68d77634391be29972 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=2tN{=0Mh+2$K}&u_Xr zXYav%Q?E?*-QAh4UT3=?!%yxJn|i!@?RHiLPcu;sId0eOE4hJs7)yfuf*Bm1-ADs+ zd^}woLn>}1GcfzHX=rFQ7zqh0l+0W#9nldSc*THSY0@0Nz%N>YPM^O{cVM;q(2#j= zZ-8@Ne8Yv$zZ6Y&|6u1xPWr&OqQmk`+6o4SciBQxeqS>3faWrIy85}Sb4q9e0Ljxy AH2?qr literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand_lightning_strike.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/celeste_wand_lightning_strike.png new file mode 100644 index 0000000000000000000000000000000000000000..60af0c83a3ce52a3f56345938fc01d8f96022ffa GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A7SasJY}XaE2Ie|Y@e zRNviiZ+)Mgzy0Ume^&H-UR!6o;1Qd8XS#ZZpPYsqx2KtCbK0!! ztO_QERnLH?FqQ=Q1v5B2yO9Ru1bezThE&{2^=aj0HWaX~;3)nUzg6_vn(Zfi*z^^D zB$~Le7VZ2ZWcSukGkCiCxvXuVk`;r3ubV5b|VeQN%3@X45_#k+H;hV!I0y?irwPh?th8->@85CsPyBd z%;VV^-|ih3mN<9MtB&h&w8qjcKih5PV@xS<3QiJ}Z+EVe4mqoXqWc4}8_24nkJ_b)$KbLh*2~7ZhNn0QQ literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand.png new file mode 100644 index 0000000000000000000000000000000000000000..035c0d8ad54e1c15c04b683c4257b69a1a10c3bc GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!L4Z$)E0E@7P1-_IKvgezqC8L!V@Z%-FoVOh8)-mJ zxTlL_NX4zt6Gs_c0y&NbJlR?Bdwtmx?UZt-{2#9OwoN-&y?*Q6#MjlkCrW%X&(oH! zlZ-#-c_nVLNa(}(lKwTbLSC%&(!06acVb2nqwQ+kqx9c)I$z JtaD0e0stK?AS(a> literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand_right.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/hollow_wand_right.png new file mode 100644 index 0000000000000000000000000000000000000000..0dac425b324494832df211391ab3746a768dcfba GIT binary patch literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`CY~;iAr-fh7ie<){QTVBbynhx ze{2dS$_8tB9Wqo}PG0HgG&H$K>ZA!u6{1- HoD!Mu zG`;LhSNFFT)sW*(RVkSclx8dm@(X5gcy=QV$O-jyaSW-rmCV4*$i|Tn(sIeCtw&(m z24NS!fY1=ZBS|4;JSA+agN#H?nL0PLIA4_zF>@?gnQq{CMl-8n#+i8w8J-zWHI-

EI1LiS6J~HO ZW!zoL>lZrpP!iBU22WQ%mvv4FO#tm^H~#|Yx zdGh3?OAH-LmZVIW(3!3tnw_2DC+BG;LNLZod sd<@4~y*kE289s3gqK54^c|;i){GRfsEK+2=3pAI()78&qol`;+0K1ewp8x;= literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/starlight_wand_starfall.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/wands/starlight_wand_starfall.png new file mode 100644 index 0000000000000000000000000000000000000000..0fed1dd2f58911fe52bf904d8c8b246079231d82 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!O@L2`E0A8iYuDL3cmDt1clX7M z+Mb@22@_s_{@lKD<;TxcpFD{R&CY)Cs64|@t}|U-Lyp_iOtfRklE42~T)M=t=e_Sy zpnk@ZAirP+hi5m^fSf>27srr_Td6*+yv&9I)*Qxf_GfFKiOioklSfF=!boZn(@u-h zL;3Qd-eDh?DMsGdvqtY!%9j~$6z049ds+QXI9~Q&_3H087aZQXR>%I>kHopAd zcjJHNiT{O%FU79<@3HE?P1DQHbajT9|NhpZ45m{w}19bjdM?Qvx~Vj$x5v+(J^?Q=7w`FFQpjX8Dl>xLj-7BltCeOpsAgw{_sa1ord zXho`~>iorG_2QQo?h%*iGi!6$9Hkm{w=3oM*K>s6K@&C(^!%K|Q4TC1w#OlmnbP=eCu_VYZn8D%MjWi&~%G1R$q~ccV$yVM21_B2T zq~EH45GLWLVJ3G6~yu?o@W{Hf`aiBWJk|4ie28U-i(tw;0PZ!6Kid#tsSQ%n{ zk1{eSGB8EotiQ({{qy2A$>O4Fk9$>2vmY`4zahlb8UImYL5pxmWRT`6ugE=qKCMiu vW=rP@X9RUeypNiYv)i(_yi~66!884bYnT|~zb*>^n$O_r>gTe~DWM4fp4vjg literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/soul_whip_cast.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/soul_whip_cast.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ad21f50d0ca32fdb19b0b7d3e45f3d1ab040ee GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Vt`MGE09(bH<&r`|FSFpS@TP| z+LvT!XHT0p&BevVPba3#ykzI|ut`8gj3q&S!3+-1ZlnP@R-P`7Ar-e;Pqy+NFc3I! zApKVTgD?p{9UIAaiqDR`nj1NFZ++5pDRZCSZ;y0$N*-VD)O;{T?RdhBzl>)WGUi>@ Soc$DN3WKMspUXO@geCwDEIjuB literal 0 HcmV?d00001 diff --git a/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/zombie_commander_whip.png b/assets/resourcepacks/Hypixel_Plus/assets/cittofirmgenerated/textures/item/weapons/whips/zombie_commander_whip.png new file mode 100644 index 0000000000000000000000000000000000000000..c9842e79945fd330c4dd7b7c384af44f63760186 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!dVo)eE0C5_lh80%xAC?1Wnjq8 z&Ym`Hnv09ex6sfe28LG(3i}xt>KPbfXV}aEDrGDQ@(X5gcy=QV$cgcEaSW-rm2`lW zA=dXO<52?jX)S3j3^ HP6?Z_vTy%0FE4B4QHEX>4Tx04R}tkvmAkP!xv$wn{}R4rUM$$xt1{f~bh2R-p(LLaorMgUL-_(4-+r zad8w}3l2UOs}3&Cx;nTDg5U$h)x}BCMM^w3DYS_3z~O%U_xy)*&jo_@GSjS%aX`~; zGnI&one3_C`;2Kr9y8SZQNcG&SNW;;5?W)IXT< zSmnIMSu0mrb58!kNKRi_<~rpd5?I6%B#2N@MG0lth|#H&Vj)HMaUcJH>zBx-kgEhn zjs;YpL3aJ%fAD*^R(^8A>lBFtoiC2_F${!vfkw@7zKZUYzBElt@2E_Z zj1;K%y3f12+V}QvO>=)gT&{ASI!fbT00006VoOIv0Q~^<0AB$-(#-$>010qNS#tmY z3ljhU3ljkVnw%H_000McNliru=K&rS9R=UmagG200fR|IK~y-)ol{Lq0#Ot_^K{Wd z2oZM@xJZYVK}b;0N~AAAa4EA0auFyLvuYu2V!%}!cP;||z(|7bg4#rkOA!-tVm30+ zhbTnw=C#OqPUTl!c<{LIo^$U#_dWqrOcn{V@A;-BU>=i2!tBFnhtYw=+65nTl1&9N z+W7^J2VAqk?ShYkWRWmBkl06KdnVW|i-e^!UIe9GSnoLiz~;sx0O0BRZmb?oO-R0J z2`A^TNQ6sxyu6y2snr*d&Um3{DYW_{J>3AH8dPwWy0S`mK*+;}*}tBtZaREJf}a+Y zc0qL$jk?8K+PT;VSvUg#C|V9wH*uP%jwh&O%ZMGX^U_<@9*W@-4q|0Q_S`r;dLBj! zAkI=7bqiEC0RS%#_uL=yjP&y^ufc9xHK;(wDSUJL#PX c$zS3>0m-evaBhw;fdBvi07*qoM6N<$f^+zgvH$=8 literal 0 HcmV?d00001 diff --git a/src/lib/custom_resources.go b/src/lib/custom_resources.go index 7fd020e4d..063838a9d 100644 --- a/src/lib/custom_resources.go +++ b/src/lib/custom_resources.go @@ -10,9 +10,8 @@ import ( "skycrypt/src/constants" "skycrypt/src/models" "skycrypt/src/utility" + "slices" "strings" - - "golang.org/x/exp/slices" ) func GetTexturePath(texturePath string, textureString string) string { @@ -35,10 +34,21 @@ func GetTexturePath(texturePath string, textureString string) string { return "http://localhost:8080/assets/" + formattedPath } -func GetTexture(item models.TextureItem) string { +func GetTexture(item models.TextureItem, disabledPacksParam ...[]string) AppliedItemTexture { textures := ITEM_MAP[strings.ToLower(item.Tag.ExtraAttributes["id"].(string))] if len(textures) == 0 { - return "" + return AppliedItemTexture{} + } + + disabledPacks := disabledPacksParam[0] + for _, disabledPack := range disabledPacks { + textures = slices.DeleteFunc(textures, func(t models.ItemTexture) bool { + return t.ResourcePackId == disabledPack + }) + } + + if len(textures) == 0 { + return AppliedItemTexture{} } // First, check all overrides with 'firmament:all' predicate @@ -171,35 +181,35 @@ func GetTexture(item models.TextureItem) string { } } if allMatch { - return override.Texture + return AppliedItemTexture{ + Texture: override.Texture, + TexturePack: texture.ResourcePackId, + } } } if tex, ok := texture.Textures["layer0"]; ok { - return tex + return AppliedItemTexture{ + Texture: tex, + TexturePack: texture.ResourcePackId, + } } for _, tex := range texture.Textures { - return tex + return AppliedItemTexture{ + Texture: tex, + TexturePack: texture.ResourcePackId, + } } } - return "" + return AppliedItemTexture{} } var VANILLA_ITEM_MAP = map[string]models.ItemTexture{} var ITEM_MAP = map[string][]models.ItemTexture{} -var ALLOWED_PARENTS = []string{ - "minecraft:item/handheld", - "cittofirmgenerated:item/skyblock/item", - "minecraft:item/fishing_rod", - "cittofirmgenerated:item/skyblock/vacuum", - "cittofirmgenerated:item/skyblock/gun", - "cittofirmgenerated:item/metal_detector", -} - func init() { assetsRoot := "assets/resourcepacks" packDirs, err := os.ReadDir(assetsRoot) @@ -218,6 +228,27 @@ func init() { continue } + configPath := filepath.Join(assetsRoot, packDir.Name(), "config.json") + if _, err := os.Stat(configPath); err != nil { + fmt.Printf("No config.json found for pack %s, skipping\n", packDir.Name()) + continue + } + + data, err := os.ReadFile(configPath) + if err != nil { + fmt.Printf("Failed to read config.json for pack %s: %v\n", packDir.Name(), err) + } + + var config models.ResourcePackConfig + if err := json.Unmarshal(data, &config); err != nil { + fmt.Printf("Failed to parse config.json for pack %s: %v\n", packDir.Name(), err) + } + + if config.Disabled { + fmt.Printf("Skipping disabled resource pack: %s\n", packDir.Name()) + continue + } + filepath.WalkDir(packAssetsPath, func(path string, d fs.DirEntry, err error) error { if err != nil { return err @@ -242,13 +273,14 @@ func init() { } if packDir.Name() != "Vanilla" { - var model models.ItemTexture + var model models.ItemTexture = models.ItemTexture{ResourcePackId: config.Id} if err := json.Unmarshal(data, &model); err != nil { fmt.Printf("Failed to parse %s: %v\n", path, err) return nil } - if !slices.Contains(ALLOWED_PARENTS, model.Parent) { + // Skip 3D models for now + if len(model.Elements) > 0 || model.HeadModel != "" { return nil } @@ -293,14 +325,19 @@ func init() { } } -func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) string { +type AppliedItemTexture struct { + Texture string + TexturePack string +} + +func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) AppliedItemTexture { // ? NOTE: we're ignoring enchanted books because they're quite expensive to render and not really worth the performance hit if item.Tag.ExtraAttributes == nil || item.Tag.ExtraAttributes["id"] == "ENCHANTED_BOOK" { if os.Getenv("DEV") == "true" { - return "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" + return AppliedItemTexture{Texture: "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png"} } - return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png" + return AppliedItemTexture{Texture: "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/enchanted_book.png"} } disabledPacks := []string{} @@ -308,32 +345,29 @@ func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) strin disabledPacks = disabledPacksParam[0] } - // ? NOTE: Currently only 1 resource pack exists so this is fine for now, but in the future we may want to change this - if !slices.Contains(disabledPacks, "FURFSKY_REBORN") { - customTexture := GetTexture(item) - if customTexture != "" { - if !strings.Contains(customTexture, "Vanilla") && !strings.Contains(customTexture, "skull") { - return customTexture - } + customTexture := GetTexture(item, disabledPacks) + if customTexture.Texture != "" { + if !strings.Contains(customTexture.Texture, "Vanilla") && !strings.Contains(customTexture.Texture, "skull") { + return customTexture } } if item.Tag.SkullOwner != nil && item.Tag.SkullOwner.Properties.Textures[0].Value != "" { skinHash := utility.GetSkinHash(item.Tag.SkullOwner.Properties.Textures[0].Value) if os.Getenv("DEV") != "true" { - return fmt.Sprintf("/api/head/%s", skinHash) + return AppliedItemTexture{Texture: fmt.Sprintf("/api/head/%s", skinHash)} } - return fmt.Sprintf("http://localhost:8080/api/head/%s", skinHash) + return AppliedItemTexture{Texture: fmt.Sprintf("http://localhost:8080/api/head/%s", skinHash)} } // Preparsed texture from /api/item endpoint if item.Texture != "" { if os.Getenv("DEV") != "true" { - return fmt.Sprintf("/api/head/%s", item.Texture) + return AppliedItemTexture{Texture: fmt.Sprintf("/api/head/%s", item.Texture)} } - return fmt.Sprintf("http://localhost:8080/api/head/%s", item.Texture) + return AppliedItemTexture{Texture: fmt.Sprintf("http://localhost:8080/api/head/%s", item.Texture)} } if *item.ID >= 298 && *item.ID <= 301 { @@ -356,16 +390,16 @@ func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) strin } if os.Getenv("DEV") != "true" { - return fmt.Sprintf("/api/leather/%s/%s", armorType, armorColor) + return AppliedItemTexture{Texture: fmt.Sprintf("/api/leather/%s/%s", armorType, armorColor)} } - return fmt.Sprintf("http://localhost:8080/api/leather/%s/%s", armorType, armorColor) + return AppliedItemTexture{Texture: fmt.Sprintf("http://localhost:8080/api/leather/%s/%s", armorType, armorColor)} } textureId := fmt.Sprintf("%d:%d", *item.ID, *item.Damage) if texture, ok := VANILLA_ITEM_MAP[textureId]; ok { if tex, ok := texture.Textures["layer0"]; ok && tex != "" { - return tex + return AppliedItemTexture{Texture: tex} } for _, tex := range texture.Textures { @@ -373,23 +407,23 @@ func ApplyTexture(item models.TextureItem, disabledPacksParam ...[]string) strin continue } - return tex + return AppliedItemTexture{Texture: tex} } } vanillaPath := fmt.Sprintf("assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/%s.png", strings.ToLower(item.RawId)) if _, err := os.Stat(vanillaPath); err == nil { if os.Getenv("DEV") != "true" { - return "/" + vanillaPath + return AppliedItemTexture{Texture: "/" + vanillaPath} } - return "http://localhost:8080/" + vanillaPath + return AppliedItemTexture{Texture: "http://localhost:8080/" + vanillaPath} } fmt.Printf("[CUSTOM_RESOURCES] No custom texture found for item %s, returning default barrier texture\n", item.Tag.ExtraAttributes["id"]) if os.Getenv("DEV") != "true" { - return "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png" + return AppliedItemTexture{Texture: "/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png"} } - return "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png" + return AppliedItemTexture{Texture: "http://localhost:8080/assets/resourcepacks/Vanilla/assets/firmskyblock/models/item/barrier.png"} } diff --git a/src/lib/renderer.go b/src/lib/renderer.go index 1afd6d2b9..57ffee94e 100644 --- a/src/lib/renderer.go +++ b/src/lib/renderer.go @@ -743,7 +743,7 @@ func RenderItem(itemID string, disabledPacks ...[]string) ([]byte, error) { } } - itemData := constants.ITEMS[itemID] + itemData := constants.ITEMS[strings.ToUpper(itemID)] TextureItem := models.TextureItem{ Damage: &itemData.Damage, ID: &itemData.ItemId, @@ -760,21 +760,21 @@ func RenderItem(itemID string, disabledPacks ...[]string) ([]byte, error) { TextureItem.Damage = &damage } - output := ApplyTexture(TextureItem, disabledPacks...) - if output == "" { + appliedTexure := ApplyTexture(TextureItem, disabledPacks...) + if appliedTexure.Texture == "" { return nil, fmt.Errorf("couldn't find the texture") } // If output is a redirect path (starts with /api/), return redirect error - if strings.HasPrefix(output, "/api/") { - return nil, RedirectError{URL: output} + if strings.HasPrefix(appliedTexure.Texture, "/api/") { + return nil, RedirectError{URL: appliedTexure.Texture} } // If output is a localhost asset, read from disk (performance optimization) - if strings.Contains(output, "/assets/") && !strings.Contains(output, "/api/") { - assetsIdx := strings.Index(output, "/assets/") + if strings.Contains(appliedTexure.Texture, "/assets/") && !strings.Contains(appliedTexure.Texture, "/api/") { + assetsIdx := strings.Index(appliedTexure.Texture, "/assets/") if assetsIdx != -1 { - localPath := output[assetsIdx+1:] // skip the leading slash + localPath := appliedTexure.Texture[assetsIdx+1:] // skip the leading slash if _, err := os.Stat(localPath); err == nil { data, err := os.ReadFile(localPath) if err != nil { @@ -786,11 +786,11 @@ func RenderItem(itemID string, disabledPacks ...[]string) ([]byte, error) { } } - return nil, fmt.Errorf("invalid localhost asset path: %s", output) + return nil, fmt.Errorf("invalid localhost asset path: %s", appliedTexure.Texture) } // Otherwise, fetch from the URL (this shouldn't ever happen but just as a fallback) - response, err := http.Get(output) + response, err := http.Get(appliedTexure.Texture) if err != nil { return nil, fmt.Errorf("error fetching item texture: %v", err) } diff --git a/src/models/custom_resources.go b/src/models/custom_resources.go index e165e13ae..cd41b77ab 100644 --- a/src/models/custom_resources.go +++ b/src/models/custom_resources.go @@ -3,9 +3,30 @@ package models import skycrypttypes "github.com/DuckySoLucky/SkyCrypt-Types" type ItemTexture struct { - Parent string `json:"parent"` - Textures map[string]string `json:"textures"` - Overrides []Override `json:"overrides"` + Parent string `json:"parent"` + Textures map[string]string `json:"textures"` + Overrides []Override `json:"overrides"` + Elements []TextureElement `json:"elements,omitempty"` + HeadModel string `json:"firmament:head_model,omitempty"` + ResourcePackId string `json:"resourcePackId,omitempty"` +} + +type TextureElement struct { + From [3]float64 `json:"from"` + To [3]float64 `json:"to"` + Rotation *TextureRotation `json:"rotation,omitempty"` + Faces map[string]TextureFace `json:"faces"` +} + +type TextureRotation struct { + Angle float64 `json:"angle"` + Axis string `json:"axis"` + Origin [3]float64 `json:"origin"` +} + +type TextureFace struct { + UV [4]float64 `json:"uv"` + Texture string `json:"texture"` } type Override struct { diff --git a/src/models/resourcepacks.go b/src/models/resourcepacks.go index 17c237330..d5ea74589 100644 --- a/src/models/resourcepacks.go +++ b/src/models/resourcepacks.go @@ -1,10 +1,11 @@ package models type ResourcePackConfig struct { - Id string `json:"id"` - Name string `json:"name"` - Version string `json:"version,omitempty"` - Author string `json:"author"` - Url string `json:"url"` - Icon string `json:"icon"` + Id string `json:"id"` + Name string `json:"name"` + Version string `json:"version,omitempty"` + Author string `json:"author"` + Url string `json:"url"` + Icon string `json:"icon"` + Disabled bool `json:"disabled,omitempty"` } diff --git a/src/routes/resourcepacks.go b/src/routes/resourcepacks.go index 9b0c783fa..356b21afd 100644 --- a/src/routes/resourcepacks.go +++ b/src/routes/resourcepacks.go @@ -50,6 +50,11 @@ func ResourcePackHandler(c *fiber.Ctx) error { continue } + // We don't want to include the vanilla resource pack in the list because it's not toggleable + if configData.Id == "VANILLA" { + continue + } + configData.Icon = fmt.Sprintf("/assets/resourcepacks/%s/pack.png", file.Name()) RESOURCE_PACKS = append(RESOURCE_PACKS, configData) } diff --git a/src/stats/items/processing.go b/src/stats/items/processing.go index fc3af6754..cca603fe5 100644 --- a/src/stats/items/processing.go +++ b/src/stats/items/processing.go @@ -166,9 +166,10 @@ func ProcessItem(item *skycrypttypes.Item, source string, disabledPacks ...[]str Tag: item.Tag.ToMap(), } - processedItem.Texture = lib.ApplyTexture(TextureItem, disabledPacks...) - if strings.Contains(processedItem.Texture, "/assets/resourcepacks/FurfSky/") { - processedItem.TexturePack = "FURFSKY_REBORN" + appliedTexture := lib.ApplyTexture(TextureItem, disabledPacks...) + processedItem.Texture = appliedTexture.Texture + if appliedTexture.TexturePack != "" { + processedItem.TexturePack = appliedTexture.TexturePack } if processedItem.Texture == "" { diff --git a/src/stats/pets.go b/src/stats/pets.go index 3d249a7f0..e615a6c9d 100644 --- a/src/stats/pets.go +++ b/src/stats/pets.go @@ -50,6 +50,17 @@ func getPetLevel(pet skycrypttypes.Pet) models.PetLevel { rarityOffset = petData.PetRarityOffset[pet.Rarity] } + for i := len(constants.RARITIES) - 1; i >= 1; i-- { + if rarityOffset != nil { + break + } + + rarityOffset = petData.CustomPetLeveling[pet.Type].RarityOffset[strings.ToUpper(constants.RARITIES[i])] + if rarityOffset == nil { + rarityOffset = petData.PetRarityOffset[strings.ToUpper(constants.RARITIES[i])] + } + } + if rarityOffset == nil { return models.PetLevel{} } @@ -202,13 +213,15 @@ func getProfilePets(userProfile *skycrypttypes.Member, pets *[]skycrypttypes.Pet NEUItemId := fmt.Sprintf("%s;%d", pet.Type, slices.Index(constants.RARITIES, strings.ToLower(pet.Rarity))) NEUItem, err := notenoughupdates.GetItem(NEUItemId) if err != nil { - NEUItemId = fmt.Sprintf("%s;%d", pet.Type, slices.Index(constants.RARITIES, strings.ToLower(pet.Rarity))-1) - NEUItem, err = notenoughupdates.GetItem(NEUItemId) - petDataRarity = constants.RARITIES[slices.Index(constants.RARITIES, strings.ToLower(pet.Rarity))-1] - if err != nil { - output = append(output, outputPet) - continue + for i := len(constants.RARITIES) - 1; i >= 1; i-- { + NEUItemId = fmt.Sprintf("%s;%d", pet.Type, i) + NEUItem, err = notenoughupdates.GetItem(NEUItemId) + petDataRarity = constants.RARITIES[i] + if err == nil { + break + } } + } if pet.Skin != "" { diff --git a/src/utility/helper.go b/src/utility/helper.go index adc09686a..24431d73a 100644 --- a/src/utility/helper.go +++ b/src/utility/helper.go @@ -295,11 +295,15 @@ func ReplaceVariables(template string, variables map[string]float64) string { // fmt.Printf("Replacing variable %s with value %.2f\n", name, value) if _, err := strconv.ParseFloat(name, 64); err != nil { if intValue, err := strconv.Atoi(fmt.Sprintf("%.0f", value)); err == nil && intValue > 0 { + if strings.Contains(match, "+") { + return "+" + strconv.Itoa(intValue) + } + return "+" + fmt.Sprintf("%.0f", value) } } - return fmt.Sprintf("%.0f", value) + return fmt.Sprintf("%.0f", math.Abs(value)) }) } diff --git a/tools/formatHypixelPlus.go b/tools/formatHypixelPlus.go new file mode 100644 index 000000000..d66cd2b2e --- /dev/null +++ b/tools/formatHypixelPlus.go @@ -0,0 +1,296 @@ +package main + +import ( + "encoding/json" + "fmt" + "image" + "io/fs" + "os" + "path/filepath" + + "github.com/kettek/apng" +) + +type McMeta struct { + Animation McMetaAnimation `json:"animation"` +} + +type McMetaAnimation struct { + Frametime float64 `json:"frametime"` +} + +func main() { + assetsRoot := "temp/Hypixel+ 0.23.4 for 1.21.8/assets/hplus/textures/skyblock/" + packDirs, err := os.ReadDir(assetsRoot) + if err != nil { + fmt.Printf("Failed to read assets directory: %v\n", err) + return + } + + for _, packDir := range packDirs { + if !packDir.IsDir() { + continue + } + + packAssetsPath := filepath.Join(assetsRoot, packDir.Name()) + if _, err := os.Stat(packAssetsPath); os.IsNotExist(err) { + continue + } + + filepath.WalkDir(packAssetsPath, func(path string, d fs.DirEntry, err error) error { + if err != nil { + return err + } + + if !d.IsDir() { + if filepath.Ext(d.Name()) == ".png" { + // Get the relative path from packAssetsPath to preserve directory structure + relPath, err := filepath.Rel(packAssetsPath, path) + if err != nil { + fmt.Printf("Failed to get relative path for %s: %v\n", path, err) + return nil + } + outputPath := filepath.Join("output/assets/textures", packDir.Name(), relPath) + fmt.Printf("Path: %s\n", outputPath) + /* + if fmt.Sprintf("%s.png", packDir.Name()) == d.Name() { + outputPath = filepath.Join("output/assets/textures", d.Name()) + } + */ + + outputDir := filepath.Dir(outputPath) + if err := os.MkdirAll(outputDir, os.ModePerm); err != nil { + fmt.Printf("Failed to create directory %s: %v\n", outputDir, err) + return nil + } + + inputFile, err := os.Open(path) + if err != nil { + fmt.Printf("Failed to open %s: %v\n", path, err) + return nil + } + defer inputFile.Close() + + outputFile, err := os.Create(outputPath) + if err != nil { + fmt.Printf("Failed to create %s: %v\n", outputPath, err) + return nil + } + defer outputFile.Close() + + if _, err := inputFile.Seek(0, 0); err != nil { + fmt.Printf("Failed to seek in %s: %v\n", path, err) + return nil + } + + if _, err := outputFile.ReadFrom(inputFile); err != nil { + fmt.Printf("Failed to copy from %s to %s: %v\n", path, outputPath, err) + return nil + } + + fmt.Printf("Copied: %s to %s\n", path, outputPath) + + mcmetaPath := path + ".mcmeta" + if _, err := os.Stat(mcmetaPath); err == nil { + mcmetaOutputPath := outputPath + ".mcmeta" + mcmetaInputFile, err := os.Open(mcmetaPath) + if err != nil { + fmt.Printf("Failed to open %s: %v\n", mcmetaPath, err) + return nil + } + defer mcmetaInputFile.Close() + + mcmetaOutputFile, err := os.Create(mcmetaOutputPath) + if err != nil { + fmt.Printf("Failed to create %s: %v\n", mcmetaOutputPath, err) + return nil + } + + defer mcmetaOutputFile.Close() + + if _, err := mcmetaInputFile.Seek(0, 0); err != nil { + fmt.Printf("Failed to seek in %s: %v\n", mcmetaPath, err) + return nil + } + + if _, err := mcmetaOutputFile.ReadFrom(mcmetaInputFile); err != nil { + fmt.Printf("Failed to copy from %s to %s: %v\n", mcmetaPath, mcmetaOutputPath, err) + return nil + } + + // fmt.Printf("Copied: %s to %s\n", mcmetaPath, mcmetaOutputPath) + } + + /* + modelsPath := "temp/Hypixel+ 0.23.4 for 1.21.8/assets/hplus/models/skyblock" + for _, modelDir := range packDirs { + if !modelDir.IsDir() { + continue + } + + modelsAssetsPath := filepath.Join(modelsPath, modelDir.Name()) + if _, err := os.Stat(modelsAssetsPath); os.IsNotExist(err) { + fmt.Printf("Couldn't find %v\n", modelsAssetsPath) + continue + } + + filepath.WalkDir(modelsAssetsPath, func(modelPath string, md fs.DirEntry, err error) error { + if err != nil { + return err + } + + if !md.IsDir() && filepath.Ext(md.Name()) == ".json" { + if md.Name() == d.Name()[:len(d.Name())-len(filepath.Ext(d.Name()))]+".json" { + modelOutputPath := filepath.Join("output/assets/models", md.Name()) + modelOutputDir := filepath.Dir(modelOutputPath) + if err := os.MkdirAll(modelOutputDir, os.ModePerm); err != nil { + fmt.Printf("Failed to create directory %s: %v\n", modelOutputDir, err) + return nil + } + + modelInputFile, err := os.Open(modelPath) + if err != nil { + fmt.Printf("Failed to open %s: %v\n", modelPath, err) + return nil + } + defer modelInputFile.Close() + + modelOutputFile, err := os.Create(modelOutputPath) + if err != nil { + fmt.Printf("Failed to create %s: %v\n", modelOutputPath, err) + return nil + } + defer modelOutputFile.Close() + + if _, err := modelInputFile.Seek(0, 0); err != nil { + fmt.Printf("Failed to seek in %s: %v\n", modelPath, err) + return nil + } + + if _, err := modelOutputFile.ReadFrom(modelInputFile); err != nil { + fmt.Printf("Failed to copy from %s to %s: %v\n", modelPath, modelOutputPath, err) + return nil + } + + // fmt.Printf("Copied model: %s to %s\n", modelPath, modelOutputPath) + } + } + + return nil + }) + } + */ + } else { + // fmt.Printf("Skipped non-PNG file: %s\n", path) + } + + return nil + } + + return nil + }) + } + + outputAssetsPath := "output/assets" + outputAssetsContents, err := os.ReadDir(outputAssetsPath) + if err != nil { + fmt.Printf("Failed to read output assets directory: %v\n", err) + return + } + + for _, entry := range outputAssetsContents { + if entry.IsDir() { + continue + } + + if filepath.Ext(entry.Name()) != ".png" { + // fmt.Printf("Skipped non-PNG file: %s\n", entry.Name()) + continue + } + + file, err := os.Open(filepath.Join(outputAssetsPath, entry.Name())) + if err != nil { + fmt.Printf("Failed to open %s: %v\n", entry.Name(), err) + continue + } + defer file.Close() + + img, _, err := image.Decode(file) + if err != nil { + fmt.Printf("Failed to decode %s: %v\n", entry.Name(), err) + continue + } + + width := img.Bounds().Dx() + height := img.Bounds().Dy() + if width != height && height%width == 0 { + mcmetaPath := filepath.Join(outputAssetsPath, entry.Name()+".mcmeta") + if _, err := os.Stat(mcmetaPath); os.IsNotExist(err) { + fmt.Printf("Coudln't find %+v\n", mcmetaPath) + continue + } + + mcmetaData, err := os.ReadFile(mcmetaPath) + if err != nil { + fmt.Printf("Failed to read %s: %v\n", mcmetaPath, err) + continue + } + + var mcMeta McMeta + if err := json.Unmarshal(mcmetaData, &mcMeta); err != nil { + fmt.Printf("Failed to parse %s: %v\n", mcmetaPath, err) + continue + } + + frameCount := height / width + frames := make([]image.Image, frameCount) + for i := 0; i < frameCount; i++ { + frameRect := image.Rect(0, i*width, width, (i+1)*width) + subImg := img.(interface { + SubImage(r image.Rectangle) image.Image + }).SubImage(frameRect) + frames[i] = subImg + } + + delay := uint16(mcMeta.Animation.Frametime * 50 / 10) // APNG delay is in 1/100s + + delays := make([]uint16, frameCount) + for i := 0; i < frameCount; i++ { + frameRect := image.Rect(0, i*width, width, (i+1)*width) + subImg := img.(interface { + SubImage(r image.Rectangle) image.Image + }).SubImage(frameRect) + frames[i] = subImg + delays[i] = delay + } + + apngImg := apng.APNG{} + for i := 0; i < frameCount; i++ { + frameRect := image.Rect(0, i*width, width, (i+1)*width) + subImg := img.(interface { + SubImage(r image.Rectangle) image.Image + }).SubImage(frameRect) + apngImg.Frames = append(apngImg.Frames, apng.Frame{ + Image: subImg, + DelayNumerator: delay, + DelayDenominator: 100, + }) + } + + outFile, err := os.Create(filepath.Join(outputAssetsPath, entry.Name())) + if err != nil { + fmt.Printf("Failed to create APNG %s: %v\n", entry.Name(), err) + continue + } + defer outFile.Close() + if err := apng.Encode(outFile, apngImg); err != nil { + fmt.Printf("Failed to encode APNG %s: %v\n", entry.Name(), err) + continue + } + + fmt.Printf("Created APNG: %s\n", entry.Name()) + } else { + // fmt.Printf("Valid: %+v\n", entry.Name()) + } + } +} diff --git a/tools/formatResourcePacks.go b/tools/formatResourcePacks.go.ignore similarity index 100% rename from tools/formatResourcePacks.go rename to tools/formatResourcePacks.go.ignore From 4f8f30444b435ecf21b47c759cd223e7ea3d6f28 Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Thu, 16 Oct 2025 15:36:25 +0200 Subject: [PATCH 52/55] feat: add resourcepacks to openapi --- docs/docs.go | 4 ++-- docs/swagger.json | 4 ++-- docs/swagger.yaml | 37 +++++++++++++++++++++++++++++++++++++ src/routes/resourcepacks.go | 2 +- 4 files changed, 42 insertions(+), 5 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index 329f6a0cd..5217be4ca 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -6,10 +6,10 @@ import "github.com/swaggo/swag/v2" const docTemplate = `{ "schemes": {{ marshal .Schemes }}, - "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int ` + "`" + `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"` + "`" + `\nUnbreakable int ` + "`" + `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"` + "`" + `\nEnchantments []Enchantment ` + "`" + `nbt:\"ench\" json:\"ench,omitempty\"` + "`" + `","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, + "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.ResourcePackConfig":{"properties":{"author":{"type":"string"},"disabled":{"type":"boolean"},"icon":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int ` + "`" + `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"` + "`" + `\nUnbreakable int ` + "`" + `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"` + "`" + `\nEnchantments []Enchantment ` + "`" + `nbt:\"ench\" json:\"ench,omitempty\"` + "`" + `","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, "info": {"description":"{{escape .Description}}","title":"{{.Title}}","version":"{{.Version}}"}, "externalDocs": {"description":"","url":""}, - "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, + "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/resourcepacks/{uuid}/{profileId}":{"get":{"description":"Returns a list of resource packs","requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.ResourcePackConfig"},"type":"array"}}},"description":"OK"}},"summary":"Get list of resource packs","tags":["resourcepacks"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, "openapi": "3.1.0", "servers": [ {"url":"localhost:8080/"} diff --git a/docs/swagger.json b/docs/swagger.json index 3002255ac..68824a63a 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -1,8 +1,8 @@ { - "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"`\nUnbreakable int `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"`\nEnchantments []Enchantment `nbt:\"ench\" json:\"ench,omitempty\"`","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, + "components": {"schemas":{"models.ArmorResult":{"properties":{"armor":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"set_name":{"type":"string"},"set_rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.BestRunOutput":{"properties":{"damage_dealt":{"type":"number"},"damage_mitigated":{"type":"number"},"deaths":{"type":"integer"},"dungeon_class":{"type":"string"},"elapsed_time":{"type":"integer"},"grade":{"type":"string"},"mobs_killed":{"type":"integer"},"score_bonus":{"type":"integer"},"score_exploration":{"type":"integer"},"score_skill":{"type":"integer"},"score_speed":{"type":"integer"},"secrets_found":{"type":"integer"},"timestamp":{"type":"integer"}},"type":"object"},"models.BestiaryCategoryOutput":{"properties":{"mobs":{"items":{"$ref":"#/components/schemas/models.BestiaryMobOutput"},"type":"array","uniqueItems":false},"mobsMaxed":{"type":"integer"},"mobsUnlocked":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.BestiaryMobOutput":{"properties":{"kills":{"type":"integer"},"maxKills":{"type":"integer"},"maxTier":{"type":"integer"},"name":{"type":"string"},"nextTierKills":{"type":"integer"},"texture":{"type":"string"},"tier":{"type":"integer"}},"type":"object"},"models.BestiaryOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.BestiaryCategoryOutput"},"type":"object"},"familiesCompleted":{"type":"integer"},"familiesUnlocked":{"type":"integer"},"familyTiers":{"type":"integer"},"level":{"type":"number"},"maxFamilyTiers":{"type":"integer"},"maxLevel":{"type":"number"},"totalFamilies":{"type":"integer"}},"type":"object"},"models.ClassData":{"properties":{"classAverage":{"type":"number"},"classAverageWithProgress":{"type":"number"},"classes":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"selectedClass":{"type":"string"},"totalClassExp":{"type":"number"}},"type":"object"},"models.CollectionCategory":{"properties":{"items":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItem"},"type":"array","uniqueItems":false},"maxTiers":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"totalTiers":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItem":{"properties":{"amount":{"type":"integer"},"amounts":{"items":{"$ref":"#/components/schemas/models.CollectionCategoryItemAmount"},"type":"array","uniqueItems":false},"id":{"type":"string"},"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tier":{"type":"integer"},"totalAmount":{"type":"integer"}},"type":"object"},"models.CollectionCategoryItemAmount":{"properties":{"amount":{"type":"integer"},"username":{"type":"string"}},"type":"object"},"models.CollectionsOutput":{"properties":{"categories":{"additionalProperties":{"$ref":"#/components/schemas/models.CollectionCategory"},"type":"object"},"maxedCollections":{"type":"integer"},"totalCollections":{"type":"integer"}},"type":"object"},"models.Commissions":{"properties":{"completions":{"type":"integer"},"milestone":{"type":"integer"}},"type":"object"},"models.Contest":{"properties":{"amount":{"type":"integer"},"collected":{"type":"integer"},"medals":{"additionalProperties":{"type":"integer"},"type":"object"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Corpse":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Corpses":{"properties":{"corpses":{"items":{"$ref":"#/components/schemas/models.Corpse"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojo":{"properties":{"challenges":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleDojoChallenge"},"type":"array","uniqueItems":false},"totalPoints":{"type":"integer"}},"type":"object"},"models.CrimsonIsleDojoChallenge":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"points":{"type":"integer"},"rank":{"type":"string"},"texture":{"type":"string"},"time":{"type":"integer"}},"type":"object"},"models.CrimsonIsleFactions":{"properties":{"barbariansReputation":{"type":"integer"},"magesReputation":{"type":"integer"},"selectedFaction":{"type":"string"}},"type":"object"},"models.CrimsonIsleKuudra":{"properties":{"tiers":{"items":{"$ref":"#/components/schemas/models.CrimsonIsleKuudraTier"},"type":"array","uniqueItems":false},"totalKills":{"type":"integer"}},"type":"object"},"models.CrimsonIsleKuudraTier":{"properties":{"id":{"type":"string"},"kills":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrimsonIsleOutput":{"properties":{"dojo":{"$ref":"#/components/schemas/models.CrimsonIsleDojo"},"factions":{"$ref":"#/components/schemas/models.CrimsonIsleFactions"},"kuudra":{"$ref":"#/components/schemas/models.CrimsonIsleKuudra"}},"type":"object"},"models.CropMilestone":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CropUpgrade":{"properties":{"level":{"$ref":"#/components/schemas/models.Skill"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.CrystalHollows":{"properties":{"crystalHollowsLastAccess":{"type":"integer"},"nucleusRuns":{"type":"integer"},"progress":{"$ref":"#/components/schemas/models.CrystalNucleusRuns"}},"type":"object"},"models.CrystalNucleusRuns":{"properties":{"crystals":{"additionalProperties":{"type":"string"},"type":"object"},"parts":{"additionalProperties":{"type":"string"},"type":"object"}},"type":"object"},"models.DungeonFloorStats":{"properties":{"best_score":{"type":"number"},"fastest_time":{"type":"number"},"fastest_time_s":{"type":"number"},"fastest_time_s_plus":{"type":"number"},"milestone_completions":{"type":"number"},"mobs_killed":{"type":"number"},"most_damage":{"$ref":"#/components/schemas/models.MostDamageOutput"},"most_healing":{"type":"number"},"most_mobs_killed":{"type":"number"},"tier_completions":{"type":"number"},"times_played":{"type":"number"},"watcher_kills":{"type":"number"}},"type":"object"},"models.DungeonStatsOutput":{"properties":{"bloodMobKills":{"type":"integer"},"highestFloorBeatenMaster":{"type":"integer"},"highestFloorBeatenNormal":{"type":"integer"},"secrets":{"$ref":"#/components/schemas/models.SecretsOutput"}},"type":"object"},"models.DungeonsOutput":{"properties":{"catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"classes":{"$ref":"#/components/schemas/models.ClassData"},"level":{"$ref":"#/components/schemas/models.Skill"},"master_catacombs":{"items":{"$ref":"#/components/schemas/models.FormattedDungeonFloor"},"type":"array","uniqueItems":false},"stats":{"$ref":"#/components/schemas/models.DungeonStatsOutput"}},"type":"object"},"models.EmbedData":{"properties":{"bank":{"type":"number"},"displayName":{"type":"string"},"dungeons":{"$ref":"#/components/schemas/models.EmbedDataDungeons"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"networth":{"additionalProperties":{"type":"number"},"type":"object"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"purse":{"type":"number"},"skills":{"$ref":"#/components/schemas/models.EmbedDataSkills"},"skyblock_level":{"type":"number"},"slayers":{"$ref":"#/components/schemas/models.EmbedDataSlayers"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.EmbedDataDungeons":{"properties":{"classAverage":{"type":"number"},"classes":{"additionalProperties":{"type":"integer"},"type":"object"},"dungeoneering":{"type":"number"}},"type":"object"},"models.EmbedDataSkills":{"properties":{"skillAverage":{"type":"number"},"skills":{"additionalProperties":{"type":"integer"},"type":"object"}},"type":"object"},"models.EmbedDataSlayers":{"properties":{"slayers":{"additionalProperties":{"type":"integer"},"type":"object"},"xp":{"type":"number"}},"type":"object"},"models.EnchantingGame":{"properties":{"attempts":{"type":"integer"},"bestScore":{"type":"integer"},"claims":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.EnchantingGameData":{"properties":{"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.EnchantingGameStats"}},"type":"object"},"models.EnchantingGameStats":{"properties":{"bonusClicks":{"type":"integer"},"games":{"items":{"$ref":"#/components/schemas/models.EnchantingGame"},"type":"array","uniqueItems":false},"lastAttempt":{"type":"integer"},"lastClaimed":{"type":"integer"}},"type":"object"},"models.EnchantingOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.EnchantingGameData"},"type":"object"},"unlocked":{"type":"boolean"}},"type":"object"},"models.EquipmentResult":{"properties":{"equipment":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.FairySouls":{"properties":{"found":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.FarmingOutput":{"properties":{"contests":{"additionalProperties":{"$ref":"#/components/schemas/models.Contest"},"type":"object"},"contestsAttended":{"type":"integer"},"copper":{"type":"integer"},"medals":{"additionalProperties":{"$ref":"#/components/schemas/models.Medal"},"type":"object"},"pelts":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"uniqueGolds":{"type":"integer"}},"type":"object"},"models.FishingOuput":{"properties":{"itemsFished":{"type":"integer"},"kills":{"items":{"$ref":"#/components/schemas/models.Kill"},"type":"array","uniqueItems":false},"seaCreaturesFished":{"type":"integer"},"shredderBait":{"type":"integer"},"shredderFished":{"type":"integer"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"},"treasure":{"type":"integer"},"treasureLarge":{"type":"integer"},"trophyFish":{"$ref":"#/components/schemas/models.TrophyFishOutput"}},"type":"object"},"models.ForgeOutput":{"properties":{"duration":{"type":"number"},"endingTime":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"slot":{"type":"integer"},"startingTime":{"type":"integer"}},"type":"object"},"models.FormattedDungeonFloor":{"properties":{"best_run":{"$ref":"#/components/schemas/models.BestRunOutput"},"name":{"type":"string"},"stats":{"$ref":"#/components/schemas/models.DungeonFloorStats"},"texture":{"type":"string"}},"type":"object"},"models.Fossil":{"properties":{"found":{"type":"boolean"},"name":{"type":"string"},"texture_path":{"type":"string"}},"type":"object"},"models.Fossils":{"properties":{"fossils":{"items":{"$ref":"#/components/schemas/models.Fossil"},"type":"array","uniqueItems":false},"found":{"type":"integer"},"max":{"type":"integer"}},"type":"object"},"models.Garden":{"properties":{"composter":{"additionalProperties":{"type":"integer"},"type":"object"},"cropMilestones":{"items":{"$ref":"#/components/schemas/models.CropMilestone"},"type":"array","uniqueItems":false},"cropUpgrades":{"items":{"$ref":"#/components/schemas/models.CropUpgrade"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"plot":{"$ref":"#/components/schemas/models.PlotLayout"},"visitors":{"$ref":"#/components/schemas/models.Visitors"}},"type":"object"},"models.Gear":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"wardrobe":{"items":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"},"type":"array","uniqueItems":false},"weapons":{"$ref":"#/components/schemas/models.WeaponsResult"}},"type":"object"},"models.GetMagicalPowerOutput":{"properties":{"abiphone":{"type":"integer"},"accessories":{"type":"integer"},"hegemony":{"properties":{"amount":{"type":"integer"},"rarity":{"type":"string"}},"type":"object"},"rarities":{"$ref":"#/components/schemas/models.GetMagicalPowerRarities"},"riftPrism":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.GetMagicalPowerRarities":{"additionalProperties":{"properties":{"amount":{"type":"integer"},"magicalPower":{"type":"integer"}},"type":"object"},"type":"object"},"models.GetMissingAccessoresOutput":{"properties":{"accessories":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"enrichments":{"additionalProperties":{"type":"integer"},"type":"object"},"magicalPower":{"$ref":"#/components/schemas/models.GetMagicalPowerOutput"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"recombobulated":{"type":"integer"},"selectedPower":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"total":{"type":"integer"},"totalRecombobulated":{"type":"integer"},"unique":{"type":"integer"},"upgrades":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.GlaciteTunnels":{"properties":{"corpses":{"$ref":"#/components/schemas/models.Corpses"},"fossilDust":{"type":"number"},"fossils":{"$ref":"#/components/schemas/models.Fossils"},"mineshaftsEntered":{"type":"integer"}},"type":"object"},"models.HotmTokens":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.Kill":{"properties":{"amount":{"type":"integer"},"id":{"type":"string"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.Medal":{"properties":{"amount":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.MemberStats":{"properties":{"removed":{"type":"boolean"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.MiningOutput":{"properties":{"commissions":{"$ref":"#/components/schemas/models.Commissions"},"crystalHollows":{"$ref":"#/components/schemas/models.CrystalHollows"},"forge":{"items":{"$ref":"#/components/schemas/models.ForgeOutput"},"type":"array","uniqueItems":false},"glaciteTunnels":{"$ref":"#/components/schemas/models.GlaciteTunnels"},"hotm":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"level":{"$ref":"#/components/schemas/models.Skill"},"peak_of_the_mountain":{"$ref":"#/components/schemas/models.PeakOfTheMountain"},"powder":{"$ref":"#/components/schemas/models.PowderOutput"},"selected_pickaxe_ability":{"type":"string"},"tokens":{"$ref":"#/components/schemas/models.HotmTokens"},"tools":{"$ref":"#/components/schemas/models.SkillToolsResult"}},"type":"object"},"models.Minion":{"properties":{"maxTier":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"},"tiers":{"items":{"type":"integer"},"type":"array","uniqueItems":false}},"type":"object"},"models.MinionCategory":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"items":{"$ref":"#/components/schemas/models.Minion"},"type":"array","uniqueItems":false},"texture":{"type":"string"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MinionSlotsOutput":{"properties":{"bonusSlots":{"type":"integer"},"current":{"type":"integer"},"next":{"type":"integer"}},"type":"object"},"models.MinionsOutput":{"properties":{"maxedMinions":{"type":"integer"},"maxedTiers":{"type":"integer"},"minions":{"additionalProperties":{"$ref":"#/components/schemas/models.MinionCategory"},"type":"object"},"minionsSlots":{"$ref":"#/components/schemas/models.MinionSlotsOutput"},"totalMinions":{"type":"integer"},"totalTiers":{"type":"integer"}},"type":"object"},"models.MiscAuctions":{"properties":{"bids":{"type":"number"},"created":{"type":"number"},"fees":{"type":"number"},"gold_earned":{"type":"number"},"gold_spent":{"type":"number"},"highest_bid":{"type":"number"},"no_bids":{"type":"number"},"total_bought":{"additionalProperties":{"type":"number"},"type":"object"},"total_sold":{"additionalProperties":{"type":"number"},"type":"object"},"won":{"type":"number"}},"type":"object"},"models.MiscDamage":{"properties":{"highest_critical_damage":{"type":"number"}},"type":"object"},"models.MiscDragons":{"properties":{"deaths":{"additionalProperties":{"type":"number"},"type":"object"},"ender_crystals_destroyed":{"type":"integer"},"fastest_kill":{"additionalProperties":{"type":"number"},"type":"object"},"last_hits":{"additionalProperties":{"type":"number"},"type":"object"},"most_damage":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.MiscEndstoneProtector":{"properties":{"deaths":{"type":"integer"},"kills":{"type":"integer"}},"type":"object"},"models.MiscEssence":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.MiscGifts":{"properties":{"given":{"type":"integer"},"received":{"type":"integer"}},"type":"object"},"models.MiscKill":{"properties":{"amount":{"type":"integer"},"name":{"type":"string"}},"type":"object"},"models.MiscKills":{"properties":{"deaths":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"kills":{"items":{"$ref":"#/components/schemas/models.MiscKill"},"type":"array","uniqueItems":false},"total_deaths":{"type":"integer"},"total_kills":{"type":"integer"}},"type":"object"},"models.MiscMythologicalEvent":{"properties":{"burrows_chains_complete":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_combat":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_next":{"additionalProperties":{"type":"number"},"type":"object"},"burrows_dug_treasure":{"additionalProperties":{"type":"number"},"type":"object"},"kills":{"type":"number"}},"type":"object"},"models.MiscOutput":{"properties":{"auctions":{"$ref":"#/components/schemas/models.MiscAuctions"},"claimed_items":{"additionalProperties":{"type":"integer"},"type":"object"},"damage":{"$ref":"#/components/schemas/models.MiscDamage"},"dragons":{"$ref":"#/components/schemas/models.MiscDragons"},"endstone_protector":{"$ref":"#/components/schemas/models.MiscEndstoneProtector"},"essence":{"items":{"$ref":"#/components/schemas/models.MiscEssence"},"type":"array","uniqueItems":false},"gifts":{"$ref":"#/components/schemas/models.MiscGifts"},"kills":{"$ref":"#/components/schemas/models.MiscKills"},"mythological_event":{"$ref":"#/components/schemas/models.MiscMythologicalEvent"},"pet_milestones":{"additionalProperties":{"$ref":"#/components/schemas/models.MiscPetMilestone"},"type":"object"},"profile_upgrades":{"$ref":"#/components/schemas/models.MiscProfileUpgrades"},"season_of_jerry":{"$ref":"#/components/schemas/models.MiscSeasonOfJerry"},"uncategorized":{"additionalProperties":{},"type":"object"}},"type":"object"},"models.MiscPetMilestone":{"properties":{"amount":{"type":"integer"},"progress":{"type":"string"},"rarity":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.MiscProfileUpgrades":{"additionalProperties":{"type":"integer"},"type":"object"},"models.MiscSeasonOfJerry":{"properties":{"most_cannonballs_hit":{"type":"integer"},"most_damage_dealt":{"type":"integer"},"most_magma_damage_dealt":{"type":"integer"},"most_snowballs_hit":{"type":"integer"}},"type":"object"},"models.MostDamageOutput":{"properties":{"damage":{"type":"number"},"type":{"type":"string"}},"type":"object"},"models.OutputPets":{"properties":{"amount":{"type":"integer"},"amountSkins":{"type":"integer"},"missing":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"petScore":{"$ref":"#/components/schemas/models.PetScore"},"pets":{"items":{"$ref":"#/components/schemas/models.StrippedPet"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"totalCandyUsed":{"type":"integer"},"totalPetExp":{"type":"integer"}},"type":"object"},"models.PeakOfTheMountain":{"properties":{"level":{"type":"integer"},"max_level":{"type":"integer"}},"type":"object"},"models.PetScore":{"properties":{"amount":{"type":"integer"},"reward":{"items":{"$ref":"#/components/schemas/models.PetScoreReward"},"type":"array","uniqueItems":false},"stats":{"additionalProperties":{"type":"number"},"type":"object"}},"type":"object"},"models.PetScoreReward":{"properties":{"bonus":{"type":"integer"},"score":{"type":"integer"},"unlocked":{"type":"boolean"}},"type":"object"},"models.PlayerResolve":{"properties":{"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.PlotLayout":{"properties":{"barnSkin":{"type":"string"},"layout":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"total":{"type":"integer"},"unlocked":{"type":"integer"}},"type":"object"},"models.PowderAmount":{"properties":{"available":{"type":"integer"},"spent":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"models.PowderOutput":{"properties":{"gemstone":{"$ref":"#/components/schemas/models.PowderAmount"},"glacite":{"$ref":"#/components/schemas/models.PowderAmount"},"mithril":{"$ref":"#/components/schemas/models.PowderAmount"}},"type":"object"},"models.ProcessedItem":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"categories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"containsItems":{"items":{"$ref":"#/components/schemas/models.ProcessedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"id":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"price":{"type":"number"},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.ProcessingError":{"properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"}},"type":"object"},"models.ProfilesStats":{"properties":{"cute_name":{"type":"string"},"game_mode":{"type":"string"},"profile_id":{"type":"string"},"selected":{"type":"boolean"}},"type":"object"},"models.RankOutput":{"properties":{"plusColor":{"type":"string"},"plusText":{"type":"string"},"rankColor":{"type":"string"},"rankText":{"type":"string"}},"type":"object"},"models.ResourcePackConfig":{"properties":{"author":{"type":"string"},"disabled":{"type":"boolean"},"icon":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"models.RiftCastleOutput":{"properties":{"grubberStacks":{"type":"integer"},"maxBurgers":{"type":"integer"}},"type":"object"},"models.RiftEnigmaOutput":{"properties":{"souls":{"type":"integer"},"totalSouls":{"type":"integer"}},"type":"object"},"models.RiftMotesOutput":{"properties":{"lifetime":{"type":"integer"},"orbs":{"type":"integer"},"purse":{"type":"integer"}},"type":"object"},"models.RiftOutput":{"properties":{"armor":{"$ref":"#/components/schemas/models.ArmorResult"},"castle":{"$ref":"#/components/schemas/models.RiftCastleOutput"},"enigma":{"$ref":"#/components/schemas/models.RiftEnigmaOutput"},"equipment":{"$ref":"#/components/schemas/models.EquipmentResult"},"motes":{"$ref":"#/components/schemas/models.RiftMotesOutput"},"porhtal":{"$ref":"#/components/schemas/models.RiftPortalsOutput"},"timecharms":{"$ref":"#/components/schemas/models.RiftTimecharmsOutput"},"visits":{"type":"integer"}},"type":"object"},"models.RiftPorhtal":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"}},"type":"object"},"models.RiftPortalsOutput":{"properties":{"porhtals":{"items":{"$ref":"#/components/schemas/models.RiftPorhtal"},"type":"array","uniqueItems":false},"porhtalsFound":{"type":"integer"}},"type":"object"},"models.RiftTimecharms":{"properties":{"name":{"type":"string"},"texture":{"type":"string"},"unlocked":{"type":"boolean"},"unlockedAt":{"type":"integer"}},"type":"object"},"models.RiftTimecharmsOutput":{"properties":{"timecharms":{"items":{"$ref":"#/components/schemas/models.RiftTimecharms"},"type":"array","uniqueItems":false},"timecharmsFound":{"type":"integer"}},"type":"object"},"models.SecretsOutput":{"properties":{"found":{"type":"integer"},"secretsPerRun":{"type":"number"}},"type":"object"},"models.Skill":{"properties":{"level":{"type":"integer"},"levelCap":{"type":"integer"},"levelWithProgress":{"type":"number"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"progress":{"type":"number"},"texture":{"type":"string"},"uncappedLevel":{"type":"integer"},"unlockableLevelWithProgress":{"type":"number"},"xp":{"type":"integer"},"xpCurrent":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SkillToolsResult":{"properties":{"highest_priority_tool":{"$ref":"#/components/schemas/models.StrippedItem"},"tools":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Skills":{"properties":{"averageSkillLevel":{"type":"number"},"averageSkillLevelWithProgress":{"type":"number"},"skills":{"additionalProperties":{"$ref":"#/components/schemas/models.Skill"},"type":"object"},"totalSkillXp":{"type":"integer"}},"type":"object"},"models.SkillsOutput":{"properties":{"enchanting":{"$ref":"#/components/schemas/models.EnchantingOutput"},"farming":{"$ref":"#/components/schemas/models.FarmingOutput"},"fishing":{"$ref":"#/components/schemas/models.FishingOuput"},"mining":{"$ref":"#/components/schemas/models.MiningOutput"}},"type":"object"},"models.SlayerData":{"properties":{"kills":{"additionalProperties":{"type":"integer"},"type":"object"},"level":{"$ref":"#/components/schemas/models.SlayerLevel"},"name":{"type":"string"},"texture":{"type":"string"}},"type":"object"},"models.SlayerLevel":{"properties":{"level":{"type":"integer"},"maxLevel":{"type":"integer"},"maxed":{"type":"boolean"},"xp":{"type":"integer"},"xpForNext":{"type":"integer"}},"type":"object"},"models.SlayersOutput":{"properties":{"data":{"additionalProperties":{"$ref":"#/components/schemas/models.SlayerData"},"type":"object"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"totalSlayerExp":{"type":"integer"}},"type":"object"},"models.StatsInfo":{"additionalProperties":{"type":"integer"},"type":"object"},"models.StatsOutput":{"properties":{"apiSettings":{"additionalProperties":{"type":"boolean"},"type":"object"},"bank":{"type":"number"},"displayName":{"type":"string"},"fairySouls":{"$ref":"#/components/schemas/models.FairySouls"},"game_mode":{"type":"string"},"joined":{"type":"integer"},"members":{"items":{"$ref":"#/components/schemas/models.MemberStats"},"type":"array","uniqueItems":false},"personalBank":{"type":"number"},"profile_cute_name":{"type":"string"},"profile_id":{"type":"string"},"profiles":{"items":{"$ref":"#/components/schemas/models.ProfilesStats"},"type":"array","uniqueItems":false},"purse":{"type":"number"},"rank":{"$ref":"#/components/schemas/models.RankOutput"},"selected":{"type":"boolean"},"skills":{"$ref":"#/components/schemas/models.Skills"},"skyblock_level":{"$ref":"#/components/schemas/models.Skill"},"social":{"$ref":"#/components/schemas/skycrypttypes.SocialMediaLinks"},"username":{"type":"string"},"uuid":{"type":"string"}},"type":"object"},"models.StrippedItem":{"properties":{"Count":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false},"display_name":{"type":"string"},"isInactive":{"type":"boolean"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"recombobulated":{"type":"boolean"},"shiny":{"type":"boolean"},"source":{"type":"string"},"texture_pack":{"type":"string"},"texture_path":{"type":"string"},"wiki":{"$ref":"#/components/schemas/models.WikipediaLinks"}},"type":"object"},"models.StrippedPet":{"properties":{"active":{"type":"boolean"},"display_name":{"type":"string"},"level":{"type":"integer"},"lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rarity":{"type":"string"},"stats":{"additionalProperties":{"type":"number"},"type":"object"},"texture_path":{"type":"string"},"type":{"type":"string"}},"type":"object"},"models.TrophyFish":{"properties":{"bronze":{"type":"integer"},"description":{"type":"string"},"diamond":{"type":"integer"},"gold":{"type":"integer"},"id":{"type":"string"},"maxed":{"type":"boolean"},"name":{"type":"string"},"silver":{"type":"integer"},"texture":{"type":"string"}},"type":"object"},"models.TrophyFishOutput":{"properties":{"stage":{"$ref":"#/components/schemas/models.TrophyFishStage"},"totalCaught":{"type":"integer"},"trophyFish":{"items":{"$ref":"#/components/schemas/models.TrophyFish"},"type":"array","uniqueItems":false}},"type":"object"},"models.TrophyFishProgress":{"properties":{"caught":{"type":"integer"},"tier":{"type":"string"},"total":{"type":"integer"}},"type":"object"},"models.TrophyFishStage":{"properties":{"name":{"type":"string"},"progress":{"items":{"$ref":"#/components/schemas/models.TrophyFishProgress"},"type":"array","uniqueItems":false}},"type":"object"},"models.VisitorRarityData":{"properties":{"completed":{"type":"integer"},"maxUnique":{"type":"integer"},"unique":{"type":"integer"},"visited":{"type":"integer"}},"type":"object"},"models.Visitors":{"properties":{"completed":{"type":"integer"},"uniqueVisitors":{"type":"integer"},"visited":{"type":"integer"},"visitors":{"additionalProperties":{"$ref":"#/components/schemas/models.VisitorRarityData"},"type":"object"}},"type":"object"},"models.WeaponsResult":{"properties":{"highest_priority_weapon":{"$ref":"#/components/schemas/models.StrippedItem"},"weapons":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.WikipediaLinks":{"properties":{"fandom":{"type":"string"},"official":{"type":"string"}},"type":"object"},"skycrypttypes.Display":{"properties":{"Lore":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"color":{"type":"integer"}},"type":"object"},"skycrypttypes.ExtraAttributes":{"description":"HideFlags int `nbt:\"HideFlags\" json:\"HideFlags,omitempty\"`\nUnbreakable int `nbt:\"Unbreakable\" json:\"Unbreakable,omitempty\"`\nEnchantments []Enchantment `nbt:\"ench\" json:\"ench,omitempty\"`","properties":{"ability_scroll":{"items":{"type":"string"},"type":"array","uniqueItems":false},"additional_coins":{"type":"integer"},"artOfPeaceApplied":{"type":"integer"},"art_of_war_count":{"type":"integer"},"attributes":{"additionalProperties":{"type":"integer"},"type":"object"},"auction":{"type":"integer"},"bid":{"type":"integer"},"boosters":{"items":{"type":"string"},"type":"array","uniqueItems":false},"champion_combat_xp":{"type":"number"},"compact_blocks":{"type":"integer"},"divan_powder_coating":{"type":"integer"},"donated_museum":{"type":"boolean"},"drill_part_engine":{"type":"string"},"drill_part_fuel_tank":{"type":"string"},"drill_part_upgrade_module":{"type":"string"},"dungeon_item_level":{},"dye_item":{"type":"string"},"edition":{"type":"integer"},"enchantments":{"additionalProperties":{"type":"integer"},"type":"object"},"ethermerge":{"type":"integer"},"expertise_kills":{"type":"integer"},"farmed_cultivating":{"type":"integer"},"farming_for_dummies_count":{"type":"integer"},"gems":{"additionalProperties":{},"type":"object"},"hecatomb_s_runs":{"type":"integer"},"hook":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"hot_potato_count":{"type":"integer"},"id":{"type":"string"},"is_shiny":{"type":"boolean"},"item_tier":{"type":"integer"},"jalapeno_count":{"type":"integer"},"line":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"mana_disintegrator_count":{"type":"integer"},"model":{"type":"string"},"modifier":{"type":"string"},"new_year_cake_bag_data":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_year_cake_bag_years":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"new_years_cake":{"type":"integer"},"party_hat_color":{"type":"string"},"party_hat_emoji":{"type":"string"},"petInfo":{"type":"string"},"pickonimbus_durability":{"type":"integer"},"polarvoid":{"type":"integer"},"power_ability_scroll":{"type":"string"},"price":{"type":"integer"},"rarity_upgrades":{"type":"integer"},"runes":{"additionalProperties":{"type":"integer"},"type":"object"},"sack_pss":{"type":"integer"},"sinker":{"$ref":"#/components/schemas/skycrypttypes.RodPart"},"skin":{"type":"string"},"talisman_enrichment":{"type":"string"},"thunder_charge":{"type":"integer"},"timestamp":{},"tuned_transmission":{"type":"integer"},"upgrade_level":{},"uuid":{"type":"string"},"winning_bid":{"type":"integer"},"wood_singularity_count":{"type":"integer"}},"type":"object"},"skycrypttypes.Item":{"properties":{"Count":{"type":"integer"},"Damage":{"type":"integer"},"containsItems":{"items":{"$ref":"#/components/schemas/skycrypttypes.Item"},"type":"array","uniqueItems":false},"id":{"type":"integer"},"price":{"type":"number"},"tag":{"$ref":"#/components/schemas/skycrypttypes.Tag"}},"type":"object"},"skycrypttypes.Properties":{"properties":{"textures":{"items":{"$ref":"#/components/schemas/skycrypttypes.Texture"},"type":"array","uniqueItems":false}},"type":"object"},"skycrypttypes.RodPart":{"properties":{"donated_museum":{"type":"boolean"},"part":{"type":"string"}},"type":"object"},"skycrypttypes.SkullOwner":{"properties":{"Id":{"type":"string"},"Properties":{"$ref":"#/components/schemas/skycrypttypes.Properties"}},"type":"object"},"skycrypttypes.SocialMediaLinks":{"properties":{"DISCORD":{"type":"string"},"HYPIXEL":{"type":"string"},"TWITCH":{"type":"string"},"TWITTER":{"type":"string"}},"type":"object"},"skycrypttypes.Tag":{"properties":{"ExtraAttributes":{"$ref":"#/components/schemas/skycrypttypes.ExtraAttributes"},"SkullOwner":{"$ref":"#/components/schemas/skycrypttypes.SkullOwner"},"display":{"$ref":"#/components/schemas/skycrypttypes.Display"}},"type":"object"},"skycrypttypes.Texture":{"properties":{"Signature":{"type":"string"},"Value":{"type":"string"}},"type":"object"}}}, "info": {"description":"API for SkyCrypt - A Hypixel SkyBlock Stats Viewer","title":"SkyCrypt API","version":"1.0"}, "externalDocs": {"description":"","url":""}, - "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, + "paths": {"/api/accessories/{uuid}/{profileId}":{"get":{"description":"Returns accessories for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.GetMissingAccessoresOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get accessories stats of a specified player","tags":["accessories"]}},"/api/bestiary/{uuid}/{profileId}":{"get":{"description":"Returns bestiary for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.BestiaryOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get bestiary stats of a specified player","tags":["bestiary"]}},"/api/collections/{uuid}/{profileId}":{"get":{"description":"Returns collections for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CollectionsOutput"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get collections stats of a specified player","tags":["collections"]}},"/api/crimson_isle/{uuid}/{profileId}":{"get":{"description":"Returns Crimson Isle stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.CrimsonIsleOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get Crimson Isle stats of a specified player","tags":["crimson_isle"]}},"/api/dungeons/{uuid}/{profileId}":{"get":{"description":"Returns dungeons for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.DungeonsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get dungeons stats of a specified player","tags":["dungeons"]}},"/api/embed/{uuid}/{profileId}":{"get":{"description":"Returns embed data for the given user (UUID or username) and optional profile ID","parameters":[{"description":"User UUID or username","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID (optional)","in":"path","name":"profileId","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.EmbedData"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get embed data for a specified player","tags":["embed"]}},"/api/garden/{profileId}":{"get":{"description":"Returns garden data for the given profile ID","parameters":[{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Garden"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get garden stats of a specified profile","tags":["garden"]}},"/api/gear/{uuid}/{profileId}":{"get":{"description":"Returns gear for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Gear"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get gear stats of a specified player","tags":["gear"]}},"/api/head/{textureId}":{"get":{"description":"Returns a PNG image of a head for the given texture ID","parameters":[{"description":"Texture ID","in":"path","name":"textureId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the head"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render head"}},"summary":"Render and return a head image","tags":["head"]}},"/api/inventory/{uuid}/{profileId}/search/{search}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/inventory/{uuid}/{profileId}/{inventoryId}":{"get":{"description":"Returns inventory items for the given user, profile ID, and inventory ID. Supports museum, search, and other inventories.","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}},{"description":"Inventory ID (e.g., museum, search, or other inventory types)","in":"path","name":"inventoryId","required":true,"schema":{"type":"string"}},{"description":"Search string (required when inventoryId is 'search')","in":"path","name":"search","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.StrippedItem"},"type":"array"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get inventory items for a specified player","tags":["inventory"]}},"/api/item/{itemId}":{"get":{"description":"Returns a PNG image of an item for the given texture ID","parameters":[{"description":"Item ID","in":"path","name":"itemId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the item"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Failed to render item"}},"summary":"Render and return an item image","tags":["item"]}},"/api/leather/{type}/{color}":{"get":{"description":"Returns a PNG image of leather armor for the given type and color","parameters":[{"description":"Armor Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Armor Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the leather armor"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a leather armor image","tags":["leather"]}},"/api/minions/{uuid}/{profileId}":{"get":{"description":"Returns minions for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MinionsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get minions stats of a specified player","tags":["minions"]}},"/api/misc/{uuid}/{profileId}":{"get":{"description":"Returns misc stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.MiscOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get misc stats of a specified player","tags":["misc"]}},"/api/networth/{uuid}/{profileId}":{"get":{"description":"Returns networth for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get networth of a specified player","tags":["networth"]}},"/api/pets/{uuid}/{profileId}":{"get":{"description":"Returns pets for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.OutputPets"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get pets stats of a specified player","tags":["pets"]}},"/api/playerStats/{uuid}/{profileId}":{"get":{"description":"Returns player stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/models.StatsInfo"},"type":"object"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get player stats of a specified player","tags":["playerStats"]}},"/api/potion/{type}/{color}":{"get":{"description":"Returns a PNG image of a potion for the given type and color","parameters":[{"description":"Potion Type","in":"path","name":"type","required":true,"schema":{"type":"string"}},{"description":"Potion Color","in":"path","name":"color","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"file"}},"image/png":{"schema":{"format":"binary","type":"string"}}},"description":"PNG image of the potion"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Render and return a potion image","tags":["potion"]}},"/api/resourcepacks/{uuid}/{profileId}":{"get":{"description":"Returns a list of resource packs","requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/models.ResourcePackConfig"},"type":"array"}}},"description":"OK"}},"summary":"Get list of resource packs","tags":["resourcepacks"]}},"/api/rift/{uuid}/{profileId}":{"get":{"description":"Returns rift data for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.RiftOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get rift stats of a specified player","tags":["rift"]}},"/api/skills/{uuid}/{profileId}":{"get":{"description":"Returns skills for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SkillsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get skills stats of a specified player","tags":["skills"]}},"/api/slayer/{uuid}/{profileId}":{"get":{"description":"Returns slayer statistics for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.SlayersOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get slayer stats of a specified player","tags":["slayers"]}},"/api/stats/{uuid}/{profileId}":{"get":{"description":"Returns stats for the given user and profile ID","parameters":[{"description":"User UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}},{"description":"Profile ID","in":"path","name":"profileId","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.StatsOutput"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Internal Server Error"}},"summary":"Get stats of a specified player","tags":["stats"]}},"/api/username/{uuid}":{"get":{"description":"Returns the username associated with the given UUID","parameters":[{"description":"UUID","in":"path","name":"uuid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get username for a specified UUID","tags":["username"]}},"/api/uuid/{username}":{"get":{"description":"Returns the UUID associated with the given username","parameters":[{"description":"Username","in":"path","name":"username","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.PlayerResolve"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.ProcessingError"}}},"description":"Bad Request"}},"summary":"Get UUID for a specified username","tags":["uuid"]}}}, "openapi": "3.1.0", "servers": [ {"url":"localhost:8080/"} diff --git a/docs/swagger.yaml b/docs/swagger.yaml index b73b650cd..87f0a2b68 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -1192,6 +1192,23 @@ components: rankText: type: string type: object + models.ResourcePackConfig: + properties: + author: + type: string + disabled: + type: boolean + icon: + type: string + id: + type: string + name: + type: string + url: + type: string + version: + type: string + type: object models.RiftCastleOutput: properties: grubberStacks: @@ -2583,6 +2600,26 @@ paths: summary: Render and return a potion image tags: - potion + /api/resourcepacks/{uuid}/{profileId}: + get: + description: Returns a list of resource packs + requestBody: + content: + application/json: + schema: + type: object + responses: + "200": + content: + application/json: + schema: + items: + $ref: '#/components/schemas/models.ResourcePackConfig' + type: array + description: OK + summary: Get list of resource packs + tags: + - resourcepacks /api/rift/{uuid}/{profileId}: get: description: Returns rift data for the given user and profile ID diff --git a/src/routes/resourcepacks.go b/src/routes/resourcepacks.go index 356b21afd..00d7ecb9c 100644 --- a/src/routes/resourcepacks.go +++ b/src/routes/resourcepacks.go @@ -18,7 +18,7 @@ var RESOURCE_PACKS = []models.ResourcePackConfig{} // @Tags resourcepacks // @Accept json // @Produce json -// @Success 200 {object} []ResourcePackConfig +// @Success 200 {object} []models.ResourcePackConfig // @Router /api/resourcepacks/{uuid}/{profileId} [get] func ResourcePackHandler(c *fiber.Ctx) error { timeNow := time.Now() From a0177954b1f04a150ac88dc9250ac379d0bb8e6f Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sat, 18 Oct 2025 12:55:28 +0200 Subject: [PATCH 53/55] feat: yes --- NotEnoughUpdates-REPO | 2 +- src/routes/gear.go | 4 ++++ src/routes/inventory.go | 15 ++++++++++++++- src/routes/resourcepacks.go | 4 ++++ src/stats/items.go | 32 +++++++++++++++++--------------- src/stats/items/museum.go | 12 ++++++------ 6 files changed, 46 insertions(+), 23 deletions(-) diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 969d626ab..b3736a655 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 969d626ab07c01397809701fcde4b9ae20b3014b +Subproject commit b3736a655cac02f9f0c823e39de358a70088abfd diff --git a/src/routes/gear.go b/src/routes/gear.go index ab6986a94..cbd44747f 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -8,6 +8,7 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" + "skycrypt/src/utility" "strings" "time" @@ -85,6 +86,9 @@ func GearHandler(c *fiber.Ctx) error { } } + // disabledPacks = append(disabledPacks, "FURFSKY_REBORN", "HYPIXEL_PLUS") + utility.SendWebhook("RESOURCE PACKS", fmt.Sprintf("Disabled packs: %v", disabledPacks), []byte{}) + processedItems := map[string][]models.ProcessedItem{} for inventoryId := range specifiedInventories { if decodedItems.Types[inventoryId] == nil { diff --git a/src/routes/inventory.go b/src/routes/inventory.go index 4ee459916..ffb98dc8d 100644 --- a/src/routes/inventory.go +++ b/src/routes/inventory.go @@ -112,7 +112,6 @@ func InventoryHandler(c *fiber.Ctx) error { return c.JSON(fiber.Map{ "items": statsItems.StripItems(&museumItems), }) - } profile, err := api.GetProfile(uuid, profileId) @@ -125,6 +124,20 @@ func InventoryHandler(c *fiber.Ctx) error { userProfileValue := profile.Members[uuid] userProfile := &userProfileValue + // TODO: Implement sacks + if inventoryId == "sacks" { + /* + userProfile.SackCounts + userProfile.Inventory.BagContents.SacksBag.Data + */ + itemSlice := stats.GetInventory(userProfile, inventoryId) + output := statsItems.ProcessItems(itemSlice, inventoryId, disabledPacks) + + return c.JSON(fiber.Map{ + "items": output, + }) + } + if inventoryId == "search" { var items map[string][]*skycrypttypes.Item cache, err := redis.Get(fmt.Sprintf("items:%s", profileId)) diff --git a/src/routes/resourcepacks.go b/src/routes/resourcepacks.go index 00d7ecb9c..614709f13 100644 --- a/src/routes/resourcepacks.go +++ b/src/routes/resourcepacks.go @@ -56,6 +56,10 @@ func ResourcePackHandler(c *fiber.Ctx) error { } configData.Icon = fmt.Sprintf("/assets/resourcepacks/%s/pack.png", file.Name()) + if os.Getenv("DEV") == "true" { + configData.Icon = fmt.Sprintf("http://localhost:8080%s", configData.Icon) + } + RESOURCE_PACKS = append(RESOURCE_PACKS, configData) } } diff --git a/src/stats/items.go b/src/stats/items.go index 08b9838ab..33c05845e 100644 --- a/src/stats/items.go +++ b/src/stats/items.go @@ -12,37 +12,39 @@ import ( jsoniter "github.com/json-iterator/go" ) -func GetRawInventory(useProfile *skycrypttypes.Member, inventoryId string) string { +func GetRawInventory(userProfile *skycrypttypes.Member, inventoryId string) string { switch inventoryId { case "inventory": - return useProfile.Inventory.Inventory.Data + return userProfile.Inventory.Inventory.Data case "enderchest": - return useProfile.Inventory.Enderchest.Data + return userProfile.Inventory.Enderchest.Data case "armor": - return useProfile.Inventory.Armor.Data + return userProfile.Inventory.Armor.Data case "equipment": - return useProfile.Inventory.Equipment.Data + return userProfile.Inventory.Equipment.Data case "personal_vault": - return useProfile.Inventory.PersonalVault.Data + return userProfile.Inventory.PersonalVault.Data case "wardrobe": - return useProfile.Inventory.Wardrobe.Data + return userProfile.Inventory.Wardrobe.Data + case "sacks": + return userProfile.Inventory.BagContents.SacksBag.Data case "rift_inventory": - return useProfile.Rift.Inventory.Inventory.Data + return userProfile.Rift.Inventory.Inventory.Data case "rift_enderchest": - return useProfile.Rift.Inventory.Enderchest.Data + return userProfile.Rift.Inventory.Enderchest.Data case "rift_armor": - return useProfile.Rift.Inventory.Armor.Data + return userProfile.Rift.Inventory.Armor.Data case "rift_equipment": - return useProfile.Rift.Inventory.Equipment.Data + return userProfile.Rift.Inventory.Equipment.Data case "potion_bag": - return useProfile.Inventory.BagContents.PotionBag.Data + return userProfile.Inventory.BagContents.PotionBag.Data case "talisman_bag": - return useProfile.Inventory.BagContents.TalismanBag.Data + return userProfile.Inventory.BagContents.TalismanBag.Data case "fishing_bag": - return useProfile.Inventory.BagContents.FishingBag.Data + return userProfile.Inventory.BagContents.FishingBag.Data case "quiver": - return useProfile.Inventory.BagContents.Quiver.Data + return userProfile.Inventory.BagContents.Quiver.Data } return "" diff --git a/src/stats/items/museum.go b/src/stats/items/museum.go index c4aa84569..ff6577173 100644 --- a/src/stats/items/museum.go +++ b/src/stats/items/museum.go @@ -334,11 +334,11 @@ func GetMuseum(museum *skycrypttypes.Museum, disabledPacks ...[]string) []models for _, item := range constants.MUSEUM_INVENTORY { // Setup the frame for the museum itemSlot := formatMuseumItemProgress(&item, museumItems) - if itemSlot.InventoryType == "" { - if os.Getenv("DEV") == "true" { - itemSlot.ProcessedItem.Texture = strings.Replace(itemSlot.ProcessedItem.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) - } + if os.Getenv("DEV") == "true" { + itemSlot.ProcessedItem.Texture = strings.Replace(itemSlot.ProcessedItem.Texture, "/api/", "http://localhost:8080/api/", 1) + } + if itemSlot.InventoryType == "" { output[itemSlot.Position] = itemSlot.ProcessedItem continue } @@ -384,7 +384,7 @@ func GetMuseum(museum *skycrypttypes.Museum, disabledPacks ...[]string) []models if museumItem.SkyblockID == "" || museumItem.Missing { itemData := constants.MUSEUM_INVENTORY_MISSING_ITEM_TEMPLATE[itemSlot.InventoryType] if os.Getenv("DEV") == "true" { - itemData.Texture = strings.Replace(itemData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + itemData.Texture = strings.Replace(itemData.Texture, "/api/", "http://localhost:8080/api/", 1) } itemName := constants.MUSEUM.ArmorSetToId[itemId] @@ -401,7 +401,7 @@ func GetMuseum(museum *skycrypttypes.Museum, disabledPacks ...[]string) []models if museumItem.DonatedAsAChild { itemData := constants.MUSEUM_INVENTORY_HIGHER_TIER_DONATED_TEMPLATE if os.Getenv("DEV") == "true" { - itemData.Texture = strings.Replace(itemData.Texture, "/api/item/", "http://localhost:8080/api/item/", 1) + itemData.Texture = strings.Replace(itemData.Texture, "/api/", "http://localhost:8080/api/", 1) } itemName := constants.MUSEUM.ArmorSetToId[itemId] From 121aa9d2420804be9e686e30888383e8ed23514d Mon Sep 17 00:00:00 2001 From: DuckySoLucky Date: Sat, 18 Oct 2025 13:03:39 +0200 Subject: [PATCH 54/55] fix: remove debug --- src/routes/gear.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routes/gear.go b/src/routes/gear.go index cbd44747f..ab6986a94 100644 --- a/src/routes/gear.go +++ b/src/routes/gear.go @@ -8,7 +8,6 @@ import ( "skycrypt/src/models" stats "skycrypt/src/stats" statsItems "skycrypt/src/stats/items" - "skycrypt/src/utility" "strings" "time" @@ -86,9 +85,6 @@ func GearHandler(c *fiber.Ctx) error { } } - // disabledPacks = append(disabledPacks, "FURFSKY_REBORN", "HYPIXEL_PLUS") - utility.SendWebhook("RESOURCE PACKS", fmt.Sprintf("Disabled packs: %v", disabledPacks), []byte{}) - processedItems := map[string][]models.ProcessedItem{} for inventoryId := range specifiedInventories { if decodedItems.Types[inventoryId] == nil { From 242b7f066f277f412f9b320494405d5fb2dfefbe Mon Sep 17 00:00:00 2001 From: MartinNemi03 Date: Sat, 18 Oct 2025 20:57:29 +0200 Subject: [PATCH 55/55] Add CodeQL to pipeline --- .github/workflows/website.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index b5665665a..4d3465390 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -10,6 +10,29 @@ env: 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 @@ -43,7 +66,7 @@ jobs: package: name: Package into Container runs-on: ubuntu-latest - needs: [build] + needs: [analyze, build] if: | (github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/dev') && github.repository_owner == 'SkyCryptWebsite'