├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DockerFiles ├── Dockerfile.game_server └── Dockerfile.proxy ├── LICENSE ├── README.md ├── anticheat ├── LICENSE.md ├── README.md ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── anticheat │ ├── api │ ├── AnticheatAPI.java │ ├── modifier │ │ └── CustomModifierRegistry.java │ └── player │ │ ├── BypassManager.java │ │ └── PlayerDataRegistry.java │ ├── engine │ ├── MovementEvents.java │ ├── PingEvents.java │ ├── PingRequest.java │ ├── PlayerTickInformation.java │ ├── SwoftyEngine.java │ └── SwoftyPlayer.java │ ├── event │ ├── AntiCheatListener.java │ ├── ListenerMethod.java │ ├── SwoftyEventHandler.java │ ├── events │ │ ├── AnticheatPacketEvent.java │ │ ├── PlayerAttackEvent.java │ │ ├── PlayerKnockbackEvent.java │ │ └── PlayerPositionUpdateEvent.java │ └── packet │ │ ├── AbilitiesPacket.java │ │ ├── AnimationPacket.java │ │ ├── BlockDigPacket.java │ │ ├── BlockPlacePacket.java │ │ ├── EntityActionPacket.java │ │ ├── HeldItemChangePacket.java │ │ ├── IsOnGroundPacket.java │ │ ├── PingResponsePacket.java │ │ ├── PositionAndRotationPacket.java │ │ ├── PositionPacket.java │ │ ├── RequestPingPacket.java │ │ ├── RotationPacket.java │ │ ├── SteerVehiclePacket.java │ │ ├── SwoftyPacket.java │ │ ├── UseEntityPacket.java │ │ └── WindowClickPacket.java │ ├── flag │ ├── Flag.java │ ├── FlagManager.java │ ├── FlagType.java │ └── flags │ │ ├── AimFlag.java │ │ ├── AutoClickerFlag.java │ │ ├── BadPacketsFlag.java │ │ ├── FlightFlag.java │ │ ├── JesusFlag.java │ │ ├── KillAuraFlag.java │ │ ├── OnGroundSpoofFlag.java │ │ ├── PhaseFlag.java │ │ ├── PredictionFlag.java │ │ ├── ReachFlag.java │ │ ├── SpeedFlag.java │ │ ├── StrafeFlag.java │ │ ├── TimeoutPingPacketsFlag.java │ │ ├── TimerFlag.java │ │ └── VelocityFlag.java │ ├── loader │ ├── Loader.java │ ├── LoaderPacketHandler.java │ ├── PunishmentHandler.java │ ├── SwoftyAnticheat.java │ ├── SwoftyValues.java │ ├── managers │ │ └── SwoftySchedulerManager.java │ ├── minestom │ │ ├── MinestomLoader.java │ │ ├── MinestomSchedulerManager.java │ │ └── packets │ │ │ ├── MinestomHandlerAbilitiesPacket.java │ │ │ ├── MinestomHandlerAnimationPacket.java │ │ │ ├── MinestomHandlerBlockDigPacket.java │ │ │ ├── MinestomHandlerBlockPlacePacket.java │ │ │ ├── MinestomHandlerEntityActionPacket.java │ │ │ ├── MinestomHandlerHeldItemChangePacket.java │ │ │ ├── MinestomHandlerPingRequestPacket.java │ │ │ ├── MinestomHandlerPingResponsePacket.java │ │ │ ├── MinestomHandlerPositionAndRotationPacket.java │ │ │ ├── MinestomHandlerPositionPacket.java │ │ │ ├── MinestomHandlerRotationPacket.java │ │ │ ├── MinestomHandlerSteerVehiclePacket.java │ │ │ ├── MinestomHandlerUseEntityPacket.java │ │ │ └── MinestomHandlerWindowClickPacket.java │ └── spigot │ │ ├── SpigotLoader.java │ │ ├── SpigotSchedulerManager.java │ │ └── packets │ │ ├── SpigotHandlerAbilitiesPacket.java │ │ ├── SpigotHandlerAnimationPacket.java │ │ ├── SpigotHandlerBlockDigPacket.java │ │ ├── SpigotHandlerBlockPlacePacket.java │ │ ├── SpigotHandlerEntityActionPacket.java │ │ ├── SpigotHandlerHeldItemChangePacket.java │ │ ├── SpigotHandlerPingRequestPacket.java │ │ ├── SpigotHandlerPingResponsePacket.java │ │ ├── SpigotHandlerPositionAndRotationPacket.java │ │ ├── SpigotHandlerPositionPacket.java │ │ ├── SpigotHandlerRotationPacket.java │ │ ├── SpigotHandlerSteerVehiclePacket.java │ │ ├── SpigotHandlerUseEntityPacket.java │ │ └── SpigotHandlerWindowClickPacket.java │ ├── math │ ├── ChunkUtils.java │ ├── MathUtils.java │ ├── Point.java │ ├── Pos.java │ ├── PositionUtils.java │ └── Vel.java │ ├── prediction │ ├── PlayerContext.java │ ├── PredictionEngine.java │ ├── compensation │ │ └── LagCompensator.java │ └── modifier │ │ ├── FrictionModifier.java │ │ ├── VelocityModifier.java │ │ └── impl │ │ ├── BlueIceFrictionModifier.java │ │ ├── BubbleColumnModifier.java │ │ ├── CobwebModifier.java │ │ ├── DepthStriderModifier.java │ │ ├── DolphinsGraceModifier.java │ │ ├── HoneyBlockModifier.java │ │ ├── IceFrictionModifier.java │ │ ├── LevitationModifier.java │ │ ├── SlimeFrictionModifier.java │ │ ├── SlowFallingModifier.java │ │ ├── SlownessEffectModifier.java │ │ ├── SneakModifier.java │ │ ├── SoulSandModifier.java │ │ ├── SoulSpeedModifier.java │ │ ├── SpeedEffectModifier.java │ │ ├── SprintModifier.java │ │ └── UsingItemModifier.java │ └── world │ ├── Block.java │ ├── BoundingBox.java │ └── PlayerWorld.java ├── commons ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── commons │ ├── Acronym.java │ ├── ChatColor.java │ ├── Configuration.java │ ├── CustomWorlds.java │ ├── MethodLister.java │ ├── MinecraftVersion.java │ ├── PlayerShopData.java │ ├── ServerType.java │ ├── ServiceType.java │ ├── SkyBlockPlayerProfiles.java │ ├── Songs.java │ ├── StringUtility.java │ ├── TestFlow.java │ ├── TrackedItem.java │ ├── Tuple.java │ ├── UnderstandableProxyServer.java │ ├── YamlFileUtils.java │ ├── auctions │ ├── AuctionCategories.java │ ├── AuctionItem.java │ ├── AuctionsFilter.java │ └── AuctionsSorting.java │ ├── bazaar │ ├── BazaarTransaction.java │ ├── BuyOrderRefundTransaction.java │ ├── OrderExpiredBazaarTransaction.java │ └── SuccessfulBazaarTransaction.java │ ├── impl │ └── ServiceProxyRequest.java │ ├── item │ ├── ItemType.java │ ├── PotatoType.java │ ├── Rarity.java │ ├── SkyBlockItemType.java │ ├── UnderstandableSkyBlockEnchantment.java │ ├── UnderstandableSkyBlockItem.java │ ├── attribute │ │ ├── ItemAttribute.java │ │ └── attributes │ │ │ ├── ItemAttributeBackpackData.java │ │ │ ├── ItemAttributeBreakingPower.java │ │ │ ├── ItemAttributeEnchantments.java │ │ │ ├── ItemAttributeGemData.java │ │ │ ├── ItemAttributeHotPotatoBookData.java │ │ │ ├── ItemAttributeMinionData.java │ │ │ ├── ItemAttributeMithrilInfusion.java │ │ │ ├── ItemAttributePetData.java │ │ │ ├── ItemAttributeRarity.java │ │ │ ├── ItemAttributeRecombobulated.java │ │ │ ├── ItemAttributeReforge.java │ │ │ ├── ItemAttributeRuneInfusedWith.java │ │ │ ├── ItemAttributeRuneLevel.java │ │ │ ├── ItemAttributeSandboxItem.java │ │ │ ├── ItemAttributeSoulbound.java │ │ │ ├── ItemAttributeStatistics.java │ │ │ ├── ItemAttributeType.java │ │ │ └── ItemAttributeUniqueTrackedID.java │ └── reforge │ │ ├── Reforge.java │ │ ├── ReforgeExpressionEvaluator.java │ │ ├── ReforgeLoader.java │ │ └── ReforgeType.java │ ├── party │ ├── FullParty.java │ ├── Party.java │ ├── PartyEvent.java │ ├── PartyResponseEvent.java │ ├── PendingParty.java │ └── events │ │ ├── PartyAcceptInviteEvent.java │ │ ├── PartyChatMessageEvent.java │ │ ├── PartyDemoteRequestEvent.java │ │ ├── PartyDisbandRequestEvent.java │ │ ├── PartyHijackRequestEvent.java │ │ ├── PartyInviteEvent.java │ │ ├── PartyKickRequestEvent.java │ │ ├── PartyLeaveRequestEvent.java │ │ ├── PartyPlayerSwitchedServerEvent.java │ │ ├── PartyPromoteRequestEvent.java │ │ ├── PartyTransferRequestEvent.java │ │ ├── PartyWarpRequestEvent.java │ │ └── response │ │ ├── PartyChatMessageResponseEvent.java │ │ ├── PartyDisbandResponseEvent.java │ │ ├── PartyInviteExpiredResponseEvent.java │ │ ├── PartyInviteResponseEvent.java │ │ ├── PartyLeaderTransferResponseEvent.java │ │ ├── PartyMemberJoinResponseEvent.java │ │ ├── PartyMemberKickResponseEvent.java │ │ ├── PartyMemberLeaveResponseEvent.java │ │ ├── PartyPlayerSwitchedServerResponseEvent.java │ │ ├── PartyPromotionResponseEvent.java │ │ ├── PartyWarpOverviewResponseEvent.java │ │ └── PartyWarpResponseEvent.java │ ├── protocol │ ├── JacksonSerializer.java │ ├── ProtocolObject.java │ ├── Serializer.java │ ├── objects │ │ ├── PingProtocolObject.java │ │ ├── api │ │ │ └── APIAuthenticateCodeProtocolObject.java │ │ ├── auctions │ │ │ ├── AuctionAddItemProtocolObject.java │ │ │ ├── AuctionFetchItemProtocolObject.java │ │ │ └── AuctionFetchItemsProtocolObject.java │ │ ├── bazaar │ │ │ ├── BazaarBuyProtocolObject.java │ │ │ ├── BazaarCancelProtocolObject.java │ │ │ ├── BazaarGetItemProtocolObject.java │ │ │ ├── BazaarGetPendingOrdersProtocolObject.java │ │ │ ├── BazaarGetPendingTransactionsProtocolObject.java │ │ │ ├── BazaarProcessPendingTransactionsProtocolObject.java │ │ │ └── BazaarSellProtocolObject.java │ │ ├── datamutex │ │ │ ├── SynchronizeDataProtocolObject.java │ │ │ ├── UnlockDataProtocolObject.java │ │ │ └── UpdateSynchronizedDataProtocolObject.java │ │ ├── itemtracker │ │ │ ├── TrackedItemRetrieveProtocolObject.java │ │ │ └── TrackedItemUpdateProtocolObject.java │ │ └── party │ │ │ ├── GetPartyProtocolObject.java │ │ │ ├── IsPlayerInPartyProtocolObject.java │ │ │ └── SendPartyEventToServiceProtocolObject.java │ └── serializers │ │ ├── AuctionItemListSerializer.java │ │ ├── AuctionItemSerializer.java │ │ ├── MaterialDeserializer.java │ │ ├── MaterialSerializer.java │ │ ├── PlayerShopDataSerializer.java │ │ └── UnderstandableSkyBlockItemSerializer.java │ ├── proxy │ ├── FromProxyChannels.java │ ├── ProxyChannelRequirements.java │ ├── ToProxyChannels.java │ └── requirements │ │ ├── from │ │ ├── DoesServerHaveIslandRequirements.java │ │ ├── GivePlayersOriginTypeRequirements.java │ │ ├── PingServerRequirements.java │ │ ├── PlayerHasSwitchedFromHereRequirements.java │ │ ├── PromptPlayerForAuthenticationRequirements.java │ │ ├── RefreshCoopDataOnServerRequirements.java │ │ ├── RunEventRequirements.java │ │ └── TeleportRequirements.java │ │ └── to │ │ ├── FinishedWithPlayerRequirements.java │ │ ├── PlayerCountRequirements.java │ │ ├── PlayerHandlerRequirements.java │ │ ├── ProxyIsOnlineRequirements.java │ │ ├── RegisterServerRequirements.java │ │ ├── RegisterTestFlowRequirements.java │ │ ├── ServerNameRequirements.java │ │ ├── ServersRequirement.java │ │ └── TestFlowServerReadyRequirements.java │ ├── service │ └── FromServiceChannels.java │ └── statistics │ ├── ItemStatistic.java │ └── ItemStatistics.java ├── configuration ├── NanoLimbo-1.9.8.jar ├── entrypoint.sh ├── mongo-init.sh ├── resources.json ├── resources.json.docker ├── settings.yml ├── skyblock │ ├── Minestom.crystals.csv │ ├── Minestom.fairysouls.csv │ ├── Minestom.regions.csv │ ├── SkyBlockPack │ │ ├── assets │ │ │ └── minecraft │ │ │ │ ├── atlases │ │ │ │ ├── armor_trims.json │ │ │ │ ├── banner_patterns.json │ │ │ │ ├── beds.json │ │ │ │ ├── blocks.json │ │ │ │ ├── chests.json │ │ │ │ ├── decorated_pot.json │ │ │ │ ├── gui.json │ │ │ │ ├── mob_effects.json │ │ │ │ ├── paintings.json │ │ │ │ ├── particles.json │ │ │ │ ├── shield_patterns.json │ │ │ │ ├── shulker_boxes.json │ │ │ │ └── signs.json │ │ │ │ ├── blockstates │ │ │ │ ├── acacia_button.json │ │ │ │ ├── acacia_door.json │ │ │ │ ├── acacia_fence.json │ │ │ │ ├── acacia_fence_gate.json │ │ │ │ ├── acacia_hanging_sign.json │ │ │ │ ├── acacia_leaves.json │ │ │ │ ├── acacia_log.json │ │ │ │ ├── acacia_planks.json │ │ │ │ ├── acacia_pressure_plate.json │ │ │ │ ├── acacia_sapling.json │ │ │ │ ├── acacia_sign.json │ │ │ │ ├── acacia_slab.json │ │ │ │ ├── acacia_stairs.json │ │ │ │ ├── acacia_trapdoor.json │ │ │ │ ├── acacia_wall_hanging_sign.json │ │ │ │ ├── acacia_wall_sign.json │ │ │ │ ├── acacia_wood.json │ │ │ │ ├── activator_rail.json │ │ │ │ ├── air.json │ │ │ │ ├── allium.json │ │ │ │ ├── amethyst_block.json │ │ │ │ ├── amethyst_cluster.json │ │ │ │ ├── ancient_debris.json │ │ │ │ ├── andesite.json │ │ │ │ ├── andesite_slab.json │ │ │ │ ├── andesite_stairs.json │ │ │ │ ├── andesite_wall.json │ │ │ │ ├── anvil.json │ │ │ │ ├── attached_melon_stem.json │ │ │ │ ├── attached_pumpkin_stem.json │ │ │ │ ├── azalea.json │ │ │ │ ├── azalea_leaves.json │ │ │ │ ├── azure_bluet.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── bamboo_block.json │ │ │ │ ├── bamboo_button.json │ │ │ │ ├── bamboo_door.json │ │ │ │ ├── bamboo_fence.json │ │ │ │ ├── bamboo_fence_gate.json │ │ │ │ ├── bamboo_hanging_sign.json │ │ │ │ ├── bamboo_mosaic.json │ │ │ │ ├── bamboo_mosaic_slab.json │ │ │ │ ├── bamboo_mosaic_stairs.json │ │ │ │ ├── bamboo_planks.json │ │ │ │ ├── bamboo_pressure_plate.json │ │ │ │ ├── bamboo_sapling.json │ │ │ │ ├── bamboo_sign.json │ │ │ │ ├── bamboo_slab.json │ │ │ │ ├── bamboo_stairs.json │ │ │ │ ├── bamboo_trapdoor.json │ │ │ │ ├── bamboo_wall_hanging_sign.json │ │ │ │ ├── bamboo_wall_sign.json │ │ │ │ ├── barrel.json │ │ │ │ ├── barrier.json │ │ │ │ ├── basalt.json │ │ │ │ ├── beacon.json │ │ │ │ ├── bedrock.json │ │ │ │ ├── bee_nest.json │ │ │ │ ├── beehive.json │ │ │ │ ├── beetroots.json │ │ │ │ ├── bell.json │ │ │ │ ├── big_dripleaf.json │ │ │ │ ├── big_dripleaf_stem.json │ │ │ │ ├── birch_button.json │ │ │ │ ├── birch_door.json │ │ │ │ ├── birch_fence.json │ │ │ │ ├── birch_fence_gate.json │ │ │ │ ├── birch_hanging_sign.json │ │ │ │ ├── birch_leaves.json │ │ │ │ ├── birch_log.json │ │ │ │ ├── birch_planks.json │ │ │ │ ├── birch_pressure_plate.json │ │ │ │ ├── birch_sapling.json │ │ │ │ ├── birch_sign.json │ │ │ │ ├── birch_slab.json │ │ │ │ ├── birch_stairs.json │ │ │ │ ├── birch_trapdoor.json │ │ │ │ ├── birch_wall_hanging_sign.json │ │ │ │ ├── birch_wall_sign.json │ │ │ │ ├── birch_wood.json │ │ │ │ ├── black_banner.json │ │ │ │ ├── black_bed.json │ │ │ │ ├── black_candle.json │ │ │ │ ├── black_candle_cake.json │ │ │ │ ├── black_carpet.json │ │ │ │ ├── black_concrete.json │ │ │ │ ├── black_concrete_powder.json │ │ │ │ ├── black_glazed_terracotta.json │ │ │ │ ├── black_shulker_box.json │ │ │ │ ├── black_stained_glass.json │ │ │ │ ├── black_stained_glass_pane.json │ │ │ │ ├── black_terracotta.json │ │ │ │ ├── black_wall_banner.json │ │ │ │ ├── black_wool.json │ │ │ │ ├── blackstone.json │ │ │ │ ├── blackstone_slab.json │ │ │ │ ├── blackstone_stairs.json │ │ │ │ ├── blackstone_wall.json │ │ │ │ ├── blast_furnace.json │ │ │ │ ├── blue_banner.json │ │ │ │ ├── blue_bed.json │ │ │ │ ├── blue_candle.json │ │ │ │ ├── blue_candle_cake.json │ │ │ │ ├── blue_carpet.json │ │ │ │ ├── blue_concrete.json │ │ │ │ ├── blue_concrete_powder.json │ │ │ │ ├── blue_glazed_terracotta.json │ │ │ │ ├── blue_ice.json │ │ │ │ ├── blue_orchid.json │ │ │ │ ├── blue_shulker_box.json │ │ │ │ ├── blue_stained_glass.json │ │ │ │ ├── blue_stained_glass_pane.json │ │ │ │ ├── blue_terracotta.json │ │ │ │ ├── blue_wall_banner.json │ │ │ │ ├── blue_wool.json │ │ │ │ ├── bone_block.json │ │ │ │ ├── bookshelf.json │ │ │ │ ├── brain_coral.json │ │ │ │ ├── brain_coral_block.json │ │ │ │ ├── brain_coral_fan.json │ │ │ │ ├── brain_coral_wall_fan.json │ │ │ │ ├── brewing_stand.json │ │ │ │ ├── brick_slab.json │ │ │ │ ├── brick_stairs.json │ │ │ │ ├── brick_wall.json │ │ │ │ ├── bricks.json │ │ │ │ ├── brown_banner.json │ │ │ │ ├── brown_bed.json │ │ │ │ ├── brown_candle.json │ │ │ │ ├── brown_candle_cake.json │ │ │ │ ├── brown_carpet.json │ │ │ │ ├── brown_concrete.json │ │ │ │ ├── brown_concrete_powder.json │ │ │ │ ├── brown_glazed_terracotta.json │ │ │ │ ├── brown_mushroom.json │ │ │ │ ├── brown_mushroom_block.json │ │ │ │ ├── brown_shulker_box.json │ │ │ │ ├── brown_stained_glass.json │ │ │ │ ├── brown_stained_glass_pane.json │ │ │ │ ├── brown_terracotta.json │ │ │ │ ├── brown_wall_banner.json │ │ │ │ ├── brown_wool.json │ │ │ │ ├── bubble_column.json │ │ │ │ ├── bubble_coral.json │ │ │ │ ├── bubble_coral_block.json │ │ │ │ ├── bubble_coral_fan.json │ │ │ │ ├── bubble_coral_wall_fan.json │ │ │ │ ├── budding_amethyst.json │ │ │ │ ├── cactus.json │ │ │ │ ├── cake.json │ │ │ │ ├── calcite.json │ │ │ │ ├── calibrated_sculk_sensor.json │ │ │ │ ├── campfire.json │ │ │ │ ├── candle.json │ │ │ │ ├── candle_cake.json │ │ │ │ ├── carrots.json │ │ │ │ ├── cartography_table.json │ │ │ │ ├── carved_pumpkin.json │ │ │ │ ├── cauldron.json │ │ │ │ ├── cave_air.json │ │ │ │ ├── cave_vines.json │ │ │ │ ├── cave_vines_plant.json │ │ │ │ ├── chain.json │ │ │ │ ├── chain_command_block.json │ │ │ │ ├── cherry_button.json │ │ │ │ ├── cherry_door.json │ │ │ │ ├── cherry_fence.json │ │ │ │ ├── cherry_fence_gate.json │ │ │ │ ├── cherry_hanging_sign.json │ │ │ │ ├── cherry_leaves.json │ │ │ │ ├── cherry_log.json │ │ │ │ ├── cherry_planks.json │ │ │ │ ├── cherry_pressure_plate.json │ │ │ │ ├── cherry_sapling.json │ │ │ │ ├── cherry_sign.json │ │ │ │ ├── cherry_slab.json │ │ │ │ ├── cherry_stairs.json │ │ │ │ ├── cherry_trapdoor.json │ │ │ │ ├── cherry_wall_hanging_sign.json │ │ │ │ ├── cherry_wall_sign.json │ │ │ │ ├── cherry_wood.json │ │ │ │ ├── chest.json │ │ │ │ ├── chipped_anvil.json │ │ │ │ ├── chiseled_bookshelf.json │ │ │ │ ├── chiseled_copper.json │ │ │ │ ├── chiseled_deepslate.json │ │ │ │ ├── chiseled_nether_bricks.json │ │ │ │ ├── chiseled_polished_blackstone.json │ │ │ │ ├── chiseled_quartz_block.json │ │ │ │ ├── chiseled_red_sandstone.json │ │ │ │ ├── chiseled_sandstone.json │ │ │ │ ├── chiseled_stone_bricks.json │ │ │ │ ├── chiseled_tuff.json │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ ├── chorus_flower.json │ │ │ │ ├── chorus_plant.json │ │ │ │ ├── clay.json │ │ │ │ ├── coal_block.json │ │ │ │ ├── coal_ore.json │ │ │ │ ├── coarse_dirt.json │ │ │ │ ├── cobbled_deepslate.json │ │ │ │ ├── cobbled_deepslate_slab.json │ │ │ │ ├── cobbled_deepslate_stairs.json │ │ │ │ ├── cobbled_deepslate_wall.json │ │ │ │ ├── cobblestone.json │ │ │ │ ├── cobblestone_slab.json │ │ │ │ ├── cobblestone_stairs.json │ │ │ │ ├── cobblestone_wall.json │ │ │ │ ├── cobweb.json │ │ │ │ ├── cocoa.json │ │ │ │ ├── command_block.json │ │ │ │ ├── comparator.json │ │ │ │ ├── composter.json │ │ │ │ ├── conduit.json │ │ │ │ ├── copper_block.json │ │ │ │ ├── copper_bulb.json │ │ │ │ ├── copper_door.json │ │ │ │ ├── copper_grate.json │ │ │ │ ├── copper_ore.json │ │ │ │ ├── copper_trapdoor.json │ │ │ │ ├── cornflower.json │ │ │ │ ├── cracked_deepslate_bricks.json │ │ │ │ ├── cracked_deepslate_tiles.json │ │ │ │ ├── cracked_nether_bricks.json │ │ │ │ ├── cracked_polished_blackstone_bricks.json │ │ │ │ ├── cracked_stone_bricks.json │ │ │ │ ├── crafter.json │ │ │ │ ├── crafting_table.json │ │ │ │ ├── creeper_head.json │ │ │ │ ├── creeper_wall_head.json │ │ │ │ ├── crimson_button.json │ │ │ │ ├── crimson_door.json │ │ │ │ ├── crimson_fence.json │ │ │ │ ├── crimson_fence_gate.json │ │ │ │ ├── crimson_fungus.json │ │ │ │ ├── crimson_hanging_sign.json │ │ │ │ ├── crimson_hyphae.json │ │ │ │ ├── crimson_nylium.json │ │ │ │ ├── crimson_planks.json │ │ │ │ ├── crimson_pressure_plate.json │ │ │ │ ├── crimson_roots.json │ │ │ │ ├── crimson_sign.json │ │ │ │ ├── crimson_slab.json │ │ │ │ ├── crimson_stairs.json │ │ │ │ ├── crimson_stem.json │ │ │ │ ├── crimson_trapdoor.json │ │ │ │ ├── crimson_wall_hanging_sign.json │ │ │ │ ├── crimson_wall_sign.json │ │ │ │ ├── crying_obsidian.json │ │ │ │ ├── cut_copper.json │ │ │ │ ├── cut_copper_slab.json │ │ │ │ ├── cut_copper_stairs.json │ │ │ │ ├── cut_red_sandstone.json │ │ │ │ ├── cut_red_sandstone_slab.json │ │ │ │ ├── cut_sandstone.json │ │ │ │ ├── cut_sandstone_slab.json │ │ │ │ ├── cyan_banner.json │ │ │ │ ├── cyan_bed.json │ │ │ │ ├── cyan_candle.json │ │ │ │ ├── cyan_candle_cake.json │ │ │ │ ├── cyan_carpet.json │ │ │ │ ├── cyan_concrete.json │ │ │ │ ├── cyan_concrete_powder.json │ │ │ │ ├── cyan_glazed_terracotta.json │ │ │ │ ├── cyan_shulker_box.json │ │ │ │ ├── cyan_stained_glass.json │ │ │ │ ├── cyan_stained_glass_pane.json │ │ │ │ ├── cyan_terracotta.json │ │ │ │ ├── cyan_wall_banner.json │ │ │ │ ├── cyan_wool.json │ │ │ │ ├── damaged_anvil.json │ │ │ │ ├── dandelion.json │ │ │ │ ├── dark_oak_button.json │ │ │ │ ├── dark_oak_door.json │ │ │ │ ├── dark_oak_fence.json │ │ │ │ ├── dark_oak_fence_gate.json │ │ │ │ ├── dark_oak_hanging_sign.json │ │ │ │ ├── dark_oak_leaves.json │ │ │ │ ├── dark_oak_log.json │ │ │ │ ├── dark_oak_planks.json │ │ │ │ ├── dark_oak_pressure_plate.json │ │ │ │ ├── dark_oak_sapling.json │ │ │ │ ├── dark_oak_sign.json │ │ │ │ ├── dark_oak_slab.json │ │ │ │ ├── dark_oak_stairs.json │ │ │ │ ├── dark_oak_trapdoor.json │ │ │ │ ├── dark_oak_wall_hanging_sign.json │ │ │ │ ├── dark_oak_wall_sign.json │ │ │ │ ├── dark_oak_wood.json │ │ │ │ ├── dark_prismarine.json │ │ │ │ ├── dark_prismarine_slab.json │ │ │ │ ├── dark_prismarine_stairs.json │ │ │ │ ├── daylight_detector.json │ │ │ │ ├── dead_brain_coral.json │ │ │ │ ├── dead_brain_coral_block.json │ │ │ │ ├── dead_brain_coral_fan.json │ │ │ │ ├── dead_brain_coral_wall_fan.json │ │ │ │ ├── dead_bubble_coral.json │ │ │ │ ├── dead_bubble_coral_block.json │ │ │ │ ├── dead_bubble_coral_fan.json │ │ │ │ ├── dead_bubble_coral_wall_fan.json │ │ │ │ ├── dead_bush.json │ │ │ │ ├── dead_fire_coral.json │ │ │ │ ├── dead_fire_coral_block.json │ │ │ │ ├── dead_fire_coral_fan.json │ │ │ │ ├── dead_fire_coral_wall_fan.json │ │ │ │ ├── dead_horn_coral.json │ │ │ │ ├── dead_horn_coral_block.json │ │ │ │ ├── dead_horn_coral_fan.json │ │ │ │ ├── dead_horn_coral_wall_fan.json │ │ │ │ ├── dead_tube_coral.json │ │ │ │ ├── dead_tube_coral_block.json │ │ │ │ ├── dead_tube_coral_fan.json │ │ │ │ ├── dead_tube_coral_wall_fan.json │ │ │ │ ├── decorated_pot.json │ │ │ │ ├── deepslate.json │ │ │ │ ├── deepslate_brick_slab.json │ │ │ │ ├── deepslate_brick_stairs.json │ │ │ │ ├── deepslate_brick_wall.json │ │ │ │ ├── deepslate_bricks.json │ │ │ │ ├── deepslate_coal_ore.json │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ ├── deepslate_diamond_ore.json │ │ │ │ ├── deepslate_emerald_ore.json │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ ├── deepslate_lapis_ore.json │ │ │ │ ├── deepslate_redstone_ore.json │ │ │ │ ├── deepslate_tile_slab.json │ │ │ │ ├── deepslate_tile_stairs.json │ │ │ │ ├── deepslate_tile_wall.json │ │ │ │ ├── deepslate_tiles.json │ │ │ │ ├── detector_rail.json │ │ │ │ ├── diamond_block.json │ │ │ │ ├── diamond_ore.json │ │ │ │ ├── diorite.json │ │ │ │ ├── diorite_slab.json │ │ │ │ ├── diorite_stairs.json │ │ │ │ ├── diorite_wall.json │ │ │ │ ├── dirt.json │ │ │ │ ├── dirt_path.json │ │ │ │ ├── dispenser.json │ │ │ │ ├── dragon_egg.json │ │ │ │ ├── dragon_head.json │ │ │ │ ├── dragon_wall_head.json │ │ │ │ ├── dried_kelp_block.json │ │ │ │ ├── dripstone_block.json │ │ │ │ ├── dropper.json │ │ │ │ ├── emerald_block.json │ │ │ │ ├── emerald_ore.json │ │ │ │ ├── enchanting_table.json │ │ │ │ ├── end_gateway.json │ │ │ │ ├── end_portal.json │ │ │ │ ├── end_portal_frame.json │ │ │ │ ├── end_rod.json │ │ │ │ ├── end_stone.json │ │ │ │ ├── end_stone_brick_slab.json │ │ │ │ ├── end_stone_brick_stairs.json │ │ │ │ ├── end_stone_brick_wall.json │ │ │ │ ├── end_stone_bricks.json │ │ │ │ ├── ender_chest.json │ │ │ │ ├── exposed_chiseled_copper.json │ │ │ │ ├── exposed_copper.json │ │ │ │ ├── exposed_copper_bulb.json │ │ │ │ ├── exposed_copper_door.json │ │ │ │ ├── exposed_copper_grate.json │ │ │ │ ├── exposed_copper_trapdoor.json │ │ │ │ ├── exposed_cut_copper.json │ │ │ │ ├── exposed_cut_copper_slab.json │ │ │ │ ├── exposed_cut_copper_stairs.json │ │ │ │ ├── farmland.json │ │ │ │ ├── fern.json │ │ │ │ ├── fire.json │ │ │ │ ├── fire_coral.json │ │ │ │ ├── fire_coral_block.json │ │ │ │ ├── fire_coral_fan.json │ │ │ │ ├── fire_coral_wall_fan.json │ │ │ │ ├── fletching_table.json │ │ │ │ ├── flower_pot.json │ │ │ │ ├── flowering_azalea.json │ │ │ │ ├── flowering_azalea_leaves.json │ │ │ │ ├── frogspawn.json │ │ │ │ ├── frosted_ice.json │ │ │ │ ├── furnace.json │ │ │ │ ├── gilded_blackstone.json │ │ │ │ ├── glass.json │ │ │ │ ├── glass_pane.json │ │ │ │ ├── glow_item_frame.json │ │ │ │ ├── glow_lichen.json │ │ │ │ ├── glowstone.json │ │ │ │ ├── gold_block.json │ │ │ │ ├── gold_ore.json │ │ │ │ ├── granite.json │ │ │ │ ├── granite_slab.json │ │ │ │ ├── granite_stairs.json │ │ │ │ ├── granite_wall.json │ │ │ │ ├── grass_block.json │ │ │ │ ├── gravel.json │ │ │ │ ├── gray_banner.json │ │ │ │ ├── gray_bed.json │ │ │ │ ├── gray_candle.json │ │ │ │ ├── gray_candle_cake.json │ │ │ │ ├── gray_carpet.json │ │ │ │ ├── gray_concrete.json │ │ │ │ ├── gray_concrete_powder.json │ │ │ │ ├── gray_glazed_terracotta.json │ │ │ │ ├── gray_shulker_box.json │ │ │ │ ├── gray_stained_glass.json │ │ │ │ ├── gray_stained_glass_pane.json │ │ │ │ ├── gray_terracotta.json │ │ │ │ ├── gray_wall_banner.json │ │ │ │ ├── gray_wool.json │ │ │ │ ├── green_banner.json │ │ │ │ ├── green_bed.json │ │ │ │ ├── green_candle.json │ │ │ │ ├── green_candle_cake.json │ │ │ │ ├── green_carpet.json │ │ │ │ ├── green_concrete.json │ │ │ │ ├── green_concrete_powder.json │ │ │ │ ├── green_glazed_terracotta.json │ │ │ │ ├── green_shulker_box.json │ │ │ │ ├── green_stained_glass.json │ │ │ │ ├── green_stained_glass_pane.json │ │ │ │ ├── green_terracotta.json │ │ │ │ ├── green_wall_banner.json │ │ │ │ ├── green_wool.json │ │ │ │ ├── grindstone.json │ │ │ │ ├── hanging_roots.json │ │ │ │ ├── hay_block.json │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ ├── honey_block.json │ │ │ │ ├── honeycomb_block.json │ │ │ │ ├── hopper.json │ │ │ │ ├── horn_coral.json │ │ │ │ ├── horn_coral_block.json │ │ │ │ ├── horn_coral_fan.json │ │ │ │ ├── horn_coral_wall_fan.json │ │ │ │ ├── ice.json │ │ │ │ ├── infested_chiseled_stone_bricks.json │ │ │ │ ├── infested_cobblestone.json │ │ │ │ ├── infested_cracked_stone_bricks.json │ │ │ │ ├── infested_deepslate.json │ │ │ │ ├── infested_mossy_stone_bricks.json │ │ │ │ ├── infested_stone.json │ │ │ │ ├── infested_stone_bricks.json │ │ │ │ ├── iron_bars.json │ │ │ │ ├── iron_block.json │ │ │ │ ├── iron_door.json │ │ │ │ ├── iron_ore.json │ │ │ │ ├── iron_trapdoor.json │ │ │ │ ├── item_frame.json │ │ │ │ ├── jack_o_lantern.json │ │ │ │ ├── jigsaw.json │ │ │ │ ├── jukebox.json │ │ │ │ ├── jungle_button.json │ │ │ │ ├── jungle_door.json │ │ │ │ ├── jungle_fence.json │ │ │ │ ├── jungle_fence_gate.json │ │ │ │ ├── jungle_hanging_sign.json │ │ │ │ ├── jungle_leaves.json │ │ │ │ ├── jungle_log.json │ │ │ │ ├── jungle_planks.json │ │ │ │ ├── jungle_pressure_plate.json │ │ │ │ ├── jungle_sapling.json │ │ │ │ ├── jungle_sign.json │ │ │ │ ├── jungle_slab.json │ │ │ │ ├── jungle_stairs.json │ │ │ │ ├── jungle_trapdoor.json │ │ │ │ ├── jungle_wall_hanging_sign.json │ │ │ │ ├── jungle_wall_sign.json │ │ │ │ ├── jungle_wood.json │ │ │ │ ├── kelp.json │ │ │ │ ├── kelp_plant.json │ │ │ │ ├── ladder.json │ │ │ │ ├── lantern.json │ │ │ │ ├── lapis_block.json │ │ │ │ ├── lapis_ore.json │ │ │ │ ├── large_amethyst_bud.json │ │ │ │ ├── large_fern.json │ │ │ │ ├── lava.json │ │ │ │ ├── lava_cauldron.json │ │ │ │ ├── lectern.json │ │ │ │ ├── lever.json │ │ │ │ ├── light.json │ │ │ │ ├── light_blue_banner.json │ │ │ │ ├── light_blue_bed.json │ │ │ │ ├── light_blue_candle.json │ │ │ │ ├── light_blue_candle_cake.json │ │ │ │ ├── light_blue_carpet.json │ │ │ │ ├── light_blue_concrete.json │ │ │ │ ├── light_blue_concrete_powder.json │ │ │ │ ├── light_blue_glazed_terracotta.json │ │ │ │ ├── light_blue_shulker_box.json │ │ │ │ ├── light_blue_stained_glass.json │ │ │ │ ├── light_blue_stained_glass_pane.json │ │ │ │ ├── light_blue_terracotta.json │ │ │ │ ├── light_blue_wall_banner.json │ │ │ │ ├── light_blue_wool.json │ │ │ │ ├── light_gray_banner.json │ │ │ │ ├── light_gray_bed.json │ │ │ │ ├── light_gray_candle.json │ │ │ │ ├── light_gray_candle_cake.json │ │ │ │ ├── light_gray_carpet.json │ │ │ │ ├── light_gray_concrete.json │ │ │ │ ├── light_gray_concrete_powder.json │ │ │ │ ├── light_gray_glazed_terracotta.json │ │ │ │ ├── light_gray_shulker_box.json │ │ │ │ ├── light_gray_stained_glass.json │ │ │ │ ├── light_gray_stained_glass_pane.json │ │ │ │ ├── light_gray_terracotta.json │ │ │ │ ├── light_gray_wall_banner.json │ │ │ │ ├── light_gray_wool.json │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ ├── lightning_rod.json │ │ │ │ ├── lilac.json │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ ├── lily_pad.json │ │ │ │ ├── lime_banner.json │ │ │ │ ├── lime_bed.json │ │ │ │ ├── lime_candle.json │ │ │ │ ├── lime_candle_cake.json │ │ │ │ ├── lime_carpet.json │ │ │ │ ├── lime_concrete.json │ │ │ │ ├── lime_concrete_powder.json │ │ │ │ ├── lime_glazed_terracotta.json │ │ │ │ ├── lime_shulker_box.json │ │ │ │ ├── lime_stained_glass.json │ │ │ │ ├── lime_stained_glass_pane.json │ │ │ │ ├── lime_terracotta.json │ │ │ │ ├── lime_wall_banner.json │ │ │ │ ├── lime_wool.json │ │ │ │ ├── lodestone.json │ │ │ │ ├── loom.json │ │ │ │ ├── magenta_banner.json │ │ │ │ ├── magenta_bed.json │ │ │ │ ├── magenta_candle.json │ │ │ │ ├── magenta_candle_cake.json │ │ │ │ ├── magenta_carpet.json │ │ │ │ ├── magenta_concrete.json │ │ │ │ ├── magenta_concrete_powder.json │ │ │ │ ├── magenta_glazed_terracotta.json │ │ │ │ ├── magenta_shulker_box.json │ │ │ │ ├── magenta_stained_glass.json │ │ │ │ ├── magenta_stained_glass_pane.json │ │ │ │ ├── magenta_terracotta.json │ │ │ │ ├── magenta_wall_banner.json │ │ │ │ ├── magenta_wool.json │ │ │ │ ├── magma_block.json │ │ │ │ ├── mangrove_button.json │ │ │ │ ├── mangrove_door.json │ │ │ │ ├── mangrove_fence.json │ │ │ │ ├── mangrove_fence_gate.json │ │ │ │ ├── mangrove_hanging_sign.json │ │ │ │ ├── mangrove_leaves.json │ │ │ │ ├── mangrove_log.json │ │ │ │ ├── mangrove_planks.json │ │ │ │ ├── mangrove_pressure_plate.json │ │ │ │ ├── mangrove_propagule.json │ │ │ │ ├── mangrove_roots.json │ │ │ │ ├── mangrove_sign.json │ │ │ │ ├── mangrove_slab.json │ │ │ │ ├── mangrove_stairs.json │ │ │ │ ├── mangrove_trapdoor.json │ │ │ │ ├── mangrove_wall_hanging_sign.json │ │ │ │ ├── mangrove_wall_sign.json │ │ │ │ ├── mangrove_wood.json │ │ │ │ ├── medium_amethyst_bud.json │ │ │ │ ├── melon.json │ │ │ │ ├── melon_stem.json │ │ │ │ ├── moss_block.json │ │ │ │ ├── moss_carpet.json │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ ├── mossy_cobblestone_slab.json │ │ │ │ ├── mossy_cobblestone_stairs.json │ │ │ │ ├── mossy_cobblestone_wall.json │ │ │ │ ├── mossy_stone_brick_slab.json │ │ │ │ ├── mossy_stone_brick_stairs.json │ │ │ │ ├── mossy_stone_brick_wall.json │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ ├── moving_piston.json │ │ │ │ ├── mud.json │ │ │ │ ├── mud_brick_slab.json │ │ │ │ ├── mud_brick_stairs.json │ │ │ │ ├── mud_brick_wall.json │ │ │ │ ├── mud_bricks.json │ │ │ │ ├── muddy_mangrove_roots.json │ │ │ │ ├── mushroom_stem.json │ │ │ │ ├── mycelium.json │ │ │ │ ├── nether_brick_fence.json │ │ │ │ ├── nether_brick_slab.json │ │ │ │ ├── nether_brick_stairs.json │ │ │ │ ├── nether_brick_wall.json │ │ │ │ ├── nether_bricks.json │ │ │ │ ├── nether_gold_ore.json │ │ │ │ ├── nether_portal.json │ │ │ │ ├── nether_quartz_ore.json │ │ │ │ ├── nether_sprouts.json │ │ │ │ ├── nether_wart.json │ │ │ │ ├── nether_wart_block.json │ │ │ │ ├── netherite_block.json │ │ │ │ ├── netherrack.json │ │ │ │ ├── note_block.json │ │ │ │ ├── oak_button.json │ │ │ │ ├── oak_door.json │ │ │ │ ├── oak_fence.json │ │ │ │ ├── oak_fence_gate.json │ │ │ │ ├── oak_hanging_sign.json │ │ │ │ ├── oak_leaves.json │ │ │ │ ├── oak_log.json │ │ │ │ ├── oak_planks.json │ │ │ │ ├── oak_pressure_plate.json │ │ │ │ ├── oak_sapling.json │ │ │ │ ├── oak_sign.json │ │ │ │ ├── oak_slab.json │ │ │ │ ├── oak_stairs.json │ │ │ │ ├── oak_trapdoor.json │ │ │ │ ├── oak_wall_hanging_sign.json │ │ │ │ ├── oak_wall_sign.json │ │ │ │ ├── oak_wood.json │ │ │ │ ├── observer.json │ │ │ │ ├── obsidian.json │ │ │ │ ├── ochre_froglight.json │ │ │ │ ├── orange_banner.json │ │ │ │ ├── orange_bed.json │ │ │ │ ├── orange_candle.json │ │ │ │ ├── orange_candle_cake.json │ │ │ │ ├── orange_carpet.json │ │ │ │ ├── orange_concrete.json │ │ │ │ ├── orange_concrete_powder.json │ │ │ │ ├── orange_glazed_terracotta.json │ │ │ │ ├── orange_shulker_box.json │ │ │ │ ├── orange_stained_glass.json │ │ │ │ ├── orange_stained_glass_pane.json │ │ │ │ ├── orange_terracotta.json │ │ │ │ ├── orange_tulip.json │ │ │ │ ├── orange_wall_banner.json │ │ │ │ ├── orange_wool.json │ │ │ │ ├── oxeye_daisy.json │ │ │ │ ├── oxidized_chiseled_copper.json │ │ │ │ ├── oxidized_copper.json │ │ │ │ ├── oxidized_copper_bulb.json │ │ │ │ ├── oxidized_copper_door.json │ │ │ │ ├── oxidized_copper_grate.json │ │ │ │ ├── oxidized_copper_trapdoor.json │ │ │ │ ├── oxidized_cut_copper.json │ │ │ │ ├── oxidized_cut_copper_slab.json │ │ │ │ ├── oxidized_cut_copper_stairs.json │ │ │ │ ├── packed_ice.json │ │ │ │ ├── packed_mud.json │ │ │ │ ├── pearlescent_froglight.json │ │ │ │ ├── peony.json │ │ │ │ ├── petrified_oak_slab.json │ │ │ │ ├── piglin_head.json │ │ │ │ ├── piglin_wall_head.json │ │ │ │ ├── pink_banner.json │ │ │ │ ├── pink_bed.json │ │ │ │ ├── pink_candle.json │ │ │ │ ├── pink_candle_cake.json │ │ │ │ ├── pink_carpet.json │ │ │ │ ├── pink_concrete.json │ │ │ │ ├── pink_concrete_powder.json │ │ │ │ ├── pink_glazed_terracotta.json │ │ │ │ ├── pink_petals.json │ │ │ │ ├── pink_shulker_box.json │ │ │ │ ├── pink_stained_glass.json │ │ │ │ ├── pink_stained_glass_pane.json │ │ │ │ ├── pink_terracotta.json │ │ │ │ ├── pink_tulip.json │ │ │ │ ├── pink_wall_banner.json │ │ │ │ ├── pink_wool.json │ │ │ │ ├── piston.json │ │ │ │ ├── piston_head.json │ │ │ │ ├── pitcher_crop.json │ │ │ │ ├── pitcher_plant.json │ │ │ │ ├── player_head.json │ │ │ │ ├── player_wall_head.json │ │ │ │ ├── podzol.json │ │ │ │ ├── pointed_dripstone.json │ │ │ │ ├── polished_andesite.json │ │ │ │ ├── polished_andesite_slab.json │ │ │ │ ├── polished_andesite_stairs.json │ │ │ │ ├── polished_basalt.json │ │ │ │ ├── polished_blackstone.json │ │ │ │ ├── polished_blackstone_brick_slab.json │ │ │ │ ├── polished_blackstone_brick_stairs.json │ │ │ │ ├── polished_blackstone_brick_wall.json │ │ │ │ ├── polished_blackstone_bricks.json │ │ │ │ ├── polished_blackstone_button.json │ │ │ │ ├── polished_blackstone_pressure_plate.json │ │ │ │ ├── polished_blackstone_slab.json │ │ │ │ ├── polished_blackstone_stairs.json │ │ │ │ ├── polished_blackstone_wall.json │ │ │ │ ├── polished_deepslate.json │ │ │ │ ├── polished_deepslate_slab.json │ │ │ │ ├── polished_deepslate_stairs.json │ │ │ │ ├── polished_deepslate_wall.json │ │ │ │ ├── polished_diorite.json │ │ │ │ ├── polished_diorite_slab.json │ │ │ │ ├── polished_diorite_stairs.json │ │ │ │ ├── polished_granite.json │ │ │ │ ├── polished_granite_slab.json │ │ │ │ ├── polished_granite_stairs.json │ │ │ │ ├── polished_tuff.json │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ ├── poppy.json │ │ │ │ ├── potatoes.json │ │ │ │ ├── potted_acacia_sapling.json │ │ │ │ ├── potted_allium.json │ │ │ │ ├── potted_azalea_bush.json │ │ │ │ ├── potted_azure_bluet.json │ │ │ │ ├── potted_bamboo.json │ │ │ │ ├── potted_birch_sapling.json │ │ │ │ ├── potted_blue_orchid.json │ │ │ │ ├── potted_brown_mushroom.json │ │ │ │ ├── potted_cactus.json │ │ │ │ ├── potted_cherry_sapling.json │ │ │ │ ├── potted_cornflower.json │ │ │ │ ├── potted_crimson_fungus.json │ │ │ │ ├── potted_crimson_roots.json │ │ │ │ ├── potted_dandelion.json │ │ │ │ ├── potted_dark_oak_sapling.json │ │ │ │ ├── potted_dead_bush.json │ │ │ │ ├── potted_fern.json │ │ │ │ ├── potted_flowering_azalea_bush.json │ │ │ │ ├── potted_jungle_sapling.json │ │ │ │ ├── potted_lily_of_the_valley.json │ │ │ │ ├── potted_mangrove_propagule.json │ │ │ │ ├── potted_oak_sapling.json │ │ │ │ ├── potted_orange_tulip.json │ │ │ │ ├── potted_oxeye_daisy.json │ │ │ │ ├── potted_pink_tulip.json │ │ │ │ ├── potted_poppy.json │ │ │ │ ├── potted_red_mushroom.json │ │ │ │ ├── potted_red_tulip.json │ │ │ │ ├── potted_spruce_sapling.json │ │ │ │ ├── potted_torchflower.json │ │ │ │ ├── potted_warped_fungus.json │ │ │ │ ├── potted_warped_roots.json │ │ │ │ ├── potted_white_tulip.json │ │ │ │ ├── potted_wither_rose.json │ │ │ │ ├── powder_snow.json │ │ │ │ ├── powder_snow_cauldron.json │ │ │ │ ├── powered_rail.json │ │ │ │ ├── prismarine.json │ │ │ │ ├── prismarine_brick_slab.json │ │ │ │ ├── prismarine_brick_stairs.json │ │ │ │ ├── prismarine_bricks.json │ │ │ │ ├── prismarine_slab.json │ │ │ │ ├── prismarine_stairs.json │ │ │ │ ├── prismarine_wall.json │ │ │ │ ├── pumpkin.json │ │ │ │ ├── pumpkin_stem.json │ │ │ │ ├── purple_banner.json │ │ │ │ ├── purple_bed.json │ │ │ │ ├── purple_candle.json │ │ │ │ ├── purple_candle_cake.json │ │ │ │ ├── purple_carpet.json │ │ │ │ ├── purple_concrete.json │ │ │ │ ├── purple_concrete_powder.json │ │ │ │ ├── purple_glazed_terracotta.json │ │ │ │ ├── purple_shulker_box.json │ │ │ │ ├── purple_stained_glass.json │ │ │ │ ├── purple_stained_glass_pane.json │ │ │ │ ├── purple_terracotta.json │ │ │ │ ├── purple_wall_banner.json │ │ │ │ ├── purple_wool.json │ │ │ │ ├── purpur_block.json │ │ │ │ ├── purpur_pillar.json │ │ │ │ ├── purpur_slab.json │ │ │ │ ├── purpur_stairs.json │ │ │ │ ├── quartz_block.json │ │ │ │ ├── quartz_bricks.json │ │ │ │ ├── quartz_pillar.json │ │ │ │ ├── quartz_slab.json │ │ │ │ ├── quartz_stairs.json │ │ │ │ ├── rail.json │ │ │ │ ├── raw_copper_block.json │ │ │ │ ├── raw_gold_block.json │ │ │ │ ├── raw_iron_block.json │ │ │ │ ├── red_banner.json │ │ │ │ ├── red_bed.json │ │ │ │ ├── red_candle.json │ │ │ │ ├── red_candle_cake.json │ │ │ │ ├── red_carpet.json │ │ │ │ ├── red_concrete.json │ │ │ │ ├── red_concrete_powder.json │ │ │ │ ├── red_glazed_terracotta.json │ │ │ │ ├── red_mushroom.json │ │ │ │ ├── red_mushroom_block.json │ │ │ │ ├── red_nether_brick_slab.json │ │ │ │ ├── red_nether_brick_stairs.json │ │ │ │ ├── red_nether_brick_wall.json │ │ │ │ ├── red_nether_bricks.json │ │ │ │ ├── red_sand.json │ │ │ │ ├── red_sandstone.json │ │ │ │ ├── red_sandstone_slab.json │ │ │ │ ├── red_sandstone_stairs.json │ │ │ │ ├── red_sandstone_wall.json │ │ │ │ ├── red_shulker_box.json │ │ │ │ ├── red_stained_glass.json │ │ │ │ ├── red_stained_glass_pane.json │ │ │ │ ├── red_terracotta.json │ │ │ │ ├── red_tulip.json │ │ │ │ ├── red_wall_banner.json │ │ │ │ ├── red_wool.json │ │ │ │ ├── redstone_block.json │ │ │ │ ├── redstone_lamp.json │ │ │ │ ├── redstone_ore.json │ │ │ │ ├── redstone_torch.json │ │ │ │ ├── redstone_wall_torch.json │ │ │ │ ├── redstone_wire.json │ │ │ │ ├── reinforced_deepslate.json │ │ │ │ ├── repeater.json │ │ │ │ ├── repeating_command_block.json │ │ │ │ ├── respawn_anchor.json │ │ │ │ ├── rooted_dirt.json │ │ │ │ ├── rose_bush.json │ │ │ │ ├── sand.json │ │ │ │ ├── sandstone.json │ │ │ │ ├── sandstone_slab.json │ │ │ │ ├── sandstone_stairs.json │ │ │ │ ├── sandstone_wall.json │ │ │ │ ├── scaffolding.json │ │ │ │ ├── sculk.json │ │ │ │ ├── sculk_catalyst.json │ │ │ │ ├── sculk_sensor.json │ │ │ │ ├── sculk_shrieker.json │ │ │ │ ├── sculk_vein.json │ │ │ │ ├── sea_lantern.json │ │ │ │ ├── sea_pickle.json │ │ │ │ ├── seagrass.json │ │ │ │ ├── short_grass.json │ │ │ │ ├── shroomlight.json │ │ │ │ ├── shulker_box.json │ │ │ │ ├── skeleton_skull.json │ │ │ │ ├── skeleton_wall_skull.json │ │ │ │ ├── slime_block.json │ │ │ │ ├── small_amethyst_bud.json │ │ │ │ ├── small_dripleaf.json │ │ │ │ ├── smithing_table.json │ │ │ │ ├── smoker.json │ │ │ │ ├── smooth_basalt.json │ │ │ │ ├── smooth_quartz.json │ │ │ │ ├── smooth_quartz_slab.json │ │ │ │ ├── smooth_quartz_stairs.json │ │ │ │ ├── smooth_red_sandstone.json │ │ │ │ ├── smooth_red_sandstone_slab.json │ │ │ │ ├── smooth_red_sandstone_stairs.json │ │ │ │ ├── smooth_sandstone.json │ │ │ │ ├── smooth_sandstone_slab.json │ │ │ │ ├── smooth_sandstone_stairs.json │ │ │ │ ├── smooth_stone.json │ │ │ │ ├── smooth_stone_slab.json │ │ │ │ ├── sniffer_egg.json │ │ │ │ ├── snow.json │ │ │ │ ├── snow_block.json │ │ │ │ ├── soul_campfire.json │ │ │ │ ├── soul_fire.json │ │ │ │ ├── soul_lantern.json │ │ │ │ ├── soul_sand.json │ │ │ │ ├── soul_soil.json │ │ │ │ ├── soul_torch.json │ │ │ │ ├── soul_wall_torch.json │ │ │ │ ├── spawner.json │ │ │ │ ├── sponge.json │ │ │ │ ├── spore_blossom.json │ │ │ │ ├── spruce_button.json │ │ │ │ ├── spruce_door.json │ │ │ │ ├── spruce_fence.json │ │ │ │ ├── spruce_fence_gate.json │ │ │ │ ├── spruce_hanging_sign.json │ │ │ │ ├── spruce_leaves.json │ │ │ │ ├── spruce_log.json │ │ │ │ ├── spruce_planks.json │ │ │ │ ├── spruce_pressure_plate.json │ │ │ │ ├── spruce_sapling.json │ │ │ │ ├── spruce_sign.json │ │ │ │ ├── spruce_slab.json │ │ │ │ ├── spruce_stairs.json │ │ │ │ ├── spruce_trapdoor.json │ │ │ │ ├── spruce_wall_hanging_sign.json │ │ │ │ ├── spruce_wall_sign.json │ │ │ │ ├── spruce_wood.json │ │ │ │ ├── sticky_piston.json │ │ │ │ ├── stone.json │ │ │ │ ├── stone_brick_slab.json │ │ │ │ ├── stone_brick_stairs.json │ │ │ │ ├── stone_brick_wall.json │ │ │ │ ├── stone_bricks.json │ │ │ │ ├── stone_button.json │ │ │ │ ├── stone_pressure_plate.json │ │ │ │ ├── stone_slab.json │ │ │ │ ├── stone_stairs.json │ │ │ │ ├── stonecutter.json │ │ │ │ ├── stripped_acacia_log.json │ │ │ │ ├── stripped_acacia_wood.json │ │ │ │ ├── stripped_bamboo_block.json │ │ │ │ ├── stripped_birch_log.json │ │ │ │ ├── stripped_birch_wood.json │ │ │ │ ├── stripped_cherry_log.json │ │ │ │ ├── stripped_cherry_wood.json │ │ │ │ ├── stripped_crimson_hyphae.json │ │ │ │ ├── stripped_crimson_stem.json │ │ │ │ ├── stripped_dark_oak_log.json │ │ │ │ ├── stripped_dark_oak_wood.json │ │ │ │ ├── stripped_jungle_log.json │ │ │ │ ├── stripped_jungle_wood.json │ │ │ │ ├── stripped_mangrove_log.json │ │ │ │ ├── stripped_mangrove_wood.json │ │ │ │ ├── stripped_oak_log.json │ │ │ │ ├── stripped_oak_wood.json │ │ │ │ ├── stripped_spruce_log.json │ │ │ │ ├── stripped_spruce_wood.json │ │ │ │ ├── stripped_warped_hyphae.json │ │ │ │ ├── stripped_warped_stem.json │ │ │ │ ├── structure_block.json │ │ │ │ ├── structure_void.json │ │ │ │ ├── sugar_cane.json │ │ │ │ ├── sunflower.json │ │ │ │ ├── suspicious_gravel.json │ │ │ │ ├── suspicious_sand.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── tall_grass.json │ │ │ │ ├── tall_seagrass.json │ │ │ │ ├── target.json │ │ │ │ ├── terracotta.json │ │ │ │ ├── tinted_glass.json │ │ │ │ ├── tnt.json │ │ │ │ ├── torch.json │ │ │ │ ├── torchflower.json │ │ │ │ ├── torchflower_crop.json │ │ │ │ ├── trapped_chest.json │ │ │ │ ├── trial_spawner.json │ │ │ │ ├── tripwire.json │ │ │ │ ├── tripwire_hook.json │ │ │ │ ├── tube_coral.json │ │ │ │ ├── tube_coral_block.json │ │ │ │ ├── tube_coral_fan.json │ │ │ │ ├── tube_coral_wall_fan.json │ │ │ │ ├── tuff.json │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ ├── tuff_bricks.json │ │ │ │ ├── tuff_slab.json │ │ │ │ ├── tuff_stairs.json │ │ │ │ ├── tuff_wall.json │ │ │ │ ├── turtle_egg.json │ │ │ │ ├── twisting_vines.json │ │ │ │ ├── twisting_vines_plant.json │ │ │ │ ├── verdant_froglight.json │ │ │ │ ├── vine.json │ │ │ │ ├── void_air.json │ │ │ │ ├── wall_torch.json │ │ │ │ ├── warped_button.json │ │ │ │ ├── warped_door.json │ │ │ │ ├── warped_fence.json │ │ │ │ ├── warped_fence_gate.json │ │ │ │ ├── warped_fungus.json │ │ │ │ ├── warped_hanging_sign.json │ │ │ │ ├── warped_hyphae.json │ │ │ │ ├── warped_nylium.json │ │ │ │ ├── warped_planks.json │ │ │ │ ├── warped_pressure_plate.json │ │ │ │ ├── warped_roots.json │ │ │ │ ├── warped_sign.json │ │ │ │ ├── warped_slab.json │ │ │ │ ├── warped_stairs.json │ │ │ │ ├── warped_stem.json │ │ │ │ ├── warped_trapdoor.json │ │ │ │ ├── warped_wall_hanging_sign.json │ │ │ │ ├── warped_wall_sign.json │ │ │ │ ├── warped_wart_block.json │ │ │ │ ├── water.json │ │ │ │ ├── water_cauldron.json │ │ │ │ ├── waxed_chiseled_copper.json │ │ │ │ ├── waxed_copper_block.json │ │ │ │ ├── waxed_copper_bulb.json │ │ │ │ ├── waxed_copper_door.json │ │ │ │ ├── waxed_copper_grate.json │ │ │ │ ├── waxed_copper_trapdoor.json │ │ │ │ ├── waxed_cut_copper.json │ │ │ │ ├── waxed_cut_copper_slab.json │ │ │ │ ├── waxed_cut_copper_stairs.json │ │ │ │ ├── waxed_exposed_chiseled_copper.json │ │ │ │ ├── waxed_exposed_copper.json │ │ │ │ ├── waxed_exposed_copper_bulb.json │ │ │ │ ├── waxed_exposed_copper_door.json │ │ │ │ ├── waxed_exposed_copper_grate.json │ │ │ │ ├── waxed_exposed_copper_trapdoor.json │ │ │ │ ├── waxed_exposed_cut_copper.json │ │ │ │ ├── waxed_exposed_cut_copper_slab.json │ │ │ │ ├── waxed_exposed_cut_copper_stairs.json │ │ │ │ ├── waxed_oxidized_chiseled_copper.json │ │ │ │ ├── waxed_oxidized_copper.json │ │ │ │ ├── waxed_oxidized_copper_bulb.json │ │ │ │ ├── waxed_oxidized_copper_door.json │ │ │ │ ├── waxed_oxidized_copper_grate.json │ │ │ │ ├── waxed_oxidized_copper_trapdoor.json │ │ │ │ ├── waxed_oxidized_cut_copper.json │ │ │ │ ├── waxed_oxidized_cut_copper_slab.json │ │ │ │ ├── waxed_oxidized_cut_copper_stairs.json │ │ │ │ ├── waxed_weathered_chiseled_copper.json │ │ │ │ ├── waxed_weathered_copper.json │ │ │ │ ├── waxed_weathered_copper_bulb.json │ │ │ │ ├── waxed_weathered_copper_door.json │ │ │ │ ├── waxed_weathered_copper_grate.json │ │ │ │ ├── waxed_weathered_copper_trapdoor.json │ │ │ │ ├── waxed_weathered_cut_copper.json │ │ │ │ ├── waxed_weathered_cut_copper_slab.json │ │ │ │ ├── waxed_weathered_cut_copper_stairs.json │ │ │ │ ├── weathered_chiseled_copper.json │ │ │ │ ├── weathered_copper.json │ │ │ │ ├── weathered_copper_bulb.json │ │ │ │ ├── weathered_copper_door.json │ │ │ │ ├── weathered_copper_grate.json │ │ │ │ ├── weathered_copper_trapdoor.json │ │ │ │ ├── weathered_cut_copper.json │ │ │ │ ├── weathered_cut_copper_slab.json │ │ │ │ ├── weathered_cut_copper_stairs.json │ │ │ │ ├── weeping_vines.json │ │ │ │ ├── weeping_vines_plant.json │ │ │ │ ├── wet_sponge.json │ │ │ │ ├── wheat.json │ │ │ │ ├── white_banner.json │ │ │ │ ├── white_bed.json │ │ │ │ ├── white_candle.json │ │ │ │ ├── white_candle_cake.json │ │ │ │ ├── white_carpet.json │ │ │ │ ├── white_concrete.json │ │ │ │ ├── white_concrete_powder.json │ │ │ │ ├── white_glazed_terracotta.json │ │ │ │ ├── white_shulker_box.json │ │ │ │ ├── white_stained_glass.json │ │ │ │ ├── white_stained_glass_pane.json │ │ │ │ ├── white_terracotta.json │ │ │ │ ├── white_tulip.json │ │ │ │ ├── white_wall_banner.json │ │ │ │ ├── white_wool.json │ │ │ │ ├── wither_rose.json │ │ │ │ ├── wither_skeleton_skull.json │ │ │ │ ├── wither_skeleton_wall_skull.json │ │ │ │ ├── yellow_banner.json │ │ │ │ ├── yellow_bed.json │ │ │ │ ├── yellow_candle.json │ │ │ │ ├── yellow_candle_cake.json │ │ │ │ ├── yellow_carpet.json │ │ │ │ ├── yellow_concrete.json │ │ │ │ ├── yellow_concrete_powder.json │ │ │ │ ├── yellow_glazed_terracotta.json │ │ │ │ ├── yellow_shulker_box.json │ │ │ │ ├── yellow_stained_glass.json │ │ │ │ ├── yellow_stained_glass_pane.json │ │ │ │ ├── yellow_terracotta.json │ │ │ │ ├── yellow_wall_banner.json │ │ │ │ ├── yellow_wool.json │ │ │ │ ├── zombie_head.json │ │ │ │ └── zombie_wall_head.json │ │ │ │ ├── font │ │ │ │ ├── alt.json │ │ │ │ ├── default.json │ │ │ │ ├── illageralt.json │ │ │ │ ├── include │ │ │ │ │ ├── default.json │ │ │ │ │ ├── space.json │ │ │ │ │ └── unifont.json │ │ │ │ └── uniform.json │ │ │ │ ├── gpu_warnlist.json │ │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ ├── acacia_button.json │ │ │ │ │ ├── acacia_button_inventory.json │ │ │ │ │ ├── acacia_button_pressed.json │ │ │ │ │ ├── acacia_door_bottom_left.json │ │ │ │ │ ├── acacia_door_bottom_left_open.json │ │ │ │ │ ├── acacia_door_bottom_right.json │ │ │ │ │ ├── acacia_door_bottom_right_open.json │ │ │ │ │ ├── acacia_door_top_left.json │ │ │ │ │ ├── acacia_door_top_left_open.json │ │ │ │ │ ├── acacia_door_top_right.json │ │ │ │ │ ├── acacia_door_top_right_open.json │ │ │ │ │ ├── acacia_fence_gate.json │ │ │ │ │ ├── acacia_fence_gate_open.json │ │ │ │ │ ├── acacia_fence_gate_wall.json │ │ │ │ │ ├── acacia_fence_gate_wall_open.json │ │ │ │ │ ├── acacia_fence_inventory.json │ │ │ │ │ ├── acacia_fence_post.json │ │ │ │ │ ├── acacia_fence_side.json │ │ │ │ │ ├── acacia_hanging_sign.json │ │ │ │ │ ├── acacia_leaves.json │ │ │ │ │ ├── acacia_log.json │ │ │ │ │ ├── acacia_log_horizontal.json │ │ │ │ │ ├── acacia_planks.json │ │ │ │ │ ├── acacia_pressure_plate.json │ │ │ │ │ ├── acacia_pressure_plate_down.json │ │ │ │ │ ├── acacia_sapling.json │ │ │ │ │ ├── acacia_sign.json │ │ │ │ │ ├── acacia_slab.json │ │ │ │ │ ├── acacia_slab_top.json │ │ │ │ │ ├── acacia_stairs.json │ │ │ │ │ ├── acacia_stairs_inner.json │ │ │ │ │ ├── acacia_stairs_outer.json │ │ │ │ │ ├── acacia_trapdoor_bottom.json │ │ │ │ │ ├── acacia_trapdoor_open.json │ │ │ │ │ ├── acacia_trapdoor_top.json │ │ │ │ │ ├── acacia_wood.json │ │ │ │ │ ├── activator_rail.json │ │ │ │ │ ├── activator_rail_on.json │ │ │ │ │ ├── activator_rail_on_raised_ne.json │ │ │ │ │ ├── activator_rail_on_raised_sw.json │ │ │ │ │ ├── activator_rail_raised_ne.json │ │ │ │ │ ├── activator_rail_raised_sw.json │ │ │ │ │ ├── air.json │ │ │ │ │ ├── allium.json │ │ │ │ │ ├── amethyst_block.json │ │ │ │ │ ├── amethyst_cluster.json │ │ │ │ │ ├── ancient_debris.json │ │ │ │ │ ├── andesite.json │ │ │ │ │ ├── andesite_slab.json │ │ │ │ │ ├── andesite_slab_top.json │ │ │ │ │ ├── andesite_stairs.json │ │ │ │ │ ├── andesite_stairs_inner.json │ │ │ │ │ ├── andesite_stairs_outer.json │ │ │ │ │ ├── andesite_wall_inventory.json │ │ │ │ │ ├── andesite_wall_post.json │ │ │ │ │ ├── andesite_wall_side.json │ │ │ │ │ ├── andesite_wall_side_tall.json │ │ │ │ │ ├── anvil.json │ │ │ │ │ ├── attached_melon_stem.json │ │ │ │ │ ├── attached_pumpkin_stem.json │ │ │ │ │ ├── azalea.json │ │ │ │ │ ├── azalea_leaves.json │ │ │ │ │ ├── azure_bluet.json │ │ │ │ │ ├── bamboo1_age0.json │ │ │ │ │ ├── bamboo1_age1.json │ │ │ │ │ ├── bamboo2_age0.json │ │ │ │ │ ├── bamboo2_age1.json │ │ │ │ │ ├── bamboo3_age0.json │ │ │ │ │ ├── bamboo3_age1.json │ │ │ │ │ ├── bamboo4_age0.json │ │ │ │ │ ├── bamboo4_age1.json │ │ │ │ │ ├── bamboo_block.json │ │ │ │ │ ├── bamboo_block_x.json │ │ │ │ │ ├── bamboo_block_y.json │ │ │ │ │ ├── bamboo_block_z.json │ │ │ │ │ ├── bamboo_button.json │ │ │ │ │ ├── bamboo_button_inventory.json │ │ │ │ │ ├── bamboo_button_pressed.json │ │ │ │ │ ├── bamboo_door_bottom_left.json │ │ │ │ │ ├── bamboo_door_bottom_left_open.json │ │ │ │ │ ├── bamboo_door_bottom_right.json │ │ │ │ │ ├── bamboo_door_bottom_right_open.json │ │ │ │ │ ├── bamboo_door_top_left.json │ │ │ │ │ ├── bamboo_door_top_left_open.json │ │ │ │ │ ├── bamboo_door_top_right.json │ │ │ │ │ ├── bamboo_door_top_right_open.json │ │ │ │ │ ├── bamboo_fence_gate.json │ │ │ │ │ ├── bamboo_fence_gate_open.json │ │ │ │ │ ├── bamboo_fence_gate_wall.json │ │ │ │ │ ├── bamboo_fence_gate_wall_open.json │ │ │ │ │ ├── bamboo_fence_inventory.json │ │ │ │ │ ├── bamboo_fence_post.json │ │ │ │ │ ├── bamboo_fence_side_east.json │ │ │ │ │ ├── bamboo_fence_side_north.json │ │ │ │ │ ├── bamboo_fence_side_south.json │ │ │ │ │ ├── bamboo_fence_side_west.json │ │ │ │ │ ├── bamboo_hanging_sign.json │ │ │ │ │ ├── bamboo_large_leaves.json │ │ │ │ │ ├── bamboo_mosaic.json │ │ │ │ │ ├── bamboo_mosaic_slab.json │ │ │ │ │ ├── bamboo_mosaic_slab_top.json │ │ │ │ │ ├── bamboo_mosaic_stairs.json │ │ │ │ │ ├── bamboo_mosaic_stairs_inner.json │ │ │ │ │ ├── bamboo_mosaic_stairs_outer.json │ │ │ │ │ ├── bamboo_planks.json │ │ │ │ │ ├── bamboo_pressure_plate.json │ │ │ │ │ ├── bamboo_pressure_plate_down.json │ │ │ │ │ ├── bamboo_sapling.json │ │ │ │ │ ├── bamboo_sign.json │ │ │ │ │ ├── bamboo_slab.json │ │ │ │ │ ├── bamboo_slab_top.json │ │ │ │ │ ├── bamboo_small_leaves.json │ │ │ │ │ ├── bamboo_stairs.json │ │ │ │ │ ├── bamboo_stairs_inner.json │ │ │ │ │ ├── bamboo_stairs_outer.json │ │ │ │ │ ├── bamboo_trapdoor_bottom.json │ │ │ │ │ ├── bamboo_trapdoor_open.json │ │ │ │ │ ├── bamboo_trapdoor_top.json │ │ │ │ │ ├── banner.json │ │ │ │ │ ├── barrel.json │ │ │ │ │ ├── barrel_open.json │ │ │ │ │ ├── barrier.json │ │ │ │ │ ├── basalt.json │ │ │ │ │ ├── beacon.json │ │ │ │ │ ├── bed.json │ │ │ │ │ ├── bedrock.json │ │ │ │ │ ├── bedrock_mirrored.json │ │ │ │ │ ├── bee_nest.json │ │ │ │ │ ├── bee_nest_honey.json │ │ │ │ │ ├── beehive.json │ │ │ │ │ ├── beehive_honey.json │ │ │ │ │ ├── beetroots_stage0.json │ │ │ │ │ ├── beetroots_stage1.json │ │ │ │ │ ├── beetroots_stage2.json │ │ │ │ │ ├── beetroots_stage3.json │ │ │ │ │ ├── bell_between_walls.json │ │ │ │ │ ├── bell_ceiling.json │ │ │ │ │ ├── bell_floor.json │ │ │ │ │ ├── bell_wall.json │ │ │ │ │ ├── big_dripleaf.json │ │ │ │ │ ├── big_dripleaf_full_tilt.json │ │ │ │ │ ├── big_dripleaf_partial_tilt.json │ │ │ │ │ ├── big_dripleaf_stem.json │ │ │ │ │ ├── birch_button.json │ │ │ │ │ ├── birch_button_inventory.json │ │ │ │ │ ├── birch_button_pressed.json │ │ │ │ │ ├── birch_door_bottom_left.json │ │ │ │ │ ├── birch_door_bottom_left_open.json │ │ │ │ │ ├── birch_door_bottom_right.json │ │ │ │ │ ├── birch_door_bottom_right_open.json │ │ │ │ │ ├── birch_door_top_left.json │ │ │ │ │ ├── birch_door_top_left_open.json │ │ │ │ │ ├── birch_door_top_right.json │ │ │ │ │ ├── birch_door_top_right_open.json │ │ │ │ │ ├── birch_fence_gate.json │ │ │ │ │ ├── birch_fence_gate_open.json │ │ │ │ │ ├── birch_fence_gate_wall.json │ │ │ │ │ ├── birch_fence_gate_wall_open.json │ │ │ │ │ ├── birch_fence_inventory.json │ │ │ │ │ ├── birch_fence_post.json │ │ │ │ │ ├── birch_fence_side.json │ │ │ │ │ ├── birch_hanging_sign.json │ │ │ │ │ ├── birch_leaves.json │ │ │ │ │ ├── birch_log.json │ │ │ │ │ ├── birch_log_horizontal.json │ │ │ │ │ ├── birch_planks.json │ │ │ │ │ ├── birch_pressure_plate.json │ │ │ │ │ ├── birch_pressure_plate_down.json │ │ │ │ │ ├── birch_sapling.json │ │ │ │ │ ├── birch_sign.json │ │ │ │ │ ├── birch_slab.json │ │ │ │ │ ├── birch_slab_top.json │ │ │ │ │ ├── birch_stairs.json │ │ │ │ │ ├── birch_stairs_inner.json │ │ │ │ │ ├── birch_stairs_outer.json │ │ │ │ │ ├── birch_trapdoor_bottom.json │ │ │ │ │ ├── birch_trapdoor_open.json │ │ │ │ │ ├── birch_trapdoor_top.json │ │ │ │ │ ├── birch_wood.json │ │ │ │ │ ├── black_candle_cake.json │ │ │ │ │ ├── black_candle_cake_lit.json │ │ │ │ │ ├── black_candle_four_candles.json │ │ │ │ │ ├── black_candle_four_candles_lit.json │ │ │ │ │ ├── black_candle_one_candle.json │ │ │ │ │ ├── black_candle_one_candle_lit.json │ │ │ │ │ ├── black_candle_three_candles.json │ │ │ │ │ ├── black_candle_three_candles_lit.json │ │ │ │ │ ├── black_candle_two_candles.json │ │ │ │ │ ├── black_candle_two_candles_lit.json │ │ │ │ │ ├── black_carpet.json │ │ │ │ │ ├── black_concrete.json │ │ │ │ │ ├── black_concrete_powder.json │ │ │ │ │ ├── black_glazed_terracotta.json │ │ │ │ │ ├── black_shulker_box.json │ │ │ │ │ ├── black_stained_glass.json │ │ │ │ │ ├── black_stained_glass_pane_noside.json │ │ │ │ │ ├── black_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── black_stained_glass_pane_post.json │ │ │ │ │ ├── black_stained_glass_pane_side.json │ │ │ │ │ ├── black_stained_glass_pane_side_alt.json │ │ │ │ │ ├── black_terracotta.json │ │ │ │ │ ├── black_wool.json │ │ │ │ │ ├── blackstone.json │ │ │ │ │ ├── blackstone_slab.json │ │ │ │ │ ├── blackstone_slab_top.json │ │ │ │ │ ├── blackstone_stairs.json │ │ │ │ │ ├── blackstone_stairs_inner.json │ │ │ │ │ ├── blackstone_stairs_outer.json │ │ │ │ │ ├── blackstone_wall_inventory.json │ │ │ │ │ ├── blackstone_wall_post.json │ │ │ │ │ ├── blackstone_wall_side.json │ │ │ │ │ ├── blackstone_wall_side_tall.json │ │ │ │ │ ├── blast_furnace.json │ │ │ │ │ ├── blast_furnace_on.json │ │ │ │ │ ├── block.json │ │ │ │ │ ├── blue_candle_cake.json │ │ │ │ │ ├── blue_candle_cake_lit.json │ │ │ │ │ ├── blue_candle_four_candles.json │ │ │ │ │ ├── blue_candle_four_candles_lit.json │ │ │ │ │ ├── blue_candle_one_candle.json │ │ │ │ │ ├── blue_candle_one_candle_lit.json │ │ │ │ │ ├── blue_candle_three_candles.json │ │ │ │ │ ├── blue_candle_three_candles_lit.json │ │ │ │ │ ├── blue_candle_two_candles.json │ │ │ │ │ ├── blue_candle_two_candles_lit.json │ │ │ │ │ ├── blue_carpet.json │ │ │ │ │ ├── blue_concrete.json │ │ │ │ │ ├── blue_concrete_powder.json │ │ │ │ │ ├── blue_glazed_terracotta.json │ │ │ │ │ ├── blue_ice.json │ │ │ │ │ ├── blue_orchid.json │ │ │ │ │ ├── blue_shulker_box.json │ │ │ │ │ ├── blue_stained_glass.json │ │ │ │ │ ├── blue_stained_glass_pane_noside.json │ │ │ │ │ ├── blue_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── blue_stained_glass_pane_post.json │ │ │ │ │ ├── blue_stained_glass_pane_side.json │ │ │ │ │ ├── blue_stained_glass_pane_side_alt.json │ │ │ │ │ ├── blue_terracotta.json │ │ │ │ │ ├── blue_wool.json │ │ │ │ │ ├── bone_block.json │ │ │ │ │ ├── bookshelf.json │ │ │ │ │ ├── brain_coral.json │ │ │ │ │ ├── brain_coral_block.json │ │ │ │ │ ├── brain_coral_fan.json │ │ │ │ │ ├── brain_coral_wall_fan.json │ │ │ │ │ ├── brewing_stand.json │ │ │ │ │ ├── brewing_stand_bottle0.json │ │ │ │ │ ├── brewing_stand_bottle1.json │ │ │ │ │ ├── brewing_stand_bottle2.json │ │ │ │ │ ├── brewing_stand_empty0.json │ │ │ │ │ ├── brewing_stand_empty1.json │ │ │ │ │ ├── brewing_stand_empty2.json │ │ │ │ │ ├── brick_slab.json │ │ │ │ │ ├── brick_slab_top.json │ │ │ │ │ ├── brick_stairs.json │ │ │ │ │ ├── brick_stairs_inner.json │ │ │ │ │ ├── brick_stairs_outer.json │ │ │ │ │ ├── brick_wall_inventory.json │ │ │ │ │ ├── brick_wall_post.json │ │ │ │ │ ├── brick_wall_side.json │ │ │ │ │ ├── brick_wall_side_tall.json │ │ │ │ │ ├── bricks.json │ │ │ │ │ ├── brown_candle_cake.json │ │ │ │ │ ├── brown_candle_cake_lit.json │ │ │ │ │ ├── brown_candle_four_candles.json │ │ │ │ │ ├── brown_candle_four_candles_lit.json │ │ │ │ │ ├── brown_candle_one_candle.json │ │ │ │ │ ├── brown_candle_one_candle_lit.json │ │ │ │ │ ├── brown_candle_three_candles.json │ │ │ │ │ ├── brown_candle_three_candles_lit.json │ │ │ │ │ ├── brown_candle_two_candles.json │ │ │ │ │ ├── brown_candle_two_candles_lit.json │ │ │ │ │ ├── brown_carpet.json │ │ │ │ │ ├── brown_concrete.json │ │ │ │ │ ├── brown_concrete_powder.json │ │ │ │ │ ├── brown_glazed_terracotta.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── brown_mushroom_block.json │ │ │ │ │ ├── brown_mushroom_block_inventory.json │ │ │ │ │ ├── brown_shulker_box.json │ │ │ │ │ ├── brown_stained_glass.json │ │ │ │ │ ├── brown_stained_glass_pane_noside.json │ │ │ │ │ ├── brown_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── brown_stained_glass_pane_post.json │ │ │ │ │ ├── brown_stained_glass_pane_side.json │ │ │ │ │ ├── brown_stained_glass_pane_side_alt.json │ │ │ │ │ ├── brown_terracotta.json │ │ │ │ │ ├── brown_wool.json │ │ │ │ │ ├── bubble_coral.json │ │ │ │ │ ├── bubble_coral_block.json │ │ │ │ │ ├── bubble_coral_fan.json │ │ │ │ │ ├── bubble_coral_wall_fan.json │ │ │ │ │ ├── budding_amethyst.json │ │ │ │ │ ├── button.json │ │ │ │ │ ├── button_inventory.json │ │ │ │ │ ├── button_pressed.json │ │ │ │ │ ├── cactus.json │ │ │ │ │ ├── cake.json │ │ │ │ │ ├── cake_slice1.json │ │ │ │ │ ├── cake_slice2.json │ │ │ │ │ ├── cake_slice3.json │ │ │ │ │ ├── cake_slice4.json │ │ │ │ │ ├── cake_slice5.json │ │ │ │ │ ├── cake_slice6.json │ │ │ │ │ ├── calcite.json │ │ │ │ │ ├── calibrated_sculk_sensor.json │ │ │ │ │ ├── calibrated_sculk_sensor_active.json │ │ │ │ │ ├── calibrated_sculk_sensor_inactive.json │ │ │ │ │ ├── campfire.json │ │ │ │ │ ├── campfire_off.json │ │ │ │ │ ├── candle_cake.json │ │ │ │ │ ├── candle_cake_lit.json │ │ │ │ │ ├── candle_four_candles.json │ │ │ │ │ ├── candle_four_candles_lit.json │ │ │ │ │ ├── candle_one_candle.json │ │ │ │ │ ├── candle_one_candle_lit.json │ │ │ │ │ ├── candle_three_candles.json │ │ │ │ │ ├── candle_three_candles_lit.json │ │ │ │ │ ├── candle_two_candles.json │ │ │ │ │ ├── candle_two_candles_lit.json │ │ │ │ │ ├── carpet.json │ │ │ │ │ ├── carrots_stage0.json │ │ │ │ │ ├── carrots_stage1.json │ │ │ │ │ ├── carrots_stage2.json │ │ │ │ │ ├── carrots_stage3.json │ │ │ │ │ ├── cartography_table.json │ │ │ │ │ ├── carved_pumpkin.json │ │ │ │ │ ├── cauldron.json │ │ │ │ │ ├── cave_vines.json │ │ │ │ │ ├── cave_vines_lit.json │ │ │ │ │ ├── cave_vines_plant.json │ │ │ │ │ ├── cave_vines_plant_lit.json │ │ │ │ │ ├── chain.json │ │ │ │ │ ├── chain_command_block.json │ │ │ │ │ ├── chain_command_block_conditional.json │ │ │ │ │ ├── cherry_button.json │ │ │ │ │ ├── cherry_button_inventory.json │ │ │ │ │ ├── cherry_button_pressed.json │ │ │ │ │ ├── cherry_door_bottom_left.json │ │ │ │ │ ├── cherry_door_bottom_left_open.json │ │ │ │ │ ├── cherry_door_bottom_right.json │ │ │ │ │ ├── cherry_door_bottom_right_open.json │ │ │ │ │ ├── cherry_door_top_left.json │ │ │ │ │ ├── cherry_door_top_left_open.json │ │ │ │ │ ├── cherry_door_top_right.json │ │ │ │ │ ├── cherry_door_top_right_open.json │ │ │ │ │ ├── cherry_fence_gate.json │ │ │ │ │ ├── cherry_fence_gate_open.json │ │ │ │ │ ├── cherry_fence_gate_wall.json │ │ │ │ │ ├── cherry_fence_gate_wall_open.json │ │ │ │ │ ├── cherry_fence_inventory.json │ │ │ │ │ ├── cherry_fence_post.json │ │ │ │ │ ├── cherry_fence_side.json │ │ │ │ │ ├── cherry_hanging_sign.json │ │ │ │ │ ├── cherry_leaves.json │ │ │ │ │ ├── cherry_log.json │ │ │ │ │ ├── cherry_log_x.json │ │ │ │ │ ├── cherry_log_y.json │ │ │ │ │ ├── cherry_log_z.json │ │ │ │ │ ├── cherry_planks.json │ │ │ │ │ ├── cherry_pressure_plate.json │ │ │ │ │ ├── cherry_pressure_plate_down.json │ │ │ │ │ ├── cherry_sapling.json │ │ │ │ │ ├── cherry_sign.json │ │ │ │ │ ├── cherry_slab.json │ │ │ │ │ ├── cherry_slab_top.json │ │ │ │ │ ├── cherry_stairs.json │ │ │ │ │ ├── cherry_stairs_inner.json │ │ │ │ │ ├── cherry_stairs_outer.json │ │ │ │ │ ├── cherry_trapdoor_bottom.json │ │ │ │ │ ├── cherry_trapdoor_open.json │ │ │ │ │ ├── cherry_trapdoor_top.json │ │ │ │ │ ├── cherry_wood.json │ │ │ │ │ ├── chest.json │ │ │ │ │ ├── chipped_anvil.json │ │ │ │ │ ├── chiseled_bookshelf.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_bottom_left.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_bottom_mid.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_bottom_right.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_top_left.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_top_mid.json │ │ │ │ │ ├── chiseled_bookshelf_empty_slot_top_right.json │ │ │ │ │ ├── chiseled_bookshelf_inventory.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_bottom_left.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_bottom_mid.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_bottom_right.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_top_left.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_top_mid.json │ │ │ │ │ ├── chiseled_bookshelf_occupied_slot_top_right.json │ │ │ │ │ ├── chiseled_copper.json │ │ │ │ │ ├── chiseled_deepslate.json │ │ │ │ │ ├── chiseled_nether_bricks.json │ │ │ │ │ ├── chiseled_polished_blackstone.json │ │ │ │ │ ├── chiseled_quartz_block.json │ │ │ │ │ ├── chiseled_red_sandstone.json │ │ │ │ │ ├── chiseled_sandstone.json │ │ │ │ │ ├── chiseled_stone_bricks.json │ │ │ │ │ ├── chiseled_tuff.json │ │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ │ ├── chorus_flower.json │ │ │ │ │ ├── chorus_flower_dead.json │ │ │ │ │ ├── chorus_plant.json │ │ │ │ │ ├── chorus_plant_noside.json │ │ │ │ │ ├── chorus_plant_noside1.json │ │ │ │ │ ├── chorus_plant_noside2.json │ │ │ │ │ ├── chorus_plant_noside3.json │ │ │ │ │ ├── chorus_plant_side.json │ │ │ │ │ ├── clay.json │ │ │ │ │ ├── coal_block.json │ │ │ │ │ ├── coal_ore.json │ │ │ │ │ ├── coarse_dirt.json │ │ │ │ │ ├── cobbled_deepslate.json │ │ │ │ │ ├── cobbled_deepslate_slab.json │ │ │ │ │ ├── cobbled_deepslate_slab_top.json │ │ │ │ │ ├── cobbled_deepslate_stairs.json │ │ │ │ │ ├── cobbled_deepslate_stairs_inner.json │ │ │ │ │ ├── cobbled_deepslate_stairs_outer.json │ │ │ │ │ ├── cobbled_deepslate_wall_inventory.json │ │ │ │ │ ├── cobbled_deepslate_wall_post.json │ │ │ │ │ ├── cobbled_deepslate_wall_side.json │ │ │ │ │ ├── cobbled_deepslate_wall_side_tall.json │ │ │ │ │ ├── cobblestone.json │ │ │ │ │ ├── cobblestone_slab.json │ │ │ │ │ ├── cobblestone_slab_top.json │ │ │ │ │ ├── cobblestone_stairs.json │ │ │ │ │ ├── cobblestone_stairs_inner.json │ │ │ │ │ ├── cobblestone_stairs_outer.json │ │ │ │ │ ├── cobblestone_wall_inventory.json │ │ │ │ │ ├── cobblestone_wall_post.json │ │ │ │ │ ├── cobblestone_wall_side.json │ │ │ │ │ ├── cobblestone_wall_side_tall.json │ │ │ │ │ ├── cobweb.json │ │ │ │ │ ├── cocoa_stage0.json │ │ │ │ │ ├── cocoa_stage1.json │ │ │ │ │ ├── cocoa_stage2.json │ │ │ │ │ ├── command_block.json │ │ │ │ │ ├── command_block_conditional.json │ │ │ │ │ ├── comparator.json │ │ │ │ │ ├── comparator_on.json │ │ │ │ │ ├── comparator_on_subtract.json │ │ │ │ │ ├── comparator_subtract.json │ │ │ │ │ ├── composter.json │ │ │ │ │ ├── composter_contents1.json │ │ │ │ │ ├── composter_contents2.json │ │ │ │ │ ├── composter_contents3.json │ │ │ │ │ ├── composter_contents4.json │ │ │ │ │ ├── composter_contents5.json │ │ │ │ │ ├── composter_contents6.json │ │ │ │ │ ├── composter_contents7.json │ │ │ │ │ ├── composter_contents_ready.json │ │ │ │ │ ├── conduit.json │ │ │ │ │ ├── copper_block.json │ │ │ │ │ ├── copper_bulb.json │ │ │ │ │ ├── copper_bulb_lit.json │ │ │ │ │ ├── copper_bulb_lit_powered.json │ │ │ │ │ ├── copper_bulb_powered.json │ │ │ │ │ ├── copper_door_bottom_left.json │ │ │ │ │ ├── copper_door_bottom_left_open.json │ │ │ │ │ ├── copper_door_bottom_right.json │ │ │ │ │ ├── copper_door_bottom_right_open.json │ │ │ │ │ ├── copper_door_top_left.json │ │ │ │ │ ├── copper_door_top_left_open.json │ │ │ │ │ ├── copper_door_top_right.json │ │ │ │ │ ├── copper_door_top_right_open.json │ │ │ │ │ ├── copper_grate.json │ │ │ │ │ ├── copper_ore.json │ │ │ │ │ ├── copper_trapdoor_bottom.json │ │ │ │ │ ├── copper_trapdoor_open.json │ │ │ │ │ ├── copper_trapdoor_top.json │ │ │ │ │ ├── coral_fan.json │ │ │ │ │ ├── coral_wall_fan.json │ │ │ │ │ ├── cornflower.json │ │ │ │ │ ├── cracked_deepslate_bricks.json │ │ │ │ │ ├── cracked_deepslate_tiles.json │ │ │ │ │ ├── cracked_nether_bricks.json │ │ │ │ │ ├── cracked_polished_blackstone_bricks.json │ │ │ │ │ ├── cracked_stone_bricks.json │ │ │ │ │ ├── crafter.json │ │ │ │ │ ├── crafter_crafting.json │ │ │ │ │ ├── crafter_crafting_triggered.json │ │ │ │ │ ├── crafter_triggered.json │ │ │ │ │ ├── crafting_table.json │ │ │ │ │ ├── crimson_button.json │ │ │ │ │ ├── crimson_button_inventory.json │ │ │ │ │ ├── crimson_button_pressed.json │ │ │ │ │ ├── crimson_door_bottom_left.json │ │ │ │ │ ├── crimson_door_bottom_left_open.json │ │ │ │ │ ├── crimson_door_bottom_right.json │ │ │ │ │ ├── crimson_door_bottom_right_open.json │ │ │ │ │ ├── crimson_door_top_left.json │ │ │ │ │ ├── crimson_door_top_left_open.json │ │ │ │ │ ├── crimson_door_top_right.json │ │ │ │ │ ├── crimson_door_top_right_open.json │ │ │ │ │ ├── crimson_fence_gate.json │ │ │ │ │ ├── crimson_fence_gate_open.json │ │ │ │ │ ├── crimson_fence_gate_wall.json │ │ │ │ │ ├── crimson_fence_gate_wall_open.json │ │ │ │ │ ├── crimson_fence_inventory.json │ │ │ │ │ ├── crimson_fence_post.json │ │ │ │ │ ├── crimson_fence_side.json │ │ │ │ │ ├── crimson_fungus.json │ │ │ │ │ ├── crimson_hanging_sign.json │ │ │ │ │ ├── crimson_hyphae.json │ │ │ │ │ ├── crimson_nylium.json │ │ │ │ │ ├── crimson_planks.json │ │ │ │ │ ├── crimson_pressure_plate.json │ │ │ │ │ ├── crimson_pressure_plate_down.json │ │ │ │ │ ├── crimson_roots.json │ │ │ │ │ ├── crimson_sign.json │ │ │ │ │ ├── crimson_slab.json │ │ │ │ │ ├── crimson_slab_top.json │ │ │ │ │ ├── crimson_stairs.json │ │ │ │ │ ├── crimson_stairs_inner.json │ │ │ │ │ ├── crimson_stairs_outer.json │ │ │ │ │ ├── crimson_stem.json │ │ │ │ │ ├── crimson_trapdoor_bottom.json │ │ │ │ │ ├── crimson_trapdoor_open.json │ │ │ │ │ ├── crimson_trapdoor_top.json │ │ │ │ │ ├── crop.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── crying_obsidian.json │ │ │ │ │ ├── cube.json │ │ │ │ │ ├── cube_all.json │ │ │ │ │ ├── cube_all_inner_faces.json │ │ │ │ │ ├── cube_bottom_top.json │ │ │ │ │ ├── cube_bottom_top_inner_faces.json │ │ │ │ │ ├── cube_column.json │ │ │ │ │ ├── cube_column_horizontal.json │ │ │ │ │ ├── cube_column_mirrored.json │ │ │ │ │ ├── cube_column_uv_locked_x.json │ │ │ │ │ ├── cube_column_uv_locked_y.json │ │ │ │ │ ├── cube_column_uv_locked_z.json │ │ │ │ │ ├── cube_directional.json │ │ │ │ │ ├── cube_mirrored.json │ │ │ │ │ ├── cube_mirrored_all.json │ │ │ │ │ ├── cube_north_west_mirrored.json │ │ │ │ │ ├── cube_north_west_mirrored_all.json │ │ │ │ │ ├── cube_top.json │ │ │ │ │ ├── custom_fence_inventory.json │ │ │ │ │ ├── custom_fence_post.json │ │ │ │ │ ├── custom_fence_side_east.json │ │ │ │ │ ├── custom_fence_side_north.json │ │ │ │ │ ├── custom_fence_side_south.json │ │ │ │ │ ├── custom_fence_side_west.json │ │ │ │ │ ├── cut_copper.json │ │ │ │ │ ├── cut_copper_slab.json │ │ │ │ │ ├── cut_copper_slab_top.json │ │ │ │ │ ├── cut_copper_stairs.json │ │ │ │ │ ├── cut_copper_stairs_inner.json │ │ │ │ │ ├── cut_copper_stairs_outer.json │ │ │ │ │ ├── cut_red_sandstone.json │ │ │ │ │ ├── cut_red_sandstone_slab.json │ │ │ │ │ ├── cut_red_sandstone_slab_top.json │ │ │ │ │ ├── cut_sandstone.json │ │ │ │ │ ├── cut_sandstone_slab.json │ │ │ │ │ ├── cut_sandstone_slab_top.json │ │ │ │ │ ├── cyan_candle_cake.json │ │ │ │ │ ├── cyan_candle_cake_lit.json │ │ │ │ │ ├── cyan_candle_four_candles.json │ │ │ │ │ ├── cyan_candle_four_candles_lit.json │ │ │ │ │ ├── cyan_candle_one_candle.json │ │ │ │ │ ├── cyan_candle_one_candle_lit.json │ │ │ │ │ ├── cyan_candle_three_candles.json │ │ │ │ │ ├── cyan_candle_three_candles_lit.json │ │ │ │ │ ├── cyan_candle_two_candles.json │ │ │ │ │ ├── cyan_candle_two_candles_lit.json │ │ │ │ │ ├── cyan_carpet.json │ │ │ │ │ ├── cyan_concrete.json │ │ │ │ │ ├── cyan_concrete_powder.json │ │ │ │ │ ├── cyan_glazed_terracotta.json │ │ │ │ │ ├── cyan_shulker_box.json │ │ │ │ │ ├── cyan_stained_glass.json │ │ │ │ │ ├── cyan_stained_glass_pane_noside.json │ │ │ │ │ ├── cyan_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── cyan_stained_glass_pane_post.json │ │ │ │ │ ├── cyan_stained_glass_pane_side.json │ │ │ │ │ ├── cyan_stained_glass_pane_side_alt.json │ │ │ │ │ ├── cyan_terracotta.json │ │ │ │ │ ├── cyan_wool.json │ │ │ │ │ ├── damaged_anvil.json │ │ │ │ │ ├── dandelion.json │ │ │ │ │ ├── dark_oak_button.json │ │ │ │ │ ├── dark_oak_button_inventory.json │ │ │ │ │ ├── dark_oak_button_pressed.json │ │ │ │ │ ├── dark_oak_door_bottom_left.json │ │ │ │ │ ├── dark_oak_door_bottom_left_open.json │ │ │ │ │ ├── dark_oak_door_bottom_right.json │ │ │ │ │ ├── dark_oak_door_bottom_right_open.json │ │ │ │ │ ├── dark_oak_door_top_left.json │ │ │ │ │ ├── dark_oak_door_top_left_open.json │ │ │ │ │ ├── dark_oak_door_top_right.json │ │ │ │ │ ├── dark_oak_door_top_right_open.json │ │ │ │ │ ├── dark_oak_fence_gate.json │ │ │ │ │ ├── dark_oak_fence_gate_open.json │ │ │ │ │ ├── dark_oak_fence_gate_wall.json │ │ │ │ │ ├── dark_oak_fence_gate_wall_open.json │ │ │ │ │ ├── dark_oak_fence_inventory.json │ │ │ │ │ ├── dark_oak_fence_post.json │ │ │ │ │ ├── dark_oak_fence_side.json │ │ │ │ │ ├── dark_oak_hanging_sign.json │ │ │ │ │ ├── dark_oak_leaves.json │ │ │ │ │ ├── dark_oak_log.json │ │ │ │ │ ├── dark_oak_log_horizontal.json │ │ │ │ │ ├── dark_oak_planks.json │ │ │ │ │ ├── dark_oak_pressure_plate.json │ │ │ │ │ ├── dark_oak_pressure_plate_down.json │ │ │ │ │ ├── dark_oak_sapling.json │ │ │ │ │ ├── dark_oak_sign.json │ │ │ │ │ ├── dark_oak_slab.json │ │ │ │ │ ├── dark_oak_slab_top.json │ │ │ │ │ ├── dark_oak_stairs.json │ │ │ │ │ ├── dark_oak_stairs_inner.json │ │ │ │ │ ├── dark_oak_stairs_outer.json │ │ │ │ │ ├── dark_oak_trapdoor_bottom.json │ │ │ │ │ ├── dark_oak_trapdoor_open.json │ │ │ │ │ ├── dark_oak_trapdoor_top.json │ │ │ │ │ ├── dark_oak_wood.json │ │ │ │ │ ├── dark_prismarine.json │ │ │ │ │ ├── dark_prismarine_slab.json │ │ │ │ │ ├── dark_prismarine_slab_top.json │ │ │ │ │ ├── dark_prismarine_stairs.json │ │ │ │ │ ├── dark_prismarine_stairs_inner.json │ │ │ │ │ ├── dark_prismarine_stairs_outer.json │ │ │ │ │ ├── daylight_detector.json │ │ │ │ │ ├── daylight_detector_inverted.json │ │ │ │ │ ├── dead_brain_coral.json │ │ │ │ │ ├── dead_brain_coral_block.json │ │ │ │ │ ├── dead_brain_coral_fan.json │ │ │ │ │ ├── dead_brain_coral_wall_fan.json │ │ │ │ │ ├── dead_bubble_coral.json │ │ │ │ │ ├── dead_bubble_coral_block.json │ │ │ │ │ ├── dead_bubble_coral_fan.json │ │ │ │ │ ├── dead_bubble_coral_wall_fan.json │ │ │ │ │ ├── dead_bush.json │ │ │ │ │ ├── dead_fire_coral.json │ │ │ │ │ ├── dead_fire_coral_block.json │ │ │ │ │ ├── dead_fire_coral_fan.json │ │ │ │ │ ├── dead_fire_coral_wall_fan.json │ │ │ │ │ ├── dead_horn_coral.json │ │ │ │ │ ├── dead_horn_coral_block.json │ │ │ │ │ ├── dead_horn_coral_fan.json │ │ │ │ │ ├── dead_horn_coral_wall_fan.json │ │ │ │ │ ├── dead_sea_pickle.json │ │ │ │ │ ├── dead_tube_coral.json │ │ │ │ │ ├── dead_tube_coral_block.json │ │ │ │ │ ├── dead_tube_coral_fan.json │ │ │ │ │ ├── dead_tube_coral_wall_fan.json │ │ │ │ │ ├── decorated_pot.json │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── deepslate_brick_slab.json │ │ │ │ │ ├── deepslate_brick_slab_top.json │ │ │ │ │ ├── deepslate_brick_stairs.json │ │ │ │ │ ├── deepslate_brick_stairs_inner.json │ │ │ │ │ ├── deepslate_brick_stairs_outer.json │ │ │ │ │ ├── deepslate_brick_wall_inventory.json │ │ │ │ │ ├── deepslate_brick_wall_post.json │ │ │ │ │ ├── deepslate_brick_wall_side.json │ │ │ │ │ ├── deepslate_brick_wall_side_tall.json │ │ │ │ │ ├── deepslate_bricks.json │ │ │ │ │ ├── deepslate_coal_ore.json │ │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ │ ├── deepslate_diamond_ore.json │ │ │ │ │ ├── deepslate_emerald_ore.json │ │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ │ ├── deepslate_lapis_ore.json │ │ │ │ │ ├── deepslate_mirrored.json │ │ │ │ │ ├── deepslate_redstone_ore.json │ │ │ │ │ ├── deepslate_tile_slab.json │ │ │ │ │ ├── deepslate_tile_slab_top.json │ │ │ │ │ ├── deepslate_tile_stairs.json │ │ │ │ │ ├── deepslate_tile_stairs_inner.json │ │ │ │ │ ├── deepslate_tile_stairs_outer.json │ │ │ │ │ ├── deepslate_tile_wall_inventory.json │ │ │ │ │ ├── deepslate_tile_wall_post.json │ │ │ │ │ ├── deepslate_tile_wall_side.json │ │ │ │ │ ├── deepslate_tile_wall_side_tall.json │ │ │ │ │ ├── deepslate_tiles.json │ │ │ │ │ ├── detector_rail.json │ │ │ │ │ ├── detector_rail_on.json │ │ │ │ │ ├── detector_rail_on_raised_ne.json │ │ │ │ │ ├── detector_rail_on_raised_sw.json │ │ │ │ │ ├── detector_rail_raised_ne.json │ │ │ │ │ ├── detector_rail_raised_sw.json │ │ │ │ │ ├── diamond_block.json │ │ │ │ │ ├── diamond_ore.json │ │ │ │ │ ├── diorite.json │ │ │ │ │ ├── diorite_slab.json │ │ │ │ │ ├── diorite_slab_top.json │ │ │ │ │ ├── diorite_stairs.json │ │ │ │ │ ├── diorite_stairs_inner.json │ │ │ │ │ ├── diorite_stairs_outer.json │ │ │ │ │ ├── diorite_wall_inventory.json │ │ │ │ │ ├── diorite_wall_post.json │ │ │ │ │ ├── diorite_wall_side.json │ │ │ │ │ ├── diorite_wall_side_tall.json │ │ │ │ │ ├── dirt.json │ │ │ │ │ ├── dirt_path.json │ │ │ │ │ ├── dispenser.json │ │ │ │ │ ├── dispenser_vertical.json │ │ │ │ │ ├── door_bottom_left.json │ │ │ │ │ ├── door_bottom_left_open.json │ │ │ │ │ ├── door_bottom_right.json │ │ │ │ │ ├── door_bottom_right_open.json │ │ │ │ │ ├── door_top_left.json │ │ │ │ │ ├── door_top_left_open.json │ │ │ │ │ ├── door_top_right.json │ │ │ │ │ ├── door_top_right_open.json │ │ │ │ │ ├── dragon_egg.json │ │ │ │ │ ├── dried_kelp_block.json │ │ │ │ │ ├── dripstone_block.json │ │ │ │ │ ├── dropper.json │ │ │ │ │ ├── dropper_vertical.json │ │ │ │ │ ├── emerald_block.json │ │ │ │ │ ├── emerald_ore.json │ │ │ │ │ ├── enchanting_table.json │ │ │ │ │ ├── end_portal.json │ │ │ │ │ ├── end_portal_frame.json │ │ │ │ │ ├── end_portal_frame_filled.json │ │ │ │ │ ├── end_rod.json │ │ │ │ │ ├── end_stone.json │ │ │ │ │ ├── end_stone_brick_slab.json │ │ │ │ │ ├── end_stone_brick_slab_top.json │ │ │ │ │ ├── end_stone_brick_stairs.json │ │ │ │ │ ├── end_stone_brick_stairs_inner.json │ │ │ │ │ ├── end_stone_brick_stairs_outer.json │ │ │ │ │ ├── end_stone_brick_wall_inventory.json │ │ │ │ │ ├── end_stone_brick_wall_post.json │ │ │ │ │ ├── end_stone_brick_wall_side.json │ │ │ │ │ ├── end_stone_brick_wall_side_tall.json │ │ │ │ │ ├── end_stone_bricks.json │ │ │ │ │ ├── ender_chest.json │ │ │ │ │ ├── exposed_chiseled_copper.json │ │ │ │ │ ├── exposed_copper.json │ │ │ │ │ ├── exposed_copper_bulb.json │ │ │ │ │ ├── exposed_copper_bulb_lit.json │ │ │ │ │ ├── exposed_copper_bulb_lit_powered.json │ │ │ │ │ ├── exposed_copper_bulb_powered.json │ │ │ │ │ ├── exposed_copper_door_bottom_left.json │ │ │ │ │ ├── exposed_copper_door_bottom_left_open.json │ │ │ │ │ ├── exposed_copper_door_bottom_right.json │ │ │ │ │ ├── exposed_copper_door_bottom_right_open.json │ │ │ │ │ ├── exposed_copper_door_top_left.json │ │ │ │ │ ├── exposed_copper_door_top_left_open.json │ │ │ │ │ ├── exposed_copper_door_top_right.json │ │ │ │ │ ├── exposed_copper_door_top_right_open.json │ │ │ │ │ ├── exposed_copper_grate.json │ │ │ │ │ ├── exposed_copper_trapdoor_bottom.json │ │ │ │ │ ├── exposed_copper_trapdoor_open.json │ │ │ │ │ ├── exposed_copper_trapdoor_top.json │ │ │ │ │ ├── exposed_cut_copper.json │ │ │ │ │ ├── exposed_cut_copper_slab.json │ │ │ │ │ ├── exposed_cut_copper_slab_top.json │ │ │ │ │ ├── exposed_cut_copper_stairs.json │ │ │ │ │ ├── exposed_cut_copper_stairs_inner.json │ │ │ │ │ ├── exposed_cut_copper_stairs_outer.json │ │ │ │ │ ├── farmland.json │ │ │ │ │ ├── farmland_moist.json │ │ │ │ │ ├── fence_inventory.json │ │ │ │ │ ├── fence_post.json │ │ │ │ │ ├── fence_side.json │ │ │ │ │ ├── fern.json │ │ │ │ │ ├── fire_coral.json │ │ │ │ │ ├── fire_coral_block.json │ │ │ │ │ ├── fire_coral_fan.json │ │ │ │ │ ├── fire_coral_wall_fan.json │ │ │ │ │ ├── fire_floor0.json │ │ │ │ │ ├── fire_floor1.json │ │ │ │ │ ├── fire_side0.json │ │ │ │ │ ├── fire_side1.json │ │ │ │ │ ├── fire_side_alt0.json │ │ │ │ │ ├── fire_side_alt1.json │ │ │ │ │ ├── fire_up0.json │ │ │ │ │ ├── fire_up1.json │ │ │ │ │ ├── fire_up_alt0.json │ │ │ │ │ ├── fire_up_alt1.json │ │ │ │ │ ├── fletching_table.json │ │ │ │ │ ├── flower_pot.json │ │ │ │ │ ├── flower_pot_cross.json │ │ │ │ │ ├── flowerbed_1.json │ │ │ │ │ ├── flowerbed_2.json │ │ │ │ │ ├── flowerbed_3.json │ │ │ │ │ ├── flowerbed_4.json │ │ │ │ │ ├── flowering_azalea.json │ │ │ │ │ ├── flowering_azalea_leaves.json │ │ │ │ │ ├── four_dead_sea_pickles.json │ │ │ │ │ ├── four_sea_pickles.json │ │ │ │ │ ├── four_slightly_cracked_turtle_eggs.json │ │ │ │ │ ├── four_turtle_eggs.json │ │ │ │ │ ├── four_very_cracked_turtle_eggs.json │ │ │ │ │ ├── frogspawn.json │ │ │ │ │ ├── frosted_ice_0.json │ │ │ │ │ ├── frosted_ice_1.json │ │ │ │ │ ├── frosted_ice_2.json │ │ │ │ │ ├── frosted_ice_3.json │ │ │ │ │ ├── furnace.json │ │ │ │ │ ├── furnace_on.json │ │ │ │ │ ├── gilded_blackstone.json │ │ │ │ │ ├── glass.json │ │ │ │ │ ├── glass_pane_noside.json │ │ │ │ │ ├── glass_pane_noside_alt.json │ │ │ │ │ ├── glass_pane_post.json │ │ │ │ │ ├── glass_pane_side.json │ │ │ │ │ ├── glass_pane_side_alt.json │ │ │ │ │ ├── glow_item_frame.json │ │ │ │ │ ├── glow_item_frame_map.json │ │ │ │ │ ├── glow_lichen.json │ │ │ │ │ ├── glowstone.json │ │ │ │ │ ├── gold_block.json │ │ │ │ │ ├── gold_ore.json │ │ │ │ │ ├── granite.json │ │ │ │ │ ├── granite_slab.json │ │ │ │ │ ├── granite_slab_top.json │ │ │ │ │ ├── granite_stairs.json │ │ │ │ │ ├── granite_stairs_inner.json │ │ │ │ │ ├── granite_stairs_outer.json │ │ │ │ │ ├── granite_wall_inventory.json │ │ │ │ │ ├── granite_wall_post.json │ │ │ │ │ ├── granite_wall_side.json │ │ │ │ │ ├── granite_wall_side_tall.json │ │ │ │ │ ├── grass_block.json │ │ │ │ │ ├── grass_block_snow.json │ │ │ │ │ ├── gravel.json │ │ │ │ │ ├── gray_candle_cake.json │ │ │ │ │ ├── gray_candle_cake_lit.json │ │ │ │ │ ├── gray_candle_four_candles.json │ │ │ │ │ ├── gray_candle_four_candles_lit.json │ │ │ │ │ ├── gray_candle_one_candle.json │ │ │ │ │ ├── gray_candle_one_candle_lit.json │ │ │ │ │ ├── gray_candle_three_candles.json │ │ │ │ │ ├── gray_candle_three_candles_lit.json │ │ │ │ │ ├── gray_candle_two_candles.json │ │ │ │ │ ├── gray_candle_two_candles_lit.json │ │ │ │ │ ├── gray_carpet.json │ │ │ │ │ ├── gray_concrete.json │ │ │ │ │ ├── gray_concrete_powder.json │ │ │ │ │ ├── gray_glazed_terracotta.json │ │ │ │ │ ├── gray_shulker_box.json │ │ │ │ │ ├── gray_stained_glass.json │ │ │ │ │ ├── gray_stained_glass_pane_noside.json │ │ │ │ │ ├── gray_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── gray_stained_glass_pane_post.json │ │ │ │ │ ├── gray_stained_glass_pane_side.json │ │ │ │ │ ├── gray_stained_glass_pane_side_alt.json │ │ │ │ │ ├── gray_terracotta.json │ │ │ │ │ ├── gray_wool.json │ │ │ │ │ ├── green_candle_cake.json │ │ │ │ │ ├── green_candle_cake_lit.json │ │ │ │ │ ├── green_candle_four_candles.json │ │ │ │ │ ├── green_candle_four_candles_lit.json │ │ │ │ │ ├── green_candle_one_candle.json │ │ │ │ │ ├── green_candle_one_candle_lit.json │ │ │ │ │ ├── green_candle_three_candles.json │ │ │ │ │ ├── green_candle_three_candles_lit.json │ │ │ │ │ ├── green_candle_two_candles.json │ │ │ │ │ ├── green_candle_two_candles_lit.json │ │ │ │ │ ├── green_carpet.json │ │ │ │ │ ├── green_concrete.json │ │ │ │ │ ├── green_concrete_powder.json │ │ │ │ │ ├── green_glazed_terracotta.json │ │ │ │ │ ├── green_shulker_box.json │ │ │ │ │ ├── green_stained_glass.json │ │ │ │ │ ├── green_stained_glass_pane_noside.json │ │ │ │ │ ├── green_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── green_stained_glass_pane_post.json │ │ │ │ │ ├── green_stained_glass_pane_side.json │ │ │ │ │ ├── green_stained_glass_pane_side_alt.json │ │ │ │ │ ├── green_terracotta.json │ │ │ │ │ ├── green_wool.json │ │ │ │ │ ├── grindstone.json │ │ │ │ │ ├── hanging_roots.json │ │ │ │ │ ├── hay_block.json │ │ │ │ │ ├── hay_block_horizontal.json │ │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ │ ├── heavy_weighted_pressure_plate_down.json │ │ │ │ │ ├── honey_block.json │ │ │ │ │ ├── honeycomb_block.json │ │ │ │ │ ├── hopper.json │ │ │ │ │ ├── hopper_side.json │ │ │ │ │ ├── horn_coral.json │ │ │ │ │ ├── horn_coral_block.json │ │ │ │ │ ├── horn_coral_fan.json │ │ │ │ │ ├── horn_coral_wall_fan.json │ │ │ │ │ ├── ice.json │ │ │ │ │ ├── inner_stairs.json │ │ │ │ │ ├── iron_bars_cap.json │ │ │ │ │ ├── iron_bars_cap_alt.json │ │ │ │ │ ├── iron_bars_post.json │ │ │ │ │ ├── iron_bars_post_ends.json │ │ │ │ │ ├── iron_bars_side.json │ │ │ │ │ ├── iron_bars_side_alt.json │ │ │ │ │ ├── iron_block.json │ │ │ │ │ ├── iron_door_bottom_left.json │ │ │ │ │ ├── iron_door_bottom_left_open.json │ │ │ │ │ ├── iron_door_bottom_right.json │ │ │ │ │ ├── iron_door_bottom_right_open.json │ │ │ │ │ ├── iron_door_top_left.json │ │ │ │ │ ├── iron_door_top_left_open.json │ │ │ │ │ ├── iron_door_top_right.json │ │ │ │ │ ├── iron_door_top_right_open.json │ │ │ │ │ ├── iron_ore.json │ │ │ │ │ ├── iron_trapdoor_bottom.json │ │ │ │ │ ├── iron_trapdoor_open.json │ │ │ │ │ ├── iron_trapdoor_top.json │ │ │ │ │ ├── item_frame.json │ │ │ │ │ ├── item_frame_map.json │ │ │ │ │ ├── jack_o_lantern.json │ │ │ │ │ ├── jigsaw.json │ │ │ │ │ ├── jukebox.json │ │ │ │ │ ├── jungle_button.json │ │ │ │ │ ├── jungle_button_inventory.json │ │ │ │ │ ├── jungle_button_pressed.json │ │ │ │ │ ├── jungle_door_bottom_left.json │ │ │ │ │ ├── jungle_door_bottom_left_open.json │ │ │ │ │ ├── jungle_door_bottom_right.json │ │ │ │ │ ├── jungle_door_bottom_right_open.json │ │ │ │ │ ├── jungle_door_top_left.json │ │ │ │ │ ├── jungle_door_top_left_open.json │ │ │ │ │ ├── jungle_door_top_right.json │ │ │ │ │ ├── jungle_door_top_right_open.json │ │ │ │ │ ├── jungle_fence_gate.json │ │ │ │ │ ├── jungle_fence_gate_open.json │ │ │ │ │ ├── jungle_fence_gate_wall.json │ │ │ │ │ ├── jungle_fence_gate_wall_open.json │ │ │ │ │ ├── jungle_fence_inventory.json │ │ │ │ │ ├── jungle_fence_post.json │ │ │ │ │ ├── jungle_fence_side.json │ │ │ │ │ ├── jungle_hanging_sign.json │ │ │ │ │ ├── jungle_leaves.json │ │ │ │ │ ├── jungle_log.json │ │ │ │ │ ├── jungle_log_horizontal.json │ │ │ │ │ ├── jungle_planks.json │ │ │ │ │ ├── jungle_pressure_plate.json │ │ │ │ │ ├── jungle_pressure_plate_down.json │ │ │ │ │ ├── jungle_sapling.json │ │ │ │ │ ├── jungle_sign.json │ │ │ │ │ ├── jungle_slab.json │ │ │ │ │ ├── jungle_slab_top.json │ │ │ │ │ ├── jungle_stairs.json │ │ │ │ │ ├── jungle_stairs_inner.json │ │ │ │ │ ├── jungle_stairs_outer.json │ │ │ │ │ ├── jungle_trapdoor_bottom.json │ │ │ │ │ ├── jungle_trapdoor_open.json │ │ │ │ │ ├── jungle_trapdoor_top.json │ │ │ │ │ ├── jungle_wood.json │ │ │ │ │ ├── kelp.json │ │ │ │ │ ├── kelp_plant.json │ │ │ │ │ ├── ladder.json │ │ │ │ │ ├── lantern.json │ │ │ │ │ ├── lantern_hanging.json │ │ │ │ │ ├── lapis_block.json │ │ │ │ │ ├── lapis_ore.json │ │ │ │ │ ├── large_amethyst_bud.json │ │ │ │ │ ├── large_fern_bottom.json │ │ │ │ │ ├── large_fern_top.json │ │ │ │ │ ├── lava.json │ │ │ │ │ ├── lava_cauldron.json │ │ │ │ │ ├── leaves.json │ │ │ │ │ ├── lectern.json │ │ │ │ │ ├── lever.json │ │ │ │ │ ├── lever_on.json │ │ │ │ │ ├── light_00.json │ │ │ │ │ ├── light_01.json │ │ │ │ │ ├── light_02.json │ │ │ │ │ ├── light_03.json │ │ │ │ │ ├── light_04.json │ │ │ │ │ ├── light_05.json │ │ │ │ │ ├── light_06.json │ │ │ │ │ ├── light_07.json │ │ │ │ │ ├── light_08.json │ │ │ │ │ ├── light_09.json │ │ │ │ │ ├── light_10.json │ │ │ │ │ ├── light_11.json │ │ │ │ │ ├── light_12.json │ │ │ │ │ ├── light_13.json │ │ │ │ │ ├── light_14.json │ │ │ │ │ ├── light_15.json │ │ │ │ │ ├── light_blue_candle_cake.json │ │ │ │ │ ├── light_blue_candle_cake_lit.json │ │ │ │ │ ├── light_blue_candle_four_candles.json │ │ │ │ │ ├── light_blue_candle_four_candles_lit.json │ │ │ │ │ ├── light_blue_candle_one_candle.json │ │ │ │ │ ├── light_blue_candle_one_candle_lit.json │ │ │ │ │ ├── light_blue_candle_three_candles.json │ │ │ │ │ ├── light_blue_candle_three_candles_lit.json │ │ │ │ │ ├── light_blue_candle_two_candles.json │ │ │ │ │ ├── light_blue_candle_two_candles_lit.json │ │ │ │ │ ├── light_blue_carpet.json │ │ │ │ │ ├── light_blue_concrete.json │ │ │ │ │ ├── light_blue_concrete_powder.json │ │ │ │ │ ├── light_blue_glazed_terracotta.json │ │ │ │ │ ├── light_blue_shulker_box.json │ │ │ │ │ ├── light_blue_stained_glass.json │ │ │ │ │ ├── light_blue_stained_glass_pane_noside.json │ │ │ │ │ ├── light_blue_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── light_blue_stained_glass_pane_post.json │ │ │ │ │ ├── light_blue_stained_glass_pane_side.json │ │ │ │ │ ├── light_blue_stained_glass_pane_side_alt.json │ │ │ │ │ ├── light_blue_terracotta.json │ │ │ │ │ ├── light_blue_wool.json │ │ │ │ │ ├── light_gray_candle_cake.json │ │ │ │ │ ├── light_gray_candle_cake_lit.json │ │ │ │ │ ├── light_gray_candle_four_candles.json │ │ │ │ │ ├── light_gray_candle_four_candles_lit.json │ │ │ │ │ ├── light_gray_candle_one_candle.json │ │ │ │ │ ├── light_gray_candle_one_candle_lit.json │ │ │ │ │ ├── light_gray_candle_three_candles.json │ │ │ │ │ ├── light_gray_candle_three_candles_lit.json │ │ │ │ │ ├── light_gray_candle_two_candles.json │ │ │ │ │ ├── light_gray_candle_two_candles_lit.json │ │ │ │ │ ├── light_gray_carpet.json │ │ │ │ │ ├── light_gray_concrete.json │ │ │ │ │ ├── light_gray_concrete_powder.json │ │ │ │ │ ├── light_gray_glazed_terracotta.json │ │ │ │ │ ├── light_gray_shulker_box.json │ │ │ │ │ ├── light_gray_stained_glass.json │ │ │ │ │ ├── light_gray_stained_glass_pane_noside.json │ │ │ │ │ ├── light_gray_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── light_gray_stained_glass_pane_post.json │ │ │ │ │ ├── light_gray_stained_glass_pane_side.json │ │ │ │ │ ├── light_gray_stained_glass_pane_side_alt.json │ │ │ │ │ ├── light_gray_terracotta.json │ │ │ │ │ ├── light_gray_wool.json │ │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ │ ├── light_weighted_pressure_plate_down.json │ │ │ │ │ ├── lightning_rod.json │ │ │ │ │ ├── lightning_rod_on.json │ │ │ │ │ ├── lilac_bottom.json │ │ │ │ │ ├── lilac_top.json │ │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ │ ├── lily_pad.json │ │ │ │ │ ├── lime_candle_cake.json │ │ │ │ │ ├── lime_candle_cake_lit.json │ │ │ │ │ ├── lime_candle_four_candles.json │ │ │ │ │ ├── lime_candle_four_candles_lit.json │ │ │ │ │ ├── lime_candle_one_candle.json │ │ │ │ │ ├── lime_candle_one_candle_lit.json │ │ │ │ │ ├── lime_candle_three_candles.json │ │ │ │ │ ├── lime_candle_three_candles_lit.json │ │ │ │ │ ├── lime_candle_two_candles.json │ │ │ │ │ ├── lime_candle_two_candles_lit.json │ │ │ │ │ ├── lime_carpet.json │ │ │ │ │ ├── lime_concrete.json │ │ │ │ │ ├── lime_concrete_powder.json │ │ │ │ │ ├── lime_glazed_terracotta.json │ │ │ │ │ ├── lime_shulker_box.json │ │ │ │ │ ├── lime_stained_glass.json │ │ │ │ │ ├── lime_stained_glass_pane_noside.json │ │ │ │ │ ├── lime_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── lime_stained_glass_pane_post.json │ │ │ │ │ ├── lime_stained_glass_pane_side.json │ │ │ │ │ ├── lime_stained_glass_pane_side_alt.json │ │ │ │ │ ├── lime_terracotta.json │ │ │ │ │ ├── lime_wool.json │ │ │ │ │ ├── lodestone.json │ │ │ │ │ ├── loom.json │ │ │ │ │ ├── magenta_candle_cake.json │ │ │ │ │ ├── magenta_candle_cake_lit.json │ │ │ │ │ ├── magenta_candle_four_candles.json │ │ │ │ │ ├── magenta_candle_four_candles_lit.json │ │ │ │ │ ├── magenta_candle_one_candle.json │ │ │ │ │ ├── magenta_candle_one_candle_lit.json │ │ │ │ │ ├── magenta_candle_three_candles.json │ │ │ │ │ ├── magenta_candle_three_candles_lit.json │ │ │ │ │ ├── magenta_candle_two_candles.json │ │ │ │ │ ├── magenta_candle_two_candles_lit.json │ │ │ │ │ ├── magenta_carpet.json │ │ │ │ │ ├── magenta_concrete.json │ │ │ │ │ ├── magenta_concrete_powder.json │ │ │ │ │ ├── magenta_glazed_terracotta.json │ │ │ │ │ ├── magenta_shulker_box.json │ │ │ │ │ ├── magenta_stained_glass.json │ │ │ │ │ ├── magenta_stained_glass_pane_noside.json │ │ │ │ │ ├── magenta_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── magenta_stained_glass_pane_post.json │ │ │ │ │ ├── magenta_stained_glass_pane_side.json │ │ │ │ │ ├── magenta_stained_glass_pane_side_alt.json │ │ │ │ │ ├── magenta_terracotta.json │ │ │ │ │ ├── magenta_wool.json │ │ │ │ │ ├── magma_block.json │ │ │ │ │ ├── mangrove_button.json │ │ │ │ │ ├── mangrove_button_inventory.json │ │ │ │ │ ├── mangrove_button_pressed.json │ │ │ │ │ ├── mangrove_door_bottom_left.json │ │ │ │ │ ├── mangrove_door_bottom_left_open.json │ │ │ │ │ ├── mangrove_door_bottom_right.json │ │ │ │ │ ├── mangrove_door_bottom_right_open.json │ │ │ │ │ ├── mangrove_door_top_left.json │ │ │ │ │ ├── mangrove_door_top_left_open.json │ │ │ │ │ ├── mangrove_door_top_right.json │ │ │ │ │ ├── mangrove_door_top_right_open.json │ │ │ │ │ ├── mangrove_fence_gate.json │ │ │ │ │ ├── mangrove_fence_gate_open.json │ │ │ │ │ ├── mangrove_fence_gate_wall.json │ │ │ │ │ ├── mangrove_fence_gate_wall_open.json │ │ │ │ │ ├── mangrove_fence_inventory.json │ │ │ │ │ ├── mangrove_fence_post.json │ │ │ │ │ ├── mangrove_fence_side.json │ │ │ │ │ ├── mangrove_hanging_sign.json │ │ │ │ │ ├── mangrove_leaves.json │ │ │ │ │ ├── mangrove_log.json │ │ │ │ │ ├── mangrove_log_horizontal.json │ │ │ │ │ ├── mangrove_planks.json │ │ │ │ │ ├── mangrove_pressure_plate.json │ │ │ │ │ ├── mangrove_pressure_plate_down.json │ │ │ │ │ ├── mangrove_propagule.json │ │ │ │ │ ├── mangrove_propagule_hanging_0.json │ │ │ │ │ ├── mangrove_propagule_hanging_1.json │ │ │ │ │ ├── mangrove_propagule_hanging_2.json │ │ │ │ │ ├── mangrove_propagule_hanging_3.json │ │ │ │ │ ├── mangrove_propagule_hanging_4.json │ │ │ │ │ ├── mangrove_roots.json │ │ │ │ │ ├── mangrove_sign.json │ │ │ │ │ ├── mangrove_slab.json │ │ │ │ │ ├── mangrove_slab_top.json │ │ │ │ │ ├── mangrove_stairs.json │ │ │ │ │ ├── mangrove_stairs_inner.json │ │ │ │ │ ├── mangrove_stairs_outer.json │ │ │ │ │ ├── mangrove_trapdoor_bottom.json │ │ │ │ │ ├── mangrove_trapdoor_open.json │ │ │ │ │ ├── mangrove_trapdoor_top.json │ │ │ │ │ ├── mangrove_wood.json │ │ │ │ │ ├── medium_amethyst_bud.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── melon_stem_stage0.json │ │ │ │ │ ├── melon_stem_stage1.json │ │ │ │ │ ├── melon_stem_stage2.json │ │ │ │ │ ├── melon_stem_stage3.json │ │ │ │ │ ├── melon_stem_stage4.json │ │ │ │ │ ├── melon_stem_stage5.json │ │ │ │ │ ├── melon_stem_stage6.json │ │ │ │ │ ├── melon_stem_stage7.json │ │ │ │ │ ├── moss_block.json │ │ │ │ │ ├── moss_carpet.json │ │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ │ ├── mossy_cobblestone_slab.json │ │ │ │ │ ├── mossy_cobblestone_slab_top.json │ │ │ │ │ ├── mossy_cobblestone_stairs.json │ │ │ │ │ ├── mossy_cobblestone_stairs_inner.json │ │ │ │ │ ├── mossy_cobblestone_stairs_outer.json │ │ │ │ │ ├── mossy_cobblestone_wall_inventory.json │ │ │ │ │ ├── mossy_cobblestone_wall_post.json │ │ │ │ │ ├── mossy_cobblestone_wall_side.json │ │ │ │ │ ├── mossy_cobblestone_wall_side_tall.json │ │ │ │ │ ├── mossy_stone_brick_slab.json │ │ │ │ │ ├── mossy_stone_brick_slab_top.json │ │ │ │ │ ├── mossy_stone_brick_stairs.json │ │ │ │ │ ├── mossy_stone_brick_stairs_inner.json │ │ │ │ │ ├── mossy_stone_brick_stairs_outer.json │ │ │ │ │ ├── mossy_stone_brick_wall_inventory.json │ │ │ │ │ ├── mossy_stone_brick_wall_post.json │ │ │ │ │ ├── mossy_stone_brick_wall_side.json │ │ │ │ │ ├── mossy_stone_brick_wall_side_tall.json │ │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ │ ├── moving_piston.json │ │ │ │ │ ├── mud.json │ │ │ │ │ ├── mud_brick_slab.json │ │ │ │ │ ├── mud_brick_slab_top.json │ │ │ │ │ ├── mud_brick_stairs.json │ │ │ │ │ ├── mud_brick_stairs_inner.json │ │ │ │ │ ├── mud_brick_stairs_outer.json │ │ │ │ │ ├── mud_brick_wall_inventory.json │ │ │ │ │ ├── mud_brick_wall_post.json │ │ │ │ │ ├── mud_brick_wall_side.json │ │ │ │ │ ├── mud_brick_wall_side_tall.json │ │ │ │ │ ├── mud_bricks.json │ │ │ │ │ ├── mud_bricks_north_west_mirrored.json │ │ │ │ │ ├── muddy_mangrove_roots.json │ │ │ │ │ ├── mushroom_block_inside.json │ │ │ │ │ ├── mushroom_stem.json │ │ │ │ │ ├── mushroom_stem_inventory.json │ │ │ │ │ ├── mycelium.json │ │ │ │ │ ├── nether_brick_fence_inventory.json │ │ │ │ │ ├── nether_brick_fence_post.json │ │ │ │ │ ├── nether_brick_fence_side.json │ │ │ │ │ ├── nether_brick_slab.json │ │ │ │ │ ├── nether_brick_slab_top.json │ │ │ │ │ ├── nether_brick_stairs.json │ │ │ │ │ ├── nether_brick_stairs_inner.json │ │ │ │ │ ├── nether_brick_stairs_outer.json │ │ │ │ │ ├── nether_brick_wall_inventory.json │ │ │ │ │ ├── nether_brick_wall_post.json │ │ │ │ │ ├── nether_brick_wall_side.json │ │ │ │ │ ├── nether_brick_wall_side_tall.json │ │ │ │ │ ├── nether_bricks.json │ │ │ │ │ ├── nether_gold_ore.json │ │ │ │ │ ├── nether_portal_ew.json │ │ │ │ │ ├── nether_portal_ns.json │ │ │ │ │ ├── nether_quartz_ore.json │ │ │ │ │ ├── nether_sprouts.json │ │ │ │ │ ├── nether_wart_block.json │ │ │ │ │ ├── nether_wart_stage0.json │ │ │ │ │ ├── nether_wart_stage1.json │ │ │ │ │ ├── nether_wart_stage2.json │ │ │ │ │ ├── netherite_block.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ ├── note_block.json │ │ │ │ │ ├── oak_button.json │ │ │ │ │ ├── oak_button_inventory.json │ │ │ │ │ ├── oak_button_pressed.json │ │ │ │ │ ├── oak_door_bottom_left.json │ │ │ │ │ ├── oak_door_bottom_left_open.json │ │ │ │ │ ├── oak_door_bottom_right.json │ │ │ │ │ ├── oak_door_bottom_right_open.json │ │ │ │ │ ├── oak_door_top_left.json │ │ │ │ │ ├── oak_door_top_left_open.json │ │ │ │ │ ├── oak_door_top_right.json │ │ │ │ │ ├── oak_door_top_right_open.json │ │ │ │ │ ├── oak_fence_gate.json │ │ │ │ │ ├── oak_fence_gate_open.json │ │ │ │ │ ├── oak_fence_gate_wall.json │ │ │ │ │ ├── oak_fence_gate_wall_open.json │ │ │ │ │ ├── oak_fence_inventory.json │ │ │ │ │ ├── oak_fence_post.json │ │ │ │ │ ├── oak_fence_side.json │ │ │ │ │ ├── oak_hanging_sign.json │ │ │ │ │ ├── oak_leaves.json │ │ │ │ │ ├── oak_log.json │ │ │ │ │ ├── oak_log_horizontal.json │ │ │ │ │ ├── oak_planks.json │ │ │ │ │ ├── oak_pressure_plate.json │ │ │ │ │ ├── oak_pressure_plate_down.json │ │ │ │ │ ├── oak_sapling.json │ │ │ │ │ ├── oak_sign.json │ │ │ │ │ ├── oak_slab.json │ │ │ │ │ ├── oak_slab_top.json │ │ │ │ │ ├── oak_stairs.json │ │ │ │ │ ├── oak_stairs_inner.json │ │ │ │ │ ├── oak_stairs_outer.json │ │ │ │ │ ├── oak_trapdoor_bottom.json │ │ │ │ │ ├── oak_trapdoor_open.json │ │ │ │ │ ├── oak_trapdoor_top.json │ │ │ │ │ ├── oak_wood.json │ │ │ │ │ ├── observer.json │ │ │ │ │ ├── observer_on.json │ │ │ │ │ ├── obsidian.json │ │ │ │ │ ├── ochre_froglight.json │ │ │ │ │ ├── ochre_froglight_horizontal.json │ │ │ │ │ ├── orange_candle_cake.json │ │ │ │ │ ├── orange_candle_cake_lit.json │ │ │ │ │ ├── orange_candle_four_candles.json │ │ │ │ │ ├── orange_candle_four_candles_lit.json │ │ │ │ │ ├── orange_candle_one_candle.json │ │ │ │ │ ├── orange_candle_one_candle_lit.json │ │ │ │ │ ├── orange_candle_three_candles.json │ │ │ │ │ ├── orange_candle_three_candles_lit.json │ │ │ │ │ ├── orange_candle_two_candles.json │ │ │ │ │ ├── orange_candle_two_candles_lit.json │ │ │ │ │ ├── orange_carpet.json │ │ │ │ │ ├── orange_concrete.json │ │ │ │ │ ├── orange_concrete_powder.json │ │ │ │ │ ├── orange_glazed_terracotta.json │ │ │ │ │ ├── orange_shulker_box.json │ │ │ │ │ ├── orange_stained_glass.json │ │ │ │ │ ├── orange_stained_glass_pane_noside.json │ │ │ │ │ ├── orange_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── orange_stained_glass_pane_post.json │ │ │ │ │ ├── orange_stained_glass_pane_side.json │ │ │ │ │ ├── orange_stained_glass_pane_side_alt.json │ │ │ │ │ ├── orange_terracotta.json │ │ │ │ │ ├── orange_tulip.json │ │ │ │ │ ├── orange_wool.json │ │ │ │ │ ├── orientable.json │ │ │ │ │ ├── orientable_vertical.json │ │ │ │ │ ├── orientable_with_bottom.json │ │ │ │ │ ├── outer_stairs.json │ │ │ │ │ ├── oxeye_daisy.json │ │ │ │ │ ├── oxidized_chiseled_copper.json │ │ │ │ │ ├── oxidized_copper.json │ │ │ │ │ ├── oxidized_copper_bulb.json │ │ │ │ │ ├── oxidized_copper_bulb_lit.json │ │ │ │ │ ├── oxidized_copper_bulb_lit_powered.json │ │ │ │ │ ├── oxidized_copper_bulb_powered.json │ │ │ │ │ ├── oxidized_copper_door_bottom_left.json │ │ │ │ │ ├── oxidized_copper_door_bottom_left_open.json │ │ │ │ │ ├── oxidized_copper_door_bottom_right.json │ │ │ │ │ ├── oxidized_copper_door_bottom_right_open.json │ │ │ │ │ ├── oxidized_copper_door_top_left.json │ │ │ │ │ ├── oxidized_copper_door_top_left_open.json │ │ │ │ │ ├── oxidized_copper_door_top_right.json │ │ │ │ │ ├── oxidized_copper_door_top_right_open.json │ │ │ │ │ ├── oxidized_copper_grate.json │ │ │ │ │ ├── oxidized_copper_trapdoor_bottom.json │ │ │ │ │ ├── oxidized_copper_trapdoor_open.json │ │ │ │ │ ├── oxidized_copper_trapdoor_top.json │ │ │ │ │ ├── oxidized_cut_copper.json │ │ │ │ │ ├── oxidized_cut_copper_slab.json │ │ │ │ │ ├── oxidized_cut_copper_slab_top.json │ │ │ │ │ ├── oxidized_cut_copper_stairs.json │ │ │ │ │ ├── oxidized_cut_copper_stairs_inner.json │ │ │ │ │ ├── oxidized_cut_copper_stairs_outer.json │ │ │ │ │ ├── packed_ice.json │ │ │ │ │ ├── packed_mud.json │ │ │ │ │ ├── pearlescent_froglight.json │ │ │ │ │ ├── pearlescent_froglight_horizontal.json │ │ │ │ │ ├── peony_bottom.json │ │ │ │ │ ├── peony_top.json │ │ │ │ │ ├── petrified_oak_slab.json │ │ │ │ │ ├── petrified_oak_slab_top.json │ │ │ │ │ ├── pink_candle_cake.json │ │ │ │ │ ├── pink_candle_cake_lit.json │ │ │ │ │ ├── pink_candle_four_candles.json │ │ │ │ │ ├── pink_candle_four_candles_lit.json │ │ │ │ │ ├── pink_candle_one_candle.json │ │ │ │ │ ├── pink_candle_one_candle_lit.json │ │ │ │ │ ├── pink_candle_three_candles.json │ │ │ │ │ ├── pink_candle_three_candles_lit.json │ │ │ │ │ ├── pink_candle_two_candles.json │ │ │ │ │ ├── pink_candle_two_candles_lit.json │ │ │ │ │ ├── pink_carpet.json │ │ │ │ │ ├── pink_concrete.json │ │ │ │ │ ├── pink_concrete_powder.json │ │ │ │ │ ├── pink_glazed_terracotta.json │ │ │ │ │ ├── pink_petals_1.json │ │ │ │ │ ├── pink_petals_2.json │ │ │ │ │ ├── pink_petals_3.json │ │ │ │ │ ├── pink_petals_4.json │ │ │ │ │ ├── pink_shulker_box.json │ │ │ │ │ ├── pink_stained_glass.json │ │ │ │ │ ├── pink_stained_glass_pane_noside.json │ │ │ │ │ ├── pink_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── pink_stained_glass_pane_post.json │ │ │ │ │ ├── pink_stained_glass_pane_side.json │ │ │ │ │ ├── pink_stained_glass_pane_side_alt.json │ │ │ │ │ ├── pink_terracotta.json │ │ │ │ │ ├── pink_tulip.json │ │ │ │ │ ├── pink_wool.json │ │ │ │ │ ├── piston.json │ │ │ │ │ ├── piston_base.json │ │ │ │ │ ├── piston_extended.json │ │ │ │ │ ├── piston_head.json │ │ │ │ │ ├── piston_head_short.json │ │ │ │ │ ├── piston_head_short_sticky.json │ │ │ │ │ ├── piston_head_sticky.json │ │ │ │ │ ├── piston_inventory.json │ │ │ │ │ ├── pitcher_crop_bottom_stage_0.json │ │ │ │ │ ├── pitcher_crop_bottom_stage_1.json │ │ │ │ │ ├── pitcher_crop_bottom_stage_2.json │ │ │ │ │ ├── pitcher_crop_bottom_stage_3.json │ │ │ │ │ ├── pitcher_crop_bottom_stage_4.json │ │ │ │ │ ├── pitcher_crop_top_stage_0.json │ │ │ │ │ ├── pitcher_crop_top_stage_1.json │ │ │ │ │ ├── pitcher_crop_top_stage_2.json │ │ │ │ │ ├── pitcher_crop_top_stage_3.json │ │ │ │ │ ├── pitcher_crop_top_stage_4.json │ │ │ │ │ ├── pitcher_plant_bottom.json │ │ │ │ │ ├── pitcher_plant_top.json │ │ │ │ │ ├── podzol.json │ │ │ │ │ ├── pointed_dripstone.json │ │ │ │ │ ├── pointed_dripstone_down_base.json │ │ │ │ │ ├── pointed_dripstone_down_frustum.json │ │ │ │ │ ├── pointed_dripstone_down_middle.json │ │ │ │ │ ├── pointed_dripstone_down_tip.json │ │ │ │ │ ├── pointed_dripstone_down_tip_merge.json │ │ │ │ │ ├── pointed_dripstone_up_base.json │ │ │ │ │ ├── pointed_dripstone_up_frustum.json │ │ │ │ │ ├── pointed_dripstone_up_middle.json │ │ │ │ │ ├── pointed_dripstone_up_tip.json │ │ │ │ │ ├── pointed_dripstone_up_tip_merge.json │ │ │ │ │ ├── polished_andesite.json │ │ │ │ │ ├── polished_andesite_slab.json │ │ │ │ │ ├── polished_andesite_slab_top.json │ │ │ │ │ ├── polished_andesite_stairs.json │ │ │ │ │ ├── polished_andesite_stairs_inner.json │ │ │ │ │ ├── polished_andesite_stairs_outer.json │ │ │ │ │ ├── polished_basalt.json │ │ │ │ │ ├── polished_blackstone.json │ │ │ │ │ ├── polished_blackstone_brick_slab.json │ │ │ │ │ ├── polished_blackstone_brick_slab_top.json │ │ │ │ │ ├── polished_blackstone_brick_stairs.json │ │ │ │ │ ├── polished_blackstone_brick_stairs_inner.json │ │ │ │ │ ├── polished_blackstone_brick_stairs_outer.json │ │ │ │ │ ├── polished_blackstone_brick_wall_inventory.json │ │ │ │ │ ├── polished_blackstone_brick_wall_post.json │ │ │ │ │ ├── polished_blackstone_brick_wall_side.json │ │ │ │ │ ├── polished_blackstone_brick_wall_side_tall.json │ │ │ │ │ ├── polished_blackstone_bricks.json │ │ │ │ │ ├── polished_blackstone_button.json │ │ │ │ │ ├── polished_blackstone_button_inventory.json │ │ │ │ │ ├── polished_blackstone_button_pressed.json │ │ │ │ │ ├── polished_blackstone_pressure_plate.json │ │ │ │ │ ├── polished_blackstone_pressure_plate_down.json │ │ │ │ │ ├── polished_blackstone_slab.json │ │ │ │ │ ├── polished_blackstone_slab_top.json │ │ │ │ │ ├── polished_blackstone_stairs.json │ │ │ │ │ ├── polished_blackstone_stairs_inner.json │ │ │ │ │ ├── polished_blackstone_stairs_outer.json │ │ │ │ │ ├── polished_blackstone_wall_inventory.json │ │ │ │ │ ├── polished_blackstone_wall_post.json │ │ │ │ │ ├── polished_blackstone_wall_side.json │ │ │ │ │ ├── polished_blackstone_wall_side_tall.json │ │ │ │ │ ├── polished_deepslate.json │ │ │ │ │ ├── polished_deepslate_slab.json │ │ │ │ │ ├── polished_deepslate_slab_top.json │ │ │ │ │ ├── polished_deepslate_stairs.json │ │ │ │ │ ├── polished_deepslate_stairs_inner.json │ │ │ │ │ ├── polished_deepslate_stairs_outer.json │ │ │ │ │ ├── polished_deepslate_wall_inventory.json │ │ │ │ │ ├── polished_deepslate_wall_post.json │ │ │ │ │ ├── polished_deepslate_wall_side.json │ │ │ │ │ ├── polished_deepslate_wall_side_tall.json │ │ │ │ │ ├── polished_diorite.json │ │ │ │ │ ├── polished_diorite_slab.json │ │ │ │ │ ├── polished_diorite_slab_top.json │ │ │ │ │ ├── polished_diorite_stairs.json │ │ │ │ │ ├── polished_diorite_stairs_inner.json │ │ │ │ │ ├── polished_diorite_stairs_outer.json │ │ │ │ │ ├── polished_granite.json │ │ │ │ │ ├── polished_granite_slab.json │ │ │ │ │ ├── polished_granite_slab_top.json │ │ │ │ │ ├── polished_granite_stairs.json │ │ │ │ │ ├── polished_granite_stairs_inner.json │ │ │ │ │ ├── polished_granite_stairs_outer.json │ │ │ │ │ ├── polished_tuff.json │ │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ │ ├── polished_tuff_slab_top.json │ │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ │ ├── polished_tuff_stairs_inner.json │ │ │ │ │ ├── polished_tuff_stairs_outer.json │ │ │ │ │ ├── polished_tuff_wall_inventory.json │ │ │ │ │ ├── polished_tuff_wall_post.json │ │ │ │ │ ├── polished_tuff_wall_side.json │ │ │ │ │ ├── polished_tuff_wall_side_tall.json │ │ │ │ │ ├── poppy.json │ │ │ │ │ ├── potatoes_stage0.json │ │ │ │ │ ├── potatoes_stage1.json │ │ │ │ │ ├── potatoes_stage2.json │ │ │ │ │ ├── potatoes_stage3.json │ │ │ │ │ ├── potted_acacia_sapling.json │ │ │ │ │ ├── potted_allium.json │ │ │ │ │ ├── potted_azalea_bush.json │ │ │ │ │ ├── potted_azure_bluet.json │ │ │ │ │ ├── potted_bamboo.json │ │ │ │ │ ├── potted_birch_sapling.json │ │ │ │ │ ├── potted_blue_orchid.json │ │ │ │ │ ├── potted_brown_mushroom.json │ │ │ │ │ ├── potted_cactus.json │ │ │ │ │ ├── potted_cherry_sapling.json │ │ │ │ │ ├── potted_cornflower.json │ │ │ │ │ ├── potted_crimson_fungus.json │ │ │ │ │ ├── potted_crimson_roots.json │ │ │ │ │ ├── potted_dandelion.json │ │ │ │ │ ├── potted_dark_oak_sapling.json │ │ │ │ │ ├── potted_dead_bush.json │ │ │ │ │ ├── potted_fern.json │ │ │ │ │ ├── potted_flowering_azalea_bush.json │ │ │ │ │ ├── potted_jungle_sapling.json │ │ │ │ │ ├── potted_lily_of_the_valley.json │ │ │ │ │ ├── potted_mangrove_propagule.json │ │ │ │ │ ├── potted_oak_sapling.json │ │ │ │ │ ├── potted_orange_tulip.json │ │ │ │ │ ├── potted_oxeye_daisy.json │ │ │ │ │ ├── potted_pink_tulip.json │ │ │ │ │ ├── potted_poppy.json │ │ │ │ │ ├── potted_red_mushroom.json │ │ │ │ │ ├── potted_red_tulip.json │ │ │ │ │ ├── potted_spruce_sapling.json │ │ │ │ │ ├── potted_torchflower.json │ │ │ │ │ ├── potted_warped_fungus.json │ │ │ │ │ ├── potted_warped_roots.json │ │ │ │ │ ├── potted_white_tulip.json │ │ │ │ │ ├── potted_wither_rose.json │ │ │ │ │ ├── powder_snow.json │ │ │ │ │ ├── powder_snow_cauldron_full.json │ │ │ │ │ ├── powder_snow_cauldron_level1.json │ │ │ │ │ ├── powder_snow_cauldron_level2.json │ │ │ │ │ ├── powered_rail.json │ │ │ │ │ ├── powered_rail_on.json │ │ │ │ │ ├── powered_rail_on_raised_ne.json │ │ │ │ │ ├── powered_rail_on_raised_sw.json │ │ │ │ │ ├── powered_rail_raised_ne.json │ │ │ │ │ ├── powered_rail_raised_sw.json │ │ │ │ │ ├── pressure_plate_down.json │ │ │ │ │ ├── pressure_plate_up.json │ │ │ │ │ ├── prismarine.json │ │ │ │ │ ├── prismarine_brick_slab.json │ │ │ │ │ ├── prismarine_brick_slab_top.json │ │ │ │ │ ├── prismarine_brick_stairs.json │ │ │ │ │ ├── prismarine_brick_stairs_inner.json │ │ │ │ │ ├── prismarine_brick_stairs_outer.json │ │ │ │ │ ├── prismarine_bricks.json │ │ │ │ │ ├── prismarine_slab.json │ │ │ │ │ ├── prismarine_slab_top.json │ │ │ │ │ ├── prismarine_stairs.json │ │ │ │ │ ├── prismarine_stairs_inner.json │ │ │ │ │ ├── prismarine_stairs_outer.json │ │ │ │ │ ├── prismarine_wall_inventory.json │ │ │ │ │ ├── prismarine_wall_post.json │ │ │ │ │ ├── prismarine_wall_side.json │ │ │ │ │ ├── prismarine_wall_side_tall.json │ │ │ │ │ ├── pumpkin.json │ │ │ │ │ ├── pumpkin_stem_stage0.json │ │ │ │ │ ├── pumpkin_stem_stage1.json │ │ │ │ │ ├── pumpkin_stem_stage2.json │ │ │ │ │ ├── pumpkin_stem_stage3.json │ │ │ │ │ ├── pumpkin_stem_stage4.json │ │ │ │ │ ├── pumpkin_stem_stage5.json │ │ │ │ │ ├── pumpkin_stem_stage6.json │ │ │ │ │ ├── pumpkin_stem_stage7.json │ │ │ │ │ ├── purple_candle_cake.json │ │ │ │ │ ├── purple_candle_cake_lit.json │ │ │ │ │ ├── purple_candle_four_candles.json │ │ │ │ │ ├── purple_candle_four_candles_lit.json │ │ │ │ │ ├── purple_candle_one_candle.json │ │ │ │ │ ├── purple_candle_one_candle_lit.json │ │ │ │ │ ├── purple_candle_three_candles.json │ │ │ │ │ ├── purple_candle_three_candles_lit.json │ │ │ │ │ ├── purple_candle_two_candles.json │ │ │ │ │ ├── purple_candle_two_candles_lit.json │ │ │ │ │ ├── purple_carpet.json │ │ │ │ │ ├── purple_concrete.json │ │ │ │ │ ├── purple_concrete_powder.json │ │ │ │ │ ├── purple_glazed_terracotta.json │ │ │ │ │ ├── purple_shulker_box.json │ │ │ │ │ ├── purple_stained_glass.json │ │ │ │ │ ├── purple_stained_glass_pane_noside.json │ │ │ │ │ ├── purple_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── purple_stained_glass_pane_post.json │ │ │ │ │ ├── purple_stained_glass_pane_side.json │ │ │ │ │ ├── purple_stained_glass_pane_side_alt.json │ │ │ │ │ ├── purple_terracotta.json │ │ │ │ │ ├── purple_wool.json │ │ │ │ │ ├── purpur_block.json │ │ │ │ │ ├── purpur_pillar.json │ │ │ │ │ ├── purpur_pillar_horizontal.json │ │ │ │ │ ├── purpur_slab.json │ │ │ │ │ ├── purpur_slab_top.json │ │ │ │ │ ├── purpur_stairs.json │ │ │ │ │ ├── purpur_stairs_inner.json │ │ │ │ │ ├── purpur_stairs_outer.json │ │ │ │ │ ├── quartz_block.json │ │ │ │ │ ├── quartz_bricks.json │ │ │ │ │ ├── quartz_pillar.json │ │ │ │ │ ├── quartz_pillar_horizontal.json │ │ │ │ │ ├── quartz_slab.json │ │ │ │ │ ├── quartz_slab_top.json │ │ │ │ │ ├── quartz_stairs.json │ │ │ │ │ ├── quartz_stairs_inner.json │ │ │ │ │ ├── quartz_stairs_outer.json │ │ │ │ │ ├── rail.json │ │ │ │ │ ├── rail_corner.json │ │ │ │ │ ├── rail_curved.json │ │ │ │ │ ├── rail_flat.json │ │ │ │ │ ├── rail_raised_ne.json │ │ │ │ │ ├── rail_raised_sw.json │ │ │ │ │ ├── raw_copper_block.json │ │ │ │ │ ├── raw_gold_block.json │ │ │ │ │ ├── raw_iron_block.json │ │ │ │ │ ├── red_candle_cake.json │ │ │ │ │ ├── red_candle_cake_lit.json │ │ │ │ │ ├── red_candle_four_candles.json │ │ │ │ │ ├── red_candle_four_candles_lit.json │ │ │ │ │ ├── red_candle_one_candle.json │ │ │ │ │ ├── red_candle_one_candle_lit.json │ │ │ │ │ ├── red_candle_three_candles.json │ │ │ │ │ ├── red_candle_three_candles_lit.json │ │ │ │ │ ├── red_candle_two_candles.json │ │ │ │ │ ├── red_candle_two_candles_lit.json │ │ │ │ │ ├── red_carpet.json │ │ │ │ │ ├── red_concrete.json │ │ │ │ │ ├── red_concrete_powder.json │ │ │ │ │ ├── red_glazed_terracotta.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── red_mushroom_block.json │ │ │ │ │ ├── red_mushroom_block_inventory.json │ │ │ │ │ ├── red_nether_brick_slab.json │ │ │ │ │ ├── red_nether_brick_slab_top.json │ │ │ │ │ ├── red_nether_brick_stairs.json │ │ │ │ │ ├── red_nether_brick_stairs_inner.json │ │ │ │ │ ├── red_nether_brick_stairs_outer.json │ │ │ │ │ ├── red_nether_brick_wall_inventory.json │ │ │ │ │ ├── red_nether_brick_wall_post.json │ │ │ │ │ ├── red_nether_brick_wall_side.json │ │ │ │ │ ├── red_nether_brick_wall_side_tall.json │ │ │ │ │ ├── red_nether_bricks.json │ │ │ │ │ ├── red_sand.json │ │ │ │ │ ├── red_sandstone.json │ │ │ │ │ ├── red_sandstone_slab.json │ │ │ │ │ ├── red_sandstone_slab_top.json │ │ │ │ │ ├── red_sandstone_stairs.json │ │ │ │ │ ├── red_sandstone_stairs_inner.json │ │ │ │ │ ├── red_sandstone_stairs_outer.json │ │ │ │ │ ├── red_sandstone_wall_inventory.json │ │ │ │ │ ├── red_sandstone_wall_post.json │ │ │ │ │ ├── red_sandstone_wall_side.json │ │ │ │ │ ├── red_sandstone_wall_side_tall.json │ │ │ │ │ ├── red_shulker_box.json │ │ │ │ │ ├── red_stained_glass.json │ │ │ │ │ ├── red_stained_glass_pane_noside.json │ │ │ │ │ ├── red_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── red_stained_glass_pane_post.json │ │ │ │ │ ├── red_stained_glass_pane_side.json │ │ │ │ │ ├── red_stained_glass_pane_side_alt.json │ │ │ │ │ ├── red_terracotta.json │ │ │ │ │ ├── red_tulip.json │ │ │ │ │ ├── red_wool.json │ │ │ │ │ ├── redstone_block.json │ │ │ │ │ ├── redstone_dust_dot.json │ │ │ │ │ ├── redstone_dust_side.json │ │ │ │ │ ├── redstone_dust_side0.json │ │ │ │ │ ├── redstone_dust_side1.json │ │ │ │ │ ├── redstone_dust_side_alt.json │ │ │ │ │ ├── redstone_dust_side_alt0.json │ │ │ │ │ ├── redstone_dust_side_alt1.json │ │ │ │ │ ├── redstone_dust_up.json │ │ │ │ │ ├── redstone_lamp.json │ │ │ │ │ ├── redstone_lamp_on.json │ │ │ │ │ ├── redstone_ore.json │ │ │ │ │ ├── redstone_torch.json │ │ │ │ │ ├── redstone_torch_off.json │ │ │ │ │ ├── redstone_wall_torch.json │ │ │ │ │ ├── redstone_wall_torch_off.json │ │ │ │ │ ├── reinforced_deepslate.json │ │ │ │ │ ├── repeater_1tick.json │ │ │ │ │ ├── repeater_1tick_locked.json │ │ │ │ │ ├── repeater_1tick_on.json │ │ │ │ │ ├── repeater_1tick_on_locked.json │ │ │ │ │ ├── repeater_2tick.json │ │ │ │ │ ├── repeater_2tick_locked.json │ │ │ │ │ ├── repeater_2tick_on.json │ │ │ │ │ ├── repeater_2tick_on_locked.json │ │ │ │ │ ├── repeater_3tick.json │ │ │ │ │ ├── repeater_3tick_locked.json │ │ │ │ │ ├── repeater_3tick_on.json │ │ │ │ │ ├── repeater_3tick_on_locked.json │ │ │ │ │ ├── repeater_4tick.json │ │ │ │ │ ├── repeater_4tick_locked.json │ │ │ │ │ ├── repeater_4tick_on.json │ │ │ │ │ ├── repeater_4tick_on_locked.json │ │ │ │ │ ├── repeating_command_block.json │ │ │ │ │ ├── repeating_command_block_conditional.json │ │ │ │ │ ├── respawn_anchor_0.json │ │ │ │ │ ├── respawn_anchor_1.json │ │ │ │ │ ├── respawn_anchor_2.json │ │ │ │ │ ├── respawn_anchor_3.json │ │ │ │ │ ├── respawn_anchor_4.json │ │ │ │ │ ├── rooted_dirt.json │ │ │ │ │ ├── rose_bush_bottom.json │ │ │ │ │ ├── rose_bush_top.json │ │ │ │ │ ├── sand.json │ │ │ │ │ ├── sandstone.json │ │ │ │ │ ├── sandstone_slab.json │ │ │ │ │ ├── sandstone_slab_top.json │ │ │ │ │ ├── sandstone_stairs.json │ │ │ │ │ ├── sandstone_stairs_inner.json │ │ │ │ │ ├── sandstone_stairs_outer.json │ │ │ │ │ ├── sandstone_wall_inventory.json │ │ │ │ │ ├── sandstone_wall_post.json │ │ │ │ │ ├── sandstone_wall_side.json │ │ │ │ │ ├── sandstone_wall_side_tall.json │ │ │ │ │ ├── scaffolding_stable.json │ │ │ │ │ ├── scaffolding_unstable.json │ │ │ │ │ ├── sculk.json │ │ │ │ │ ├── sculk_catalyst.json │ │ │ │ │ ├── sculk_catalyst_bloom.json │ │ │ │ │ ├── sculk_mirrored.json │ │ │ │ │ ├── sculk_sensor.json │ │ │ │ │ ├── sculk_sensor_active.json │ │ │ │ │ ├── sculk_sensor_inactive.json │ │ │ │ │ ├── sculk_shrieker.json │ │ │ │ │ ├── sculk_shrieker_can_summon.json │ │ │ │ │ ├── sculk_vein.json │ │ │ │ │ ├── sea_lantern.json │ │ │ │ │ ├── sea_pickle.json │ │ │ │ │ ├── seagrass.json │ │ │ │ │ ├── short_grass.json │ │ │ │ │ ├── shroomlight.json │ │ │ │ │ ├── shulker_box.json │ │ │ │ │ ├── skull.json │ │ │ │ │ ├── slab.json │ │ │ │ │ ├── slab_top.json │ │ │ │ │ ├── slightly_cracked_turtle_egg.json │ │ │ │ │ ├── slime_block.json │ │ │ │ │ ├── small_amethyst_bud.json │ │ │ │ │ ├── small_dripleaf_bottom.json │ │ │ │ │ ├── small_dripleaf_top.json │ │ │ │ │ ├── smithing_table.json │ │ │ │ │ ├── smoker.json │ │ │ │ │ ├── smoker_on.json │ │ │ │ │ ├── smooth_basalt.json │ │ │ │ │ ├── smooth_quartz.json │ │ │ │ │ ├── smooth_quartz_slab.json │ │ │ │ │ ├── smooth_quartz_slab_top.json │ │ │ │ │ ├── smooth_quartz_stairs.json │ │ │ │ │ ├── smooth_quartz_stairs_inner.json │ │ │ │ │ ├── smooth_quartz_stairs_outer.json │ │ │ │ │ ├── smooth_red_sandstone.json │ │ │ │ │ ├── smooth_red_sandstone_slab.json │ │ │ │ │ ├── smooth_red_sandstone_slab_top.json │ │ │ │ │ ├── smooth_red_sandstone_stairs.json │ │ │ │ │ ├── smooth_red_sandstone_stairs_inner.json │ │ │ │ │ ├── smooth_red_sandstone_stairs_outer.json │ │ │ │ │ ├── smooth_sandstone.json │ │ │ │ │ ├── smooth_sandstone_slab.json │ │ │ │ │ ├── smooth_sandstone_slab_top.json │ │ │ │ │ ├── smooth_sandstone_stairs.json │ │ │ │ │ ├── smooth_sandstone_stairs_inner.json │ │ │ │ │ ├── smooth_sandstone_stairs_outer.json │ │ │ │ │ ├── smooth_stone.json │ │ │ │ │ ├── smooth_stone_slab.json │ │ │ │ │ ├── smooth_stone_slab_double.json │ │ │ │ │ ├── smooth_stone_slab_top.json │ │ │ │ │ ├── sniffer_egg.json │ │ │ │ │ ├── sniffer_egg_not_cracked.json │ │ │ │ │ ├── sniffer_egg_slightly_cracked.json │ │ │ │ │ ├── sniffer_egg_very_cracked.json │ │ │ │ │ ├── snow_block.json │ │ │ │ │ ├── snow_height10.json │ │ │ │ │ ├── snow_height12.json │ │ │ │ │ ├── snow_height14.json │ │ │ │ │ ├── snow_height2.json │ │ │ │ │ ├── snow_height4.json │ │ │ │ │ ├── snow_height6.json │ │ │ │ │ ├── snow_height8.json │ │ │ │ │ ├── soul_campfire.json │ │ │ │ │ ├── soul_fire_floor0.json │ │ │ │ │ ├── soul_fire_floor1.json │ │ │ │ │ ├── soul_fire_side0.json │ │ │ │ │ ├── soul_fire_side1.json │ │ │ │ │ ├── soul_fire_side_alt0.json │ │ │ │ │ ├── soul_fire_side_alt1.json │ │ │ │ │ ├── soul_lantern.json │ │ │ │ │ ├── soul_lantern_hanging.json │ │ │ │ │ ├── soul_sand.json │ │ │ │ │ ├── soul_soil.json │ │ │ │ │ ├── soul_torch.json │ │ │ │ │ ├── soul_wall_torch.json │ │ │ │ │ ├── spawner.json │ │ │ │ │ ├── sponge.json │ │ │ │ │ ├── spore_blossom.json │ │ │ │ │ ├── spruce_button.json │ │ │ │ │ ├── spruce_button_inventory.json │ │ │ │ │ ├── spruce_button_pressed.json │ │ │ │ │ ├── spruce_door_bottom_left.json │ │ │ │ │ ├── spruce_door_bottom_left_open.json │ │ │ │ │ ├── spruce_door_bottom_right.json │ │ │ │ │ ├── spruce_door_bottom_right_open.json │ │ │ │ │ ├── spruce_door_top_left.json │ │ │ │ │ ├── spruce_door_top_left_open.json │ │ │ │ │ ├── spruce_door_top_right.json │ │ │ │ │ ├── spruce_door_top_right_open.json │ │ │ │ │ ├── spruce_fence_gate.json │ │ │ │ │ ├── spruce_fence_gate_open.json │ │ │ │ │ ├── spruce_fence_gate_wall.json │ │ │ │ │ ├── spruce_fence_gate_wall_open.json │ │ │ │ │ ├── spruce_fence_inventory.json │ │ │ │ │ ├── spruce_fence_post.json │ │ │ │ │ ├── spruce_fence_side.json │ │ │ │ │ ├── spruce_hanging_sign.json │ │ │ │ │ ├── spruce_leaves.json │ │ │ │ │ ├── spruce_log.json │ │ │ │ │ ├── spruce_log_horizontal.json │ │ │ │ │ ├── spruce_planks.json │ │ │ │ │ ├── spruce_pressure_plate.json │ │ │ │ │ ├── spruce_pressure_plate_down.json │ │ │ │ │ ├── spruce_sapling.json │ │ │ │ │ ├── spruce_sign.json │ │ │ │ │ ├── spruce_slab.json │ │ │ │ │ ├── spruce_slab_top.json │ │ │ │ │ ├── spruce_stairs.json │ │ │ │ │ ├── spruce_stairs_inner.json │ │ │ │ │ ├── spruce_stairs_outer.json │ │ │ │ │ ├── spruce_trapdoor_bottom.json │ │ │ │ │ ├── spruce_trapdoor_open.json │ │ │ │ │ ├── spruce_trapdoor_top.json │ │ │ │ │ ├── spruce_wood.json │ │ │ │ │ ├── stairs.json │ │ │ │ │ ├── stem_fruit.json │ │ │ │ │ ├── stem_growth0.json │ │ │ │ │ ├── stem_growth1.json │ │ │ │ │ ├── stem_growth2.json │ │ │ │ │ ├── stem_growth3.json │ │ │ │ │ ├── stem_growth4.json │ │ │ │ │ ├── stem_growth5.json │ │ │ │ │ ├── stem_growth6.json │ │ │ │ │ ├── stem_growth7.json │ │ │ │ │ ├── sticky_piston.json │ │ │ │ │ ├── sticky_piston_inventory.json │ │ │ │ │ ├── stone.json │ │ │ │ │ ├── stone_brick_slab.json │ │ │ │ │ ├── stone_brick_slab_top.json │ │ │ │ │ ├── stone_brick_stairs.json │ │ │ │ │ ├── stone_brick_stairs_inner.json │ │ │ │ │ ├── stone_brick_stairs_outer.json │ │ │ │ │ ├── stone_brick_wall_inventory.json │ │ │ │ │ ├── stone_brick_wall_post.json │ │ │ │ │ ├── stone_brick_wall_side.json │ │ │ │ │ ├── stone_brick_wall_side_tall.json │ │ │ │ │ ├── stone_bricks.json │ │ │ │ │ ├── stone_button.json │ │ │ │ │ ├── stone_button_inventory.json │ │ │ │ │ ├── stone_button_pressed.json │ │ │ │ │ ├── stone_mirrored.json │ │ │ │ │ ├── stone_pressure_plate.json │ │ │ │ │ ├── stone_pressure_plate_down.json │ │ │ │ │ ├── stone_slab.json │ │ │ │ │ ├── stone_slab_top.json │ │ │ │ │ ├── stone_stairs.json │ │ │ │ │ ├── stone_stairs_inner.json │ │ │ │ │ ├── stone_stairs_outer.json │ │ │ │ │ ├── stonecutter.json │ │ │ │ │ ├── stripped_acacia_log.json │ │ │ │ │ ├── stripped_acacia_log_horizontal.json │ │ │ │ │ ├── stripped_acacia_wood.json │ │ │ │ │ ├── stripped_bamboo_block.json │ │ │ │ │ ├── stripped_bamboo_block_x.json │ │ │ │ │ ├── stripped_bamboo_block_y.json │ │ │ │ │ ├── stripped_bamboo_block_z.json │ │ │ │ │ ├── stripped_birch_log.json │ │ │ │ │ ├── stripped_birch_log_horizontal.json │ │ │ │ │ ├── stripped_birch_wood.json │ │ │ │ │ ├── stripped_cherry_log.json │ │ │ │ │ ├── stripped_cherry_log_x.json │ │ │ │ │ ├── stripped_cherry_log_y.json │ │ │ │ │ ├── stripped_cherry_log_z.json │ │ │ │ │ ├── stripped_cherry_wood.json │ │ │ │ │ ├── stripped_crimson_hyphae.json │ │ │ │ │ ├── stripped_crimson_stem.json │ │ │ │ │ ├── stripped_dark_oak_log.json │ │ │ │ │ ├── stripped_dark_oak_log_horizontal.json │ │ │ │ │ ├── stripped_dark_oak_wood.json │ │ │ │ │ ├── stripped_jungle_log.json │ │ │ │ │ ├── stripped_jungle_log_horizontal.json │ │ │ │ │ ├── stripped_jungle_wood.json │ │ │ │ │ ├── stripped_mangrove_log.json │ │ │ │ │ ├── stripped_mangrove_log_horizontal.json │ │ │ │ │ ├── stripped_mangrove_wood.json │ │ │ │ │ ├── stripped_oak_log.json │ │ │ │ │ ├── stripped_oak_log_horizontal.json │ │ │ │ │ ├── stripped_oak_wood.json │ │ │ │ │ ├── stripped_spruce_log.json │ │ │ │ │ ├── stripped_spruce_log_horizontal.json │ │ │ │ │ ├── stripped_spruce_wood.json │ │ │ │ │ ├── stripped_warped_hyphae.json │ │ │ │ │ ├── stripped_warped_stem.json │ │ │ │ │ ├── structure_block.json │ │ │ │ │ ├── structure_block_corner.json │ │ │ │ │ ├── structure_block_data.json │ │ │ │ │ ├── structure_block_load.json │ │ │ │ │ ├── structure_block_save.json │ │ │ │ │ ├── structure_void.json │ │ │ │ │ ├── sugar_cane.json │ │ │ │ │ ├── sunflower_bottom.json │ │ │ │ │ ├── sunflower_top.json │ │ │ │ │ ├── suspicious_gravel_0.json │ │ │ │ │ ├── suspicious_gravel_1.json │ │ │ │ │ ├── suspicious_gravel_2.json │ │ │ │ │ ├── suspicious_gravel_3.json │ │ │ │ │ ├── suspicious_sand_0.json │ │ │ │ │ ├── suspicious_sand_1.json │ │ │ │ │ ├── suspicious_sand_2.json │ │ │ │ │ ├── suspicious_sand_3.json │ │ │ │ │ ├── sweet_berry_bush_stage0.json │ │ │ │ │ ├── sweet_berry_bush_stage1.json │ │ │ │ │ ├── sweet_berry_bush_stage2.json │ │ │ │ │ ├── sweet_berry_bush_stage3.json │ │ │ │ │ ├── tall_grass_bottom.json │ │ │ │ │ ├── tall_grass_top.json │ │ │ │ │ ├── tall_seagrass_bottom.json │ │ │ │ │ ├── tall_seagrass_top.json │ │ │ │ │ ├── target.json │ │ │ │ │ ├── template_anvil.json │ │ │ │ │ ├── template_azalea.json │ │ │ │ │ ├── template_cake_with_candle.json │ │ │ │ │ ├── template_campfire.json │ │ │ │ │ ├── template_candle.json │ │ │ │ │ ├── template_cauldron_full.json │ │ │ │ │ ├── template_cauldron_level1.json │ │ │ │ │ ├── template_cauldron_level2.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_bottom_left.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_bottom_mid.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_bottom_right.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_top_left.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_top_mid.json │ │ │ │ │ ├── template_chiseled_bookshelf_slot_top_right.json │ │ │ │ │ ├── template_chorus_flower.json │ │ │ │ │ ├── template_command_block.json │ │ │ │ │ ├── template_custom_fence_gate.json │ │ │ │ │ ├── template_custom_fence_gate_open.json │ │ │ │ │ ├── template_custom_fence_gate_wall.json │ │ │ │ │ ├── template_custom_fence_gate_wall_open.json │ │ │ │ │ ├── template_daylight_detector.json │ │ │ │ │ ├── template_farmland.json │ │ │ │ │ ├── template_fence_gate.json │ │ │ │ │ ├── template_fence_gate_open.json │ │ │ │ │ ├── template_fence_gate_wall.json │ │ │ │ │ ├── template_fence_gate_wall_open.json │ │ │ │ │ ├── template_fire_floor.json │ │ │ │ │ ├── template_fire_side.json │ │ │ │ │ ├── template_fire_side_alt.json │ │ │ │ │ ├── template_fire_up.json │ │ │ │ │ ├── template_fire_up_alt.json │ │ │ │ │ ├── template_four_candles.json │ │ │ │ │ ├── template_four_turtle_eggs.json │ │ │ │ │ ├── template_glass_pane_noside.json │ │ │ │ │ ├── template_glass_pane_noside_alt.json │ │ │ │ │ ├── template_glass_pane_post.json │ │ │ │ │ ├── template_glass_pane_side.json │ │ │ │ │ ├── template_glass_pane_side_alt.json │ │ │ │ │ ├── template_glazed_terracotta.json │ │ │ │ │ ├── template_hanging_lantern.json │ │ │ │ │ ├── template_item_frame.json │ │ │ │ │ ├── template_item_frame_map.json │ │ │ │ │ ├── template_lantern.json │ │ │ │ │ ├── template_orientable_trapdoor_bottom.json │ │ │ │ │ ├── template_orientable_trapdoor_open.json │ │ │ │ │ ├── template_orientable_trapdoor_top.json │ │ │ │ │ ├── template_piston.json │ │ │ │ │ ├── template_piston_head.json │ │ │ │ │ ├── template_piston_head_short.json │ │ │ │ │ ├── template_potted_azalea_bush.json │ │ │ │ │ ├── template_rail_raised_ne.json │ │ │ │ │ ├── template_rail_raised_sw.json │ │ │ │ │ ├── template_sculk_shrieker.json │ │ │ │ │ ├── template_seagrass.json │ │ │ │ │ ├── template_single_face.json │ │ │ │ │ ├── template_three_candles.json │ │ │ │ │ ├── template_three_turtle_eggs.json │ │ │ │ │ ├── template_torch.json │ │ │ │ │ ├── template_torch_wall.json │ │ │ │ │ ├── template_trapdoor_bottom.json │ │ │ │ │ ├── template_trapdoor_open.json │ │ │ │ │ ├── template_trapdoor_top.json │ │ │ │ │ ├── template_turtle_egg.json │ │ │ │ │ ├── template_two_candles.json │ │ │ │ │ ├── template_two_turtle_eggs.json │ │ │ │ │ ├── template_wall_post.json │ │ │ │ │ ├── template_wall_side.json │ │ │ │ │ ├── template_wall_side_tall.json │ │ │ │ │ ├── terracotta.json │ │ │ │ │ ├── thin_block.json │ │ │ │ │ ├── three_dead_sea_pickles.json │ │ │ │ │ ├── three_sea_pickles.json │ │ │ │ │ ├── three_slightly_cracked_turtle_eggs.json │ │ │ │ │ ├── three_turtle_eggs.json │ │ │ │ │ ├── three_very_cracked_turtle_eggs.json │ │ │ │ │ ├── tinted_cross.json │ │ │ │ │ ├── tinted_flower_pot_cross.json │ │ │ │ │ ├── tinted_glass.json │ │ │ │ │ ├── tnt.json │ │ │ │ │ ├── torch.json │ │ │ │ │ ├── torchflower.json │ │ │ │ │ ├── torchflower_crop_stage0.json │ │ │ │ │ ├── torchflower_crop_stage1.json │ │ │ │ │ ├── trial_spawner.json │ │ │ │ │ ├── trial_spawner_active.json │ │ │ │ │ ├── trial_spawner_ejecting_reward.json │ │ │ │ │ ├── tripwire_attached_n.json │ │ │ │ │ ├── tripwire_attached_ne.json │ │ │ │ │ ├── tripwire_attached_ns.json │ │ │ │ │ ├── tripwire_attached_nse.json │ │ │ │ │ ├── tripwire_attached_nsew.json │ │ │ │ │ ├── tripwire_hook.json │ │ │ │ │ ├── tripwire_hook_attached.json │ │ │ │ │ ├── tripwire_hook_attached_on.json │ │ │ │ │ ├── tripwire_hook_on.json │ │ │ │ │ ├── tripwire_n.json │ │ │ │ │ ├── tripwire_ne.json │ │ │ │ │ ├── tripwire_ns.json │ │ │ │ │ ├── tripwire_nse.json │ │ │ │ │ ├── tripwire_nsew.json │ │ │ │ │ ├── tube_coral.json │ │ │ │ │ ├── tube_coral_block.json │ │ │ │ │ ├── tube_coral_fan.json │ │ │ │ │ ├── tube_coral_wall_fan.json │ │ │ │ │ ├── tuff.json │ │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ │ ├── tuff_brick_slab_top.json │ │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ │ ├── tuff_brick_stairs_inner.json │ │ │ │ │ ├── tuff_brick_stairs_outer.json │ │ │ │ │ ├── tuff_brick_wall_inventory.json │ │ │ │ │ ├── tuff_brick_wall_post.json │ │ │ │ │ ├── tuff_brick_wall_side.json │ │ │ │ │ ├── tuff_brick_wall_side_tall.json │ │ │ │ │ ├── tuff_bricks.json │ │ │ │ │ ├── tuff_slab.json │ │ │ │ │ ├── tuff_slab_top.json │ │ │ │ │ ├── tuff_stairs.json │ │ │ │ │ ├── tuff_stairs_inner.json │ │ │ │ │ ├── tuff_stairs_outer.json │ │ │ │ │ ├── tuff_wall_inventory.json │ │ │ │ │ ├── tuff_wall_post.json │ │ │ │ │ ├── tuff_wall_side.json │ │ │ │ │ ├── tuff_wall_side_tall.json │ │ │ │ │ ├── turtle_egg.json │ │ │ │ │ ├── twisting_vines.json │ │ │ │ │ ├── twisting_vines_plant.json │ │ │ │ │ ├── two_dead_sea_pickles.json │ │ │ │ │ ├── two_sea_pickles.json │ │ │ │ │ ├── two_slightly_cracked_turtle_eggs.json │ │ │ │ │ ├── two_turtle_eggs.json │ │ │ │ │ ├── two_very_cracked_turtle_eggs.json │ │ │ │ │ ├── verdant_froglight.json │ │ │ │ │ ├── verdant_froglight_horizontal.json │ │ │ │ │ ├── very_cracked_turtle_egg.json │ │ │ │ │ ├── vine.json │ │ │ │ │ ├── wall_inventory.json │ │ │ │ │ ├── wall_torch.json │ │ │ │ │ ├── warped_button.json │ │ │ │ │ ├── warped_button_inventory.json │ │ │ │ │ ├── warped_button_pressed.json │ │ │ │ │ ├── warped_door_bottom_left.json │ │ │ │ │ ├── warped_door_bottom_left_open.json │ │ │ │ │ ├── warped_door_bottom_right.json │ │ │ │ │ ├── warped_door_bottom_right_open.json │ │ │ │ │ ├── warped_door_top_left.json │ │ │ │ │ ├── warped_door_top_left_open.json │ │ │ │ │ ├── warped_door_top_right.json │ │ │ │ │ ├── warped_door_top_right_open.json │ │ │ │ │ ├── warped_fence_gate.json │ │ │ │ │ ├── warped_fence_gate_open.json │ │ │ │ │ ├── warped_fence_gate_wall.json │ │ │ │ │ ├── warped_fence_gate_wall_open.json │ │ │ │ │ ├── warped_fence_inventory.json │ │ │ │ │ ├── warped_fence_post.json │ │ │ │ │ ├── warped_fence_side.json │ │ │ │ │ ├── warped_fungus.json │ │ │ │ │ ├── warped_hanging_sign.json │ │ │ │ │ ├── warped_hyphae.json │ │ │ │ │ ├── warped_nylium.json │ │ │ │ │ ├── warped_planks.json │ │ │ │ │ ├── warped_pressure_plate.json │ │ │ │ │ ├── warped_pressure_plate_down.json │ │ │ │ │ ├── warped_roots.json │ │ │ │ │ ├── warped_sign.json │ │ │ │ │ ├── warped_slab.json │ │ │ │ │ ├── warped_slab_top.json │ │ │ │ │ ├── warped_stairs.json │ │ │ │ │ ├── warped_stairs_inner.json │ │ │ │ │ ├── warped_stairs_outer.json │ │ │ │ │ ├── warped_stem.json │ │ │ │ │ ├── warped_trapdoor_bottom.json │ │ │ │ │ ├── warped_trapdoor_open.json │ │ │ │ │ ├── warped_trapdoor_top.json │ │ │ │ │ ├── warped_wart_block.json │ │ │ │ │ ├── water.json │ │ │ │ │ ├── water_cauldron_full.json │ │ │ │ │ ├── water_cauldron_level1.json │ │ │ │ │ ├── water_cauldron_level2.json │ │ │ │ │ ├── weathered_chiseled_copper.json │ │ │ │ │ ├── weathered_copper.json │ │ │ │ │ ├── weathered_copper_bulb.json │ │ │ │ │ ├── weathered_copper_bulb_lit.json │ │ │ │ │ ├── weathered_copper_bulb_lit_powered.json │ │ │ │ │ ├── weathered_copper_bulb_powered.json │ │ │ │ │ ├── weathered_copper_door_bottom_left.json │ │ │ │ │ ├── weathered_copper_door_bottom_left_open.json │ │ │ │ │ ├── weathered_copper_door_bottom_right.json │ │ │ │ │ ├── weathered_copper_door_bottom_right_open.json │ │ │ │ │ ├── weathered_copper_door_top_left.json │ │ │ │ │ ├── weathered_copper_door_top_left_open.json │ │ │ │ │ ├── weathered_copper_door_top_right.json │ │ │ │ │ ├── weathered_copper_door_top_right_open.json │ │ │ │ │ ├── weathered_copper_grate.json │ │ │ │ │ ├── weathered_copper_trapdoor_bottom.json │ │ │ │ │ ├── weathered_copper_trapdoor_open.json │ │ │ │ │ ├── weathered_copper_trapdoor_top.json │ │ │ │ │ ├── weathered_cut_copper.json │ │ │ │ │ ├── weathered_cut_copper_slab.json │ │ │ │ │ ├── weathered_cut_copper_slab_top.json │ │ │ │ │ ├── weathered_cut_copper_stairs.json │ │ │ │ │ ├── weathered_cut_copper_stairs_inner.json │ │ │ │ │ ├── weathered_cut_copper_stairs_outer.json │ │ │ │ │ ├── weeping_vines.json │ │ │ │ │ ├── weeping_vines_plant.json │ │ │ │ │ ├── wet_sponge.json │ │ │ │ │ ├── wheat_stage0.json │ │ │ │ │ ├── wheat_stage1.json │ │ │ │ │ ├── wheat_stage2.json │ │ │ │ │ ├── wheat_stage3.json │ │ │ │ │ ├── wheat_stage4.json │ │ │ │ │ ├── wheat_stage5.json │ │ │ │ │ ├── wheat_stage6.json │ │ │ │ │ ├── wheat_stage7.json │ │ │ │ │ ├── white_candle_cake.json │ │ │ │ │ ├── white_candle_cake_lit.json │ │ │ │ │ ├── white_candle_four_candles.json │ │ │ │ │ ├── white_candle_four_candles_lit.json │ │ │ │ │ ├── white_candle_one_candle.json │ │ │ │ │ ├── white_candle_one_candle_lit.json │ │ │ │ │ ├── white_candle_three_candles.json │ │ │ │ │ ├── white_candle_three_candles_lit.json │ │ │ │ │ ├── white_candle_two_candles.json │ │ │ │ │ ├── white_candle_two_candles_lit.json │ │ │ │ │ ├── white_carpet.json │ │ │ │ │ ├── white_concrete.json │ │ │ │ │ ├── white_concrete_powder.json │ │ │ │ │ ├── white_glazed_terracotta.json │ │ │ │ │ ├── white_shulker_box.json │ │ │ │ │ ├── white_stained_glass.json │ │ │ │ │ ├── white_stained_glass_pane_noside.json │ │ │ │ │ ├── white_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── white_stained_glass_pane_post.json │ │ │ │ │ ├── white_stained_glass_pane_side.json │ │ │ │ │ ├── white_stained_glass_pane_side_alt.json │ │ │ │ │ ├── white_terracotta.json │ │ │ │ │ ├── white_tulip.json │ │ │ │ │ ├── white_wool.json │ │ │ │ │ ├── wither_rose.json │ │ │ │ │ ├── yellow_candle_cake.json │ │ │ │ │ ├── yellow_candle_cake_lit.json │ │ │ │ │ ├── yellow_candle_four_candles.json │ │ │ │ │ ├── yellow_candle_four_candles_lit.json │ │ │ │ │ ├── yellow_candle_one_candle.json │ │ │ │ │ ├── yellow_candle_one_candle_lit.json │ │ │ │ │ ├── yellow_candle_three_candles.json │ │ │ │ │ ├── yellow_candle_three_candles_lit.json │ │ │ │ │ ├── yellow_candle_two_candles.json │ │ │ │ │ ├── yellow_candle_two_candles_lit.json │ │ │ │ │ ├── yellow_carpet.json │ │ │ │ │ ├── yellow_concrete.json │ │ │ │ │ ├── yellow_concrete_powder.json │ │ │ │ │ ├── yellow_glazed_terracotta.json │ │ │ │ │ ├── yellow_shulker_box.json │ │ │ │ │ ├── yellow_stained_glass.json │ │ │ │ │ ├── yellow_stained_glass_pane_noside.json │ │ │ │ │ ├── yellow_stained_glass_pane_noside_alt.json │ │ │ │ │ ├── yellow_stained_glass_pane_post.json │ │ │ │ │ ├── yellow_stained_glass_pane_side.json │ │ │ │ │ ├── yellow_stained_glass_pane_side_alt.json │ │ │ │ │ ├── yellow_terracotta.json │ │ │ │ │ └── yellow_wool.json │ │ │ │ └── item │ │ │ │ │ ├── acacia_boat.json │ │ │ │ │ ├── acacia_button.json │ │ │ │ │ ├── acacia_chest_boat.json │ │ │ │ │ ├── acacia_door.json │ │ │ │ │ ├── acacia_fence.json │ │ │ │ │ ├── acacia_fence_gate.json │ │ │ │ │ ├── acacia_hanging_sign.json │ │ │ │ │ ├── acacia_leaves.json │ │ │ │ │ ├── acacia_log.json │ │ │ │ │ ├── acacia_planks.json │ │ │ │ │ ├── acacia_pressure_plate.json │ │ │ │ │ ├── acacia_sapling.json │ │ │ │ │ ├── acacia_sign.json │ │ │ │ │ ├── acacia_slab.json │ │ │ │ │ ├── acacia_stairs.json │ │ │ │ │ ├── acacia_trapdoor.json │ │ │ │ │ ├── acacia_wood.json │ │ │ │ │ ├── activator_rail.json │ │ │ │ │ ├── air.json │ │ │ │ │ ├── allay_spawn_egg.json │ │ │ │ │ ├── allium.json │ │ │ │ │ ├── amethyst_block.json │ │ │ │ │ ├── amethyst_bud.json │ │ │ │ │ ├── amethyst_cluster.json │ │ │ │ │ ├── amethyst_shard.json │ │ │ │ │ ├── ancient_debris.json │ │ │ │ │ ├── andesite.json │ │ │ │ │ ├── andesite_slab.json │ │ │ │ │ ├── andesite_stairs.json │ │ │ │ │ ├── andesite_wall.json │ │ │ │ │ ├── angler_pottery_sherd.json │ │ │ │ │ ├── anvil.json │ │ │ │ │ ├── apple.json │ │ │ │ │ ├── archer_pottery_sherd.json │ │ │ │ │ ├── armor_stand.json │ │ │ │ │ ├── arms_up_pottery_sherd.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── axolotl_bucket.json │ │ │ │ │ ├── axolotl_spawn_egg.json │ │ │ │ │ ├── azalea.json │ │ │ │ │ ├── azalea_leaves.json │ │ │ │ │ ├── azure_bluet.json │ │ │ │ │ ├── baked_potato.json │ │ │ │ │ ├── bamboo.json │ │ │ │ │ ├── bamboo_block.json │ │ │ │ │ ├── bamboo_button.json │ │ │ │ │ ├── bamboo_chest_raft.json │ │ │ │ │ ├── bamboo_door.json │ │ │ │ │ ├── bamboo_fence.json │ │ │ │ │ ├── bamboo_fence_gate.json │ │ │ │ │ ├── bamboo_hanging_sign.json │ │ │ │ │ ├── bamboo_mosaic.json │ │ │ │ │ ├── bamboo_mosaic_slab.json │ │ │ │ │ ├── bamboo_mosaic_stairs.json │ │ │ │ │ ├── bamboo_planks.json │ │ │ │ │ ├── bamboo_pressure_plate.json │ │ │ │ │ ├── bamboo_raft.json │ │ │ │ │ ├── bamboo_sign.json │ │ │ │ │ ├── bamboo_slab.json │ │ │ │ │ ├── bamboo_stairs.json │ │ │ │ │ ├── bamboo_trapdoor.json │ │ │ │ │ ├── barrel.json │ │ │ │ │ ├── barrier.json │ │ │ │ │ ├── basalt.json │ │ │ │ │ ├── bat_spawn_egg.json │ │ │ │ │ ├── beacon.json │ │ │ │ │ ├── bedrock.json │ │ │ │ │ ├── bee_nest.json │ │ │ │ │ ├── bee_spawn_egg.json │ │ │ │ │ ├── beef.json │ │ │ │ │ ├── beehive.json │ │ │ │ │ ├── beetroot.json │ │ │ │ │ ├── beetroot_seeds.json │ │ │ │ │ ├── beetroot_soup.json │ │ │ │ │ ├── bell.json │ │ │ │ │ ├── big_dripleaf.json │ │ │ │ │ ├── birch_boat.json │ │ │ │ │ ├── birch_button.json │ │ │ │ │ ├── birch_chest_boat.json │ │ │ │ │ ├── birch_door.json │ │ │ │ │ ├── birch_fence.json │ │ │ │ │ ├── birch_fence_gate.json │ │ │ │ │ ├── birch_hanging_sign.json │ │ │ │ │ ├── birch_leaves.json │ │ │ │ │ ├── birch_log.json │ │ │ │ │ ├── birch_planks.json │ │ │ │ │ ├── birch_pressure_plate.json │ │ │ │ │ ├── birch_sapling.json │ │ │ │ │ ├── birch_sign.json │ │ │ │ │ ├── birch_slab.json │ │ │ │ │ ├── birch_stairs.json │ │ │ │ │ ├── birch_trapdoor.json │ │ │ │ │ ├── birch_wood.json │ │ │ │ │ ├── black_banner.json │ │ │ │ │ ├── black_bed.json │ │ │ │ │ ├── black_candle.json │ │ │ │ │ ├── black_carpet.json │ │ │ │ │ ├── black_concrete.json │ │ │ │ │ ├── black_concrete_powder.json │ │ │ │ │ ├── black_dye.json │ │ │ │ │ ├── black_glazed_terracotta.json │ │ │ │ │ ├── black_shulker_box.json │ │ │ │ │ ├── black_stained_glass.json │ │ │ │ │ ├── black_stained_glass_pane.json │ │ │ │ │ ├── black_terracotta.json │ │ │ │ │ ├── black_wool.json │ │ │ │ │ ├── blackstone.json │ │ │ │ │ ├── blackstone_slab.json │ │ │ │ │ ├── blackstone_stairs.json │ │ │ │ │ ├── blackstone_wall.json │ │ │ │ │ ├── blade_pottery_sherd.json │ │ │ │ │ ├── blast_furnace.json │ │ │ │ │ ├── blaze_powder.json │ │ │ │ │ ├── blaze_rod.json │ │ │ │ │ ├── blaze_spawn_egg.json │ │ │ │ │ ├── blue_banner.json │ │ │ │ │ ├── blue_bed.json │ │ │ │ │ ├── blue_candle.json │ │ │ │ │ ├── blue_carpet.json │ │ │ │ │ ├── blue_concrete.json │ │ │ │ │ ├── blue_concrete_powder.json │ │ │ │ │ ├── blue_dye.json │ │ │ │ │ ├── blue_glazed_terracotta.json │ │ │ │ │ ├── blue_ice.json │ │ │ │ │ ├── blue_orchid.json │ │ │ │ │ ├── blue_shulker_box.json │ │ │ │ │ ├── blue_stained_glass.json │ │ │ │ │ ├── blue_stained_glass_pane.json │ │ │ │ │ ├── blue_terracotta.json │ │ │ │ │ ├── blue_wool.json │ │ │ │ │ ├── bone.json │ │ │ │ │ ├── bone_block.json │ │ │ │ │ ├── bone_meal.json │ │ │ │ │ ├── book.json │ │ │ │ │ ├── bookshelf.json │ │ │ │ │ ├── bow.json │ │ │ │ │ ├── bow_pulling_0.json │ │ │ │ │ ├── bow_pulling_1.json │ │ │ │ │ ├── bow_pulling_2.json │ │ │ │ │ ├── bowl.json │ │ │ │ │ ├── brain_coral.json │ │ │ │ │ ├── brain_coral_block.json │ │ │ │ │ ├── brain_coral_fan.json │ │ │ │ │ ├── bread.json │ │ │ │ │ ├── breeze_spawn_egg.json │ │ │ │ │ ├── brewer_pottery_sherd.json │ │ │ │ │ ├── brewing_stand.json │ │ │ │ │ ├── brick.json │ │ │ │ │ ├── brick_slab.json │ │ │ │ │ ├── brick_stairs.json │ │ │ │ │ ├── brick_wall.json │ │ │ │ │ ├── bricks.json │ │ │ │ │ ├── broken_elytra.json │ │ │ │ │ ├── brown_banner.json │ │ │ │ │ ├── brown_bed.json │ │ │ │ │ ├── brown_candle.json │ │ │ │ │ ├── brown_carpet.json │ │ │ │ │ ├── brown_concrete.json │ │ │ │ │ ├── brown_concrete_powder.json │ │ │ │ │ ├── brown_dye.json │ │ │ │ │ ├── brown_glazed_terracotta.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── brown_mushroom_block.json │ │ │ │ │ ├── brown_shulker_box.json │ │ │ │ │ ├── brown_stained_glass.json │ │ │ │ │ ├── brown_stained_glass_pane.json │ │ │ │ │ ├── brown_terracotta.json │ │ │ │ │ ├── brown_wool.json │ │ │ │ │ ├── brush.json │ │ │ │ │ ├── brush_brushing_0.json │ │ │ │ │ ├── brush_brushing_1.json │ │ │ │ │ ├── brush_brushing_2.json │ │ │ │ │ ├── bubble_coral.json │ │ │ │ │ ├── bubble_coral_block.json │ │ │ │ │ ├── bubble_coral_fan.json │ │ │ │ │ ├── bucket.json │ │ │ │ │ ├── budding_amethyst.json │ │ │ │ │ ├── bundle.json │ │ │ │ │ ├── bundle_filled.json │ │ │ │ │ ├── burn_pottery_sherd.json │ │ │ │ │ ├── cactus.json │ │ │ │ │ ├── cake.json │ │ │ │ │ ├── calcite.json │ │ │ │ │ ├── calibrated_sculk_sensor.json │ │ │ │ │ ├── camel_spawn_egg.json │ │ │ │ │ ├── campfire.json │ │ │ │ │ ├── candle.json │ │ │ │ │ ├── carrot.json │ │ │ │ │ ├── carrot_on_a_stick.json │ │ │ │ │ ├── cartography_table.json │ │ │ │ │ ├── carved_pumpkin.json │ │ │ │ │ ├── cat_spawn_egg.json │ │ │ │ │ ├── cauldron.json │ │ │ │ │ ├── cave_spider_spawn_egg.json │ │ │ │ │ ├── chain.json │ │ │ │ │ ├── chain_command_block.json │ │ │ │ │ ├── chainmail_boots.json │ │ │ │ │ ├── chainmail_boots_amethyst_trim.json │ │ │ │ │ ├── chainmail_boots_copper_trim.json │ │ │ │ │ ├── chainmail_boots_diamond_trim.json │ │ │ │ │ ├── chainmail_boots_emerald_trim.json │ │ │ │ │ ├── chainmail_boots_gold_trim.json │ │ │ │ │ ├── chainmail_boots_iron_trim.json │ │ │ │ │ ├── chainmail_boots_lapis_trim.json │ │ │ │ │ ├── chainmail_boots_netherite_trim.json │ │ │ │ │ ├── chainmail_boots_quartz_trim.json │ │ │ │ │ ├── chainmail_boots_redstone_trim.json │ │ │ │ │ ├── chainmail_chestplate.json │ │ │ │ │ ├── chainmail_chestplate_amethyst_trim.json │ │ │ │ │ ├── chainmail_chestplate_copper_trim.json │ │ │ │ │ ├── chainmail_chestplate_diamond_trim.json │ │ │ │ │ ├── chainmail_chestplate_emerald_trim.json │ │ │ │ │ ├── chainmail_chestplate_gold_trim.json │ │ │ │ │ ├── chainmail_chestplate_iron_trim.json │ │ │ │ │ ├── chainmail_chestplate_lapis_trim.json │ │ │ │ │ ├── chainmail_chestplate_netherite_trim.json │ │ │ │ │ ├── chainmail_chestplate_quartz_trim.json │ │ │ │ │ ├── chainmail_chestplate_redstone_trim.json │ │ │ │ │ ├── chainmail_helmet.json │ │ │ │ │ ├── chainmail_helmet_amethyst_trim.json │ │ │ │ │ ├── chainmail_helmet_copper_trim.json │ │ │ │ │ ├── chainmail_helmet_diamond_trim.json │ │ │ │ │ ├── chainmail_helmet_emerald_trim.json │ │ │ │ │ ├── chainmail_helmet_gold_trim.json │ │ │ │ │ ├── chainmail_helmet_iron_trim.json │ │ │ │ │ ├── chainmail_helmet_lapis_trim.json │ │ │ │ │ ├── chainmail_helmet_netherite_trim.json │ │ │ │ │ ├── chainmail_helmet_quartz_trim.json │ │ │ │ │ ├── chainmail_helmet_redstone_trim.json │ │ │ │ │ ├── chainmail_leggings.json │ │ │ │ │ ├── chainmail_leggings_amethyst_trim.json │ │ │ │ │ ├── chainmail_leggings_copper_trim.json │ │ │ │ │ ├── chainmail_leggings_diamond_trim.json │ │ │ │ │ ├── chainmail_leggings_emerald_trim.json │ │ │ │ │ ├── chainmail_leggings_gold_trim.json │ │ │ │ │ ├── chainmail_leggings_iron_trim.json │ │ │ │ │ ├── chainmail_leggings_lapis_trim.json │ │ │ │ │ ├── chainmail_leggings_netherite_trim.json │ │ │ │ │ ├── chainmail_leggings_quartz_trim.json │ │ │ │ │ ├── chainmail_leggings_redstone_trim.json │ │ │ │ │ ├── charcoal.json │ │ │ │ │ ├── cherry_boat.json │ │ │ │ │ ├── cherry_button.json │ │ │ │ │ ├── cherry_chest_boat.json │ │ │ │ │ ├── cherry_door.json │ │ │ │ │ ├── cherry_fence.json │ │ │ │ │ ├── cherry_fence_gate.json │ │ │ │ │ ├── cherry_hanging_sign.json │ │ │ │ │ ├── cherry_leaves.json │ │ │ │ │ ├── cherry_log.json │ │ │ │ │ ├── cherry_planks.json │ │ │ │ │ ├── cherry_pressure_plate.json │ │ │ │ │ ├── cherry_sapling.json │ │ │ │ │ ├── cherry_sign.json │ │ │ │ │ ├── cherry_slab.json │ │ │ │ │ ├── cherry_stairs.json │ │ │ │ │ ├── cherry_trapdoor.json │ │ │ │ │ ├── cherry_wood.json │ │ │ │ │ ├── chest.json │ │ │ │ │ ├── chest_minecart.json │ │ │ │ │ ├── chicken.json │ │ │ │ │ ├── chicken_spawn_egg.json │ │ │ │ │ ├── chipped_anvil.json │ │ │ │ │ ├── chiseled_bookshelf.json │ │ │ │ │ ├── chiseled_copper.json │ │ │ │ │ ├── chiseled_deepslate.json │ │ │ │ │ ├── chiseled_nether_bricks.json │ │ │ │ │ ├── chiseled_polished_blackstone.json │ │ │ │ │ ├── chiseled_quartz_block.json │ │ │ │ │ ├── chiseled_red_sandstone.json │ │ │ │ │ ├── chiseled_sandstone.json │ │ │ │ │ ├── chiseled_stone_bricks.json │ │ │ │ │ ├── chiseled_tuff.json │ │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ │ ├── chorus_flower.json │ │ │ │ │ ├── chorus_fruit.json │ │ │ │ │ ├── chorus_plant.json │ │ │ │ │ ├── clay.json │ │ │ │ │ ├── clay_ball.json │ │ │ │ │ ├── clock.json │ │ │ │ │ ├── clock_01.json │ │ │ │ │ ├── clock_02.json │ │ │ │ │ ├── clock_03.json │ │ │ │ │ ├── clock_04.json │ │ │ │ │ ├── clock_05.json │ │ │ │ │ ├── clock_06.json │ │ │ │ │ ├── clock_07.json │ │ │ │ │ ├── clock_08.json │ │ │ │ │ ├── clock_09.json │ │ │ │ │ ├── clock_10.json │ │ │ │ │ ├── clock_11.json │ │ │ │ │ ├── clock_12.json │ │ │ │ │ ├── clock_13.json │ │ │ │ │ ├── clock_14.json │ │ │ │ │ ├── clock_15.json │ │ │ │ │ ├── clock_16.json │ │ │ │ │ ├── clock_17.json │ │ │ │ │ ├── clock_18.json │ │ │ │ │ ├── clock_19.json │ │ │ │ │ ├── clock_20.json │ │ │ │ │ ├── clock_21.json │ │ │ │ │ ├── clock_22.json │ │ │ │ │ ├── clock_23.json │ │ │ │ │ ├── clock_24.json │ │ │ │ │ ├── clock_25.json │ │ │ │ │ ├── clock_26.json │ │ │ │ │ ├── clock_27.json │ │ │ │ │ ├── clock_28.json │ │ │ │ │ ├── clock_29.json │ │ │ │ │ ├── clock_30.json │ │ │ │ │ ├── clock_31.json │ │ │ │ │ ├── clock_32.json │ │ │ │ │ ├── clock_33.json │ │ │ │ │ ├── clock_34.json │ │ │ │ │ ├── clock_35.json │ │ │ │ │ ├── clock_36.json │ │ │ │ │ ├── clock_37.json │ │ │ │ │ ├── clock_38.json │ │ │ │ │ ├── clock_39.json │ │ │ │ │ ├── clock_40.json │ │ │ │ │ ├── clock_41.json │ │ │ │ │ ├── clock_42.json │ │ │ │ │ ├── clock_43.json │ │ │ │ │ ├── clock_44.json │ │ │ │ │ ├── clock_45.json │ │ │ │ │ ├── clock_46.json │ │ │ │ │ ├── clock_47.json │ │ │ │ │ ├── clock_48.json │ │ │ │ │ ├── clock_49.json │ │ │ │ │ ├── clock_50.json │ │ │ │ │ ├── clock_51.json │ │ │ │ │ ├── clock_52.json │ │ │ │ │ ├── clock_53.json │ │ │ │ │ ├── clock_54.json │ │ │ │ │ ├── clock_55.json │ │ │ │ │ ├── clock_56.json │ │ │ │ │ ├── clock_57.json │ │ │ │ │ ├── clock_58.json │ │ │ │ │ ├── clock_59.json │ │ │ │ │ ├── clock_60.json │ │ │ │ │ ├── clock_61.json │ │ │ │ │ ├── clock_62.json │ │ │ │ │ ├── clock_63.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── coal_block.json │ │ │ │ │ ├── coal_ore.json │ │ │ │ │ ├── coarse_dirt.json │ │ │ │ │ ├── coast_armor_trim_smithing_template.json │ │ │ │ │ ├── cobbled_deepslate.json │ │ │ │ │ ├── cobbled_deepslate_slab.json │ │ │ │ │ ├── cobbled_deepslate_stairs.json │ │ │ │ │ ├── cobbled_deepslate_wall.json │ │ │ │ │ ├── cobblestone.json │ │ │ │ │ ├── cobblestone_slab.json │ │ │ │ │ ├── cobblestone_stairs.json │ │ │ │ │ ├── cobblestone_wall.json │ │ │ │ │ ├── cobweb.json │ │ │ │ │ ├── cocoa_beans.json │ │ │ │ │ ├── cod.json │ │ │ │ │ ├── cod_bucket.json │ │ │ │ │ ├── cod_spawn_egg.json │ │ │ │ │ ├── command_block.json │ │ │ │ │ ├── command_block_minecart.json │ │ │ │ │ ├── comparator.json │ │ │ │ │ ├── compass.json │ │ │ │ │ ├── compass_00.json │ │ │ │ │ ├── compass_01.json │ │ │ │ │ ├── compass_02.json │ │ │ │ │ ├── compass_03.json │ │ │ │ │ ├── compass_04.json │ │ │ │ │ ├── compass_05.json │ │ │ │ │ ├── compass_06.json │ │ │ │ │ ├── compass_07.json │ │ │ │ │ ├── compass_08.json │ │ │ │ │ ├── compass_09.json │ │ │ │ │ ├── compass_10.json │ │ │ │ │ ├── compass_11.json │ │ │ │ │ ├── compass_12.json │ │ │ │ │ ├── compass_13.json │ │ │ │ │ ├── compass_14.json │ │ │ │ │ ├── compass_15.json │ │ │ │ │ ├── compass_17.json │ │ │ │ │ ├── compass_18.json │ │ │ │ │ ├── compass_19.json │ │ │ │ │ ├── compass_20.json │ │ │ │ │ ├── compass_21.json │ │ │ │ │ ├── compass_22.json │ │ │ │ │ ├── compass_23.json │ │ │ │ │ ├── compass_24.json │ │ │ │ │ ├── compass_25.json │ │ │ │ │ ├── compass_26.json │ │ │ │ │ ├── compass_27.json │ │ │ │ │ ├── compass_28.json │ │ │ │ │ ├── compass_29.json │ │ │ │ │ ├── compass_30.json │ │ │ │ │ ├── compass_31.json │ │ │ │ │ ├── composter.json │ │ │ │ │ ├── conduit.json │ │ │ │ │ ├── cooked_beef.json │ │ │ │ │ ├── cooked_chicken.json │ │ │ │ │ ├── cooked_cod.json │ │ │ │ │ ├── cooked_mutton.json │ │ │ │ │ ├── cooked_porkchop.json │ │ │ │ │ ├── cooked_rabbit.json │ │ │ │ │ ├── cooked_salmon.json │ │ │ │ │ ├── cookie.json │ │ │ │ │ ├── copper_block.json │ │ │ │ │ ├── copper_bulb.json │ │ │ │ │ ├── copper_door.json │ │ │ │ │ ├── copper_grate.json │ │ │ │ │ ├── copper_ingot.json │ │ │ │ │ ├── copper_ore.json │ │ │ │ │ ├── copper_trapdoor.json │ │ │ │ │ ├── cornflower.json │ │ │ │ │ ├── cow_spawn_egg.json │ │ │ │ │ ├── cracked_deepslate_bricks.json │ │ │ │ │ ├── cracked_deepslate_tiles.json │ │ │ │ │ ├── cracked_nether_bricks.json │ │ │ │ │ ├── cracked_polished_blackstone_bricks.json │ │ │ │ │ ├── cracked_stone_bricks.json │ │ │ │ │ ├── crafter.json │ │ │ │ │ ├── crafting_table.json │ │ │ │ │ ├── creeper_banner_pattern.json │ │ │ │ │ ├── creeper_head.json │ │ │ │ │ ├── creeper_spawn_egg.json │ │ │ │ │ ├── crimson_button.json │ │ │ │ │ ├── crimson_door.json │ │ │ │ │ ├── crimson_fence.json │ │ │ │ │ ├── crimson_fence_gate.json │ │ │ │ │ ├── crimson_fungus.json │ │ │ │ │ ├── crimson_hanging_sign.json │ │ │ │ │ ├── crimson_hyphae.json │ │ │ │ │ ├── crimson_nylium.json │ │ │ │ │ ├── crimson_planks.json │ │ │ │ │ ├── crimson_pressure_plate.json │ │ │ │ │ ├── crimson_roots.json │ │ │ │ │ ├── crimson_sign.json │ │ │ │ │ ├── crimson_slab.json │ │ │ │ │ ├── crimson_stairs.json │ │ │ │ │ ├── crimson_stem.json │ │ │ │ │ ├── crimson_trapdoor.json │ │ │ │ │ ├── crossbow.json │ │ │ │ │ ├── crossbow_arrow.json │ │ │ │ │ ├── crossbow_firework.json │ │ │ │ │ ├── crossbow_pulling_0.json │ │ │ │ │ ├── crossbow_pulling_1.json │ │ │ │ │ ├── crossbow_pulling_2.json │ │ │ │ │ ├── crying_obsidian.json │ │ │ │ │ ├── cut_copper.json │ │ │ │ │ ├── cut_copper_slab.json │ │ │ │ │ ├── cut_copper_stairs.json │ │ │ │ │ ├── cut_red_sandstone.json │ │ │ │ │ ├── cut_red_sandstone_slab.json │ │ │ │ │ ├── cut_sandstone.json │ │ │ │ │ ├── cut_sandstone_slab.json │ │ │ │ │ ├── cyan_banner.json │ │ │ │ │ ├── cyan_bed.json │ │ │ │ │ ├── cyan_candle.json │ │ │ │ │ ├── cyan_carpet.json │ │ │ │ │ ├── cyan_concrete.json │ │ │ │ │ ├── cyan_concrete_powder.json │ │ │ │ │ ├── cyan_dye.json │ │ │ │ │ ├── cyan_glazed_terracotta.json │ │ │ │ │ ├── cyan_shulker_box.json │ │ │ │ │ ├── cyan_stained_glass.json │ │ │ │ │ ├── cyan_stained_glass_pane.json │ │ │ │ │ ├── cyan_terracotta.json │ │ │ │ │ ├── cyan_wool.json │ │ │ │ │ ├── damaged_anvil.json │ │ │ │ │ ├── dandelion.json │ │ │ │ │ ├── danger_pottery_sherd.json │ │ │ │ │ ├── dark_oak_boat.json │ │ │ │ │ ├── dark_oak_button.json │ │ │ │ │ ├── dark_oak_chest_boat.json │ │ │ │ │ ├── dark_oak_door.json │ │ │ │ │ ├── dark_oak_fence.json │ │ │ │ │ ├── dark_oak_fence_gate.json │ │ │ │ │ ├── dark_oak_hanging_sign.json │ │ │ │ │ ├── dark_oak_leaves.json │ │ │ │ │ ├── dark_oak_log.json │ │ │ │ │ ├── dark_oak_planks.json │ │ │ │ │ ├── dark_oak_pressure_plate.json │ │ │ │ │ ├── dark_oak_sapling.json │ │ │ │ │ ├── dark_oak_sign.json │ │ │ │ │ ├── dark_oak_slab.json │ │ │ │ │ ├── dark_oak_stairs.json │ │ │ │ │ ├── dark_oak_trapdoor.json │ │ │ │ │ ├── dark_oak_wood.json │ │ │ │ │ ├── dark_prismarine.json │ │ │ │ │ ├── dark_prismarine_slab.json │ │ │ │ │ ├── dark_prismarine_stairs.json │ │ │ │ │ ├── daylight_detector.json │ │ │ │ │ ├── dead_brain_coral.json │ │ │ │ │ ├── dead_brain_coral_block.json │ │ │ │ │ ├── dead_brain_coral_fan.json │ │ │ │ │ ├── dead_bubble_coral.json │ │ │ │ │ ├── dead_bubble_coral_block.json │ │ │ │ │ ├── dead_bubble_coral_fan.json │ │ │ │ │ ├── dead_bush.json │ │ │ │ │ ├── dead_fire_coral.json │ │ │ │ │ ├── dead_fire_coral_block.json │ │ │ │ │ ├── dead_fire_coral_fan.json │ │ │ │ │ ├── dead_horn_coral.json │ │ │ │ │ ├── dead_horn_coral_block.json │ │ │ │ │ ├── dead_horn_coral_fan.json │ │ │ │ │ ├── dead_tube_coral.json │ │ │ │ │ ├── dead_tube_coral_block.json │ │ │ │ │ ├── dead_tube_coral_fan.json │ │ │ │ │ ├── debug_stick.json │ │ │ │ │ ├── decorated_pot.json │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── deepslate_brick_slab.json │ │ │ │ │ ├── deepslate_brick_stairs.json │ │ │ │ │ ├── deepslate_brick_wall.json │ │ │ │ │ ├── deepslate_bricks.json │ │ │ │ │ ├── deepslate_coal_ore.json │ │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ │ ├── deepslate_diamond_ore.json │ │ │ │ │ ├── deepslate_emerald_ore.json │ │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ │ ├── deepslate_lapis_ore.json │ │ │ │ │ ├── deepslate_redstone_ore.json │ │ │ │ │ ├── deepslate_tile_slab.json │ │ │ │ │ ├── deepslate_tile_stairs.json │ │ │ │ │ ├── deepslate_tile_wall.json │ │ │ │ │ ├── deepslate_tiles.json │ │ │ │ │ ├── detector_rail.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── diamond_axe.json │ │ │ │ │ ├── diamond_block.json │ │ │ │ │ ├── diamond_boots.json │ │ │ │ │ ├── diamond_boots_amethyst_trim.json │ │ │ │ │ ├── diamond_boots_copper_trim.json │ │ │ │ │ ├── diamond_boots_diamond_darker_trim.json │ │ │ │ │ ├── diamond_boots_emerald_trim.json │ │ │ │ │ ├── diamond_boots_gold_trim.json │ │ │ │ │ ├── diamond_boots_iron_trim.json │ │ │ │ │ ├── diamond_boots_lapis_trim.json │ │ │ │ │ ├── diamond_boots_netherite_trim.json │ │ │ │ │ ├── diamond_boots_quartz_trim.json │ │ │ │ │ ├── diamond_boots_redstone_trim.json │ │ │ │ │ ├── diamond_chestplate.json │ │ │ │ │ ├── diamond_chestplate_amethyst_trim.json │ │ │ │ │ ├── diamond_chestplate_copper_trim.json │ │ │ │ │ ├── diamond_chestplate_diamond_darker_trim.json │ │ │ │ │ ├── diamond_chestplate_emerald_trim.json │ │ │ │ │ ├── diamond_chestplate_gold_trim.json │ │ │ │ │ ├── diamond_chestplate_iron_trim.json │ │ │ │ │ ├── diamond_chestplate_lapis_trim.json │ │ │ │ │ ├── diamond_chestplate_netherite_trim.json │ │ │ │ │ ├── diamond_chestplate_quartz_trim.json │ │ │ │ │ ├── diamond_chestplate_redstone_trim.json │ │ │ │ │ ├── diamond_helmet.json │ │ │ │ │ ├── diamond_helmet_amethyst_trim.json │ │ │ │ │ ├── diamond_helmet_copper_trim.json │ │ │ │ │ ├── diamond_helmet_diamond_darker_trim.json │ │ │ │ │ ├── diamond_helmet_emerald_trim.json │ │ │ │ │ ├── diamond_helmet_gold_trim.json │ │ │ │ │ ├── diamond_helmet_iron_trim.json │ │ │ │ │ ├── diamond_helmet_lapis_trim.json │ │ │ │ │ ├── diamond_helmet_netherite_trim.json │ │ │ │ │ ├── diamond_helmet_quartz_trim.json │ │ │ │ │ ├── diamond_helmet_redstone_trim.json │ │ │ │ │ ├── diamond_hoe.json │ │ │ │ │ ├── diamond_horse_armor.json │ │ │ │ │ ├── diamond_leggings.json │ │ │ │ │ ├── diamond_leggings_amethyst_trim.json │ │ │ │ │ ├── diamond_leggings_copper_trim.json │ │ │ │ │ ├── diamond_leggings_diamond_darker_trim.json │ │ │ │ │ ├── diamond_leggings_emerald_trim.json │ │ │ │ │ ├── diamond_leggings_gold_trim.json │ │ │ │ │ ├── diamond_leggings_iron_trim.json │ │ │ │ │ ├── diamond_leggings_lapis_trim.json │ │ │ │ │ ├── diamond_leggings_netherite_trim.json │ │ │ │ │ ├── diamond_leggings_quartz_trim.json │ │ │ │ │ ├── diamond_leggings_redstone_trim.json │ │ │ │ │ ├── diamond_ore.json │ │ │ │ │ ├── diamond_pickaxe.json │ │ │ │ │ ├── diamond_shovel.json │ │ │ │ │ ├── diamond_sword.json │ │ │ │ │ ├── diorite.json │ │ │ │ │ ├── diorite_slab.json │ │ │ │ │ ├── diorite_stairs.json │ │ │ │ │ ├── diorite_wall.json │ │ │ │ │ ├── dirt.json │ │ │ │ │ ├── dirt_path.json │ │ │ │ │ ├── disc_fragment_5.json │ │ │ │ │ ├── dispenser.json │ │ │ │ │ ├── dolphin_spawn_egg.json │ │ │ │ │ ├── donkey_spawn_egg.json │ │ │ │ │ ├── dragon_breath.json │ │ │ │ │ ├── dragon_egg.json │ │ │ │ │ ├── dragon_head.json │ │ │ │ │ ├── dried_kelp.json │ │ │ │ │ ├── dried_kelp_block.json │ │ │ │ │ ├── dripstone_block.json │ │ │ │ │ ├── dropper.json │ │ │ │ │ ├── drowned_spawn_egg.json │ │ │ │ │ ├── dune_armor_trim_smithing_template.json │ │ │ │ │ ├── echo_shard.json │ │ │ │ │ ├── egg.json │ │ │ │ │ ├── elder_guardian_spawn_egg.json │ │ │ │ │ ├── elytra.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── emerald_block.json │ │ │ │ │ ├── emerald_ore.json │ │ │ │ │ ├── enchanted_book.json │ │ │ │ │ ├── enchanted_golden_apple.json │ │ │ │ │ ├── enchanting_table.json │ │ │ │ │ ├── end_crystal.json │ │ │ │ │ ├── end_portal_frame.json │ │ │ │ │ ├── end_rod.json │ │ │ │ │ ├── end_stone.json │ │ │ │ │ ├── end_stone_brick_slab.json │ │ │ │ │ ├── end_stone_brick_stairs.json │ │ │ │ │ ├── end_stone_brick_wall.json │ │ │ │ │ ├── end_stone_bricks.json │ │ │ │ │ ├── ender_chest.json │ │ │ │ │ ├── ender_dragon_spawn_egg.json │ │ │ │ │ ├── ender_eye.json │ │ │ │ │ ├── ender_pearl.json │ │ │ │ │ ├── enderman_spawn_egg.json │ │ │ │ │ ├── endermite_spawn_egg.json │ │ │ │ │ ├── evoker_spawn_egg.json │ │ │ │ │ ├── experience_bottle.json │ │ │ │ │ ├── explorer_pottery_sherd.json │ │ │ │ │ ├── exposed_chiseled_copper.json │ │ │ │ │ ├── exposed_copper.json │ │ │ │ │ ├── exposed_copper_bulb.json │ │ │ │ │ ├── exposed_copper_door.json │ │ │ │ │ ├── exposed_copper_grate.json │ │ │ │ │ ├── exposed_copper_trapdoor.json │ │ │ │ │ ├── exposed_cut_copper.json │ │ │ │ │ ├── exposed_cut_copper_slab.json │ │ │ │ │ ├── exposed_cut_copper_stairs.json │ │ │ │ │ ├── eye_armor_trim_smithing_template.json │ │ │ │ │ ├── farmland.json │ │ │ │ │ ├── feather.json │ │ │ │ │ ├── fermented_spider_eye.json │ │ │ │ │ ├── fern.json │ │ │ │ │ ├── filled_map.json │ │ │ │ │ ├── fire_charge.json │ │ │ │ │ ├── fire_coral.json │ │ │ │ │ ├── fire_coral_block.json │ │ │ │ │ ├── fire_coral_fan.json │ │ │ │ │ ├── firework_rocket.json │ │ │ │ │ ├── firework_star.json │ │ │ │ │ ├── fishing_rod.json │ │ │ │ │ ├── fishing_rod_cast.json │ │ │ │ │ ├── fletching_table.json │ │ │ │ │ ├── flint.json │ │ │ │ │ ├── flint_and_steel.json │ │ │ │ │ ├── flower_banner_pattern.json │ │ │ │ │ ├── flower_pot.json │ │ │ │ │ ├── flowering_azalea.json │ │ │ │ │ ├── flowering_azalea_leaves.json │ │ │ │ │ ├── fox_spawn_egg.json │ │ │ │ │ ├── friend_pottery_sherd.json │ │ │ │ │ ├── frog_spawn_egg.json │ │ │ │ │ ├── frogspawn.json │ │ │ │ │ ├── furnace.json │ │ │ │ │ ├── furnace_minecart.json │ │ │ │ │ ├── generated.json │ │ │ │ │ ├── ghast_spawn_egg.json │ │ │ │ │ ├── ghast_tear.json │ │ │ │ │ ├── gilded_blackstone.json │ │ │ │ │ ├── glass.json │ │ │ │ │ ├── glass_bottle.json │ │ │ │ │ ├── glass_pane.json │ │ │ │ │ ├── glistering_melon_slice.json │ │ │ │ │ ├── globe_banner_pattern.json │ │ │ │ │ ├── glow_berries.json │ │ │ │ │ ├── glow_ink_sac.json │ │ │ │ │ ├── glow_item_frame.json │ │ │ │ │ ├── glow_lichen.json │ │ │ │ │ ├── glow_squid_spawn_egg.json │ │ │ │ │ ├── glowstone.json │ │ │ │ │ ├── glowstone_dust.json │ │ │ │ │ ├── goat_horn.json │ │ │ │ │ ├── goat_spawn_egg.json │ │ │ │ │ ├── gold_block.json │ │ │ │ │ ├── gold_ingot.json │ │ │ │ │ ├── gold_nugget.json │ │ │ │ │ ├── gold_ore.json │ │ │ │ │ ├── golden_apple.json │ │ │ │ │ ├── golden_axe.json │ │ │ │ │ ├── golden_boots.json │ │ │ │ │ ├── golden_boots_amethyst_trim.json │ │ │ │ │ ├── golden_boots_copper_trim.json │ │ │ │ │ ├── golden_boots_diamond_trim.json │ │ │ │ │ ├── golden_boots_emerald_trim.json │ │ │ │ │ ├── golden_boots_gold_darker_trim.json │ │ │ │ │ ├── golden_boots_iron_trim.json │ │ │ │ │ ├── golden_boots_lapis_trim.json │ │ │ │ │ ├── golden_boots_netherite_trim.json │ │ │ │ │ ├── golden_boots_quartz_trim.json │ │ │ │ │ ├── golden_boots_redstone_trim.json │ │ │ │ │ ├── golden_carrot.json │ │ │ │ │ ├── golden_chestplate.json │ │ │ │ │ ├── golden_chestplate_amethyst_trim.json │ │ │ │ │ ├── golden_chestplate_copper_trim.json │ │ │ │ │ ├── golden_chestplate_diamond_trim.json │ │ │ │ │ ├── golden_chestplate_emerald_trim.json │ │ │ │ │ ├── golden_chestplate_gold_darker_trim.json │ │ │ │ │ ├── golden_chestplate_iron_trim.json │ │ │ │ │ ├── golden_chestplate_lapis_trim.json │ │ │ │ │ ├── golden_chestplate_netherite_trim.json │ │ │ │ │ ├── golden_chestplate_quartz_trim.json │ │ │ │ │ ├── golden_chestplate_redstone_trim.json │ │ │ │ │ ├── golden_helmet.json │ │ │ │ │ ├── golden_helmet_amethyst_trim.json │ │ │ │ │ ├── golden_helmet_copper_trim.json │ │ │ │ │ ├── golden_helmet_diamond_trim.json │ │ │ │ │ ├── golden_helmet_emerald_trim.json │ │ │ │ │ ├── golden_helmet_gold_darker_trim.json │ │ │ │ │ ├── golden_helmet_iron_trim.json │ │ │ │ │ ├── golden_helmet_lapis_trim.json │ │ │ │ │ ├── golden_helmet_netherite_trim.json │ │ │ │ │ ├── golden_helmet_quartz_trim.json │ │ │ │ │ ├── golden_helmet_redstone_trim.json │ │ │ │ │ ├── golden_hoe.json │ │ │ │ │ ├── golden_horse_armor.json │ │ │ │ │ ├── golden_leggings.json │ │ │ │ │ ├── golden_leggings_amethyst_trim.json │ │ │ │ │ ├── golden_leggings_copper_trim.json │ │ │ │ │ ├── golden_leggings_diamond_trim.json │ │ │ │ │ ├── golden_leggings_emerald_trim.json │ │ │ │ │ ├── golden_leggings_gold_darker_trim.json │ │ │ │ │ ├── golden_leggings_iron_trim.json │ │ │ │ │ ├── golden_leggings_lapis_trim.json │ │ │ │ │ ├── golden_leggings_netherite_trim.json │ │ │ │ │ ├── golden_leggings_quartz_trim.json │ │ │ │ │ ├── golden_leggings_redstone_trim.json │ │ │ │ │ ├── golden_pickaxe.json │ │ │ │ │ ├── golden_shovel.json │ │ │ │ │ ├── golden_sword.json │ │ │ │ │ ├── granite.json │ │ │ │ │ ├── granite_slab.json │ │ │ │ │ ├── granite_stairs.json │ │ │ │ │ ├── granite_wall.json │ │ │ │ │ ├── grass_block.json │ │ │ │ │ ├── gravel.json │ │ │ │ │ ├── gray_banner.json │ │ │ │ │ ├── gray_bed.json │ │ │ │ │ ├── gray_candle.json │ │ │ │ │ ├── gray_carpet.json │ │ │ │ │ ├── gray_concrete.json │ │ │ │ │ ├── gray_concrete_powder.json │ │ │ │ │ ├── gray_dye.json │ │ │ │ │ ├── gray_glazed_terracotta.json │ │ │ │ │ ├── gray_shulker_box.json │ │ │ │ │ ├── gray_stained_glass.json │ │ │ │ │ ├── gray_stained_glass_pane.json │ │ │ │ │ ├── gray_terracotta.json │ │ │ │ │ ├── gray_wool.json │ │ │ │ │ ├── green_banner.json │ │ │ │ │ ├── green_bed.json │ │ │ │ │ ├── green_candle.json │ │ │ │ │ ├── green_carpet.json │ │ │ │ │ ├── green_concrete.json │ │ │ │ │ ├── green_concrete_powder.json │ │ │ │ │ ├── green_dye.json │ │ │ │ │ ├── green_glazed_terracotta.json │ │ │ │ │ ├── green_shulker_box.json │ │ │ │ │ ├── green_stained_glass.json │ │ │ │ │ ├── green_stained_glass_pane.json │ │ │ │ │ ├── green_terracotta.json │ │ │ │ │ ├── green_wool.json │ │ │ │ │ ├── grindstone.json │ │ │ │ │ ├── guardian_spawn_egg.json │ │ │ │ │ ├── gunpowder.json │ │ │ │ │ ├── handheld.json │ │ │ │ │ ├── handheld_rod.json │ │ │ │ │ ├── hanging_roots.json │ │ │ │ │ ├── hay_block.json │ │ │ │ │ ├── heart_of_the_sea.json │ │ │ │ │ ├── heart_pottery_sherd.json │ │ │ │ │ ├── heartbreak_pottery_sherd.json │ │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ │ ├── hoglin_spawn_egg.json │ │ │ │ │ ├── honey_block.json │ │ │ │ │ ├── honey_bottle.json │ │ │ │ │ ├── honeycomb.json │ │ │ │ │ ├── honeycomb_block.json │ │ │ │ │ ├── hopper.json │ │ │ │ │ ├── hopper_minecart.json │ │ │ │ │ ├── horn_coral.json │ │ │ │ │ ├── horn_coral_block.json │ │ │ │ │ ├── horn_coral_fan.json │ │ │ │ │ ├── horse_spawn_egg.json │ │ │ │ │ ├── host_armor_trim_smithing_template.json │ │ │ │ │ ├── howl_pottery_sherd.json │ │ │ │ │ ├── husk_spawn_egg.json │ │ │ │ │ ├── ice.json │ │ │ │ │ ├── infested_chiseled_stone_bricks.json │ │ │ │ │ ├── infested_cobblestone.json │ │ │ │ │ ├── infested_cracked_stone_bricks.json │ │ │ │ │ ├── infested_deepslate.json │ │ │ │ │ ├── infested_mossy_stone_bricks.json │ │ │ │ │ ├── infested_stone.json │ │ │ │ │ ├── infested_stone_bricks.json │ │ │ │ │ ├── ink_sac.json │ │ │ │ │ ├── iron_axe.json │ │ │ │ │ ├── iron_bars.json │ │ │ │ │ ├── iron_block.json │ │ │ │ │ ├── iron_boots.json │ │ │ │ │ ├── iron_boots_amethyst_trim.json │ │ │ │ │ ├── iron_boots_copper_trim.json │ │ │ │ │ ├── iron_boots_diamond_trim.json │ │ │ │ │ ├── iron_boots_emerald_trim.json │ │ │ │ │ ├── iron_boots_gold_trim.json │ │ │ │ │ ├── iron_boots_iron_darker_trim.json │ │ │ │ │ ├── iron_boots_lapis_trim.json │ │ │ │ │ ├── iron_boots_netherite_trim.json │ │ │ │ │ ├── iron_boots_quartz_trim.json │ │ │ │ │ ├── iron_boots_redstone_trim.json │ │ │ │ │ ├── iron_chestplate.json │ │ │ │ │ ├── iron_chestplate_amethyst_trim.json │ │ │ │ │ ├── iron_chestplate_copper_trim.json │ │ │ │ │ ├── iron_chestplate_diamond_trim.json │ │ │ │ │ ├── iron_chestplate_emerald_trim.json │ │ │ │ │ ├── iron_chestplate_gold_trim.json │ │ │ │ │ ├── iron_chestplate_iron_darker_trim.json │ │ │ │ │ ├── iron_chestplate_lapis_trim.json │ │ │ │ │ ├── iron_chestplate_netherite_trim.json │ │ │ │ │ ├── iron_chestplate_quartz_trim.json │ │ │ │ │ ├── iron_chestplate_redstone_trim.json │ │ │ │ │ ├── iron_door.json │ │ │ │ │ ├── iron_golem_spawn_egg.json │ │ │ │ │ ├── iron_helmet.json │ │ │ │ │ ├── iron_helmet_amethyst_trim.json │ │ │ │ │ ├── iron_helmet_copper_trim.json │ │ │ │ │ ├── iron_helmet_diamond_trim.json │ │ │ │ │ ├── iron_helmet_emerald_trim.json │ │ │ │ │ ├── iron_helmet_gold_trim.json │ │ │ │ │ ├── iron_helmet_iron_darker_trim.json │ │ │ │ │ ├── iron_helmet_lapis_trim.json │ │ │ │ │ ├── iron_helmet_netherite_trim.json │ │ │ │ │ ├── iron_helmet_quartz_trim.json │ │ │ │ │ ├── iron_helmet_redstone_trim.json │ │ │ │ │ ├── iron_hoe.json │ │ │ │ │ ├── iron_horse_armor.json │ │ │ │ │ ├── iron_ingot.json │ │ │ │ │ ├── iron_leggings.json │ │ │ │ │ ├── iron_leggings_amethyst_trim.json │ │ │ │ │ ├── iron_leggings_copper_trim.json │ │ │ │ │ ├── iron_leggings_diamond_trim.json │ │ │ │ │ ├── iron_leggings_emerald_trim.json │ │ │ │ │ ├── iron_leggings_gold_trim.json │ │ │ │ │ ├── iron_leggings_iron_darker_trim.json │ │ │ │ │ ├── iron_leggings_lapis_trim.json │ │ │ │ │ ├── iron_leggings_netherite_trim.json │ │ │ │ │ ├── iron_leggings_quartz_trim.json │ │ │ │ │ ├── iron_leggings_redstone_trim.json │ │ │ │ │ ├── iron_nugget.json │ │ │ │ │ ├── iron_ore.json │ │ │ │ │ ├── iron_pickaxe.json │ │ │ │ │ ├── iron_shovel.json │ │ │ │ │ ├── iron_sword.json │ │ │ │ │ ├── iron_trapdoor.json │ │ │ │ │ ├── item_frame.json │ │ │ │ │ ├── jack_o_lantern.json │ │ │ │ │ ├── jigsaw.json │ │ │ │ │ ├── jukebox.json │ │ │ │ │ ├── jungle_boat.json │ │ │ │ │ ├── jungle_button.json │ │ │ │ │ ├── jungle_chest_boat.json │ │ │ │ │ ├── jungle_door.json │ │ │ │ │ ├── jungle_fence.json │ │ │ │ │ ├── jungle_fence_gate.json │ │ │ │ │ ├── jungle_hanging_sign.json │ │ │ │ │ ├── jungle_leaves.json │ │ │ │ │ ├── jungle_log.json │ │ │ │ │ ├── jungle_planks.json │ │ │ │ │ ├── jungle_pressure_plate.json │ │ │ │ │ ├── jungle_sapling.json │ │ │ │ │ ├── jungle_sign.json │ │ │ │ │ ├── jungle_slab.json │ │ │ │ │ ├── jungle_stairs.json │ │ │ │ │ ├── jungle_trapdoor.json │ │ │ │ │ ├── jungle_wood.json │ │ │ │ │ ├── kelp.json │ │ │ │ │ ├── knowledge_book.json │ │ │ │ │ ├── ladder.json │ │ │ │ │ ├── lantern.json │ │ │ │ │ ├── lapis_block.json │ │ │ │ │ ├── lapis_lazuli.json │ │ │ │ │ ├── lapis_ore.json │ │ │ │ │ ├── large_amethyst_bud.json │ │ │ │ │ ├── large_fern.json │ │ │ │ │ ├── lava_bucket.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── leather.json │ │ │ │ │ ├── leather_boots.json │ │ │ │ │ ├── leather_boots_amethyst_trim.json │ │ │ │ │ ├── leather_boots_copper_trim.json │ │ │ │ │ ├── leather_boots_diamond_trim.json │ │ │ │ │ ├── leather_boots_emerald_trim.json │ │ │ │ │ ├── leather_boots_gold_trim.json │ │ │ │ │ ├── leather_boots_iron_trim.json │ │ │ │ │ ├── leather_boots_lapis_trim.json │ │ │ │ │ ├── leather_boots_netherite_trim.json │ │ │ │ │ ├── leather_boots_quartz_trim.json │ │ │ │ │ ├── leather_boots_redstone_trim.json │ │ │ │ │ ├── leather_chestplate.json │ │ │ │ │ ├── leather_chestplate_amethyst_trim.json │ │ │ │ │ ├── leather_chestplate_copper_trim.json │ │ │ │ │ ├── leather_chestplate_diamond_trim.json │ │ │ │ │ ├── leather_chestplate_emerald_trim.json │ │ │ │ │ ├── leather_chestplate_gold_trim.json │ │ │ │ │ ├── leather_chestplate_iron_trim.json │ │ │ │ │ ├── leather_chestplate_lapis_trim.json │ │ │ │ │ ├── leather_chestplate_netherite_trim.json │ │ │ │ │ ├── leather_chestplate_quartz_trim.json │ │ │ │ │ ├── leather_chestplate_redstone_trim.json │ │ │ │ │ ├── leather_helmet.json │ │ │ │ │ ├── leather_helmet_amethyst_trim.json │ │ │ │ │ ├── leather_helmet_copper_trim.json │ │ │ │ │ ├── leather_helmet_diamond_trim.json │ │ │ │ │ ├── leather_helmet_emerald_trim.json │ │ │ │ │ ├── leather_helmet_gold_trim.json │ │ │ │ │ ├── leather_helmet_iron_trim.json │ │ │ │ │ ├── leather_helmet_lapis_trim.json │ │ │ │ │ ├── leather_helmet_netherite_trim.json │ │ │ │ │ ├── leather_helmet_quartz_trim.json │ │ │ │ │ ├── leather_helmet_redstone_trim.json │ │ │ │ │ ├── leather_horse_armor.json │ │ │ │ │ ├── leather_leggings.json │ │ │ │ │ ├── leather_leggings_amethyst_trim.json │ │ │ │ │ ├── leather_leggings_copper_trim.json │ │ │ │ │ ├── leather_leggings_diamond_trim.json │ │ │ │ │ ├── leather_leggings_emerald_trim.json │ │ │ │ │ ├── leather_leggings_gold_trim.json │ │ │ │ │ ├── leather_leggings_iron_trim.json │ │ │ │ │ ├── leather_leggings_lapis_trim.json │ │ │ │ │ ├── leather_leggings_netherite_trim.json │ │ │ │ │ ├── leather_leggings_quartz_trim.json │ │ │ │ │ ├── leather_leggings_redstone_trim.json │ │ │ │ │ ├── lectern.json │ │ │ │ │ ├── lever.json │ │ │ │ │ ├── light.json │ │ │ │ │ ├── light_00.json │ │ │ │ │ ├── light_01.json │ │ │ │ │ ├── light_02.json │ │ │ │ │ ├── light_03.json │ │ │ │ │ ├── light_04.json │ │ │ │ │ ├── light_05.json │ │ │ │ │ ├── light_06.json │ │ │ │ │ ├── light_07.json │ │ │ │ │ ├── light_08.json │ │ │ │ │ ├── light_09.json │ │ │ │ │ ├── light_10.json │ │ │ │ │ ├── light_11.json │ │ │ │ │ ├── light_12.json │ │ │ │ │ ├── light_13.json │ │ │ │ │ ├── light_14.json │ │ │ │ │ ├── light_15.json │ │ │ │ │ ├── light_blue_banner.json │ │ │ │ │ ├── light_blue_bed.json │ │ │ │ │ ├── light_blue_candle.json │ │ │ │ │ ├── light_blue_carpet.json │ │ │ │ │ ├── light_blue_concrete.json │ │ │ │ │ ├── light_blue_concrete_powder.json │ │ │ │ │ ├── light_blue_dye.json │ │ │ │ │ ├── light_blue_glazed_terracotta.json │ │ │ │ │ ├── light_blue_shulker_box.json │ │ │ │ │ ├── light_blue_stained_glass.json │ │ │ │ │ ├── light_blue_stained_glass_pane.json │ │ │ │ │ ├── light_blue_terracotta.json │ │ │ │ │ ├── light_blue_wool.json │ │ │ │ │ ├── light_gray_banner.json │ │ │ │ │ ├── light_gray_bed.json │ │ │ │ │ ├── light_gray_candle.json │ │ │ │ │ ├── light_gray_carpet.json │ │ │ │ │ ├── light_gray_concrete.json │ │ │ │ │ ├── light_gray_concrete_powder.json │ │ │ │ │ ├── light_gray_dye.json │ │ │ │ │ ├── light_gray_glazed_terracotta.json │ │ │ │ │ ├── light_gray_shulker_box.json │ │ │ │ │ ├── light_gray_stained_glass.json │ │ │ │ │ ├── light_gray_stained_glass_pane.json │ │ │ │ │ ├── light_gray_terracotta.json │ │ │ │ │ ├── light_gray_wool.json │ │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ │ ├── lightning_rod.json │ │ │ │ │ ├── lilac.json │ │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ │ ├── lily_pad.json │ │ │ │ │ ├── lime_banner.json │ │ │ │ │ ├── lime_bed.json │ │ │ │ │ ├── lime_candle.json │ │ │ │ │ ├── lime_carpet.json │ │ │ │ │ ├── lime_concrete.json │ │ │ │ │ ├── lime_concrete_powder.json │ │ │ │ │ ├── lime_dye.json │ │ │ │ │ ├── lime_glazed_terracotta.json │ │ │ │ │ ├── lime_shulker_box.json │ │ │ │ │ ├── lime_stained_glass.json │ │ │ │ │ ├── lime_stained_glass_pane.json │ │ │ │ │ ├── lime_terracotta.json │ │ │ │ │ ├── lime_wool.json │ │ │ │ │ ├── lingering_potion.json │ │ │ │ │ ├── llama_spawn_egg.json │ │ │ │ │ ├── lodestone.json │ │ │ │ │ ├── loom.json │ │ │ │ │ ├── magenta_banner.json │ │ │ │ │ ├── magenta_bed.json │ │ │ │ │ ├── magenta_candle.json │ │ │ │ │ ├── magenta_carpet.json │ │ │ │ │ ├── magenta_concrete.json │ │ │ │ │ ├── magenta_concrete_powder.json │ │ │ │ │ ├── magenta_dye.json │ │ │ │ │ ├── magenta_glazed_terracotta.json │ │ │ │ │ ├── magenta_shulker_box.json │ │ │ │ │ ├── magenta_stained_glass.json │ │ │ │ │ ├── magenta_stained_glass_pane.json │ │ │ │ │ ├── magenta_terracotta.json │ │ │ │ │ ├── magenta_wool.json │ │ │ │ │ ├── magma_block.json │ │ │ │ │ ├── magma_cream.json │ │ │ │ │ ├── magma_cube_spawn_egg.json │ │ │ │ │ ├── mangrove_boat.json │ │ │ │ │ ├── mangrove_button.json │ │ │ │ │ ├── mangrove_chest_boat.json │ │ │ │ │ ├── mangrove_door.json │ │ │ │ │ ├── mangrove_fence.json │ │ │ │ │ ├── mangrove_fence_gate.json │ │ │ │ │ ├── mangrove_hanging_sign.json │ │ │ │ │ ├── mangrove_leaves.json │ │ │ │ │ ├── mangrove_log.json │ │ │ │ │ ├── mangrove_planks.json │ │ │ │ │ ├── mangrove_pressure_plate.json │ │ │ │ │ ├── mangrove_propagule.json │ │ │ │ │ ├── mangrove_roots.json │ │ │ │ │ ├── mangrove_sign.json │ │ │ │ │ ├── mangrove_slab.json │ │ │ │ │ ├── mangrove_stairs.json │ │ │ │ │ ├── mangrove_trapdoor.json │ │ │ │ │ ├── mangrove_wood.json │ │ │ │ │ ├── map.json │ │ │ │ │ ├── medium_amethyst_bud.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── melon_seeds.json │ │ │ │ │ ├── melon_slice.json │ │ │ │ │ ├── milk_bucket.json │ │ │ │ │ ├── minecart.json │ │ │ │ │ ├── miner_pottery_sherd.json │ │ │ │ │ ├── mojang_banner_pattern.json │ │ │ │ │ ├── mooshroom_spawn_egg.json │ │ │ │ │ ├── moss_block.json │ │ │ │ │ ├── moss_carpet.json │ │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ │ ├── mossy_cobblestone_slab.json │ │ │ │ │ ├── mossy_cobblestone_stairs.json │ │ │ │ │ ├── mossy_cobblestone_wall.json │ │ │ │ │ ├── mossy_stone_brick_slab.json │ │ │ │ │ ├── mossy_stone_brick_stairs.json │ │ │ │ │ ├── mossy_stone_brick_wall.json │ │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ │ ├── mourner_pottery_sherd.json │ │ │ │ │ ├── mud.json │ │ │ │ │ ├── mud_brick_slab.json │ │ │ │ │ ├── mud_brick_stairs.json │ │ │ │ │ ├── mud_brick_wall.json │ │ │ │ │ ├── mud_bricks.json │ │ │ │ │ ├── muddy_mangrove_roots.json │ │ │ │ │ ├── mule_spawn_egg.json │ │ │ │ │ ├── mushroom_stem.json │ │ │ │ │ ├── mushroom_stew.json │ │ │ │ │ ├── music_disc_11.json │ │ │ │ │ ├── music_disc_13.json │ │ │ │ │ ├── music_disc_5.json │ │ │ │ │ ├── music_disc_blocks.json │ │ │ │ │ ├── music_disc_cat.json │ │ │ │ │ ├── music_disc_chirp.json │ │ │ │ │ ├── music_disc_far.json │ │ │ │ │ ├── music_disc_mall.json │ │ │ │ │ ├── music_disc_mellohi.json │ │ │ │ │ ├── music_disc_otherside.json │ │ │ │ │ ├── music_disc_pigstep.json │ │ │ │ │ ├── music_disc_relic.json │ │ │ │ │ ├── music_disc_stal.json │ │ │ │ │ ├── music_disc_strad.json │ │ │ │ │ ├── music_disc_wait.json │ │ │ │ │ ├── music_disc_ward.json │ │ │ │ │ ├── mutton.json │ │ │ │ │ ├── mycelium.json │ │ │ │ │ ├── name_tag.json │ │ │ │ │ ├── nautilus_shell.json │ │ │ │ │ ├── nether_brick.json │ │ │ │ │ ├── nether_brick_fence.json │ │ │ │ │ ├── nether_brick_slab.json │ │ │ │ │ ├── nether_brick_stairs.json │ │ │ │ │ ├── nether_brick_wall.json │ │ │ │ │ ├── nether_bricks.json │ │ │ │ │ ├── nether_gold_ore.json │ │ │ │ │ ├── nether_quartz_ore.json │ │ │ │ │ ├── nether_sprouts.json │ │ │ │ │ ├── nether_star.json │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ ├── nether_wart_block.json │ │ │ │ │ ├── netherite_axe.json │ │ │ │ │ ├── netherite_block.json │ │ │ │ │ ├── netherite_boots.json │ │ │ │ │ ├── netherite_boots_amethyst_trim.json │ │ │ │ │ ├── netherite_boots_copper_trim.json │ │ │ │ │ ├── netherite_boots_diamond_trim.json │ │ │ │ │ ├── netherite_boots_emerald_trim.json │ │ │ │ │ ├── netherite_boots_gold_trim.json │ │ │ │ │ ├── netherite_boots_iron_trim.json │ │ │ │ │ ├── netherite_boots_lapis_trim.json │ │ │ │ │ ├── netherite_boots_netherite_darker_trim.json │ │ │ │ │ ├── netherite_boots_quartz_trim.json │ │ │ │ │ ├── netherite_boots_redstone_trim.json │ │ │ │ │ ├── netherite_chestplate.json │ │ │ │ │ ├── netherite_chestplate_amethyst_trim.json │ │ │ │ │ ├── netherite_chestplate_copper_trim.json │ │ │ │ │ ├── netherite_chestplate_diamond_trim.json │ │ │ │ │ ├── netherite_chestplate_emerald_trim.json │ │ │ │ │ ├── netherite_chestplate_gold_trim.json │ │ │ │ │ ├── netherite_chestplate_iron_trim.json │ │ │ │ │ ├── netherite_chestplate_lapis_trim.json │ │ │ │ │ ├── netherite_chestplate_netherite_darker_trim.json │ │ │ │ │ ├── netherite_chestplate_quartz_trim.json │ │ │ │ │ ├── netherite_chestplate_redstone_trim.json │ │ │ │ │ ├── netherite_helmet.json │ │ │ │ │ ├── netherite_helmet_amethyst_trim.json │ │ │ │ │ ├── netherite_helmet_copper_trim.json │ │ │ │ │ ├── netherite_helmet_diamond_trim.json │ │ │ │ │ ├── netherite_helmet_emerald_trim.json │ │ │ │ │ ├── netherite_helmet_gold_trim.json │ │ │ │ │ ├── netherite_helmet_iron_trim.json │ │ │ │ │ ├── netherite_helmet_lapis_trim.json │ │ │ │ │ ├── netherite_helmet_netherite_darker_trim.json │ │ │ │ │ ├── netherite_helmet_quartz_trim.json │ │ │ │ │ ├── netherite_helmet_redstone_trim.json │ │ │ │ │ ├── netherite_hoe.json │ │ │ │ │ ├── netherite_ingot.json │ │ │ │ │ ├── netherite_leggings.json │ │ │ │ │ ├── netherite_leggings_amethyst_trim.json │ │ │ │ │ ├── netherite_leggings_copper_trim.json │ │ │ │ │ ├── netherite_leggings_diamond_trim.json │ │ │ │ │ ├── netherite_leggings_emerald_trim.json │ │ │ │ │ ├── netherite_leggings_gold_trim.json │ │ │ │ │ ├── netherite_leggings_iron_trim.json │ │ │ │ │ ├── netherite_leggings_lapis_trim.json │ │ │ │ │ ├── netherite_leggings_netherite_darker_trim.json │ │ │ │ │ ├── netherite_leggings_quartz_trim.json │ │ │ │ │ ├── netherite_leggings_redstone_trim.json │ │ │ │ │ ├── netherite_pickaxe.json │ │ │ │ │ ├── netherite_scrap.json │ │ │ │ │ ├── netherite_shovel.json │ │ │ │ │ ├── netherite_sword.json │ │ │ │ │ ├── netherite_upgrade_smithing_template.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ ├── note_block.json │ │ │ │ │ ├── oak_boat.json │ │ │ │ │ ├── oak_button.json │ │ │ │ │ ├── oak_chest_boat.json │ │ │ │ │ ├── oak_door.json │ │ │ │ │ ├── oak_fence.json │ │ │ │ │ ├── oak_fence_gate.json │ │ │ │ │ ├── oak_hanging_sign.json │ │ │ │ │ ├── oak_leaves.json │ │ │ │ │ ├── oak_log.json │ │ │ │ │ ├── oak_planks.json │ │ │ │ │ ├── oak_pressure_plate.json │ │ │ │ │ ├── oak_sapling.json │ │ │ │ │ ├── oak_sign.json │ │ │ │ │ ├── oak_slab.json │ │ │ │ │ ├── oak_stairs.json │ │ │ │ │ ├── oak_trapdoor.json │ │ │ │ │ ├── oak_wood.json │ │ │ │ │ ├── observer.json │ │ │ │ │ ├── obsidian.json │ │ │ │ │ ├── ocelot_spawn_egg.json │ │ │ │ │ ├── ochre_froglight.json │ │ │ │ │ ├── orange_banner.json │ │ │ │ │ ├── orange_bed.json │ │ │ │ │ ├── orange_candle.json │ │ │ │ │ ├── orange_carpet.json │ │ │ │ │ ├── orange_concrete.json │ │ │ │ │ ├── orange_concrete_powder.json │ │ │ │ │ ├── orange_dye.json │ │ │ │ │ ├── orange_glazed_terracotta.json │ │ │ │ │ ├── orange_shulker_box.json │ │ │ │ │ ├── orange_stained_glass.json │ │ │ │ │ ├── orange_stained_glass_pane.json │ │ │ │ │ ├── orange_terracotta.json │ │ │ │ │ ├── orange_tulip.json │ │ │ │ │ ├── orange_wool.json │ │ │ │ │ ├── oxeye_daisy.json │ │ │ │ │ ├── oxidized_chiseled_copper.json │ │ │ │ │ ├── oxidized_copper.json │ │ │ │ │ ├── oxidized_copper_bulb.json │ │ │ │ │ ├── oxidized_copper_door.json │ │ │ │ │ ├── oxidized_copper_grate.json │ │ │ │ │ ├── oxidized_copper_trapdoor.json │ │ │ │ │ ├── oxidized_cut_copper.json │ │ │ │ │ ├── oxidized_cut_copper_slab.json │ │ │ │ │ ├── oxidized_cut_copper_stairs.json │ │ │ │ │ ├── packed_ice.json │ │ │ │ │ ├── packed_mud.json │ │ │ │ │ ├── painting.json │ │ │ │ │ ├── panda_spawn_egg.json │ │ │ │ │ ├── paper.json │ │ │ │ │ ├── parrot_spawn_egg.json │ │ │ │ │ ├── pearlescent_froglight.json │ │ │ │ │ ├── peony.json │ │ │ │ │ ├── petrified_oak_slab.json │ │ │ │ │ ├── phantom_membrane.json │ │ │ │ │ ├── phantom_spawn_egg.json │ │ │ │ │ ├── pig_spawn_egg.json │ │ │ │ │ ├── piglin_banner_pattern.json │ │ │ │ │ ├── piglin_brute_spawn_egg.json │ │ │ │ │ ├── piglin_head.json │ │ │ │ │ ├── piglin_spawn_egg.json │ │ │ │ │ ├── pillager_spawn_egg.json │ │ │ │ │ ├── pink_banner.json │ │ │ │ │ ├── pink_bed.json │ │ │ │ │ ├── pink_candle.json │ │ │ │ │ ├── pink_carpet.json │ │ │ │ │ ├── pink_concrete.json │ │ │ │ │ ├── pink_concrete_powder.json │ │ │ │ │ ├── pink_dye.json │ │ │ │ │ ├── pink_glazed_terracotta.json │ │ │ │ │ ├── pink_petals.json │ │ │ │ │ ├── pink_shulker_box.json │ │ │ │ │ ├── pink_stained_glass.json │ │ │ │ │ ├── pink_stained_glass_pane.json │ │ │ │ │ ├── pink_terracotta.json │ │ │ │ │ ├── pink_tulip.json │ │ │ │ │ ├── pink_wool.json │ │ │ │ │ ├── piston.json │ │ │ │ │ ├── pitcher_plant.json │ │ │ │ │ ├── pitcher_pod.json │ │ │ │ │ ├── player_head.json │ │ │ │ │ ├── plenty_pottery_sherd.json │ │ │ │ │ ├── podzol.json │ │ │ │ │ ├── pointed_dripstone.json │ │ │ │ │ ├── poisonous_potato.json │ │ │ │ │ ├── polar_bear_spawn_egg.json │ │ │ │ │ ├── polished_andesite.json │ │ │ │ │ ├── polished_andesite_slab.json │ │ │ │ │ ├── polished_andesite_stairs.json │ │ │ │ │ ├── polished_basalt.json │ │ │ │ │ ├── polished_blackstone.json │ │ │ │ │ ├── polished_blackstone_brick_slab.json │ │ │ │ │ ├── polished_blackstone_brick_stairs.json │ │ │ │ │ ├── polished_blackstone_brick_wall.json │ │ │ │ │ ├── polished_blackstone_bricks.json │ │ │ │ │ ├── polished_blackstone_button.json │ │ │ │ │ ├── polished_blackstone_pressure_plate.json │ │ │ │ │ ├── polished_blackstone_slab.json │ │ │ │ │ ├── polished_blackstone_stairs.json │ │ │ │ │ ├── polished_blackstone_wall.json │ │ │ │ │ ├── polished_deepslate.json │ │ │ │ │ ├── polished_deepslate_slab.json │ │ │ │ │ ├── polished_deepslate_stairs.json │ │ │ │ │ ├── polished_deepslate_wall.json │ │ │ │ │ ├── polished_diorite.json │ │ │ │ │ ├── polished_diorite_slab.json │ │ │ │ │ ├── polished_diorite_stairs.json │ │ │ │ │ ├── polished_granite.json │ │ │ │ │ ├── polished_granite_slab.json │ │ │ │ │ ├── polished_granite_stairs.json │ │ │ │ │ ├── polished_tuff.json │ │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ │ ├── popped_chorus_fruit.json │ │ │ │ │ ├── poppy.json │ │ │ │ │ ├── porkchop.json │ │ │ │ │ ├── potato.json │ │ │ │ │ ├── potion.json │ │ │ │ │ ├── powder_snow_bucket.json │ │ │ │ │ ├── powered_rail.json │ │ │ │ │ ├── prismarine.json │ │ │ │ │ ├── prismarine_brick_slab.json │ │ │ │ │ ├── prismarine_brick_stairs.json │ │ │ │ │ ├── prismarine_bricks.json │ │ │ │ │ ├── prismarine_crystals.json │ │ │ │ │ ├── prismarine_shard.json │ │ │ │ │ ├── prismarine_slab.json │ │ │ │ │ ├── prismarine_stairs.json │ │ │ │ │ ├── prismarine_wall.json │ │ │ │ │ ├── prize_pottery_sherd.json │ │ │ │ │ ├── pufferfish.json │ │ │ │ │ ├── pufferfish_bucket.json │ │ │ │ │ ├── pufferfish_spawn_egg.json │ │ │ │ │ ├── pumpkin.json │ │ │ │ │ ├── pumpkin_pie.json │ │ │ │ │ ├── pumpkin_seeds.json │ │ │ │ │ ├── purple_banner.json │ │ │ │ │ ├── purple_bed.json │ │ │ │ │ ├── purple_candle.json │ │ │ │ │ ├── purple_carpet.json │ │ │ │ │ ├── purple_concrete.json │ │ │ │ │ ├── purple_concrete_powder.json │ │ │ │ │ ├── purple_dye.json │ │ │ │ │ ├── purple_glazed_terracotta.json │ │ │ │ │ ├── purple_shulker_box.json │ │ │ │ │ ├── purple_stained_glass.json │ │ │ │ │ ├── purple_stained_glass_pane.json │ │ │ │ │ ├── purple_terracotta.json │ │ │ │ │ ├── purple_wool.json │ │ │ │ │ ├── purpur_block.json │ │ │ │ │ ├── purpur_pillar.json │ │ │ │ │ ├── purpur_slab.json │ │ │ │ │ ├── purpur_stairs.json │ │ │ │ │ ├── quartz.json │ │ │ │ │ ├── quartz_block.json │ │ │ │ │ ├── quartz_bricks.json │ │ │ │ │ ├── quartz_pillar.json │ │ │ │ │ ├── quartz_slab.json │ │ │ │ │ ├── quartz_stairs.json │ │ │ │ │ ├── rabbit.json │ │ │ │ │ ├── rabbit_foot.json │ │ │ │ │ ├── rabbit_hide.json │ │ │ │ │ ├── rabbit_spawn_egg.json │ │ │ │ │ ├── rabbit_stew.json │ │ │ │ │ ├── rail.json │ │ │ │ │ ├── raiser_armor_trim_smithing_template.json │ │ │ │ │ ├── ravager_spawn_egg.json │ │ │ │ │ ├── raw_copper.json │ │ │ │ │ ├── raw_copper_block.json │ │ │ │ │ ├── raw_gold.json │ │ │ │ │ ├── raw_gold_block.json │ │ │ │ │ ├── raw_iron.json │ │ │ │ │ ├── raw_iron_block.json │ │ │ │ │ ├── recovery_compass.json │ │ │ │ │ ├── recovery_compass_00.json │ │ │ │ │ ├── recovery_compass_01.json │ │ │ │ │ ├── recovery_compass_02.json │ │ │ │ │ ├── recovery_compass_03.json │ │ │ │ │ ├── recovery_compass_04.json │ │ │ │ │ ├── recovery_compass_05.json │ │ │ │ │ ├── recovery_compass_06.json │ │ │ │ │ ├── recovery_compass_07.json │ │ │ │ │ ├── recovery_compass_08.json │ │ │ │ │ ├── recovery_compass_09.json │ │ │ │ │ ├── recovery_compass_10.json │ │ │ │ │ ├── recovery_compass_11.json │ │ │ │ │ ├── recovery_compass_12.json │ │ │ │ │ ├── recovery_compass_13.json │ │ │ │ │ ├── recovery_compass_14.json │ │ │ │ │ ├── recovery_compass_15.json │ │ │ │ │ ├── recovery_compass_17.json │ │ │ │ │ ├── recovery_compass_18.json │ │ │ │ │ ├── recovery_compass_19.json │ │ │ │ │ ├── recovery_compass_20.json │ │ │ │ │ ├── recovery_compass_21.json │ │ │ │ │ ├── recovery_compass_22.json │ │ │ │ │ ├── recovery_compass_23.json │ │ │ │ │ ├── recovery_compass_24.json │ │ │ │ │ ├── recovery_compass_25.json │ │ │ │ │ ├── recovery_compass_26.json │ │ │ │ │ ├── recovery_compass_27.json │ │ │ │ │ ├── recovery_compass_28.json │ │ │ │ │ ├── recovery_compass_29.json │ │ │ │ │ ├── recovery_compass_30.json │ │ │ │ │ ├── recovery_compass_31.json │ │ │ │ │ ├── red_banner.json │ │ │ │ │ ├── red_bed.json │ │ │ │ │ ├── red_candle.json │ │ │ │ │ ├── red_carpet.json │ │ │ │ │ ├── red_concrete.json │ │ │ │ │ ├── red_concrete_powder.json │ │ │ │ │ ├── red_dye.json │ │ │ │ │ ├── red_glazed_terracotta.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── red_mushroom_block.json │ │ │ │ │ ├── red_nether_brick_slab.json │ │ │ │ │ ├── red_nether_brick_stairs.json │ │ │ │ │ ├── red_nether_brick_wall.json │ │ │ │ │ ├── red_nether_bricks.json │ │ │ │ │ ├── red_sand.json │ │ │ │ │ ├── red_sandstone.json │ │ │ │ │ ├── red_sandstone_slab.json │ │ │ │ │ ├── red_sandstone_stairs.json │ │ │ │ │ ├── red_sandstone_wall.json │ │ │ │ │ ├── red_shulker_box.json │ │ │ │ │ ├── red_stained_glass.json │ │ │ │ │ ├── red_stained_glass_pane.json │ │ │ │ │ ├── red_terracotta.json │ │ │ │ │ ├── red_tulip.json │ │ │ │ │ ├── red_wool.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ ├── redstone_block.json │ │ │ │ │ ├── redstone_lamp.json │ │ │ │ │ ├── redstone_ore.json │ │ │ │ │ ├── redstone_torch.json │ │ │ │ │ ├── reinforced_deepslate.json │ │ │ │ │ ├── repeater.json │ │ │ │ │ ├── repeating_command_block.json │ │ │ │ │ ├── respawn_anchor.json │ │ │ │ │ ├── rib_armor_trim_smithing_template.json │ │ │ │ │ ├── rooted_dirt.json │ │ │ │ │ ├── rose_bush.json │ │ │ │ │ ├── rotten_flesh.json │ │ │ │ │ ├── saddle.json │ │ │ │ │ ├── salmon.json │ │ │ │ │ ├── salmon_bucket.json │ │ │ │ │ ├── salmon_spawn_egg.json │ │ │ │ │ ├── sand.json │ │ │ │ │ ├── sandstone.json │ │ │ │ │ ├── sandstone_slab.json │ │ │ │ │ ├── sandstone_stairs.json │ │ │ │ │ ├── sandstone_wall.json │ │ │ │ │ ├── scaffolding.json │ │ │ │ │ ├── sculk.json │ │ │ │ │ ├── sculk_catalyst.json │ │ │ │ │ ├── sculk_sensor.json │ │ │ │ │ ├── sculk_shrieker.json │ │ │ │ │ ├── sculk_vein.json │ │ │ │ │ ├── scute.json │ │ │ │ │ ├── sea_lantern.json │ │ │ │ │ ├── sea_pickle.json │ │ │ │ │ ├── seagrass.json │ │ │ │ │ ├── sentry_armor_trim_smithing_template.json │ │ │ │ │ ├── shaper_armor_trim_smithing_template.json │ │ │ │ │ ├── sheaf_pottery_sherd.json │ │ │ │ │ ├── shears.json │ │ │ │ │ ├── sheep_spawn_egg.json │ │ │ │ │ ├── shelter_pottery_sherd.json │ │ │ │ │ ├── shield.json │ │ │ │ │ ├── shield_blocking.json │ │ │ │ │ ├── short_grass.json │ │ │ │ │ ├── shroomlight.json │ │ │ │ │ ├── shulker_box.json │ │ │ │ │ ├── shulker_shell.json │ │ │ │ │ ├── shulker_spawn_egg.json │ │ │ │ │ ├── silence_armor_trim_smithing_template.json │ │ │ │ │ ├── silverfish_spawn_egg.json │ │ │ │ │ ├── skeleton_horse_spawn_egg.json │ │ │ │ │ ├── skeleton_skull.json │ │ │ │ │ ├── skeleton_spawn_egg.json │ │ │ │ │ ├── skull_banner_pattern.json │ │ │ │ │ ├── skull_pottery_sherd.json │ │ │ │ │ ├── slime_ball.json │ │ │ │ │ ├── slime_block.json │ │ │ │ │ ├── slime_spawn_egg.json │ │ │ │ │ ├── small_amethyst_bud.json │ │ │ │ │ ├── small_dripleaf.json │ │ │ │ │ ├── smithing_table.json │ │ │ │ │ ├── smoker.json │ │ │ │ │ ├── smooth_basalt.json │ │ │ │ │ ├── smooth_quartz.json │ │ │ │ │ ├── smooth_quartz_slab.json │ │ │ │ │ ├── smooth_quartz_stairs.json │ │ │ │ │ ├── smooth_red_sandstone.json │ │ │ │ │ ├── smooth_red_sandstone_slab.json │ │ │ │ │ ├── smooth_red_sandstone_stairs.json │ │ │ │ │ ├── smooth_sandstone.json │ │ │ │ │ ├── smooth_sandstone_slab.json │ │ │ │ │ ├── smooth_sandstone_stairs.json │ │ │ │ │ ├── smooth_stone.json │ │ │ │ │ ├── smooth_stone_slab.json │ │ │ │ │ ├── sniffer_egg.json │ │ │ │ │ ├── sniffer_spawn_egg.json │ │ │ │ │ ├── snort_pottery_sherd.json │ │ │ │ │ ├── snout_armor_trim_smithing_template.json │ │ │ │ │ ├── snow.json │ │ │ │ │ ├── snow_block.json │ │ │ │ │ ├── snow_golem_spawn_egg.json │ │ │ │ │ ├── snowball.json │ │ │ │ │ ├── soul_campfire.json │ │ │ │ │ ├── soul_lantern.json │ │ │ │ │ ├── soul_sand.json │ │ │ │ │ ├── soul_soil.json │ │ │ │ │ ├── soul_torch.json │ │ │ │ │ ├── spawner.json │ │ │ │ │ ├── spectral_arrow.json │ │ │ │ │ ├── spider_eye.json │ │ │ │ │ ├── spider_spawn_egg.json │ │ │ │ │ ├── spire_armor_trim_smithing_template.json │ │ │ │ │ ├── splash_potion.json │ │ │ │ │ ├── sponge.json │ │ │ │ │ ├── spore_blossom.json │ │ │ │ │ ├── spruce_boat.json │ │ │ │ │ ├── spruce_button.json │ │ │ │ │ ├── spruce_chest_boat.json │ │ │ │ │ ├── spruce_door.json │ │ │ │ │ ├── spruce_fence.json │ │ │ │ │ ├── spruce_fence_gate.json │ │ │ │ │ ├── spruce_hanging_sign.json │ │ │ │ │ ├── spruce_leaves.json │ │ │ │ │ ├── spruce_log.json │ │ │ │ │ ├── spruce_planks.json │ │ │ │ │ ├── spruce_pressure_plate.json │ │ │ │ │ ├── spruce_sapling.json │ │ │ │ │ ├── spruce_sign.json │ │ │ │ │ ├── spruce_slab.json │ │ │ │ │ ├── spruce_stairs.json │ │ │ │ │ ├── spruce_trapdoor.json │ │ │ │ │ ├── spruce_wood.json │ │ │ │ │ ├── spyglass.json │ │ │ │ │ ├── spyglass_in_hand.json │ │ │ │ │ ├── squid_spawn_egg.json │ │ │ │ │ ├── stick.json │ │ │ │ │ ├── sticky_piston.json │ │ │ │ │ ├── stone.json │ │ │ │ │ ├── stone_axe.json │ │ │ │ │ ├── stone_brick_slab.json │ │ │ │ │ ├── stone_brick_stairs.json │ │ │ │ │ ├── stone_brick_wall.json │ │ │ │ │ ├── stone_bricks.json │ │ │ │ │ ├── stone_button.json │ │ │ │ │ ├── stone_hoe.json │ │ │ │ │ ├── stone_pickaxe.json │ │ │ │ │ ├── stone_pressure_plate.json │ │ │ │ │ ├── stone_shovel.json │ │ │ │ │ ├── stone_slab.json │ │ │ │ │ ├── stone_stairs.json │ │ │ │ │ ├── stone_sword.json │ │ │ │ │ ├── stonecutter.json │ │ │ │ │ ├── stray_spawn_egg.json │ │ │ │ │ ├── strider_spawn_egg.json │ │ │ │ │ ├── string.json │ │ │ │ │ ├── stripped_acacia_log.json │ │ │ │ │ ├── stripped_acacia_wood.json │ │ │ │ │ ├── stripped_bamboo_block.json │ │ │ │ │ ├── stripped_birch_log.json │ │ │ │ │ ├── stripped_birch_wood.json │ │ │ │ │ ├── stripped_cherry_log.json │ │ │ │ │ ├── stripped_cherry_wood.json │ │ │ │ │ ├── stripped_crimson_hyphae.json │ │ │ │ │ ├── stripped_crimson_stem.json │ │ │ │ │ ├── stripped_dark_oak_log.json │ │ │ │ │ ├── stripped_dark_oak_wood.json │ │ │ │ │ ├── stripped_jungle_log.json │ │ │ │ │ ├── stripped_jungle_wood.json │ │ │ │ │ ├── stripped_mangrove_log.json │ │ │ │ │ ├── stripped_mangrove_wood.json │ │ │ │ │ ├── stripped_oak_log.json │ │ │ │ │ ├── stripped_oak_wood.json │ │ │ │ │ ├── stripped_spruce_log.json │ │ │ │ │ ├── stripped_spruce_wood.json │ │ │ │ │ ├── stripped_warped_hyphae.json │ │ │ │ │ ├── stripped_warped_stem.json │ │ │ │ │ ├── structure_block.json │ │ │ │ │ ├── structure_void.json │ │ │ │ │ ├── sugar.json │ │ │ │ │ ├── sugar_cane.json │ │ │ │ │ ├── sunflower.json │ │ │ │ │ ├── suspicious_gravel.json │ │ │ │ │ ├── suspicious_sand.json │ │ │ │ │ ├── suspicious_stew.json │ │ │ │ │ ├── sweet_berries.json │ │ │ │ │ ├── tadpole_bucket.json │ │ │ │ │ ├── tadpole_spawn_egg.json │ │ │ │ │ ├── tall_grass.json │ │ │ │ │ ├── target.json │ │ │ │ │ ├── template_banner.json │ │ │ │ │ ├── template_bed.json │ │ │ │ │ ├── template_music_disc.json │ │ │ │ │ ├── template_shulker_box.json │ │ │ │ │ ├── template_skull.json │ │ │ │ │ ├── template_spawn_egg.json │ │ │ │ │ ├── terracotta.json │ │ │ │ │ ├── tide_armor_trim_smithing_template.json │ │ │ │ │ ├── tinted_glass.json │ │ │ │ │ ├── tipped_arrow.json │ │ │ │ │ ├── tnt.json │ │ │ │ │ ├── tnt_minecart.json │ │ │ │ │ ├── tooting_goat_horn.json │ │ │ │ │ ├── torch.json │ │ │ │ │ ├── torchflower.json │ │ │ │ │ ├── torchflower_seeds.json │ │ │ │ │ ├── totem_of_undying.json │ │ │ │ │ ├── trader_llama_spawn_egg.json │ │ │ │ │ ├── trapped_chest.json │ │ │ │ │ ├── trial_key.json │ │ │ │ │ ├── trial_spawner.json │ │ │ │ │ ├── trident.json │ │ │ │ │ ├── trident_in_hand.json │ │ │ │ │ ├── trident_throwing.json │ │ │ │ │ ├── tripwire_hook.json │ │ │ │ │ ├── tropical_fish.json │ │ │ │ │ ├── tropical_fish_bucket.json │ │ │ │ │ ├── tropical_fish_spawn_egg.json │ │ │ │ │ ├── tube_coral.json │ │ │ │ │ ├── tube_coral_block.json │ │ │ │ │ ├── tube_coral_fan.json │ │ │ │ │ ├── tuff.json │ │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ │ ├── tuff_bricks.json │ │ │ │ │ ├── tuff_slab.json │ │ │ │ │ ├── tuff_stairs.json │ │ │ │ │ ├── tuff_wall.json │ │ │ │ │ ├── turtle_egg.json │ │ │ │ │ ├── turtle_helmet.json │ │ │ │ │ ├── turtle_helmet_amethyst_trim.json │ │ │ │ │ ├── turtle_helmet_copper_trim.json │ │ │ │ │ ├── turtle_helmet_diamond_trim.json │ │ │ │ │ ├── turtle_helmet_emerald_trim.json │ │ │ │ │ ├── turtle_helmet_gold_trim.json │ │ │ │ │ ├── turtle_helmet_iron_trim.json │ │ │ │ │ ├── turtle_helmet_lapis_trim.json │ │ │ │ │ ├── turtle_helmet_netherite_trim.json │ │ │ │ │ ├── turtle_helmet_quartz_trim.json │ │ │ │ │ ├── turtle_helmet_redstone_trim.json │ │ │ │ │ ├── turtle_spawn_egg.json │ │ │ │ │ ├── twisting_vines.json │ │ │ │ │ ├── verdant_froglight.json │ │ │ │ │ ├── vex_armor_trim_smithing_template.json │ │ │ │ │ ├── vex_spawn_egg.json │ │ │ │ │ ├── villager_spawn_egg.json │ │ │ │ │ ├── vindicator_spawn_egg.json │ │ │ │ │ ├── vine.json │ │ │ │ │ ├── wandering_trader_spawn_egg.json │ │ │ │ │ ├── ward_armor_trim_smithing_template.json │ │ │ │ │ ├── warden_spawn_egg.json │ │ │ │ │ ├── warped_button.json │ │ │ │ │ ├── warped_door.json │ │ │ │ │ ├── warped_fence.json │ │ │ │ │ ├── warped_fence_gate.json │ │ │ │ │ ├── warped_fungus.json │ │ │ │ │ ├── warped_fungus_on_a_stick.json │ │ │ │ │ ├── warped_hanging_sign.json │ │ │ │ │ ├── warped_hyphae.json │ │ │ │ │ ├── warped_nylium.json │ │ │ │ │ ├── warped_planks.json │ │ │ │ │ ├── warped_pressure_plate.json │ │ │ │ │ ├── warped_roots.json │ │ │ │ │ ├── warped_sign.json │ │ │ │ │ ├── warped_slab.json │ │ │ │ │ ├── warped_stairs.json │ │ │ │ │ ├── warped_stem.json │ │ │ │ │ ├── warped_trapdoor.json │ │ │ │ │ ├── warped_wart_block.json │ │ │ │ │ ├── water_bucket.json │ │ │ │ │ ├── waxed_chiseled_copper.json │ │ │ │ │ ├── waxed_copper_block.json │ │ │ │ │ ├── waxed_copper_bulb.json │ │ │ │ │ ├── waxed_copper_door.json │ │ │ │ │ ├── waxed_copper_grate.json │ │ │ │ │ ├── waxed_copper_trapdoor.json │ │ │ │ │ ├── waxed_cut_copper.json │ │ │ │ │ ├── waxed_cut_copper_slab.json │ │ │ │ │ ├── waxed_cut_copper_stairs.json │ │ │ │ │ ├── waxed_exposed_chiseled_copper.json │ │ │ │ │ ├── waxed_exposed_copper.json │ │ │ │ │ ├── waxed_exposed_copper_bulb.json │ │ │ │ │ ├── waxed_exposed_copper_door.json │ │ │ │ │ ├── waxed_exposed_copper_grate.json │ │ │ │ │ ├── waxed_exposed_copper_trapdoor.json │ │ │ │ │ ├── waxed_exposed_cut_copper.json │ │ │ │ │ ├── waxed_exposed_cut_copper_slab.json │ │ │ │ │ ├── waxed_exposed_cut_copper_stairs.json │ │ │ │ │ ├── waxed_oxidized_chiseled_copper.json │ │ │ │ │ ├── waxed_oxidized_copper.json │ │ │ │ │ ├── waxed_oxidized_copper_bulb.json │ │ │ │ │ ├── waxed_oxidized_copper_door.json │ │ │ │ │ ├── waxed_oxidized_copper_grate.json │ │ │ │ │ ├── waxed_oxidized_copper_trapdoor.json │ │ │ │ │ ├── waxed_oxidized_cut_copper.json │ │ │ │ │ ├── waxed_oxidized_cut_copper_slab.json │ │ │ │ │ ├── waxed_oxidized_cut_copper_stairs.json │ │ │ │ │ ├── waxed_weathered_chiseled_copper.json │ │ │ │ │ ├── waxed_weathered_copper.json │ │ │ │ │ ├── waxed_weathered_copper_bulb.json │ │ │ │ │ ├── waxed_weathered_copper_door.json │ │ │ │ │ ├── waxed_weathered_copper_grate.json │ │ │ │ │ ├── waxed_weathered_copper_trapdoor.json │ │ │ │ │ ├── waxed_weathered_cut_copper.json │ │ │ │ │ ├── waxed_weathered_cut_copper_slab.json │ │ │ │ │ ├── waxed_weathered_cut_copper_stairs.json │ │ │ │ │ ├── wayfinder_armor_trim_smithing_template.json │ │ │ │ │ ├── weathered_chiseled_copper.json │ │ │ │ │ ├── weathered_copper.json │ │ │ │ │ ├── weathered_copper_bulb.json │ │ │ │ │ ├── weathered_copper_door.json │ │ │ │ │ ├── weathered_copper_grate.json │ │ │ │ │ ├── weathered_copper_trapdoor.json │ │ │ │ │ ├── weathered_cut_copper.json │ │ │ │ │ ├── weathered_cut_copper_slab.json │ │ │ │ │ ├── weathered_cut_copper_stairs.json │ │ │ │ │ ├── weeping_vines.json │ │ │ │ │ ├── wet_sponge.json │ │ │ │ │ ├── wheat.json │ │ │ │ │ ├── wheat_seeds.json │ │ │ │ │ ├── white_banner.json │ │ │ │ │ ├── white_bed.json │ │ │ │ │ ├── white_candle.json │ │ │ │ │ ├── white_carpet.json │ │ │ │ │ ├── white_concrete.json │ │ │ │ │ ├── white_concrete_powder.json │ │ │ │ │ ├── white_dye.json │ │ │ │ │ ├── white_glazed_terracotta.json │ │ │ │ │ ├── white_shulker_box.json │ │ │ │ │ ├── white_stained_glass.json │ │ │ │ │ ├── white_stained_glass_pane.json │ │ │ │ │ ├── white_terracotta.json │ │ │ │ │ ├── white_tulip.json │ │ │ │ │ ├── white_wool.json │ │ │ │ │ ├── wild_armor_trim_smithing_template.json │ │ │ │ │ ├── witch_spawn_egg.json │ │ │ │ │ ├── wither_rose.json │ │ │ │ │ ├── wither_skeleton_skull.json │ │ │ │ │ ├── wither_skeleton_spawn_egg.json │ │ │ │ │ ├── wither_spawn_egg.json │ │ │ │ │ ├── wolf_spawn_egg.json │ │ │ │ │ ├── wooden_axe.json │ │ │ │ │ ├── wooden_hoe.json │ │ │ │ │ ├── wooden_pickaxe.json │ │ │ │ │ ├── wooden_shovel.json │ │ │ │ │ ├── wooden_sword.json │ │ │ │ │ ├── writable_book.json │ │ │ │ │ ├── written_book.json │ │ │ │ │ ├── yellow_banner.json │ │ │ │ │ ├── yellow_bed.json │ │ │ │ │ ├── yellow_candle.json │ │ │ │ │ ├── yellow_carpet.json │ │ │ │ │ ├── yellow_concrete.json │ │ │ │ │ ├── yellow_concrete_powder.json │ │ │ │ │ ├── yellow_dye.json │ │ │ │ │ ├── yellow_glazed_terracotta.json │ │ │ │ │ ├── yellow_shulker_box.json │ │ │ │ │ ├── yellow_stained_glass.json │ │ │ │ │ ├── yellow_stained_glass_pane.json │ │ │ │ │ ├── yellow_terracotta.json │ │ │ │ │ ├── yellow_wool.json │ │ │ │ │ ├── zoglin_spawn_egg.json │ │ │ │ │ ├── zombie_head.json │ │ │ │ │ ├── zombie_horse_spawn_egg.json │ │ │ │ │ ├── zombie_spawn_egg.json │ │ │ │ │ ├── zombie_villager_spawn_egg.json │ │ │ │ │ └── zombified_piglin_spawn_egg.json │ │ │ │ ├── particles │ │ │ │ ├── ambient_entity_effect.json │ │ │ │ ├── angry_villager.json │ │ │ │ ├── ash.json │ │ │ │ ├── bubble.json │ │ │ │ ├── bubble_column_up.json │ │ │ │ ├── bubble_pop.json │ │ │ │ ├── campfire_cosy_smoke.json │ │ │ │ ├── campfire_signal_smoke.json │ │ │ │ ├── cherry_leaves.json │ │ │ │ ├── cloud.json │ │ │ │ ├── composter.json │ │ │ │ ├── crimson_spore.json │ │ │ │ ├── crit.json │ │ │ │ ├── current_down.json │ │ │ │ ├── damage_indicator.json │ │ │ │ ├── dolphin.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── dripping_dripstone_lava.json │ │ │ │ ├── dripping_dripstone_water.json │ │ │ │ ├── dripping_honey.json │ │ │ │ ├── dripping_lava.json │ │ │ │ ├── dripping_obsidian_tear.json │ │ │ │ ├── dripping_water.json │ │ │ │ ├── dust.json │ │ │ │ ├── dust_color_transition.json │ │ │ │ ├── dust_plume.json │ │ │ │ ├── effect.json │ │ │ │ ├── egg_crack.json │ │ │ │ ├── electric_spark.json │ │ │ │ ├── enchant.json │ │ │ │ ├── enchanted_hit.json │ │ │ │ ├── end_rod.json │ │ │ │ ├── entity_effect.json │ │ │ │ ├── explosion.json │ │ │ │ ├── falling_dripstone_lava.json │ │ │ │ ├── falling_dripstone_water.json │ │ │ │ ├── falling_dust.json │ │ │ │ ├── falling_honey.json │ │ │ │ ├── falling_lava.json │ │ │ │ ├── falling_nectar.json │ │ │ │ ├── falling_obsidian_tear.json │ │ │ │ ├── falling_spore_blossom.json │ │ │ │ ├── falling_water.json │ │ │ │ ├── firework.json │ │ │ │ ├── fishing.json │ │ │ │ ├── flame.json │ │ │ │ ├── flash.json │ │ │ │ ├── glow.json │ │ │ │ ├── glow_squid_ink.json │ │ │ │ ├── gust.json │ │ │ │ ├── gust_dust.json │ │ │ │ ├── happy_villager.json │ │ │ │ ├── heart.json │ │ │ │ ├── instant_effect.json │ │ │ │ ├── landing_honey.json │ │ │ │ ├── landing_lava.json │ │ │ │ ├── landing_obsidian_tear.json │ │ │ │ ├── large_smoke.json │ │ │ │ ├── lava.json │ │ │ │ ├── mycelium.json │ │ │ │ ├── nautilus.json │ │ │ │ ├── note.json │ │ │ │ ├── poof.json │ │ │ │ ├── portal.json │ │ │ │ ├── rain.json │ │ │ │ ├── reverse_portal.json │ │ │ │ ├── scrape.json │ │ │ │ ├── sculk_charge.json │ │ │ │ ├── sculk_charge_pop.json │ │ │ │ ├── sculk_soul.json │ │ │ │ ├── shriek.json │ │ │ │ ├── small_flame.json │ │ │ │ ├── smoke.json │ │ │ │ ├── sneeze.json │ │ │ │ ├── snowflake.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── soul.json │ │ │ │ ├── soul_fire_flame.json │ │ │ │ ├── spit.json │ │ │ │ ├── splash.json │ │ │ │ ├── spore_blossom_air.json │ │ │ │ ├── squid_ink.json │ │ │ │ ├── sweep_attack.json │ │ │ │ ├── totem_of_undying.json │ │ │ │ ├── trial_spawner_detection.json │ │ │ │ ├── underwater.json │ │ │ │ ├── vibration.json │ │ │ │ ├── warped_spore.json │ │ │ │ ├── wax_off.json │ │ │ │ ├── wax_on.json │ │ │ │ ├── white_ash.json │ │ │ │ ├── white_smoke.json │ │ │ │ └── witch.json │ │ │ │ ├── regional_compliancies.json │ │ │ │ ├── texts │ │ │ │ ├── credits.json │ │ │ │ ├── end.txt │ │ │ │ ├── postcredits.txt │ │ │ │ └── splashes.txt │ │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── acacia_door_bottom.png │ │ │ │ ├── acacia_door_top.png │ │ │ │ ├── acacia_leaves.png │ │ │ │ ├── acacia_log.png │ │ │ │ ├── acacia_log_top.png │ │ │ │ ├── acacia_planks.png │ │ │ │ ├── acacia_sapling.png │ │ │ │ ├── acacia_trapdoor.png │ │ │ │ ├── activator_rail.png │ │ │ │ ├── activator_rail_on.png │ │ │ │ ├── allium.png │ │ │ │ ├── amethyst_block.png │ │ │ │ ├── amethyst_cluster.png │ │ │ │ ├── ancient_debris_side.png │ │ │ │ ├── ancient_debris_top.png │ │ │ │ ├── andesite.png │ │ │ │ ├── anvil.png │ │ │ │ ├── anvil_top.png │ │ │ │ ├── attached_melon_stem.png │ │ │ │ ├── attached_pumpkin_stem.png │ │ │ │ ├── azalea_leaves.png │ │ │ │ ├── azalea_plant.png │ │ │ │ ├── azalea_side.png │ │ │ │ ├── azalea_top.png │ │ │ │ ├── azure_bluet.png │ │ │ │ ├── bamboo_block.png │ │ │ │ ├── bamboo_block_top.png │ │ │ │ ├── bamboo_door_bottom.png │ │ │ │ ├── bamboo_door_top.png │ │ │ │ ├── bamboo_fence.png │ │ │ │ ├── bamboo_fence_gate.png │ │ │ │ ├── bamboo_fence_gate_particle.png │ │ │ │ ├── bamboo_fence_particle.png │ │ │ │ ├── bamboo_large_leaves.png │ │ │ │ ├── bamboo_mosaic.png │ │ │ │ ├── bamboo_planks.png │ │ │ │ ├── bamboo_singleleaf.png │ │ │ │ ├── bamboo_small_leaves.png │ │ │ │ ├── bamboo_stage0.png │ │ │ │ ├── bamboo_stalk.png │ │ │ │ ├── bamboo_trapdoor.png │ │ │ │ ├── barrel_bottom.png │ │ │ │ ├── barrel_side.png │ │ │ │ ├── barrel_top.png │ │ │ │ ├── barrel_top_open.png │ │ │ │ ├── basalt_side.png │ │ │ │ ├── basalt_top.png │ │ │ │ ├── beacon.png │ │ │ │ ├── bedrock.png │ │ │ │ ├── bee_nest_bottom.png │ │ │ │ ├── bee_nest_front.png │ │ │ │ ├── bee_nest_front_honey.png │ │ │ │ ├── bee_nest_side.png │ │ │ │ ├── bee_nest_top.png │ │ │ │ ├── beehive_end.png │ │ │ │ ├── beehive_front.png │ │ │ │ ├── beehive_front_honey.png │ │ │ │ ├── beehive_side.png │ │ │ │ ├── beetroots_stage0.png │ │ │ │ ├── beetroots_stage1.png │ │ │ │ ├── beetroots_stage2.png │ │ │ │ ├── beetroots_stage3.png │ │ │ │ ├── bell_bottom.png │ │ │ │ ├── bell_side.png │ │ │ │ ├── bell_top.png │ │ │ │ ├── big_dripleaf_side.png │ │ │ │ ├── big_dripleaf_stem.png │ │ │ │ ├── big_dripleaf_tip.png │ │ │ │ ├── big_dripleaf_top.png │ │ │ │ ├── birch_door_bottom.png │ │ │ │ ├── birch_door_top.png │ │ │ │ ├── birch_leaves.png │ │ │ │ ├── birch_log.png │ │ │ │ ├── birch_log_top.png │ │ │ │ ├── birch_planks.png │ │ │ │ ├── birch_sapling.png │ │ │ │ ├── birch_trapdoor.png │ │ │ │ ├── black_candle.png │ │ │ │ ├── black_candle_lit.png │ │ │ │ ├── black_concrete.png │ │ │ │ ├── black_concrete_powder.png │ │ │ │ ├── black_glazed_terracotta.png │ │ │ │ ├── black_shulker_box.png │ │ │ │ ├── black_stained_glass.png │ │ │ │ ├── black_stained_glass_pane_top.png │ │ │ │ ├── black_terracotta.png │ │ │ │ ├── black_wool.png │ │ │ │ ├── blackstone.png │ │ │ │ ├── blackstone_top.png │ │ │ │ ├── blast_furnace_front.png │ │ │ │ ├── blast_furnace_front_on.png │ │ │ │ ├── blast_furnace_front_on.png.mcmeta │ │ │ │ ├── blast_furnace_side.png │ │ │ │ ├── blast_furnace_top.png │ │ │ │ ├── blue_candle.png │ │ │ │ ├── blue_candle_lit.png │ │ │ │ ├── blue_concrete.png │ │ │ │ ├── blue_concrete_powder.png │ │ │ │ ├── blue_glazed_terracotta.png │ │ │ │ ├── blue_ice.png │ │ │ │ ├── blue_orchid.png │ │ │ │ ├── blue_shulker_box.png │ │ │ │ ├── blue_stained_glass.png │ │ │ │ ├── blue_stained_glass_pane_top.png │ │ │ │ ├── blue_terracotta.png │ │ │ │ ├── blue_wool.png │ │ │ │ ├── bone_block_side.png │ │ │ │ ├── bone_block_top.png │ │ │ │ ├── bookshelf.png │ │ │ │ ├── brain_coral.png │ │ │ │ ├── brain_coral_block.png │ │ │ │ ├── brain_coral_fan.png │ │ │ │ ├── brewing_stand.png │ │ │ │ ├── brewing_stand_base.png │ │ │ │ ├── bricks.png │ │ │ │ ├── brown_candle.png │ │ │ │ ├── brown_candle_lit.png │ │ │ │ ├── brown_concrete.png │ │ │ │ ├── brown_concrete_powder.png │ │ │ │ ├── brown_glazed_terracotta.png │ │ │ │ ├── brown_mushroom.png │ │ │ │ ├── brown_mushroom_block.png │ │ │ │ ├── brown_shulker_box.png │ │ │ │ ├── brown_stained_glass.png │ │ │ │ ├── brown_stained_glass_pane_top.png │ │ │ │ ├── brown_terracotta.png │ │ │ │ ├── brown_wool.png │ │ │ │ ├── bubble_coral.png │ │ │ │ ├── bubble_coral_block.png │ │ │ │ ├── bubble_coral_fan.png │ │ │ │ ├── budding_amethyst.png │ │ │ │ ├── cactus_bottom.png │ │ │ │ ├── cactus_side.png │ │ │ │ ├── cactus_top.png │ │ │ │ ├── cake_bottom.png │ │ │ │ ├── cake_inner.png │ │ │ │ ├── cake_side.png │ │ │ │ ├── cake_top.png │ │ │ │ ├── calcite.png │ │ │ │ ├── calibrated_sculk_sensor_amethyst.png │ │ │ │ ├── calibrated_sculk_sensor_input_side.png │ │ │ │ ├── calibrated_sculk_sensor_top.png │ │ │ │ ├── campfire_fire.png │ │ │ │ ├── campfire_fire.png.mcmeta │ │ │ │ ├── campfire_log.png │ │ │ │ ├── campfire_log_lit.png │ │ │ │ ├── campfire_log_lit.png.mcmeta │ │ │ │ ├── candle.png │ │ │ │ ├── candle_lit.png │ │ │ │ ├── carrots_stage0.png │ │ │ │ ├── carrots_stage1.png │ │ │ │ ├── carrots_stage2.png │ │ │ │ ├── carrots_stage3.png │ │ │ │ ├── cartography_table_side1.png │ │ │ │ ├── cartography_table_side2.png │ │ │ │ ├── cartography_table_side3.png │ │ │ │ ├── cartography_table_top.png │ │ │ │ ├── carved_pumpkin.png │ │ │ │ ├── cauldron_bottom.png │ │ │ │ ├── cauldron_inner.png │ │ │ │ ├── cauldron_side.png │ │ │ │ ├── cauldron_top.png │ │ │ │ ├── cave_vines.png │ │ │ │ ├── cave_vines_lit.png │ │ │ │ ├── cave_vines_plant.png │ │ │ │ ├── cave_vines_plant_lit.png │ │ │ │ ├── chain.png │ │ │ │ ├── chain_command_block_back.png │ │ │ │ ├── chain_command_block_back.png.mcmeta │ │ │ │ ├── chain_command_block_conditional.png │ │ │ │ ├── chain_command_block_conditional.png.mcmeta │ │ │ │ ├── chain_command_block_front.png │ │ │ │ ├── chain_command_block_front.png.mcmeta │ │ │ │ ├── chain_command_block_side.png │ │ │ │ ├── chain_command_block_side.png.mcmeta │ │ │ │ ├── cherry_door_bottom.png │ │ │ │ ├── cherry_door_top.png │ │ │ │ ├── cherry_leaves.png │ │ │ │ ├── cherry_log.png │ │ │ │ ├── cherry_log_top.png │ │ │ │ ├── cherry_planks.png │ │ │ │ ├── cherry_sapling.png │ │ │ │ ├── cherry_trapdoor.png │ │ │ │ ├── chipped_anvil_top.png │ │ │ │ ├── chiseled_bookshelf_empty.png │ │ │ │ ├── chiseled_bookshelf_occupied.png │ │ │ │ ├── chiseled_bookshelf_side.png │ │ │ │ ├── chiseled_bookshelf_top.png │ │ │ │ ├── chiseled_copper.png │ │ │ │ ├── chiseled_deepslate.png │ │ │ │ ├── chiseled_nether_bricks.png │ │ │ │ ├── chiseled_polished_blackstone.png │ │ │ │ ├── chiseled_quartz_block.png │ │ │ │ ├── chiseled_quartz_block_top.png │ │ │ │ ├── chiseled_red_sandstone.png │ │ │ │ ├── chiseled_sandstone.png │ │ │ │ ├── chiseled_stone_bricks.png │ │ │ │ ├── chiseled_tuff.png │ │ │ │ ├── chiseled_tuff_bricks.png │ │ │ │ ├── chiseled_tuff_bricks_top.png │ │ │ │ ├── chiseled_tuff_top.png │ │ │ │ ├── chorus_flower.png │ │ │ │ ├── chorus_flower_dead.png │ │ │ │ ├── chorus_plant.png │ │ │ │ ├── clay.png │ │ │ │ ├── coal_block.png │ │ │ │ ├── coal_ore.png │ │ │ │ ├── coarse_dirt.png │ │ │ │ ├── cobbled_deepslate.png │ │ │ │ ├── cobblestone.png │ │ │ │ ├── cobweb.png │ │ │ │ ├── cocoa_stage0.png │ │ │ │ ├── cocoa_stage1.png │ │ │ │ ├── cocoa_stage2.png │ │ │ │ ├── command_block_back.png │ │ │ │ ├── command_block_back.png.mcmeta │ │ │ │ ├── command_block_conditional.png │ │ │ │ ├── command_block_conditional.png.mcmeta │ │ │ │ ├── command_block_front.png │ │ │ │ ├── command_block_front.png.mcmeta │ │ │ │ ├── command_block_side.png │ │ │ │ ├── command_block_side.png.mcmeta │ │ │ │ ├── comparator.png │ │ │ │ ├── comparator_on.png │ │ │ │ ├── composter_bottom.png │ │ │ │ ├── composter_compost.png │ │ │ │ ├── composter_ready.png │ │ │ │ ├── composter_side.png │ │ │ │ ├── composter_top.png │ │ │ │ ├── conduit.png │ │ │ │ ├── copper_block.png │ │ │ │ ├── copper_bulb.png │ │ │ │ ├── copper_bulb_lit.png │ │ │ │ ├── copper_bulb_lit_powered.png │ │ │ │ ├── copper_bulb_powered.png │ │ │ │ ├── copper_door_bottom.png │ │ │ │ ├── copper_door_top.png │ │ │ │ ├── copper_grate.png │ │ │ │ ├── copper_ore.png │ │ │ │ ├── copper_trapdoor.png │ │ │ │ ├── cornflower.png │ │ │ │ ├── cracked_deepslate_bricks.png │ │ │ │ ├── cracked_deepslate_tiles.png │ │ │ │ ├── cracked_nether_bricks.png │ │ │ │ ├── cracked_polished_blackstone_bricks.png │ │ │ │ ├── cracked_stone_bricks.png │ │ │ │ ├── crafter_bottom.png │ │ │ │ ├── crafter_east.png │ │ │ │ ├── crafter_east_crafting.png │ │ │ │ ├── crafter_east_triggered.png │ │ │ │ ├── crafter_north.png │ │ │ │ ├── crafter_north_crafting.png │ │ │ │ ├── crafter_south.png │ │ │ │ ├── crafter_south_triggered.png │ │ │ │ ├── crafter_top.png │ │ │ │ ├── crafter_top_crafting.png │ │ │ │ ├── crafter_top_triggered.png │ │ │ │ ├── crafter_west.png │ │ │ │ ├── crafter_west_crafting.png │ │ │ │ ├── crafter_west_triggered.png │ │ │ │ ├── crafting_table_front.png │ │ │ │ ├── crafting_table_side.png │ │ │ │ ├── crafting_table_top.png │ │ │ │ ├── crimson_door_bottom.png │ │ │ │ ├── crimson_door_top.png │ │ │ │ ├── crimson_fungus.png │ │ │ │ ├── crimson_nylium.png │ │ │ │ ├── crimson_nylium_side.png │ │ │ │ ├── crimson_planks.png │ │ │ │ ├── crimson_roots.png │ │ │ │ ├── crimson_roots_pot.png │ │ │ │ ├── crimson_stem.png │ │ │ │ ├── crimson_stem.png.mcmeta │ │ │ │ ├── crimson_stem_top.png │ │ │ │ ├── crimson_trapdoor.png │ │ │ │ ├── crying_obsidian.png │ │ │ │ ├── cut_copper.png │ │ │ │ ├── cut_red_sandstone.png │ │ │ │ ├── cut_sandstone.png │ │ │ │ ├── cyan_candle.png │ │ │ │ ├── cyan_candle_lit.png │ │ │ │ ├── cyan_concrete.png │ │ │ │ ├── cyan_concrete_powder.png │ │ │ │ ├── cyan_glazed_terracotta.png │ │ │ │ ├── cyan_shulker_box.png │ │ │ │ ├── cyan_stained_glass.png │ │ │ │ ├── cyan_stained_glass_pane_top.png │ │ │ │ ├── cyan_terracotta.png │ │ │ │ ├── cyan_wool.png │ │ │ │ ├── damaged_anvil_top.png │ │ │ │ ├── dandelion.png │ │ │ │ ├── dark_oak_door_bottom.png │ │ │ │ ├── dark_oak_door_top.png │ │ │ │ ├── dark_oak_leaves.png │ │ │ │ ├── dark_oak_log.png │ │ │ │ ├── dark_oak_log_top.png │ │ │ │ ├── dark_oak_planks.png │ │ │ │ ├── dark_oak_sapling.png │ │ │ │ ├── dark_oak_trapdoor.png │ │ │ │ ├── dark_prismarine.png │ │ │ │ ├── daylight_detector_inverted_top.png │ │ │ │ ├── daylight_detector_side.png │ │ │ │ ├── daylight_detector_top.png │ │ │ │ ├── dead_brain_coral.png │ │ │ │ ├── dead_brain_coral_block.png │ │ │ │ ├── dead_brain_coral_fan.png │ │ │ │ ├── dead_bubble_coral.png │ │ │ │ ├── dead_bubble_coral_block.png │ │ │ │ ├── dead_bubble_coral_fan.png │ │ │ │ ├── dead_bush.png │ │ │ │ ├── dead_fire_coral.png │ │ │ │ ├── dead_fire_coral_block.png │ │ │ │ ├── dead_fire_coral_fan.png │ │ │ │ ├── dead_horn_coral.png │ │ │ │ ├── dead_horn_coral_block.png │ │ │ │ ├── dead_horn_coral_fan.png │ │ │ │ ├── dead_tube_coral.png │ │ │ │ ├── dead_tube_coral_block.png │ │ │ │ ├── dead_tube_coral_fan.png │ │ │ │ ├── debug.png │ │ │ │ ├── debug2.png │ │ │ │ ├── deepslate.png │ │ │ │ ├── deepslate_bricks.png │ │ │ │ ├── deepslate_coal_ore.png │ │ │ │ ├── deepslate_copper_ore.png │ │ │ │ ├── deepslate_diamond_ore.png │ │ │ │ ├── deepslate_emerald_ore.png │ │ │ │ ├── deepslate_gold_ore.png │ │ │ │ ├── deepslate_iron_ore.png │ │ │ │ ├── deepslate_lapis_ore.png │ │ │ │ ├── deepslate_redstone_ore.png │ │ │ │ ├── deepslate_tiles.png │ │ │ │ ├── deepslate_top.png │ │ │ │ ├── destroy_stage_0.png │ │ │ │ ├── destroy_stage_1.png │ │ │ │ ├── destroy_stage_2.png │ │ │ │ ├── destroy_stage_3.png │ │ │ │ ├── destroy_stage_4.png │ │ │ │ ├── destroy_stage_5.png │ │ │ │ ├── destroy_stage_6.png │ │ │ │ ├── destroy_stage_7.png │ │ │ │ ├── destroy_stage_8.png │ │ │ │ ├── destroy_stage_9.png │ │ │ │ ├── detector_rail.png │ │ │ │ ├── detector_rail_on.png │ │ │ │ ├── diamond_block.png │ │ │ │ ├── diamond_ore.png │ │ │ │ ├── diorite.png │ │ │ │ ├── dirt.png │ │ │ │ ├── dirt_path_side.png │ │ │ │ ├── dirt_path_top.png │ │ │ │ ├── dispenser_front.png │ │ │ │ ├── dispenser_front_vertical.png │ │ │ │ ├── dragon_egg.png │ │ │ │ ├── dried_kelp_bottom.png │ │ │ │ ├── dried_kelp_side.png │ │ │ │ ├── dried_kelp_top.png │ │ │ │ ├── dripstone_block.png │ │ │ │ ├── dropper_front.png │ │ │ │ ├── dropper_front_vertical.png │ │ │ │ ├── emerald_block.png │ │ │ │ ├── emerald_ore.png │ │ │ │ ├── enchanting_table_bottom.png │ │ │ │ ├── enchanting_table_side.png │ │ │ │ ├── enchanting_table_top.png │ │ │ │ ├── end_portal_frame_eye.png │ │ │ │ ├── end_portal_frame_side.png │ │ │ │ ├── end_portal_frame_top.png │ │ │ │ ├── end_rod.png │ │ │ │ ├── end_stone.png │ │ │ │ ├── end_stone_bricks.png │ │ │ │ ├── exposed_chiseled_copper.png │ │ │ │ ├── exposed_copper.png │ │ │ │ ├── exposed_copper_bulb.png │ │ │ │ ├── exposed_copper_bulb_lit.png │ │ │ │ ├── exposed_copper_bulb_lit_powered.png │ │ │ │ ├── exposed_copper_bulb_powered.png │ │ │ │ ├── exposed_copper_door_bottom.png │ │ │ │ ├── exposed_copper_door_top.png │ │ │ │ ├── exposed_copper_grate.png │ │ │ │ ├── exposed_copper_trapdoor.png │ │ │ │ ├── exposed_cut_copper.png │ │ │ │ ├── farmland.png │ │ │ │ ├── farmland_moist.png │ │ │ │ ├── fern.png │ │ │ │ ├── fire_0.png │ │ │ │ ├── fire_0.png.mcmeta │ │ │ │ ├── fire_1.png │ │ │ │ ├── fire_1.png.mcmeta │ │ │ │ ├── fire_coral.png │ │ │ │ ├── fire_coral_block.png │ │ │ │ ├── fire_coral_fan.png │ │ │ │ ├── fletching_table_front.png │ │ │ │ ├── fletching_table_side.png │ │ │ │ ├── fletching_table_top.png │ │ │ │ ├── flower_pot.png │ │ │ │ ├── flowering_azalea_leaves.png │ │ │ │ ├── flowering_azalea_side.png │ │ │ │ ├── flowering_azalea_top.png │ │ │ │ ├── frogspawn.png │ │ │ │ ├── frosted_ice_0.png │ │ │ │ ├── frosted_ice_1.png │ │ │ │ ├── frosted_ice_2.png │ │ │ │ ├── frosted_ice_3.png │ │ │ │ ├── furnace_front.png │ │ │ │ ├── furnace_front_on.png │ │ │ │ ├── furnace_side.png │ │ │ │ ├── furnace_top.png │ │ │ │ ├── gilded_blackstone.png │ │ │ │ ├── glass.png │ │ │ │ ├── glass_pane_top.png │ │ │ │ ├── glow_item_frame.png │ │ │ │ ├── glow_lichen.png │ │ │ │ ├── glowstone.png │ │ │ │ ├── gold_block.png │ │ │ │ ├── gold_ore.png │ │ │ │ ├── granite.png │ │ │ │ ├── grass_block_side.png │ │ │ │ ├── grass_block_side_overlay.png │ │ │ │ ├── grass_block_snow.png │ │ │ │ ├── grass_block_top.png │ │ │ │ ├── gravel.png │ │ │ │ ├── gray_candle.png │ │ │ │ ├── gray_candle_lit.png │ │ │ │ ├── gray_concrete.png │ │ │ │ ├── gray_concrete_powder.png │ │ │ │ ├── gray_glazed_terracotta.png │ │ │ │ ├── gray_shulker_box.png │ │ │ │ ├── gray_stained_glass.png │ │ │ │ ├── gray_stained_glass_pane_top.png │ │ │ │ ├── gray_terracotta.png │ │ │ │ ├── gray_wool.png │ │ │ │ ├── green_candle.png │ │ │ │ ├── green_candle_lit.png │ │ │ │ ├── green_concrete.png │ │ │ │ ├── green_concrete_powder.png │ │ │ │ ├── green_glazed_terracotta.png │ │ │ │ ├── green_shulker_box.png │ │ │ │ ├── green_stained_glass.png │ │ │ │ ├── green_stained_glass_pane_top.png │ │ │ │ ├── green_terracotta.png │ │ │ │ ├── green_wool.png │ │ │ │ ├── grindstone_pivot.png │ │ │ │ ├── grindstone_round.png │ │ │ │ ├── grindstone_side.png │ │ │ │ ├── hanging_roots.png │ │ │ │ ├── hay_block_side.png │ │ │ │ ├── hay_block_top.png │ │ │ │ ├── honey_block_bottom.png │ │ │ │ ├── honey_block_side.png │ │ │ │ ├── honey_block_top.png │ │ │ │ ├── honeycomb_block.png │ │ │ │ ├── hopper_inside.png │ │ │ │ ├── hopper_outside.png │ │ │ │ ├── hopper_top.png │ │ │ │ ├── horn_coral.png │ │ │ │ ├── horn_coral_block.png │ │ │ │ ├── horn_coral_fan.png │ │ │ │ ├── ice.png │ │ │ │ ├── iron_bars.png │ │ │ │ ├── iron_block.png │ │ │ │ ├── iron_door_bottom.png │ │ │ │ ├── iron_door_top.png │ │ │ │ ├── iron_ore.png │ │ │ │ ├── iron_trapdoor.png │ │ │ │ ├── item_frame.png │ │ │ │ ├── jack_o_lantern.png │ │ │ │ ├── jigsaw_bottom.png │ │ │ │ ├── jigsaw_lock.png │ │ │ │ ├── jigsaw_side.png │ │ │ │ ├── jigsaw_top.png │ │ │ │ ├── jukebox_side.png │ │ │ │ ├── jukebox_top.png │ │ │ │ ├── jungle_door_bottom.png │ │ │ │ ├── jungle_door_top.png │ │ │ │ ├── jungle_leaves.png │ │ │ │ ├── jungle_log.png │ │ │ │ ├── jungle_log_top.png │ │ │ │ ├── jungle_planks.png │ │ │ │ ├── jungle_sapling.png │ │ │ │ ├── jungle_trapdoor.png │ │ │ │ ├── kelp.png │ │ │ │ ├── kelp.png.mcmeta │ │ │ │ ├── kelp_plant.png │ │ │ │ ├── kelp_plant.png.mcmeta │ │ │ │ ├── ladder.png │ │ │ │ ├── lantern.png │ │ │ │ ├── lantern.png.mcmeta │ │ │ │ ├── lapis_block.png │ │ │ │ ├── lapis_ore.png │ │ │ │ ├── large_amethyst_bud.png │ │ │ │ ├── large_fern_bottom.png │ │ │ │ ├── large_fern_top.png │ │ │ │ ├── lava_flow.png │ │ │ │ ├── lava_flow.png.mcmeta │ │ │ │ ├── lava_still.png │ │ │ │ ├── lava_still.png.mcmeta │ │ │ │ ├── lectern_base.png │ │ │ │ ├── lectern_front.png │ │ │ │ ├── lectern_sides.png │ │ │ │ ├── lectern_top.png │ │ │ │ ├── lever.png │ │ │ │ ├── light_blue_candle.png │ │ │ │ ├── light_blue_candle_lit.png │ │ │ │ ├── light_blue_concrete.png │ │ │ │ ├── light_blue_concrete_powder.png │ │ │ │ ├── light_blue_glazed_terracotta.png │ │ │ │ ├── light_blue_shulker_box.png │ │ │ │ ├── light_blue_stained_glass.png │ │ │ │ ├── light_blue_stained_glass_pane_top.png │ │ │ │ ├── light_blue_terracotta.png │ │ │ │ ├── light_blue_wool.png │ │ │ │ ├── light_gray_candle.png │ │ │ │ ├── light_gray_candle_lit.png │ │ │ │ ├── light_gray_concrete.png │ │ │ │ ├── light_gray_concrete_powder.png │ │ │ │ ├── light_gray_glazed_terracotta.png │ │ │ │ ├── light_gray_shulker_box.png │ │ │ │ ├── light_gray_stained_glass.png │ │ │ │ ├── light_gray_stained_glass_pane_top.png │ │ │ │ ├── light_gray_terracotta.png │ │ │ │ ├── light_gray_wool.png │ │ │ │ ├── lightning_rod.png │ │ │ │ ├── lightning_rod_on.png │ │ │ │ ├── lilac_bottom.png │ │ │ │ ├── lilac_top.png │ │ │ │ ├── lily_of_the_valley.png │ │ │ │ ├── lily_pad.png │ │ │ │ ├── lime_candle.png │ │ │ │ ├── lime_candle_lit.png │ │ │ │ ├── lime_concrete.png │ │ │ │ ├── lime_concrete_powder.png │ │ │ │ ├── lime_glazed_terracotta.png │ │ │ │ ├── lime_shulker_box.png │ │ │ │ ├── lime_stained_glass.png │ │ │ │ ├── lime_stained_glass_pane_top.png │ │ │ │ ├── lime_terracotta.png │ │ │ │ ├── lime_wool.png │ │ │ │ ├── lodestone_side.png │ │ │ │ ├── lodestone_top.png │ │ │ │ ├── loom_bottom.png │ │ │ │ ├── loom_front.png │ │ │ │ ├── loom_side.png │ │ │ │ ├── loom_top.png │ │ │ │ ├── magenta_candle.png │ │ │ │ ├── magenta_candle_lit.png │ │ │ │ ├── magenta_concrete.png │ │ │ │ ├── magenta_concrete_powder.png │ │ │ │ ├── magenta_glazed_terracotta.png │ │ │ │ ├── magenta_shulker_box.png │ │ │ │ ├── magenta_stained_glass.png │ │ │ │ ├── magenta_stained_glass_pane_top.png │ │ │ │ ├── magenta_terracotta.png │ │ │ │ ├── magenta_wool.png │ │ │ │ ├── magma.png │ │ │ │ ├── magma.png.mcmeta │ │ │ │ ├── mangrove_door_bottom.png │ │ │ │ ├── mangrove_door_top.png │ │ │ │ ├── mangrove_leaves.png │ │ │ │ ├── mangrove_log.png │ │ │ │ ├── mangrove_log_top.png │ │ │ │ ├── mangrove_planks.png │ │ │ │ ├── mangrove_propagule.png │ │ │ │ ├── mangrove_propagule_hanging.png │ │ │ │ ├── mangrove_roots_side.png │ │ │ │ ├── mangrove_roots_top.png │ │ │ │ ├── mangrove_trapdoor.png │ │ │ │ ├── medium_amethyst_bud.png │ │ │ │ ├── melon_side.png │ │ │ │ ├── melon_stem.png │ │ │ │ ├── melon_top.png │ │ │ │ ├── moss_block.png │ │ │ │ ├── mossy_cobblestone.png │ │ │ │ ├── mossy_stone_bricks.png │ │ │ │ ├── mud.png │ │ │ │ ├── mud_bricks.png │ │ │ │ ├── muddy_mangrove_roots_side.png │ │ │ │ ├── muddy_mangrove_roots_top.png │ │ │ │ ├── mushroom_block_inside.png │ │ │ │ ├── mushroom_stem.png │ │ │ │ ├── mycelium_side.png │ │ │ │ ├── mycelium_top.png │ │ │ │ ├── nether_bricks.png │ │ │ │ ├── nether_gold_ore.png │ │ │ │ ├── nether_portal.png │ │ │ │ ├── nether_portal.png.mcmeta │ │ │ │ ├── nether_quartz_ore.png │ │ │ │ ├── nether_sprouts.png │ │ │ │ ├── nether_wart_block.png │ │ │ │ ├── nether_wart_stage0.png │ │ │ │ ├── nether_wart_stage1.png │ │ │ │ ├── nether_wart_stage2.png │ │ │ │ ├── netherite_block.png │ │ │ │ ├── netherrack.png │ │ │ │ ├── note_block.png │ │ │ │ ├── oak_door_bottom.png │ │ │ │ ├── oak_door_top.png │ │ │ │ ├── oak_leaves.png │ │ │ │ ├── oak_log.png │ │ │ │ ├── oak_log_top.png │ │ │ │ ├── oak_planks.png │ │ │ │ ├── oak_sapling.png │ │ │ │ ├── oak_trapdoor.png │ │ │ │ ├── observer_back.png │ │ │ │ ├── observer_back_on.png │ │ │ │ ├── observer_front.png │ │ │ │ ├── observer_side.png │ │ │ │ ├── observer_top.png │ │ │ │ ├── obsidian.png │ │ │ │ ├── ochre_froglight_side.png │ │ │ │ ├── ochre_froglight_top.png │ │ │ │ ├── orange_candle.png │ │ │ │ ├── orange_candle_lit.png │ │ │ │ ├── orange_concrete.png │ │ │ │ ├── orange_concrete_powder.png │ │ │ │ ├── orange_glazed_terracotta.png │ │ │ │ ├── orange_shulker_box.png │ │ │ │ ├── orange_stained_glass.png │ │ │ │ ├── orange_stained_glass_pane_top.png │ │ │ │ ├── orange_terracotta.png │ │ │ │ ├── orange_tulip.png │ │ │ │ ├── orange_wool.png │ │ │ │ ├── oxeye_daisy.png │ │ │ │ ├── oxidized_chiseled_copper.png │ │ │ │ ├── oxidized_copper.png │ │ │ │ ├── oxidized_copper_bulb.png │ │ │ │ ├── oxidized_copper_bulb_lit.png │ │ │ │ ├── oxidized_copper_bulb_lit_powered.png │ │ │ │ ├── oxidized_copper_bulb_powered.png │ │ │ │ ├── oxidized_copper_door_bottom.png │ │ │ │ ├── oxidized_copper_door_top.png │ │ │ │ ├── oxidized_copper_grate.png │ │ │ │ ├── oxidized_copper_trapdoor.png │ │ │ │ ├── oxidized_cut_copper.png │ │ │ │ ├── packed_ice.png │ │ │ │ ├── packed_mud.png │ │ │ │ ├── pearlescent_froglight_side.png │ │ │ │ ├── pearlescent_froglight_top.png │ │ │ │ ├── peony_bottom.png │ │ │ │ ├── peony_top.png │ │ │ │ ├── pink_candle.png │ │ │ │ ├── pink_candle_lit.png │ │ │ │ ├── pink_concrete.png │ │ │ │ ├── pink_concrete_powder.png │ │ │ │ ├── pink_glazed_terracotta.png │ │ │ │ ├── pink_petals.png │ │ │ │ ├── pink_petals_stem.png │ │ │ │ ├── pink_shulker_box.png │ │ │ │ ├── pink_stained_glass.png │ │ │ │ ├── pink_stained_glass_pane_top.png │ │ │ │ ├── pink_terracotta.png │ │ │ │ ├── pink_tulip.png │ │ │ │ ├── pink_wool.png │ │ │ │ ├── piston_bottom.png │ │ │ │ ├── piston_inner.png │ │ │ │ ├── piston_side.png │ │ │ │ ├── piston_top.png │ │ │ │ ├── piston_top_sticky.png │ │ │ │ ├── pitcher_crop_bottom.png │ │ │ │ ├── pitcher_crop_bottom_stage_1.png │ │ │ │ ├── pitcher_crop_bottom_stage_2.png │ │ │ │ ├── pitcher_crop_bottom_stage_3.png │ │ │ │ ├── pitcher_crop_bottom_stage_4.png │ │ │ │ ├── pitcher_crop_side.png │ │ │ │ ├── pitcher_crop_top.png │ │ │ │ ├── pitcher_crop_top_stage_3.png │ │ │ │ ├── pitcher_crop_top_stage_4.png │ │ │ │ ├── podzol_side.png │ │ │ │ ├── podzol_top.png │ │ │ │ ├── pointed_dripstone_down_base.png │ │ │ │ ├── pointed_dripstone_down_frustum.png │ │ │ │ ├── pointed_dripstone_down_middle.png │ │ │ │ ├── pointed_dripstone_down_tip.png │ │ │ │ ├── pointed_dripstone_down_tip_merge.png │ │ │ │ ├── pointed_dripstone_up_base.png │ │ │ │ ├── pointed_dripstone_up_frustum.png │ │ │ │ ├── pointed_dripstone_up_middle.png │ │ │ │ ├── pointed_dripstone_up_tip.png │ │ │ │ ├── pointed_dripstone_up_tip_merge.png │ │ │ │ ├── polished_andesite.png │ │ │ │ ├── polished_basalt_side.png │ │ │ │ ├── polished_basalt_top.png │ │ │ │ ├── polished_blackstone.png │ │ │ │ ├── polished_blackstone_bricks.png │ │ │ │ ├── polished_deepslate.png │ │ │ │ ├── polished_diorite.png │ │ │ │ ├── polished_granite.png │ │ │ │ ├── polished_tuff.png │ │ │ │ ├── poppy.png │ │ │ │ ├── potatoes_stage0.png │ │ │ │ ├── potatoes_stage1.png │ │ │ │ ├── potatoes_stage2.png │ │ │ │ ├── potatoes_stage3.png │ │ │ │ ├── potted_azalea_bush_plant.png │ │ │ │ ├── potted_azalea_bush_side.png │ │ │ │ ├── potted_azalea_bush_top.png │ │ │ │ ├── potted_flowering_azalea_bush_plant.png │ │ │ │ ├── potted_flowering_azalea_bush_side.png │ │ │ │ ├── potted_flowering_azalea_bush_top.png │ │ │ │ ├── powder_snow.png │ │ │ │ ├── powered_rail.png │ │ │ │ ├── powered_rail_on.png │ │ │ │ ├── prismarine.png │ │ │ │ ├── prismarine.png.mcmeta │ │ │ │ ├── prismarine_bricks.png │ │ │ │ ├── pumpkin_side.png │ │ │ │ ├── pumpkin_stem.png │ │ │ │ ├── pumpkin_top.png │ │ │ │ ├── purple_candle.png │ │ │ │ ├── purple_candle_lit.png │ │ │ │ ├── purple_concrete.png │ │ │ │ ├── purple_concrete_powder.png │ │ │ │ ├── purple_glazed_terracotta.png │ │ │ │ ├── purple_shulker_box.png │ │ │ │ ├── purple_stained_glass.png │ │ │ │ ├── purple_stained_glass_pane_top.png │ │ │ │ ├── purple_terracotta.png │ │ │ │ ├── purple_wool.png │ │ │ │ ├── purpur_block.png │ │ │ │ ├── purpur_pillar.png │ │ │ │ ├── purpur_pillar_top.png │ │ │ │ ├── quartz_block_bottom.png │ │ │ │ ├── quartz_block_side.png │ │ │ │ ├── quartz_block_top.png │ │ │ │ ├── quartz_bricks.png │ │ │ │ ├── quartz_pillar.png │ │ │ │ ├── quartz_pillar_top.png │ │ │ │ ├── rail.png │ │ │ │ ├── rail_corner.png │ │ │ │ ├── raw_copper_block.png │ │ │ │ ├── raw_gold_block.png │ │ │ │ ├── raw_iron_block.png │ │ │ │ ├── red_candle.png │ │ │ │ ├── red_candle_lit.png │ │ │ │ ├── red_concrete.png │ │ │ │ ├── red_concrete_powder.png │ │ │ │ ├── red_glazed_terracotta.png │ │ │ │ ├── red_mushroom.png │ │ │ │ ├── red_mushroom_block.png │ │ │ │ ├── red_nether_bricks.png │ │ │ │ ├── red_sand.png │ │ │ │ ├── red_sandstone.png │ │ │ │ ├── red_sandstone_bottom.png │ │ │ │ ├── red_sandstone_top.png │ │ │ │ ├── red_shulker_box.png │ │ │ │ ├── red_stained_glass.png │ │ │ │ ├── red_stained_glass_pane_top.png │ │ │ │ ├── red_terracotta.png │ │ │ │ ├── red_tulip.png │ │ │ │ ├── red_wool.png │ │ │ │ ├── redstone_block.png │ │ │ │ ├── redstone_dust_dot.png │ │ │ │ ├── redstone_dust_line0.png │ │ │ │ ├── redstone_dust_line1.png │ │ │ │ ├── redstone_dust_overlay.png │ │ │ │ ├── redstone_lamp.png │ │ │ │ ├── redstone_lamp_on.png │ │ │ │ ├── redstone_ore.png │ │ │ │ ├── redstone_torch.png │ │ │ │ ├── redstone_torch_off.png │ │ │ │ ├── reinforced_deepslate_bottom.png │ │ │ │ ├── reinforced_deepslate_side.png │ │ │ │ ├── reinforced_deepslate_top.png │ │ │ │ ├── repeater.png │ │ │ │ ├── repeater_on.png │ │ │ │ ├── repeating_command_block_back.png │ │ │ │ ├── repeating_command_block_back.png.mcmeta │ │ │ │ ├── repeating_command_block_conditional.png │ │ │ │ ├── repeating_command_block_conditional.png.mcmeta │ │ │ │ ├── repeating_command_block_front.png │ │ │ │ ├── repeating_command_block_front.png.mcmeta │ │ │ │ ├── repeating_command_block_side.png │ │ │ │ ├── repeating_command_block_side.png.mcmeta │ │ │ │ ├── respawn_anchor_bottom.png │ │ │ │ ├── respawn_anchor_side0.png │ │ │ │ ├── respawn_anchor_side1.png │ │ │ │ ├── respawn_anchor_side2.png │ │ │ │ ├── respawn_anchor_side3.png │ │ │ │ ├── respawn_anchor_side4.png │ │ │ │ ├── respawn_anchor_top.png │ │ │ │ ├── respawn_anchor_top.png.mcmeta │ │ │ │ ├── respawn_anchor_top_off.png │ │ │ │ ├── rooted_dirt.png │ │ │ │ ├── rose_bush_bottom.png │ │ │ │ ├── rose_bush_top.png │ │ │ │ ├── sand.png │ │ │ │ ├── sandstone.png │ │ │ │ ├── sandstone_bottom.png │ │ │ │ ├── sandstone_top.png │ │ │ │ ├── scaffolding_bottom.png │ │ │ │ ├── scaffolding_side.png │ │ │ │ ├── scaffolding_top.png │ │ │ │ ├── sculk.png │ │ │ │ ├── sculk.png.mcmeta │ │ │ │ ├── sculk_catalyst_bottom.png │ │ │ │ ├── sculk_catalyst_side.png │ │ │ │ ├── sculk_catalyst_side_bloom.png │ │ │ │ ├── sculk_catalyst_side_bloom.png.mcmeta │ │ │ │ ├── sculk_catalyst_top.png │ │ │ │ ├── sculk_catalyst_top_bloom.png │ │ │ │ ├── sculk_catalyst_top_bloom.png.mcmeta │ │ │ │ ├── sculk_sensor_bottom.png │ │ │ │ ├── sculk_sensor_side.png │ │ │ │ ├── sculk_sensor_tendril_active.png │ │ │ │ ├── sculk_sensor_tendril_active.png.mcmeta │ │ │ │ ├── sculk_sensor_tendril_inactive.png │ │ │ │ ├── sculk_sensor_tendril_inactive.png.mcmeta │ │ │ │ ├── sculk_sensor_top.png │ │ │ │ ├── sculk_shrieker_bottom.png │ │ │ │ ├── sculk_shrieker_can_summon_inner_top.png │ │ │ │ ├── sculk_shrieker_can_summon_inner_top.png.mcmeta │ │ │ │ ├── sculk_shrieker_inner_top.png │ │ │ │ ├── sculk_shrieker_inner_top.png.mcmeta │ │ │ │ ├── sculk_shrieker_side.png │ │ │ │ ├── sculk_shrieker_top.png │ │ │ │ ├── sculk_vein.png │ │ │ │ ├── sculk_vein.png.mcmeta │ │ │ │ ├── sea_lantern.png │ │ │ │ ├── sea_lantern.png.mcmeta │ │ │ │ ├── sea_pickle.png │ │ │ │ ├── seagrass.png │ │ │ │ ├── seagrass.png.mcmeta │ │ │ │ ├── short_grass.png │ │ │ │ ├── shroomlight.png │ │ │ │ ├── shulker_box.png │ │ │ │ ├── slime_block.png │ │ │ │ ├── small_amethyst_bud.png │ │ │ │ ├── small_dripleaf_side.png │ │ │ │ ├── small_dripleaf_stem_bottom.png │ │ │ │ ├── small_dripleaf_stem_top.png │ │ │ │ ├── small_dripleaf_top.png │ │ │ │ ├── smithing_table_bottom.png │ │ │ │ ├── smithing_table_front.png │ │ │ │ ├── smithing_table_side.png │ │ │ │ ├── smithing_table_top.png │ │ │ │ ├── smoker_bottom.png │ │ │ │ ├── smoker_front.png │ │ │ │ ├── smoker_front_on.png │ │ │ │ ├── smoker_front_on.png.mcmeta │ │ │ │ ├── smoker_side.png │ │ │ │ ├── smoker_top.png │ │ │ │ ├── smooth_basalt.png │ │ │ │ ├── smooth_stone.png │ │ │ │ ├── smooth_stone_slab_side.png │ │ │ │ ├── sniffer_egg_not_cracked_bottom.png │ │ │ │ ├── sniffer_egg_not_cracked_east.png │ │ │ │ ├── sniffer_egg_not_cracked_north.png │ │ │ │ ├── sniffer_egg_not_cracked_south.png │ │ │ │ ├── sniffer_egg_not_cracked_top.png │ │ │ │ ├── sniffer_egg_not_cracked_west.png │ │ │ │ ├── sniffer_egg_slightly_cracked_bottom.png │ │ │ │ ├── sniffer_egg_slightly_cracked_east.png │ │ │ │ ├── sniffer_egg_slightly_cracked_north.png │ │ │ │ ├── sniffer_egg_slightly_cracked_south.png │ │ │ │ ├── sniffer_egg_slightly_cracked_top.png │ │ │ │ ├── sniffer_egg_slightly_cracked_west.png │ │ │ │ ├── sniffer_egg_very_cracked_bottom.png │ │ │ │ ├── sniffer_egg_very_cracked_east.png │ │ │ │ ├── sniffer_egg_very_cracked_north.png │ │ │ │ ├── sniffer_egg_very_cracked_south.png │ │ │ │ ├── sniffer_egg_very_cracked_top.png │ │ │ │ ├── sniffer_egg_very_cracked_west.png │ │ │ │ ├── snow.png │ │ │ │ ├── soul_campfire_fire.png │ │ │ │ ├── soul_campfire_fire.png.mcmeta │ │ │ │ ├── soul_campfire_log_lit.png │ │ │ │ ├── soul_campfire_log_lit.png.mcmeta │ │ │ │ ├── soul_fire_0.png │ │ │ │ ├── soul_fire_0.png.mcmeta │ │ │ │ ├── soul_fire_1.png │ │ │ │ ├── soul_fire_1.png.mcmeta │ │ │ │ ├── soul_lantern.png │ │ │ │ ├── soul_lantern.png.mcmeta │ │ │ │ ├── soul_sand.png │ │ │ │ ├── soul_soil.png │ │ │ │ ├── soul_torch.png │ │ │ │ ├── spawner.png │ │ │ │ ├── sponge.png │ │ │ │ ├── spore_blossom.png │ │ │ │ ├── spore_blossom_base.png │ │ │ │ ├── spruce_door_bottom.png │ │ │ │ ├── spruce_door_top.png │ │ │ │ ├── spruce_leaves.png │ │ │ │ ├── spruce_log.png │ │ │ │ ├── spruce_log_top.png │ │ │ │ ├── spruce_planks.png │ │ │ │ ├── spruce_sapling.png │ │ │ │ ├── spruce_trapdoor.png │ │ │ │ ├── stone.png │ │ │ │ ├── stone_bricks.png │ │ │ │ ├── stonecutter_bottom.png │ │ │ │ ├── stonecutter_saw.png │ │ │ │ ├── stonecutter_saw.png.mcmeta │ │ │ │ ├── stonecutter_side.png │ │ │ │ ├── stonecutter_top.png │ │ │ │ ├── stripped_acacia_log.png │ │ │ │ ├── stripped_acacia_log_top.png │ │ │ │ ├── stripped_bamboo_block.png │ │ │ │ ├── stripped_bamboo_block_top.png │ │ │ │ ├── stripped_birch_log.png │ │ │ │ ├── stripped_birch_log_top.png │ │ │ │ ├── stripped_cherry_log.png │ │ │ │ ├── stripped_cherry_log_top.png │ │ │ │ ├── stripped_crimson_stem.png │ │ │ │ ├── stripped_crimson_stem_top.png │ │ │ │ ├── stripped_dark_oak_log.png │ │ │ │ ├── stripped_dark_oak_log_top.png │ │ │ │ ├── stripped_jungle_log.png │ │ │ │ ├── stripped_jungle_log_top.png │ │ │ │ ├── stripped_mangrove_log.png │ │ │ │ ├── stripped_mangrove_log_top.png │ │ │ │ ├── stripped_oak_log.png │ │ │ │ ├── stripped_oak_log_top.png │ │ │ │ ├── stripped_spruce_log.png │ │ │ │ ├── stripped_spruce_log_top.png │ │ │ │ ├── stripped_warped_stem.png │ │ │ │ ├── stripped_warped_stem_top.png │ │ │ │ ├── structure_block.png │ │ │ │ ├── structure_block_corner.png │ │ │ │ ├── structure_block_data.png │ │ │ │ ├── structure_block_load.png │ │ │ │ ├── structure_block_save.png │ │ │ │ ├── sugar_cane.png │ │ │ │ ├── sunflower_back.png │ │ │ │ ├── sunflower_bottom.png │ │ │ │ ├── sunflower_front.png │ │ │ │ ├── sunflower_top.png │ │ │ │ ├── suspicious_gravel_0.png │ │ │ │ ├── suspicious_gravel_1.png │ │ │ │ ├── suspicious_gravel_2.png │ │ │ │ ├── suspicious_gravel_3.png │ │ │ │ ├── suspicious_sand_0.png │ │ │ │ ├── suspicious_sand_1.png │ │ │ │ ├── suspicious_sand_2.png │ │ │ │ ├── suspicious_sand_3.png │ │ │ │ ├── sweet_berry_bush_stage0.png │ │ │ │ ├── sweet_berry_bush_stage1.png │ │ │ │ ├── sweet_berry_bush_stage2.png │ │ │ │ ├── sweet_berry_bush_stage3.png │ │ │ │ ├── tall_grass_bottom.png │ │ │ │ ├── tall_grass_top.png │ │ │ │ ├── tall_seagrass_bottom.png │ │ │ │ ├── tall_seagrass_bottom.png.mcmeta │ │ │ │ ├── tall_seagrass_top.png │ │ │ │ ├── tall_seagrass_top.png.mcmeta │ │ │ │ ├── target_side.png │ │ │ │ ├── target_top.png │ │ │ │ ├── terracotta.png │ │ │ │ ├── tinted_glass.png │ │ │ │ ├── tnt_bottom.png │ │ │ │ ├── tnt_side.png │ │ │ │ ├── tnt_top.png │ │ │ │ ├── torch.png │ │ │ │ ├── torchflower.png │ │ │ │ ├── torchflower_crop_stage0.png │ │ │ │ ├── torchflower_crop_stage1.png │ │ │ │ ├── trial_spawner_bottom.png │ │ │ │ ├── trial_spawner_side_active.png │ │ │ │ ├── trial_spawner_side_inactive.png │ │ │ │ ├── trial_spawner_top_active.png │ │ │ │ ├── trial_spawner_top_ejecting_reward.png │ │ │ │ ├── trial_spawner_top_inactive.png │ │ │ │ ├── tripwire.png │ │ │ │ ├── tripwire_hook.png │ │ │ │ ├── tube_coral.png │ │ │ │ ├── tube_coral_block.png │ │ │ │ ├── tube_coral_fan.png │ │ │ │ ├── tuff.png │ │ │ │ ├── tuff_bricks.png │ │ │ │ ├── turtle_egg.png │ │ │ │ ├── turtle_egg_slightly_cracked.png │ │ │ │ ├── turtle_egg_very_cracked.png │ │ │ │ ├── twisting_vines.png │ │ │ │ ├── twisting_vines_plant.png │ │ │ │ ├── verdant_froglight_side.png │ │ │ │ ├── verdant_froglight_top.png │ │ │ │ ├── vine.png │ │ │ │ ├── warped_door_bottom.png │ │ │ │ ├── warped_door_top.png │ │ │ │ ├── warped_fungus.png │ │ │ │ ├── warped_nylium.png │ │ │ │ ├── warped_nylium_side.png │ │ │ │ ├── warped_planks.png │ │ │ │ ├── warped_roots.png │ │ │ │ ├── warped_roots_pot.png │ │ │ │ ├── warped_stem.png │ │ │ │ ├── warped_stem.png.mcmeta │ │ │ │ ├── warped_stem_top.png │ │ │ │ ├── warped_trapdoor.png │ │ │ │ ├── warped_wart_block.png │ │ │ │ ├── water_flow.png │ │ │ │ ├── water_flow.png.mcmeta │ │ │ │ ├── water_overlay.png │ │ │ │ ├── water_still.png │ │ │ │ ├── water_still.png.mcmeta │ │ │ │ ├── weathered_chiseled_copper.png │ │ │ │ ├── weathered_copper.png │ │ │ │ ├── weathered_copper_bulb.png │ │ │ │ ├── weathered_copper_bulb_lit.png │ │ │ │ ├── weathered_copper_bulb_lit_powered.png │ │ │ │ ├── weathered_copper_bulb_powered.png │ │ │ │ ├── weathered_copper_door_bottom.png │ │ │ │ ├── weathered_copper_door_top.png │ │ │ │ ├── weathered_copper_grate.png │ │ │ │ ├── weathered_copper_trapdoor.png │ │ │ │ ├── weathered_cut_copper.png │ │ │ │ ├── weeping_vines.png │ │ │ │ ├── weeping_vines_plant.png │ │ │ │ ├── wet_sponge.png │ │ │ │ ├── wheat_stage0.png │ │ │ │ ├── wheat_stage1.png │ │ │ │ ├── wheat_stage2.png │ │ │ │ ├── wheat_stage3.png │ │ │ │ ├── wheat_stage4.png │ │ │ │ ├── wheat_stage5.png │ │ │ │ ├── wheat_stage6.png │ │ │ │ ├── wheat_stage7.png │ │ │ │ ├── white_candle.png │ │ │ │ ├── white_candle_lit.png │ │ │ │ ├── white_concrete.png │ │ │ │ ├── white_concrete_powder.png │ │ │ │ ├── white_glazed_terracotta.png │ │ │ │ ├── white_shulker_box.png │ │ │ │ ├── white_stained_glass.png │ │ │ │ ├── white_stained_glass_pane_top.png │ │ │ │ ├── white_terracotta.png │ │ │ │ ├── white_tulip.png │ │ │ │ ├── white_wool.png │ │ │ │ ├── wither_rose.png │ │ │ │ ├── yellow_candle.png │ │ │ │ ├── yellow_candle_lit.png │ │ │ │ ├── yellow_concrete.png │ │ │ │ ├── yellow_concrete_powder.png │ │ │ │ ├── yellow_glazed_terracotta.png │ │ │ │ ├── yellow_shulker_box.png │ │ │ │ ├── yellow_stained_glass.png │ │ │ │ ├── yellow_stained_glass_pane_top.png │ │ │ │ ├── yellow_terracotta.png │ │ │ │ └── yellow_wool.png │ │ │ │ ├── colormap │ │ │ │ ├── foliage.png │ │ │ │ └── grass.png │ │ │ │ ├── effect │ │ │ │ └── dither.png │ │ │ │ ├── entity │ │ │ │ ├── allay │ │ │ │ │ └── allay.png │ │ │ │ ├── armorstand │ │ │ │ │ └── wood.png │ │ │ │ ├── axolotl │ │ │ │ │ ├── axolotl_blue.png │ │ │ │ │ ├── axolotl_cyan.png │ │ │ │ │ ├── axolotl_gold.png │ │ │ │ │ ├── axolotl_lucy.png │ │ │ │ │ └── axolotl_wild.png │ │ │ │ ├── banner │ │ │ │ │ ├── base.png │ │ │ │ │ ├── border.png │ │ │ │ │ ├── bricks.png │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── creeper.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── curly_border.png │ │ │ │ │ ├── diagonal_left.png │ │ │ │ │ ├── diagonal_right.png │ │ │ │ │ ├── diagonal_up_left.png │ │ │ │ │ ├── diagonal_up_right.png │ │ │ │ │ ├── flower.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── gradient_up.png │ │ │ │ │ ├── half_horizontal.png │ │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ │ ├── half_vertical.png │ │ │ │ │ ├── half_vertical_right.png │ │ │ │ │ ├── mojang.png │ │ │ │ │ ├── piglin.png │ │ │ │ │ ├── rhombus.png │ │ │ │ │ ├── skull.png │ │ │ │ │ ├── small_stripes.png │ │ │ │ │ ├── square_bottom_left.png │ │ │ │ │ ├── square_bottom_right.png │ │ │ │ │ ├── square_top_left.png │ │ │ │ │ ├── square_top_right.png │ │ │ │ │ ├── straight_cross.png │ │ │ │ │ ├── stripe_bottom.png │ │ │ │ │ ├── stripe_center.png │ │ │ │ │ ├── stripe_downleft.png │ │ │ │ │ ├── stripe_downright.png │ │ │ │ │ ├── stripe_left.png │ │ │ │ │ ├── stripe_middle.png │ │ │ │ │ ├── stripe_right.png │ │ │ │ │ ├── stripe_top.png │ │ │ │ │ ├── triangle_bottom.png │ │ │ │ │ ├── triangle_top.png │ │ │ │ │ ├── triangles_bottom.png │ │ │ │ │ └── triangles_top.png │ │ │ │ ├── banner_base.png │ │ │ │ ├── bat.png │ │ │ │ ├── beacon_beam.png │ │ │ │ ├── bear │ │ │ │ │ └── polarbear.png │ │ │ │ ├── bed │ │ │ │ │ ├── black.png │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── brown.png │ │ │ │ │ ├── cyan.png │ │ │ │ │ ├── gray.png │ │ │ │ │ ├── green.png │ │ │ │ │ ├── light_blue.png │ │ │ │ │ ├── light_gray.png │ │ │ │ │ ├── lime.png │ │ │ │ │ ├── magenta.png │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── red.png │ │ │ │ │ ├── white.png │ │ │ │ │ └── yellow.png │ │ │ │ ├── bee │ │ │ │ │ ├── bee.png │ │ │ │ │ ├── bee_angry.png │ │ │ │ │ ├── bee_angry_nectar.png │ │ │ │ │ ├── bee_nectar.png │ │ │ │ │ └── bee_stinger.png │ │ │ │ ├── bell │ │ │ │ │ └── bell_body.png │ │ │ │ ├── blaze.png │ │ │ │ ├── boat │ │ │ │ │ ├── acacia.png │ │ │ │ │ ├── bamboo.png │ │ │ │ │ ├── birch.png │ │ │ │ │ ├── cherry.png │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── mangrove.png │ │ │ │ │ ├── oak.png │ │ │ │ │ └── spruce.png │ │ │ │ ├── breeze │ │ │ │ │ ├── breeze.png │ │ │ │ │ └── breeze_wind.png │ │ │ │ ├── camel │ │ │ │ │ └── camel.png │ │ │ │ ├── cat │ │ │ │ │ ├── all_black.png │ │ │ │ │ ├── black.png │ │ │ │ │ ├── british_shorthair.png │ │ │ │ │ ├── calico.png │ │ │ │ │ ├── cat_collar.png │ │ │ │ │ ├── jellie.png │ │ │ │ │ ├── ocelot.png │ │ │ │ │ ├── persian.png │ │ │ │ │ ├── ragdoll.png │ │ │ │ │ ├── red.png │ │ │ │ │ ├── siamese.png │ │ │ │ │ ├── tabby.png │ │ │ │ │ └── white.png │ │ │ │ ├── chest │ │ │ │ │ ├── christmas.png │ │ │ │ │ ├── christmas_left.png │ │ │ │ │ ├── christmas_right.png │ │ │ │ │ ├── ender.png │ │ │ │ │ ├── normal.png │ │ │ │ │ ├── normal_left.png │ │ │ │ │ ├── normal_right.png │ │ │ │ │ ├── trapped.png │ │ │ │ │ ├── trapped_left.png │ │ │ │ │ └── trapped_right.png │ │ │ │ ├── chest_boat │ │ │ │ │ ├── acacia.png │ │ │ │ │ ├── bamboo.png │ │ │ │ │ ├── birch.png │ │ │ │ │ ├── cherry.png │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── mangrove.png │ │ │ │ │ ├── oak.png │ │ │ │ │ └── spruce.png │ │ │ │ ├── chicken.png │ │ │ │ ├── conduit │ │ │ │ │ ├── base.png │ │ │ │ │ ├── break_particle.png │ │ │ │ │ ├── cage.png │ │ │ │ │ ├── closed_eye.png │ │ │ │ │ ├── open_eye.png │ │ │ │ │ ├── wind.png │ │ │ │ │ ├── wind.png.mcmeta │ │ │ │ │ ├── wind_vertical.png │ │ │ │ │ └── wind_vertical.png.mcmeta │ │ │ │ ├── cow │ │ │ │ │ ├── brown_mooshroom.png │ │ │ │ │ ├── cow.png │ │ │ │ │ └── red_mooshroom.png │ │ │ │ ├── creeper │ │ │ │ │ ├── creeper.png │ │ │ │ │ └── creeper_armor.png │ │ │ │ ├── decorated_pot │ │ │ │ │ ├── angler_pottery_pattern.png │ │ │ │ │ ├── archer_pottery_pattern.png │ │ │ │ │ ├── arms_up_pottery_pattern.png │ │ │ │ │ ├── blade_pottery_pattern.png │ │ │ │ │ ├── brewer_pottery_pattern.png │ │ │ │ │ ├── burn_pottery_pattern.png │ │ │ │ │ ├── danger_pottery_pattern.png │ │ │ │ │ ├── decorated_pot_base.png │ │ │ │ │ ├── decorated_pot_side.png │ │ │ │ │ ├── explorer_pottery_pattern.png │ │ │ │ │ ├── friend_pottery_pattern.png │ │ │ │ │ ├── heart_pottery_pattern.png │ │ │ │ │ ├── heartbreak_pottery_pattern.png │ │ │ │ │ ├── howl_pottery_pattern.png │ │ │ │ │ ├── miner_pottery_pattern.png │ │ │ │ │ ├── mourner_pottery_pattern.png │ │ │ │ │ ├── plenty_pottery_pattern.png │ │ │ │ │ ├── prize_pottery_pattern.png │ │ │ │ │ ├── sheaf_pottery_pattern.png │ │ │ │ │ ├── shelter_pottery_pattern.png │ │ │ │ │ ├── skull_pottery_pattern.png │ │ │ │ │ └── snort_pottery_pattern.png │ │ │ │ ├── dolphin.png │ │ │ │ ├── elytra.png │ │ │ │ ├── enchanting_table_book.png │ │ │ │ ├── end_crystal │ │ │ │ │ ├── end_crystal.png │ │ │ │ │ └── end_crystal_beam.png │ │ │ │ ├── end_gateway_beam.png │ │ │ │ ├── end_portal.png │ │ │ │ ├── enderdragon │ │ │ │ │ ├── dragon.png │ │ │ │ │ ├── dragon_exploding.png │ │ │ │ │ ├── dragon_eyes.png │ │ │ │ │ └── dragon_fireball.png │ │ │ │ ├── enderman │ │ │ │ │ ├── enderman.png │ │ │ │ │ └── enderman_eyes.png │ │ │ │ ├── endermite.png │ │ │ │ ├── experience_orb.png │ │ │ │ ├── fish │ │ │ │ │ ├── cod.png │ │ │ │ │ ├── pufferfish.png │ │ │ │ │ ├── salmon.png │ │ │ │ │ ├── tropical_a.png │ │ │ │ │ ├── tropical_a_pattern_1.png │ │ │ │ │ ├── tropical_a_pattern_2.png │ │ │ │ │ ├── tropical_a_pattern_3.png │ │ │ │ │ ├── tropical_a_pattern_4.png │ │ │ │ │ ├── tropical_a_pattern_5.png │ │ │ │ │ ├── tropical_a_pattern_6.png │ │ │ │ │ ├── tropical_b.png │ │ │ │ │ ├── tropical_b_pattern_1.png │ │ │ │ │ ├── tropical_b_pattern_2.png │ │ │ │ │ ├── tropical_b_pattern_3.png │ │ │ │ │ ├── tropical_b_pattern_4.png │ │ │ │ │ ├── tropical_b_pattern_5.png │ │ │ │ │ └── tropical_b_pattern_6.png │ │ │ │ ├── fishing_hook.png │ │ │ │ ├── fox │ │ │ │ │ ├── fox.png │ │ │ │ │ ├── fox_sleep.png │ │ │ │ │ ├── snow_fox.png │ │ │ │ │ └── snow_fox_sleep.png │ │ │ │ ├── frog │ │ │ │ │ ├── cold_frog.png │ │ │ │ │ ├── temperate_frog.png │ │ │ │ │ └── warm_frog.png │ │ │ │ ├── ghast │ │ │ │ │ ├── ghast.png │ │ │ │ │ └── ghast_shooting.png │ │ │ │ ├── goat │ │ │ │ │ └── goat.png │ │ │ │ ├── guardian.png │ │ │ │ ├── guardian_beam.png │ │ │ │ ├── guardian_elder.png │ │ │ │ ├── hoglin │ │ │ │ │ ├── hoglin.png │ │ │ │ │ └── zoglin.png │ │ │ │ ├── horse │ │ │ │ │ ├── armor │ │ │ │ │ │ ├── horse_armor_diamond.png │ │ │ │ │ │ ├── horse_armor_gold.png │ │ │ │ │ │ ├── horse_armor_iron.png │ │ │ │ │ │ └── horse_armor_leather.png │ │ │ │ │ ├── donkey.png │ │ │ │ │ ├── horse_black.png │ │ │ │ │ ├── horse_brown.png │ │ │ │ │ ├── horse_chestnut.png │ │ │ │ │ ├── horse_creamy.png │ │ │ │ │ ├── horse_darkbrown.png │ │ │ │ │ ├── horse_gray.png │ │ │ │ │ ├── horse_markings_blackdots.png │ │ │ │ │ ├── horse_markings_white.png │ │ │ │ │ ├── horse_markings_whitedots.png │ │ │ │ │ ├── horse_markings_whitefield.png │ │ │ │ │ ├── horse_skeleton.png │ │ │ │ │ ├── horse_white.png │ │ │ │ │ ├── horse_zombie.png │ │ │ │ │ └── mule.png │ │ │ │ ├── illager │ │ │ │ │ ├── evoker.png │ │ │ │ │ ├── evoker_fangs.png │ │ │ │ │ ├── illusioner.png │ │ │ │ │ ├── pillager.png │ │ │ │ │ ├── ravager.png │ │ │ │ │ ├── vex.png │ │ │ │ │ ├── vex_charging.png │ │ │ │ │ └── vindicator.png │ │ │ │ ├── iron_golem │ │ │ │ │ ├── iron_golem.png │ │ │ │ │ ├── iron_golem_crackiness_high.png │ │ │ │ │ ├── iron_golem_crackiness_low.png │ │ │ │ │ └── iron_golem_crackiness_medium.png │ │ │ │ ├── lead_knot.png │ │ │ │ ├── llama │ │ │ │ │ ├── brown.png │ │ │ │ │ ├── creamy.png │ │ │ │ │ ├── decor │ │ │ │ │ │ ├── black.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── brown.png │ │ │ │ │ │ ├── cyan.png │ │ │ │ │ │ ├── gray.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── light_blue.png │ │ │ │ │ │ ├── light_gray.png │ │ │ │ │ │ ├── lime.png │ │ │ │ │ │ ├── magenta.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── trader_llama.png │ │ │ │ │ │ ├── white.png │ │ │ │ │ │ └── yellow.png │ │ │ │ │ ├── gray.png │ │ │ │ │ ├── spit.png │ │ │ │ │ └── white.png │ │ │ │ ├── minecart.png │ │ │ │ ├── panda │ │ │ │ │ ├── aggressive_panda.png │ │ │ │ │ ├── brown_panda.png │ │ │ │ │ ├── lazy_panda.png │ │ │ │ │ ├── panda.png │ │ │ │ │ ├── playful_panda.png │ │ │ │ │ ├── weak_panda.png │ │ │ │ │ └── worried_panda.png │ │ │ │ ├── parrot │ │ │ │ │ ├── parrot_blue.png │ │ │ │ │ ├── parrot_green.png │ │ │ │ │ ├── parrot_grey.png │ │ │ │ │ ├── parrot_red_blue.png │ │ │ │ │ └── parrot_yellow_blue.png │ │ │ │ ├── phantom.png │ │ │ │ ├── phantom_eyes.png │ │ │ │ ├── pig │ │ │ │ │ ├── pig.png │ │ │ │ │ └── pig_saddle.png │ │ │ │ ├── piglin │ │ │ │ │ ├── piglin.png │ │ │ │ │ ├── piglin_brute.png │ │ │ │ │ └── zombified_piglin.png │ │ │ │ ├── player │ │ │ │ │ ├── slim │ │ │ │ │ │ ├── alex.png │ │ │ │ │ │ ├── ari.png │ │ │ │ │ │ ├── efe.png │ │ │ │ │ │ ├── kai.png │ │ │ │ │ │ ├── makena.png │ │ │ │ │ │ ├── noor.png │ │ │ │ │ │ ├── steve.png │ │ │ │ │ │ ├── sunny.png │ │ │ │ │ │ └── zuri.png │ │ │ │ │ └── wide │ │ │ │ │ │ ├── alex.png │ │ │ │ │ │ ├── ari.png │ │ │ │ │ │ ├── efe.png │ │ │ │ │ │ ├── kai.png │ │ │ │ │ │ ├── makena.png │ │ │ │ │ │ ├── noor.png │ │ │ │ │ │ ├── steve.png │ │ │ │ │ │ ├── sunny.png │ │ │ │ │ │ └── zuri.png │ │ │ │ ├── projectiles │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── spectral_arrow.png │ │ │ │ │ ├── tipped_arrow.png │ │ │ │ │ └── wind_charge.png │ │ │ │ ├── rabbit │ │ │ │ │ ├── black.png │ │ │ │ │ ├── brown.png │ │ │ │ │ ├── caerbannog.png │ │ │ │ │ ├── gold.png │ │ │ │ │ ├── salt.png │ │ │ │ │ ├── toast.png │ │ │ │ │ ├── white.png │ │ │ │ │ └── white_splotched.png │ │ │ │ ├── sheep │ │ │ │ │ ├── sheep.png │ │ │ │ │ └── sheep_fur.png │ │ │ │ ├── shield │ │ │ │ │ ├── base.png │ │ │ │ │ ├── border.png │ │ │ │ │ ├── bricks.png │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── creeper.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── curly_border.png │ │ │ │ │ ├── diagonal_left.png │ │ │ │ │ ├── diagonal_right.png │ │ │ │ │ ├── diagonal_up_left.png │ │ │ │ │ ├── diagonal_up_right.png │ │ │ │ │ ├── flower.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── gradient_up.png │ │ │ │ │ ├── half_horizontal.png │ │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ │ ├── half_vertical.png │ │ │ │ │ ├── half_vertical_right.png │ │ │ │ │ ├── mojang.png │ │ │ │ │ ├── piglin.png │ │ │ │ │ ├── rhombus.png │ │ │ │ │ ├── skull.png │ │ │ │ │ ├── small_stripes.png │ │ │ │ │ ├── square_bottom_left.png │ │ │ │ │ ├── square_bottom_right.png │ │ │ │ │ ├── square_top_left.png │ │ │ │ │ ├── square_top_right.png │ │ │ │ │ ├── straight_cross.png │ │ │ │ │ ├── stripe_bottom.png │ │ │ │ │ ├── stripe_center.png │ │ │ │ │ ├── stripe_downleft.png │ │ │ │ │ ├── stripe_downright.png │ │ │ │ │ ├── stripe_left.png │ │ │ │ │ ├── stripe_middle.png │ │ │ │ │ ├── stripe_right.png │ │ │ │ │ ├── stripe_top.png │ │ │ │ │ ├── triangle_bottom.png │ │ │ │ │ ├── triangle_top.png │ │ │ │ │ ├── triangles_bottom.png │ │ │ │ │ └── triangles_top.png │ │ │ │ ├── shield_base.png │ │ │ │ ├── shield_base_nopattern.png │ │ │ │ ├── shulker │ │ │ │ │ ├── shulker.png │ │ │ │ │ ├── shulker_black.png │ │ │ │ │ ├── shulker_blue.png │ │ │ │ │ ├── shulker_brown.png │ │ │ │ │ ├── shulker_cyan.png │ │ │ │ │ ├── shulker_gray.png │ │ │ │ │ ├── shulker_green.png │ │ │ │ │ ├── shulker_light_blue.png │ │ │ │ │ ├── shulker_light_gray.png │ │ │ │ │ ├── shulker_lime.png │ │ │ │ │ ├── shulker_magenta.png │ │ │ │ │ ├── shulker_orange.png │ │ │ │ │ ├── shulker_pink.png │ │ │ │ │ ├── shulker_purple.png │ │ │ │ │ ├── shulker_red.png │ │ │ │ │ ├── shulker_white.png │ │ │ │ │ ├── shulker_yellow.png │ │ │ │ │ └── spark.png │ │ │ │ ├── signs │ │ │ │ │ ├── acacia.png │ │ │ │ │ ├── bamboo.png │ │ │ │ │ ├── birch.png │ │ │ │ │ ├── cherry.png │ │ │ │ │ ├── crimson.png │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ ├── hanging │ │ │ │ │ │ ├── acacia.png │ │ │ │ │ │ ├── bamboo.png │ │ │ │ │ │ ├── birch.png │ │ │ │ │ │ ├── cherry.png │ │ │ │ │ │ ├── crimson.png │ │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ │ ├── jungle.png │ │ │ │ │ │ ├── mangrove.png │ │ │ │ │ │ ├── oak.png │ │ │ │ │ │ ├── spruce.png │ │ │ │ │ │ └── warped.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── mangrove.png │ │ │ │ │ ├── oak.png │ │ │ │ │ ├── spruce.png │ │ │ │ │ └── warped.png │ │ │ │ ├── silverfish.png │ │ │ │ ├── skeleton │ │ │ │ │ ├── skeleton.png │ │ │ │ │ ├── stray.png │ │ │ │ │ ├── stray_overlay.png │ │ │ │ │ └── wither_skeleton.png │ │ │ │ ├── slime │ │ │ │ │ ├── magmacube.png │ │ │ │ │ └── slime.png │ │ │ │ ├── sniffer │ │ │ │ │ └── sniffer.png │ │ │ │ ├── snow_golem.png │ │ │ │ ├── spider │ │ │ │ │ ├── cave_spider.png │ │ │ │ │ └── spider.png │ │ │ │ ├── spider_eyes.png │ │ │ │ ├── squid │ │ │ │ │ ├── glow_squid.png │ │ │ │ │ └── squid.png │ │ │ │ ├── strider │ │ │ │ │ ├── strider.png │ │ │ │ │ ├── strider_cold.png │ │ │ │ │ └── strider_saddle.png │ │ │ │ ├── tadpole │ │ │ │ │ └── tadpole.png │ │ │ │ ├── trident.png │ │ │ │ ├── trident_riptide.png │ │ │ │ ├── turtle │ │ │ │ │ └── big_sea_turtle.png │ │ │ │ ├── villager │ │ │ │ │ ├── profession │ │ │ │ │ │ ├── armorer.png │ │ │ │ │ │ ├── butcher.png │ │ │ │ │ │ ├── butcher.png.mcmeta │ │ │ │ │ │ ├── cartographer.png │ │ │ │ │ │ ├── cleric.png │ │ │ │ │ │ ├── farmer.png │ │ │ │ │ │ ├── farmer.png.mcmeta │ │ │ │ │ │ ├── fisherman.png │ │ │ │ │ │ ├── fisherman.png.mcmeta │ │ │ │ │ │ ├── fletcher.png │ │ │ │ │ │ ├── fletcher.png.mcmeta │ │ │ │ │ │ ├── leatherworker.png │ │ │ │ │ │ ├── librarian.png │ │ │ │ │ │ ├── librarian.png.mcmeta │ │ │ │ │ │ ├── mason.png │ │ │ │ │ │ ├── nitwit.png │ │ │ │ │ │ ├── shepherd.png │ │ │ │ │ │ ├── shepherd.png.mcmeta │ │ │ │ │ │ ├── toolsmith.png │ │ │ │ │ │ └── weaponsmith.png │ │ │ │ │ ├── profession_level │ │ │ │ │ │ ├── diamond.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── gold.png │ │ │ │ │ │ ├── iron.png │ │ │ │ │ │ └── stone.png │ │ │ │ │ ├── type │ │ │ │ │ │ ├── desert.png │ │ │ │ │ │ ├── desert.png.mcmeta │ │ │ │ │ │ ├── jungle.png │ │ │ │ │ │ ├── plains.png │ │ │ │ │ │ ├── savanna.png │ │ │ │ │ │ ├── snow.png │ │ │ │ │ │ ├── snow.png.mcmeta │ │ │ │ │ │ ├── swamp.png │ │ │ │ │ │ └── taiga.png │ │ │ │ │ └── villager.png │ │ │ │ ├── wandering_trader.png │ │ │ │ ├── warden │ │ │ │ │ ├── warden.png │ │ │ │ │ ├── warden_bioluminescent_layer.png │ │ │ │ │ ├── warden_heart.png │ │ │ │ │ ├── warden_pulsating_spots_1.png │ │ │ │ │ └── warden_pulsating_spots_2.png │ │ │ │ ├── witch.png │ │ │ │ ├── wither │ │ │ │ │ ├── wither.png │ │ │ │ │ ├── wither_armor.png │ │ │ │ │ └── wither_invulnerable.png │ │ │ │ ├── wolf │ │ │ │ │ ├── wolf.png │ │ │ │ │ ├── wolf_angry.png │ │ │ │ │ ├── wolf_collar.png │ │ │ │ │ └── wolf_tame.png │ │ │ │ ├── zombie │ │ │ │ │ ├── drowned.png │ │ │ │ │ ├── drowned_outer_layer.png │ │ │ │ │ ├── husk.png │ │ │ │ │ └── zombie.png │ │ │ │ └── zombie_villager │ │ │ │ │ ├── profession │ │ │ │ │ ├── armorer.png │ │ │ │ │ ├── butcher.png │ │ │ │ │ ├── butcher.png.mcmeta │ │ │ │ │ ├── cartographer.png │ │ │ │ │ ├── cleric.png │ │ │ │ │ ├── farmer.png │ │ │ │ │ ├── farmer.png.mcmeta │ │ │ │ │ ├── fisherman.png │ │ │ │ │ ├── fisherman.png.mcmeta │ │ │ │ │ ├── fletcher.png │ │ │ │ │ ├── fletcher.png.mcmeta │ │ │ │ │ ├── leatherworker.png │ │ │ │ │ ├── librarian.png │ │ │ │ │ ├── librarian.png.mcmeta │ │ │ │ │ ├── mason.png │ │ │ │ │ ├── nitwit.png │ │ │ │ │ ├── shepherd.png │ │ │ │ │ ├── shepherd.png.mcmeta │ │ │ │ │ ├── toolsmith.png │ │ │ │ │ └── weaponsmith.png │ │ │ │ │ ├── profession_level │ │ │ │ │ ├── diamond.png │ │ │ │ │ ├── emerald.png │ │ │ │ │ ├── gold.png │ │ │ │ │ ├── iron.png │ │ │ │ │ └── stone.png │ │ │ │ │ ├── type │ │ │ │ │ ├── desert.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── plains.png │ │ │ │ │ ├── savanna.png │ │ │ │ │ ├── snow.png │ │ │ │ │ ├── swamp.png │ │ │ │ │ └── taiga.png │ │ │ │ │ └── zombie_villager.png │ │ │ │ ├── environment │ │ │ │ ├── clouds.png │ │ │ │ ├── end_sky.png │ │ │ │ ├── moon_phases.png │ │ │ │ ├── rain.png │ │ │ │ ├── snow.png │ │ │ │ └── sun.png │ │ │ │ ├── font │ │ │ │ ├── accented.png │ │ │ │ ├── ascii.png │ │ │ │ ├── ascii_sga.png │ │ │ │ ├── asciillager.png │ │ │ │ └── nonlatin_european.png │ │ │ │ ├── gui │ │ │ │ ├── advancements │ │ │ │ │ ├── backgrounds │ │ │ │ │ │ ├── adventure.png │ │ │ │ │ │ ├── end.png │ │ │ │ │ │ ├── husbandry.png │ │ │ │ │ │ ├── nether.png │ │ │ │ │ │ └── stone.png │ │ │ │ │ └── window.png │ │ │ │ ├── book.png │ │ │ │ ├── container │ │ │ │ │ ├── anvil.png │ │ │ │ │ ├── beacon.png │ │ │ │ │ ├── blast_furnace.png │ │ │ │ │ ├── brewing_stand.png │ │ │ │ │ ├── cartography_table.png │ │ │ │ │ ├── crafter.png │ │ │ │ │ ├── crafting_table.png │ │ │ │ │ ├── creative_inventory │ │ │ │ │ │ ├── tab_inventory.png │ │ │ │ │ │ ├── tab_item_search.png │ │ │ │ │ │ └── tab_items.png │ │ │ │ │ ├── dispenser.png │ │ │ │ │ ├── enchanting_table.png │ │ │ │ │ ├── furnace.png │ │ │ │ │ ├── gamemode_switcher.png │ │ │ │ │ ├── generic_54.png │ │ │ │ │ ├── grindstone.png │ │ │ │ │ ├── hopper.png │ │ │ │ │ ├── horse.png │ │ │ │ │ ├── inventory.png │ │ │ │ │ ├── loom.png │ │ │ │ │ ├── shulker_box.png │ │ │ │ │ ├── smithing.png │ │ │ │ │ ├── smoker.png │ │ │ │ │ ├── stonecutter.png │ │ │ │ │ └── villager.png │ │ │ │ ├── demo_background.png │ │ │ │ ├── footer_separator.png │ │ │ │ ├── hanging_signs │ │ │ │ │ ├── acacia.png │ │ │ │ │ ├── bamboo.png │ │ │ │ │ ├── birch.png │ │ │ │ │ ├── cherry.png │ │ │ │ │ ├── crimson.png │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── mangrove.png │ │ │ │ │ ├── oak.png │ │ │ │ │ ├── spruce.png │ │ │ │ │ └── warped.png │ │ │ │ ├── header_separator.png │ │ │ │ ├── icons.png │ │ │ │ ├── light_dirt_background.png │ │ │ │ ├── options_background.png │ │ │ │ ├── presets │ │ │ │ │ └── isles.png │ │ │ │ ├── realms │ │ │ │ │ ├── adventure.png │ │ │ │ │ ├── empty_frame.png │ │ │ │ │ ├── experience.png │ │ │ │ │ ├── inspiration.png │ │ │ │ │ ├── new_world.png │ │ │ │ │ ├── no_realms.png │ │ │ │ │ ├── snapshot_realms.png │ │ │ │ │ ├── survival_spawn.png │ │ │ │ │ └── upload.png │ │ │ │ ├── recipe_book.png │ │ │ │ ├── sprites │ │ │ │ │ ├── advancements │ │ │ │ │ │ ├── box_obtained.png │ │ │ │ │ │ ├── box_unobtained.png │ │ │ │ │ │ ├── challenge_frame_obtained.png │ │ │ │ │ │ ├── challenge_frame_unobtained.png │ │ │ │ │ │ ├── goal_frame_obtained.png │ │ │ │ │ │ ├── goal_frame_unobtained.png │ │ │ │ │ │ ├── tab_above_left.png │ │ │ │ │ │ ├── tab_above_left_selected.png │ │ │ │ │ │ ├── tab_above_middle.png │ │ │ │ │ │ ├── tab_above_middle_selected.png │ │ │ │ │ │ ├── tab_above_right.png │ │ │ │ │ │ ├── tab_above_right_selected.png │ │ │ │ │ │ ├── tab_below_left.png │ │ │ │ │ │ ├── tab_below_left_selected.png │ │ │ │ │ │ ├── tab_below_middle.png │ │ │ │ │ │ ├── tab_below_middle_selected.png │ │ │ │ │ │ ├── tab_below_right.png │ │ │ │ │ │ ├── tab_below_right_selected.png │ │ │ │ │ │ ├── tab_left_bottom.png │ │ │ │ │ │ ├── tab_left_bottom_selected.png │ │ │ │ │ │ ├── tab_left_middle.png │ │ │ │ │ │ ├── tab_left_middle_selected.png │ │ │ │ │ │ ├── tab_left_top.png │ │ │ │ │ │ ├── tab_left_top_selected.png │ │ │ │ │ │ ├── tab_right_bottom.png │ │ │ │ │ │ ├── tab_right_bottom_selected.png │ │ │ │ │ │ ├── tab_right_middle.png │ │ │ │ │ │ ├── tab_right_middle_selected.png │ │ │ │ │ │ ├── tab_right_top.png │ │ │ │ │ │ ├── tab_right_top_selected.png │ │ │ │ │ │ ├── task_frame_obtained.png │ │ │ │ │ │ ├── task_frame_unobtained.png │ │ │ │ │ │ ├── title_box.png │ │ │ │ │ │ └── title_box.png.mcmeta │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── changes.png │ │ │ │ │ │ ├── changes_highlighted.png │ │ │ │ │ │ ├── restore.png │ │ │ │ │ │ └── restore_highlighted.png │ │ │ │ │ ├── boss_bar │ │ │ │ │ │ ├── blue_background.png │ │ │ │ │ │ ├── blue_progress.png │ │ │ │ │ │ ├── green_background.png │ │ │ │ │ │ ├── green_progress.png │ │ │ │ │ │ ├── notched_10_background.png │ │ │ │ │ │ ├── notched_10_progress.png │ │ │ │ │ │ ├── notched_12_background.png │ │ │ │ │ │ ├── notched_12_progress.png │ │ │ │ │ │ ├── notched_20_background.png │ │ │ │ │ │ ├── notched_20_progress.png │ │ │ │ │ │ ├── notched_6_background.png │ │ │ │ │ │ ├── notched_6_progress.png │ │ │ │ │ │ ├── pink_background.png │ │ │ │ │ │ ├── pink_progress.png │ │ │ │ │ │ ├── purple_background.png │ │ │ │ │ │ ├── purple_progress.png │ │ │ │ │ │ ├── red_background.png │ │ │ │ │ │ ├── red_progress.png │ │ │ │ │ │ ├── white_background.png │ │ │ │ │ │ ├── white_progress.png │ │ │ │ │ │ ├── yellow_background.png │ │ │ │ │ │ └── yellow_progress.png │ │ │ │ │ ├── container │ │ │ │ │ │ ├── anvil │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── text_field.png │ │ │ │ │ │ │ └── text_field_disabled.png │ │ │ │ │ │ ├── beacon │ │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ │ ├── button_disabled.png │ │ │ │ │ │ │ ├── button_highlighted.png │ │ │ │ │ │ │ ├── button_selected.png │ │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ │ └── confirm.png │ │ │ │ │ │ ├── blast_furnace │ │ │ │ │ │ │ ├── burn_progress.png │ │ │ │ │ │ │ └── lit_progress.png │ │ │ │ │ │ ├── brewing_stand │ │ │ │ │ │ │ ├── brew_progress.png │ │ │ │ │ │ │ ├── bubbles.png │ │ │ │ │ │ │ └── fuel_length.png │ │ │ │ │ │ ├── bundle │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── background.png.mcmeta │ │ │ │ │ │ │ ├── blocked_slot.png │ │ │ │ │ │ │ └── slot.png │ │ │ │ │ │ ├── cartography_table │ │ │ │ │ │ │ ├── duplicated_map.png │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── locked.png │ │ │ │ │ │ │ ├── map.png │ │ │ │ │ │ │ └── scaled_map.png │ │ │ │ │ │ ├── crafter │ │ │ │ │ │ │ ├── disabled_slot.png │ │ │ │ │ │ │ ├── powered_redstone.png │ │ │ │ │ │ │ └── unpowered_redstone.png │ │ │ │ │ │ ├── creative_inventory │ │ │ │ │ │ │ ├── scroller.png │ │ │ │ │ │ │ ├── scroller_disabled.png │ │ │ │ │ │ │ ├── tab_bottom_selected_1.png │ │ │ │ │ │ │ ├── tab_bottom_selected_2.png │ │ │ │ │ │ │ ├── tab_bottom_selected_3.png │ │ │ │ │ │ │ ├── tab_bottom_selected_4.png │ │ │ │ │ │ │ ├── tab_bottom_selected_5.png │ │ │ │ │ │ │ ├── tab_bottom_selected_6.png │ │ │ │ │ │ │ ├── tab_bottom_selected_7.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_1.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_2.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_3.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_4.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_5.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_6.png │ │ │ │ │ │ │ ├── tab_bottom_unselected_7.png │ │ │ │ │ │ │ ├── tab_top_selected_1.png │ │ │ │ │ │ │ ├── tab_top_selected_2.png │ │ │ │ │ │ │ ├── tab_top_selected_3.png │ │ │ │ │ │ │ ├── tab_top_selected_4.png │ │ │ │ │ │ │ ├── tab_top_selected_5.png │ │ │ │ │ │ │ ├── tab_top_selected_6.png │ │ │ │ │ │ │ ├── tab_top_selected_7.png │ │ │ │ │ │ │ ├── tab_top_unselected_1.png │ │ │ │ │ │ │ ├── tab_top_unselected_2.png │ │ │ │ │ │ │ ├── tab_top_unselected_3.png │ │ │ │ │ │ │ ├── tab_top_unselected_4.png │ │ │ │ │ │ │ ├── tab_top_unselected_5.png │ │ │ │ │ │ │ ├── tab_top_unselected_6.png │ │ │ │ │ │ │ └── tab_top_unselected_7.png │ │ │ │ │ │ ├── enchanting_table │ │ │ │ │ │ │ ├── enchantment_slot.png │ │ │ │ │ │ │ ├── enchantment_slot_disabled.png │ │ │ │ │ │ │ ├── enchantment_slot_highlighted.png │ │ │ │ │ │ │ ├── level_1.png │ │ │ │ │ │ │ ├── level_1_disabled.png │ │ │ │ │ │ │ ├── level_2.png │ │ │ │ │ │ │ ├── level_2_disabled.png │ │ │ │ │ │ │ ├── level_3.png │ │ │ │ │ │ │ └── level_3_disabled.png │ │ │ │ │ │ ├── furnace │ │ │ │ │ │ │ ├── burn_progress.png │ │ │ │ │ │ │ └── lit_progress.png │ │ │ │ │ │ ├── grindstone │ │ │ │ │ │ │ └── error.png │ │ │ │ │ │ ├── horse │ │ │ │ │ │ │ ├── armor_slot.png │ │ │ │ │ │ │ ├── chest_slots.png │ │ │ │ │ │ │ ├── llama_armor_slot.png │ │ │ │ │ │ │ └── saddle_slot.png │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ │ ├── effect_background_large.png │ │ │ │ │ │ │ └── effect_background_small.png │ │ │ │ │ │ ├── loom │ │ │ │ │ │ │ ├── banner_slot.png │ │ │ │ │ │ │ ├── dye_slot.png │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── pattern.png │ │ │ │ │ │ │ ├── pattern_highlighted.png │ │ │ │ │ │ │ ├── pattern_selected.png │ │ │ │ │ │ │ ├── pattern_slot.png │ │ │ │ │ │ │ ├── scroller.png │ │ │ │ │ │ │ └── scroller_disabled.png │ │ │ │ │ │ ├── slot.png │ │ │ │ │ │ ├── smithing │ │ │ │ │ │ │ └── error.png │ │ │ │ │ │ ├── smoker │ │ │ │ │ │ │ ├── burn_progress.png │ │ │ │ │ │ │ └── lit_progress.png │ │ │ │ │ │ ├── stonecutter │ │ │ │ │ │ │ ├── recipe.png │ │ │ │ │ │ │ ├── recipe_highlighted.png │ │ │ │ │ │ │ ├── recipe_selected.png │ │ │ │ │ │ │ ├── scroller.png │ │ │ │ │ │ │ └── scroller_disabled.png │ │ │ │ │ │ └── villager │ │ │ │ │ │ │ ├── discount_strikethrough.png │ │ │ │ │ │ │ ├── experience_bar_background.png │ │ │ │ │ │ │ ├── experience_bar_current.png │ │ │ │ │ │ │ ├── experience_bar_result.png │ │ │ │ │ │ │ ├── out_of_stock.png │ │ │ │ │ │ │ ├── scroller.png │ │ │ │ │ │ │ ├── scroller_disabled.png │ │ │ │ │ │ │ ├── trade_arrow.png │ │ │ │ │ │ │ └── trade_arrow_out_of_stock.png │ │ │ │ │ ├── gamemode_switcher │ │ │ │ │ │ ├── selection.png │ │ │ │ │ │ └── slot.png │ │ │ │ │ ├── hud │ │ │ │ │ │ ├── air.png │ │ │ │ │ │ ├── air_bursting.png │ │ │ │ │ │ ├── armor_empty.png │ │ │ │ │ │ ├── armor_full.png │ │ │ │ │ │ ├── armor_half.png │ │ │ │ │ │ ├── crosshair.png │ │ │ │ │ │ ├── crosshair_attack_indicator_background.png │ │ │ │ │ │ ├── crosshair_attack_indicator_full.png │ │ │ │ │ │ ├── crosshair_attack_indicator_progress.png │ │ │ │ │ │ ├── effect_background.png │ │ │ │ │ │ ├── effect_background_ambient.png │ │ │ │ │ │ ├── experience_bar_background.png │ │ │ │ │ │ ├── experience_bar_progress.png │ │ │ │ │ │ ├── food_empty.png │ │ │ │ │ │ ├── food_empty_hunger.png │ │ │ │ │ │ ├── food_full.png │ │ │ │ │ │ ├── food_full_hunger.png │ │ │ │ │ │ ├── food_half.png │ │ │ │ │ │ ├── food_half_hunger.png │ │ │ │ │ │ ├── hotbar.png │ │ │ │ │ │ ├── hotbar_attack_indicator_background.png │ │ │ │ │ │ ├── hotbar_attack_indicator_progress.png │ │ │ │ │ │ ├── hotbar_selection.png │ │ │ │ │ │ ├── jump_bar_background.png │ │ │ │ │ │ ├── jump_bar_cooldown.png │ │ │ │ │ │ └── jump_bar_progress.png │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── accessibility.png │ │ │ │ │ │ ├── chat_modified.png │ │ │ │ │ │ ├── checkmark.png │ │ │ │ │ │ ├── draft_report.png │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ ├── invite.png │ │ │ │ │ │ ├── language.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── link_highlighted.png │ │ │ │ │ │ ├── new_realm.png │ │ │ │ │ │ ├── news.png │ │ │ │ │ │ ├── ping_1.png │ │ │ │ │ │ ├── ping_2.png │ │ │ │ │ │ ├── ping_3.png │ │ │ │ │ │ ├── ping_4.png │ │ │ │ │ │ ├── ping_5.png │ │ │ │ │ │ ├── ping_unknown.png │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ ├── trial_available.png │ │ │ │ │ │ ├── trial_available.png.mcmeta │ │ │ │ │ │ ├── unseen_notification.png │ │ │ │ │ │ ├── video_link.png │ │ │ │ │ │ └── video_link_highlighted.png │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ └── more.png │ │ │ │ │ ├── pending_invite │ │ │ │ │ │ ├── accept.png │ │ │ │ │ │ ├── accept_highlighted.png │ │ │ │ │ │ ├── reject.png │ │ │ │ │ │ └── reject_highlighted.png │ │ │ │ │ ├── player_list │ │ │ │ │ │ ├── make_operator.png │ │ │ │ │ │ ├── make_operator_highlighted.png │ │ │ │ │ │ ├── remove_operator.png │ │ │ │ │ │ ├── remove_operator_highlighted.png │ │ │ │ │ │ ├── remove_player.png │ │ │ │ │ │ └── remove_player_highlighted.png │ │ │ │ │ ├── popup │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── background.png.mcmeta │ │ │ │ │ ├── realm_status │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── expired.png │ │ │ │ │ │ ├── expires_soon.png │ │ │ │ │ │ ├── expires_soon.png.mcmeta │ │ │ │ │ │ └── open.png │ │ │ │ │ ├── recipe_book │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── button_highlighted.png │ │ │ │ │ │ ├── crafting_overlay.png │ │ │ │ │ │ ├── crafting_overlay_disabled.png │ │ │ │ │ │ ├── crafting_overlay_disabled_highlighted.png │ │ │ │ │ │ ├── crafting_overlay_highlighted.png │ │ │ │ │ │ ├── filter_disabled.png │ │ │ │ │ │ ├── filter_disabled_highlighted.png │ │ │ │ │ │ ├── filter_enabled.png │ │ │ │ │ │ ├── filter_enabled_highlighted.png │ │ │ │ │ │ ├── furnace_filter_disabled.png │ │ │ │ │ │ ├── furnace_filter_disabled_highlighted.png │ │ │ │ │ │ ├── furnace_filter_enabled.png │ │ │ │ │ │ ├── furnace_filter_enabled_highlighted.png │ │ │ │ │ │ ├── furnace_overlay.png │ │ │ │ │ │ ├── furnace_overlay_disabled.png │ │ │ │ │ │ ├── furnace_overlay_disabled_highlighted.png │ │ │ │ │ │ ├── furnace_overlay_highlighted.png │ │ │ │ │ │ ├── overlay_recipe.png │ │ │ │ │ │ ├── overlay_recipe.png.mcmeta │ │ │ │ │ │ ├── page_backward.png │ │ │ │ │ │ ├── page_backward_highlighted.png │ │ │ │ │ │ ├── page_forward.png │ │ │ │ │ │ ├── page_forward_highlighted.png │ │ │ │ │ │ ├── slot_craftable.png │ │ │ │ │ │ ├── slot_many_craftable.png │ │ │ │ │ │ ├── slot_many_uncraftable.png │ │ │ │ │ │ ├── slot_uncraftable.png │ │ │ │ │ │ ├── tab.png │ │ │ │ │ │ └── tab_selected.png │ │ │ │ │ ├── server_list │ │ │ │ │ │ ├── incompatible.png │ │ │ │ │ │ ├── join.png │ │ │ │ │ │ ├── join_highlighted.png │ │ │ │ │ │ ├── move_down.png │ │ │ │ │ │ ├── move_down_highlighted.png │ │ │ │ │ │ ├── move_up.png │ │ │ │ │ │ ├── move_up_highlighted.png │ │ │ │ │ │ ├── ping_1.png │ │ │ │ │ │ ├── ping_2.png │ │ │ │ │ │ ├── ping_3.png │ │ │ │ │ │ ├── ping_4.png │ │ │ │ │ │ ├── ping_5.png │ │ │ │ │ │ ├── pinging_1.png │ │ │ │ │ │ ├── pinging_2.png │ │ │ │ │ │ ├── pinging_3.png │ │ │ │ │ │ ├── pinging_4.png │ │ │ │ │ │ ├── pinging_5.png │ │ │ │ │ │ └── unreachable.png │ │ │ │ │ ├── social_interactions │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── background.png.mcmeta │ │ │ │ │ │ ├── mute_button.png │ │ │ │ │ │ ├── mute_button_highlighted.png │ │ │ │ │ │ ├── report_button.png │ │ │ │ │ │ ├── report_button_disabled.png │ │ │ │ │ │ ├── report_button_highlighted.png │ │ │ │ │ │ ├── unmute_button.png │ │ │ │ │ │ └── unmute_button_highlighted.png │ │ │ │ │ ├── spectator │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── scroll_left.png │ │ │ │ │ │ ├── scroll_right.png │ │ │ │ │ │ ├── teleport_to_player.png │ │ │ │ │ │ └── teleport_to_team.png │ │ │ │ │ ├── statistics │ │ │ │ │ │ ├── block_mined.png │ │ │ │ │ │ ├── header.png │ │ │ │ │ │ ├── item_broken.png │ │ │ │ │ │ ├── item_crafted.png │ │ │ │ │ │ ├── item_dropped.png │ │ │ │ │ │ ├── item_picked_up.png │ │ │ │ │ │ ├── item_used.png │ │ │ │ │ │ ├── sort_down.png │ │ │ │ │ │ └── sort_up.png │ │ │ │ │ ├── toast │ │ │ │ │ │ ├── advancement.png │ │ │ │ │ │ ├── mouse.png │ │ │ │ │ │ ├── movement_keys.png │ │ │ │ │ │ ├── recipe.png │ │ │ │ │ │ ├── recipe_book.png │ │ │ │ │ │ ├── right_click.png │ │ │ │ │ │ ├── social_interactions.png │ │ │ │ │ │ ├── system.png │ │ │ │ │ │ ├── tree.png │ │ │ │ │ │ ├── tutorial.png │ │ │ │ │ │ └── wooden_planks.png │ │ │ │ │ ├── transferable_list │ │ │ │ │ │ ├── move_down.png │ │ │ │ │ │ ├── move_down_highlighted.png │ │ │ │ │ │ ├── move_up.png │ │ │ │ │ │ ├── move_up_highlighted.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── select_highlighted.png │ │ │ │ │ │ ├── unselect.png │ │ │ │ │ │ └── unselect_highlighted.png │ │ │ │ │ ├── widget │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── button.png.mcmeta │ │ │ │ │ │ ├── button_disabled.png │ │ │ │ │ │ ├── button_disabled.png.mcmeta │ │ │ │ │ │ ├── button_highlighted.png │ │ │ │ │ │ ├── button_highlighted.png.mcmeta │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── checkbox_highlighted.png │ │ │ │ │ │ ├── checkbox_selected.png │ │ │ │ │ │ ├── checkbox_selected_highlighted.png │ │ │ │ │ │ ├── cross_button.png │ │ │ │ │ │ ├── cross_button_highlighted.png │ │ │ │ │ │ ├── locked_button.png │ │ │ │ │ │ ├── locked_button_disabled.png │ │ │ │ │ │ ├── locked_button_highlighted.png │ │ │ │ │ │ ├── page_backward.png │ │ │ │ │ │ ├── page_backward_highlighted.png │ │ │ │ │ │ ├── page_forward.png │ │ │ │ │ │ ├── page_forward_highlighted.png │ │ │ │ │ │ ├── scroller.png │ │ │ │ │ │ ├── scroller.png.mcmeta │ │ │ │ │ │ ├── slider.png │ │ │ │ │ │ ├── slider.png.mcmeta │ │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ │ ├── slider_handle.png.mcmeta │ │ │ │ │ │ ├── slider_handle_highlighted.png │ │ │ │ │ │ ├── slider_handle_highlighted.png.mcmeta │ │ │ │ │ │ ├── slider_highlighted.png │ │ │ │ │ │ ├── slider_highlighted.png.mcmeta │ │ │ │ │ │ ├── slot_frame.png │ │ │ │ │ │ ├── tab.png │ │ │ │ │ │ ├── tab.png.mcmeta │ │ │ │ │ │ ├── tab_highlighted.png │ │ │ │ │ │ ├── tab_highlighted.png.mcmeta │ │ │ │ │ │ ├── tab_selected.png │ │ │ │ │ │ ├── tab_selected.png.mcmeta │ │ │ │ │ │ ├── tab_selected_highlighted.png │ │ │ │ │ │ ├── tab_selected_highlighted.png.mcmeta │ │ │ │ │ │ ├── text_field.png │ │ │ │ │ │ ├── text_field.png.mcmeta │ │ │ │ │ │ ├── text_field_highlighted.png │ │ │ │ │ │ ├── text_field_highlighted.png.mcmeta │ │ │ │ │ │ ├── unlocked_button.png │ │ │ │ │ │ ├── unlocked_button_disabled.png │ │ │ │ │ │ └── unlocked_button_highlighted.png │ │ │ │ │ └── world_list │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── error_highlighted.png │ │ │ │ │ │ ├── join.png │ │ │ │ │ │ ├── join_highlighted.png │ │ │ │ │ │ ├── marked_join.png │ │ │ │ │ │ ├── marked_join_highlighted.png │ │ │ │ │ │ ├── warning.png │ │ │ │ │ │ └── warning_highlighted.png │ │ │ │ └── title │ │ │ │ │ ├── background │ │ │ │ │ ├── panorama_0.png │ │ │ │ │ ├── panorama_1.png │ │ │ │ │ ├── panorama_2.png │ │ │ │ │ ├── panorama_3.png │ │ │ │ │ ├── panorama_4.png │ │ │ │ │ ├── panorama_5.png │ │ │ │ │ └── panorama_overlay.png │ │ │ │ │ ├── edition.png │ │ │ │ │ ├── edition.png.mcmeta │ │ │ │ │ ├── minceraft.png │ │ │ │ │ ├── minceraft.png.mcmeta │ │ │ │ │ ├── minecraft.png │ │ │ │ │ ├── minecraft.png.mcmeta │ │ │ │ │ ├── mojangstudios.png │ │ │ │ │ ├── realms.png │ │ │ │ │ └── realms.png.mcmeta │ │ │ │ ├── item │ │ │ │ ├── acacia_boat.png │ │ │ │ ├── acacia_chest_boat.png │ │ │ │ ├── acacia_door.png │ │ │ │ ├── acacia_hanging_sign.png │ │ │ │ ├── acacia_sign.png │ │ │ │ ├── amethyst_shard.png │ │ │ │ ├── angler_pottery_sherd.png │ │ │ │ ├── apple.png │ │ │ │ ├── archer_pottery_sherd.png │ │ │ │ ├── armor_stand.png │ │ │ │ ├── arms_up_pottery_sherd.png │ │ │ │ ├── arrow.png │ │ │ │ ├── axolotl_bucket.png │ │ │ │ ├── baked_potato.png │ │ │ │ ├── bamboo.png │ │ │ │ ├── bamboo_chest_raft.png │ │ │ │ ├── bamboo_door.png │ │ │ │ ├── bamboo_hanging_sign.png │ │ │ │ ├── bamboo_raft.png │ │ │ │ ├── bamboo_sign.png │ │ │ │ ├── barrier.png │ │ │ │ ├── beef.png │ │ │ │ ├── beetroot.png │ │ │ │ ├── beetroot_seeds.png │ │ │ │ ├── beetroot_soup.png │ │ │ │ ├── bell.png │ │ │ │ ├── birch_boat.png │ │ │ │ ├── birch_chest_boat.png │ │ │ │ ├── birch_door.png │ │ │ │ ├── birch_hanging_sign.png │ │ │ │ ├── birch_sign.png │ │ │ │ ├── black_candle.png │ │ │ │ ├── black_dye.png │ │ │ │ ├── blade_pottery_sherd.png │ │ │ │ ├── blaze_powder.png │ │ │ │ ├── blaze_rod.png │ │ │ │ ├── blue_candle.png │ │ │ │ ├── blue_dye.png │ │ │ │ ├── bone.png │ │ │ │ ├── bone_meal.png │ │ │ │ ├── book.png │ │ │ │ ├── bow.png │ │ │ │ ├── bow_pulling_0.png │ │ │ │ ├── bow_pulling_1.png │ │ │ │ ├── bow_pulling_2.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bread.png │ │ │ │ ├── brewer_pottery_sherd.png │ │ │ │ ├── brewing_stand.png │ │ │ │ ├── brick.png │ │ │ │ ├── broken_elytra.png │ │ │ │ ├── brown_candle.png │ │ │ │ ├── brown_dye.png │ │ │ │ ├── brush.png │ │ │ │ ├── bucket.png │ │ │ │ ├── bundle.png │ │ │ │ ├── bundle_filled.png │ │ │ │ ├── burn_pottery_sherd.png │ │ │ │ ├── cake.png │ │ │ │ ├── campfire.png │ │ │ │ ├── candle.png │ │ │ │ ├── carrot.png │ │ │ │ ├── carrot_on_a_stick.png │ │ │ │ ├── cauldron.png │ │ │ │ ├── chain.png │ │ │ │ ├── chainmail_boots.png │ │ │ │ ├── chainmail_chestplate.png │ │ │ │ ├── chainmail_helmet.png │ │ │ │ ├── chainmail_leggings.png │ │ │ │ ├── charcoal.png │ │ │ │ ├── cherry_boat.png │ │ │ │ ├── cherry_chest_boat.png │ │ │ │ ├── cherry_door.png │ │ │ │ ├── cherry_hanging_sign.png │ │ │ │ ├── cherry_sign.png │ │ │ │ ├── chest_minecart.png │ │ │ │ ├── chicken.png │ │ │ │ ├── chorus_fruit.png │ │ │ │ ├── clay_ball.png │ │ │ │ ├── clock_00.png │ │ │ │ ├── clock_01.png │ │ │ │ ├── clock_02.png │ │ │ │ ├── clock_03.png │ │ │ │ ├── clock_04.png │ │ │ │ ├── clock_05.png │ │ │ │ ├── clock_06.png │ │ │ │ ├── clock_07.png │ │ │ │ ├── clock_08.png │ │ │ │ ├── clock_09.png │ │ │ │ ├── clock_10.png │ │ │ │ ├── clock_11.png │ │ │ │ ├── clock_12.png │ │ │ │ ├── clock_13.png │ │ │ │ ├── clock_14.png │ │ │ │ ├── clock_15.png │ │ │ │ ├── clock_16.png │ │ │ │ ├── clock_17.png │ │ │ │ ├── clock_18.png │ │ │ │ ├── clock_19.png │ │ │ │ ├── clock_20.png │ │ │ │ ├── clock_21.png │ │ │ │ ├── clock_22.png │ │ │ │ ├── clock_23.png │ │ │ │ ├── clock_24.png │ │ │ │ ├── clock_25.png │ │ │ │ ├── clock_26.png │ │ │ │ ├── clock_27.png │ │ │ │ ├── clock_28.png │ │ │ │ ├── clock_29.png │ │ │ │ ├── clock_30.png │ │ │ │ ├── clock_31.png │ │ │ │ ├── clock_32.png │ │ │ │ ├── clock_33.png │ │ │ │ ├── clock_34.png │ │ │ │ ├── clock_35.png │ │ │ │ ├── clock_36.png │ │ │ │ ├── clock_37.png │ │ │ │ ├── clock_38.png │ │ │ │ ├── clock_39.png │ │ │ │ ├── clock_40.png │ │ │ │ ├── clock_41.png │ │ │ │ ├── clock_42.png │ │ │ │ ├── clock_43.png │ │ │ │ ├── clock_44.png │ │ │ │ ├── clock_45.png │ │ │ │ ├── clock_46.png │ │ │ │ ├── clock_47.png │ │ │ │ ├── clock_48.png │ │ │ │ ├── clock_49.png │ │ │ │ ├── clock_50.png │ │ │ │ ├── clock_51.png │ │ │ │ ├── clock_52.png │ │ │ │ ├── clock_53.png │ │ │ │ ├── clock_54.png │ │ │ │ ├── clock_55.png │ │ │ │ ├── clock_56.png │ │ │ │ ├── clock_57.png │ │ │ │ ├── clock_58.png │ │ │ │ ├── clock_59.png │ │ │ │ ├── clock_60.png │ │ │ │ ├── clock_61.png │ │ │ │ ├── clock_62.png │ │ │ │ ├── clock_63.png │ │ │ │ ├── coal.png │ │ │ │ ├── coast_armor_trim_smithing_template.png │ │ │ │ ├── cocoa_beans.png │ │ │ │ ├── cod.png │ │ │ │ ├── cod_bucket.png │ │ │ │ ├── command_block_minecart.png │ │ │ │ ├── comparator.png │ │ │ │ ├── compass_00.png │ │ │ │ ├── compass_01.png │ │ │ │ ├── compass_02.png │ │ │ │ ├── compass_03.png │ │ │ │ ├── compass_04.png │ │ │ │ ├── compass_05.png │ │ │ │ ├── compass_06.png │ │ │ │ ├── compass_07.png │ │ │ │ ├── compass_08.png │ │ │ │ ├── compass_09.png │ │ │ │ ├── compass_10.png │ │ │ │ ├── compass_11.png │ │ │ │ ├── compass_12.png │ │ │ │ ├── compass_13.png │ │ │ │ ├── compass_14.png │ │ │ │ ├── compass_15.png │ │ │ │ ├── compass_16.png │ │ │ │ ├── compass_17.png │ │ │ │ ├── compass_18.png │ │ │ │ ├── compass_19.png │ │ │ │ ├── compass_20.png │ │ │ │ ├── compass_21.png │ │ │ │ ├── compass_22.png │ │ │ │ ├── compass_23.png │ │ │ │ ├── compass_24.png │ │ │ │ ├── compass_25.png │ │ │ │ ├── compass_26.png │ │ │ │ ├── compass_27.png │ │ │ │ ├── compass_28.png │ │ │ │ ├── compass_29.png │ │ │ │ ├── compass_30.png │ │ │ │ ├── compass_31.png │ │ │ │ ├── cooked_beef.png │ │ │ │ ├── cooked_chicken.png │ │ │ │ ├── cooked_cod.png │ │ │ │ ├── cooked_mutton.png │ │ │ │ ├── cooked_porkchop.png │ │ │ │ ├── cooked_rabbit.png │ │ │ │ ├── cooked_salmon.png │ │ │ │ ├── cookie.png │ │ │ │ ├── copper_door.png │ │ │ │ ├── copper_ingot.png │ │ │ │ ├── creeper_banner_pattern.png │ │ │ │ ├── crimson_door.png │ │ │ │ ├── crimson_hanging_sign.png │ │ │ │ ├── crimson_sign.png │ │ │ │ ├── crossbow_arrow.png │ │ │ │ ├── crossbow_firework.png │ │ │ │ ├── crossbow_pulling_0.png │ │ │ │ ├── crossbow_pulling_1.png │ │ │ │ ├── crossbow_pulling_2.png │ │ │ │ ├── crossbow_standby.png │ │ │ │ ├── cyan_candle.png │ │ │ │ ├── cyan_dye.png │ │ │ │ ├── danger_pottery_sherd.png │ │ │ │ ├── dark_oak_boat.png │ │ │ │ ├── dark_oak_chest_boat.png │ │ │ │ ├── dark_oak_door.png │ │ │ │ ├── dark_oak_hanging_sign.png │ │ │ │ ├── dark_oak_sign.png │ │ │ │ ├── diamond.png │ │ │ │ ├── diamond_axe.png │ │ │ │ ├── diamond_boots.png │ │ │ │ ├── diamond_chestplate.png │ │ │ │ ├── diamond_helmet.png │ │ │ │ ├── diamond_hoe.png │ │ │ │ ├── diamond_horse_armor.png │ │ │ │ ├── diamond_leggings.png │ │ │ │ ├── diamond_pickaxe.png │ │ │ │ ├── diamond_shovel.png │ │ │ │ ├── diamond_sword.png │ │ │ │ ├── disc_fragment_5.png │ │ │ │ ├── dragon_breath.png │ │ │ │ ├── dried_kelp.png │ │ │ │ ├── dune_armor_trim_smithing_template.png │ │ │ │ ├── echo_shard.png │ │ │ │ ├── egg.png │ │ │ │ ├── elytra.png │ │ │ │ ├── emerald.png │ │ │ │ ├── empty_armor_slot_boots.png │ │ │ │ ├── empty_armor_slot_chestplate.png │ │ │ │ ├── empty_armor_slot_helmet.png │ │ │ │ ├── empty_armor_slot_leggings.png │ │ │ │ ├── empty_armor_slot_shield.png │ │ │ │ ├── empty_slot_amethyst_shard.png │ │ │ │ ├── empty_slot_axe.png │ │ │ │ ├── empty_slot_diamond.png │ │ │ │ ├── empty_slot_emerald.png │ │ │ │ ├── empty_slot_hoe.png │ │ │ │ ├── empty_slot_ingot.png │ │ │ │ ├── empty_slot_lapis_lazuli.png │ │ │ │ ├── empty_slot_pickaxe.png │ │ │ │ ├── empty_slot_quartz.png │ │ │ │ ├── empty_slot_redstone_dust.png │ │ │ │ ├── empty_slot_shovel.png │ │ │ │ ├── empty_slot_smithing_template_armor_trim.png │ │ │ │ ├── empty_slot_smithing_template_netherite_upgrade.png │ │ │ │ ├── empty_slot_sword.png │ │ │ │ ├── enchanted_book.png │ │ │ │ ├── end_crystal.png │ │ │ │ ├── ender_eye.png │ │ │ │ ├── ender_pearl.png │ │ │ │ ├── experience_bottle.png │ │ │ │ ├── explorer_pottery_sherd.png │ │ │ │ ├── exposed_copper_door.png │ │ │ │ ├── eye_armor_trim_smithing_template.png │ │ │ │ ├── feather.png │ │ │ │ ├── fermented_spider_eye.png │ │ │ │ ├── filled_map.png │ │ │ │ ├── filled_map_markings.png │ │ │ │ ├── fire_charge.png │ │ │ │ ├── firework_rocket.png │ │ │ │ ├── firework_star.png │ │ │ │ ├── firework_star_overlay.png │ │ │ │ ├── fishing_rod.png │ │ │ │ ├── fishing_rod_cast.png │ │ │ │ ├── flint.png │ │ │ │ ├── flint_and_steel.png │ │ │ │ ├── flower_banner_pattern.png │ │ │ │ ├── flower_pot.png │ │ │ │ ├── friend_pottery_sherd.png │ │ │ │ ├── furnace_minecart.png │ │ │ │ ├── ghast_tear.png │ │ │ │ ├── glass_bottle.png │ │ │ │ ├── glistering_melon_slice.png │ │ │ │ ├── globe_banner_pattern.png │ │ │ │ ├── glow_berries.png │ │ │ │ ├── glow_ink_sac.png │ │ │ │ ├── glow_item_frame.png │ │ │ │ ├── glowstone_dust.png │ │ │ │ ├── goat_horn.png │ │ │ │ ├── gold_ingot.png │ │ │ │ ├── gold_nugget.png │ │ │ │ ├── golden_apple.png │ │ │ │ ├── golden_axe.png │ │ │ │ ├── golden_boots.png │ │ │ │ ├── golden_carrot.png │ │ │ │ ├── golden_chestplate.png │ │ │ │ ├── golden_helmet.png │ │ │ │ ├── golden_hoe.png │ │ │ │ ├── golden_horse_armor.png │ │ │ │ ├── golden_leggings.png │ │ │ │ ├── golden_pickaxe.png │ │ │ │ ├── golden_shovel.png │ │ │ │ ├── golden_sword.png │ │ │ │ ├── gray_candle.png │ │ │ │ ├── gray_dye.png │ │ │ │ ├── green_candle.png │ │ │ │ ├── green_dye.png │ │ │ │ ├── gunpowder.png │ │ │ │ ├── heart_of_the_sea.png │ │ │ │ ├── heart_pottery_sherd.png │ │ │ │ ├── heartbreak_pottery_sherd.png │ │ │ │ ├── honey_bottle.png │ │ │ │ ├── honeycomb.png │ │ │ │ ├── hopper.png │ │ │ │ ├── hopper_minecart.png │ │ │ │ ├── host_armor_trim_smithing_template.png │ │ │ │ ├── howl_pottery_sherd.png │ │ │ │ ├── ink_sac.png │ │ │ │ ├── iron_axe.png │ │ │ │ ├── iron_boots.png │ │ │ │ ├── iron_chestplate.png │ │ │ │ ├── iron_door.png │ │ │ │ ├── iron_helmet.png │ │ │ │ ├── iron_hoe.png │ │ │ │ ├── iron_horse_armor.png │ │ │ │ ├── iron_ingot.png │ │ │ │ ├── iron_leggings.png │ │ │ │ ├── iron_nugget.png │ │ │ │ ├── iron_pickaxe.png │ │ │ │ ├── iron_shovel.png │ │ │ │ ├── iron_sword.png │ │ │ │ ├── item_frame.png │ │ │ │ ├── jungle_boat.png │ │ │ │ ├── jungle_chest_boat.png │ │ │ │ ├── jungle_door.png │ │ │ │ ├── jungle_hanging_sign.png │ │ │ │ ├── jungle_sign.png │ │ │ │ ├── kelp.png │ │ │ │ ├── knowledge_book.png │ │ │ │ ├── lantern.png │ │ │ │ ├── lapis_lazuli.png │ │ │ │ ├── lava_bucket.png │ │ │ │ ├── lead.png │ │ │ │ ├── leather.png │ │ │ │ ├── leather_boots.png │ │ │ │ ├── leather_boots_overlay.png │ │ │ │ ├── leather_chestplate.png │ │ │ │ ├── leather_chestplate_overlay.png │ │ │ │ ├── leather_helmet.png │ │ │ │ ├── leather_helmet_overlay.png │ │ │ │ ├── leather_horse_armor.png │ │ │ │ ├── leather_leggings.png │ │ │ │ ├── leather_leggings_overlay.png │ │ │ │ ├── light.png │ │ │ │ ├── light_00.png │ │ │ │ ├── light_01.png │ │ │ │ ├── light_02.png │ │ │ │ ├── light_03.png │ │ │ │ ├── light_04.png │ │ │ │ ├── light_05.png │ │ │ │ ├── light_06.png │ │ │ │ ├── light_07.png │ │ │ │ ├── light_08.png │ │ │ │ ├── light_09.png │ │ │ │ ├── light_10.png │ │ │ │ ├── light_11.png │ │ │ │ ├── light_12.png │ │ │ │ ├── light_13.png │ │ │ │ ├── light_14.png │ │ │ │ ├── light_15.png │ │ │ │ ├── light_blue_candle.png │ │ │ │ ├── light_blue_dye.png │ │ │ │ ├── light_gray_candle.png │ │ │ │ ├── light_gray_dye.png │ │ │ │ ├── lime_candle.png │ │ │ │ ├── lime_dye.png │ │ │ │ ├── lingering_potion.png │ │ │ │ ├── magenta_candle.png │ │ │ │ ├── magenta_dye.png │ │ │ │ ├── magma_cream.png │ │ │ │ ├── mangrove_boat.png │ │ │ │ ├── mangrove_chest_boat.png │ │ │ │ ├── mangrove_door.png │ │ │ │ ├── mangrove_hanging_sign.png │ │ │ │ ├── mangrove_propagule.png │ │ │ │ ├── mangrove_sign.png │ │ │ │ ├── map.png │ │ │ │ ├── melon_seeds.png │ │ │ │ ├── melon_slice.png │ │ │ │ ├── milk_bucket.png │ │ │ │ ├── minecart.png │ │ │ │ ├── miner_pottery_sherd.png │ │ │ │ ├── mojang_banner_pattern.png │ │ │ │ ├── mourner_pottery_sherd.png │ │ │ │ ├── mushroom_stew.png │ │ │ │ ├── music_disc_11.png │ │ │ │ ├── music_disc_13.png │ │ │ │ ├── music_disc_5.png │ │ │ │ ├── music_disc_blocks.png │ │ │ │ ├── music_disc_cat.png │ │ │ │ ├── music_disc_chirp.png │ │ │ │ ├── music_disc_far.png │ │ │ │ ├── music_disc_mall.png │ │ │ │ ├── music_disc_mellohi.png │ │ │ │ ├── music_disc_otherside.png │ │ │ │ ├── music_disc_pigstep.png │ │ │ │ ├── music_disc_relic.png │ │ │ │ ├── music_disc_stal.png │ │ │ │ ├── music_disc_strad.png │ │ │ │ ├── music_disc_wait.png │ │ │ │ ├── music_disc_ward.png │ │ │ │ ├── mutton.png │ │ │ │ ├── name_tag.png │ │ │ │ ├── nautilus_shell.png │ │ │ │ ├── nether_brick.png │ │ │ │ ├── nether_sprouts.png │ │ │ │ ├── nether_star.png │ │ │ │ ├── nether_wart.png │ │ │ │ ├── netherite_axe.png │ │ │ │ ├── netherite_boots.png │ │ │ │ ├── netherite_chestplate.png │ │ │ │ ├── netherite_helmet.png │ │ │ │ ├── netherite_hoe.png │ │ │ │ ├── netherite_ingot.png │ │ │ │ ├── netherite_leggings.png │ │ │ │ ├── netherite_pickaxe.png │ │ │ │ ├── netherite_scrap.png │ │ │ │ ├── netherite_shovel.png │ │ │ │ ├── netherite_sword.png │ │ │ │ ├── netherite_upgrade_smithing_template.png │ │ │ │ ├── oak_boat.png │ │ │ │ ├── oak_chest_boat.png │ │ │ │ ├── oak_door.png │ │ │ │ ├── oak_hanging_sign.png │ │ │ │ ├── oak_sign.png │ │ │ │ ├── orange_candle.png │ │ │ │ ├── orange_dye.png │ │ │ │ ├── oxidized_copper_door.png │ │ │ │ ├── painting.png │ │ │ │ ├── paper.png │ │ │ │ ├── phantom_membrane.png │ │ │ │ ├── piglin_banner_pattern.png │ │ │ │ ├── pink_candle.png │ │ │ │ ├── pink_dye.png │ │ │ │ ├── pink_petals.png │ │ │ │ ├── pitcher_plant.png │ │ │ │ ├── pitcher_pod.png │ │ │ │ ├── plenty_pottery_sherd.png │ │ │ │ ├── pointed_dripstone.png │ │ │ │ ├── poisonous_potato.png │ │ │ │ ├── popped_chorus_fruit.png │ │ │ │ ├── porkchop.png │ │ │ │ ├── potato.png │ │ │ │ ├── potion.png │ │ │ │ ├── potion_overlay.png │ │ │ │ ├── powder_snow_bucket.png │ │ │ │ ├── prismarine_crystals.png │ │ │ │ ├── prismarine_shard.png │ │ │ │ ├── prize_pottery_sherd.png │ │ │ │ ├── pufferfish.png │ │ │ │ ├── pufferfish_bucket.png │ │ │ │ ├── pumpkin_pie.png │ │ │ │ ├── pumpkin_seeds.png │ │ │ │ ├── purple_candle.png │ │ │ │ ├── purple_dye.png │ │ │ │ ├── quartz.png │ │ │ │ ├── rabbit.png │ │ │ │ ├── rabbit_foot.png │ │ │ │ ├── rabbit_hide.png │ │ │ │ ├── rabbit_stew.png │ │ │ │ ├── raiser_armor_trim_smithing_template.png │ │ │ │ ├── raw_copper.png │ │ │ │ ├── raw_gold.png │ │ │ │ ├── raw_iron.png │ │ │ │ ├── recovery_compass_00.png │ │ │ │ ├── recovery_compass_01.png │ │ │ │ ├── recovery_compass_02.png │ │ │ │ ├── recovery_compass_03.png │ │ │ │ ├── recovery_compass_04.png │ │ │ │ ├── recovery_compass_05.png │ │ │ │ ├── recovery_compass_06.png │ │ │ │ ├── recovery_compass_07.png │ │ │ │ ├── recovery_compass_08.png │ │ │ │ ├── recovery_compass_09.png │ │ │ │ ├── recovery_compass_10.png │ │ │ │ ├── recovery_compass_11.png │ │ │ │ ├── recovery_compass_12.png │ │ │ │ ├── recovery_compass_13.png │ │ │ │ ├── recovery_compass_14.png │ │ │ │ ├── recovery_compass_15.png │ │ │ │ ├── recovery_compass_16.png │ │ │ │ ├── recovery_compass_17.png │ │ │ │ ├── recovery_compass_18.png │ │ │ │ ├── recovery_compass_19.png │ │ │ │ ├── recovery_compass_20.png │ │ │ │ ├── recovery_compass_21.png │ │ │ │ ├── recovery_compass_22.png │ │ │ │ ├── recovery_compass_23.png │ │ │ │ ├── recovery_compass_24.png │ │ │ │ ├── recovery_compass_25.png │ │ │ │ ├── recovery_compass_26.png │ │ │ │ ├── recovery_compass_27.png │ │ │ │ ├── recovery_compass_28.png │ │ │ │ ├── recovery_compass_29.png │ │ │ │ ├── recovery_compass_30.png │ │ │ │ ├── recovery_compass_31.png │ │ │ │ ├── red_candle.png │ │ │ │ ├── red_dye.png │ │ │ │ ├── redstone.png │ │ │ │ ├── repeater.png │ │ │ │ ├── rib_armor_trim_smithing_template.png │ │ │ │ ├── rotten_flesh.png │ │ │ │ ├── saddle.png │ │ │ │ ├── salmon.png │ │ │ │ ├── salmon_bucket.png │ │ │ │ ├── scute.png │ │ │ │ ├── sea_pickle.png │ │ │ │ ├── seagrass.png │ │ │ │ ├── sentry_armor_trim_smithing_template.png │ │ │ │ ├── shaper_armor_trim_smithing_template.png │ │ │ │ ├── sheaf_pottery_sherd.png │ │ │ │ ├── shears.png │ │ │ │ ├── shelter_pottery_sherd.png │ │ │ │ ├── shulker_shell.png │ │ │ │ ├── silence_armor_trim_smithing_template.png │ │ │ │ ├── skull_banner_pattern.png │ │ │ │ ├── skull_pottery_sherd.png │ │ │ │ ├── slime_ball.png │ │ │ │ ├── sniffer_egg.png │ │ │ │ ├── snort_pottery_sherd.png │ │ │ │ ├── snout_armor_trim_smithing_template.png │ │ │ │ ├── snowball.png │ │ │ │ ├── soul_campfire.png │ │ │ │ ├── soul_lantern.png │ │ │ │ ├── spawn_egg.png │ │ │ │ ├── spawn_egg_overlay.png │ │ │ │ ├── spectral_arrow.png │ │ │ │ ├── spider_eye.png │ │ │ │ ├── spire_armor_trim_smithing_template.png │ │ │ │ ├── splash_potion.png │ │ │ │ ├── spruce_boat.png │ │ │ │ ├── spruce_chest_boat.png │ │ │ │ ├── spruce_door.png │ │ │ │ ├── spruce_hanging_sign.png │ │ │ │ ├── spruce_sign.png │ │ │ │ ├── spyglass.png │ │ │ │ ├── spyglass_model.png │ │ │ │ ├── stick.png │ │ │ │ ├── stone_axe.png │ │ │ │ ├── stone_hoe.png │ │ │ │ ├── stone_pickaxe.png │ │ │ │ ├── stone_shovel.png │ │ │ │ ├── stone_sword.png │ │ │ │ ├── string.png │ │ │ │ ├── structure_void.png │ │ │ │ ├── sugar.png │ │ │ │ ├── sugar_cane.png │ │ │ │ ├── suspicious_stew.png │ │ │ │ ├── sweet_berries.png │ │ │ │ ├── tadpole_bucket.png │ │ │ │ ├── tide_armor_trim_smithing_template.png │ │ │ │ ├── tipped_arrow_base.png │ │ │ │ ├── tipped_arrow_head.png │ │ │ │ ├── tnt_minecart.png │ │ │ │ ├── torchflower_seeds.png │ │ │ │ ├── totem_of_undying.png │ │ │ │ ├── trial_key.png │ │ │ │ ├── trident.png │ │ │ │ ├── tropical_fish.png │ │ │ │ ├── tropical_fish_bucket.png │ │ │ │ ├── turtle_egg.png │ │ │ │ ├── turtle_helmet.png │ │ │ │ ├── vex_armor_trim_smithing_template.png │ │ │ │ ├── ward_armor_trim_smithing_template.png │ │ │ │ ├── warped_door.png │ │ │ │ ├── warped_fungus_on_a_stick.png │ │ │ │ ├── warped_hanging_sign.png │ │ │ │ ├── warped_sign.png │ │ │ │ ├── water_bucket.png │ │ │ │ ├── wayfinder_armor_trim_smithing_template.png │ │ │ │ ├── weathered_copper_door.png │ │ │ │ ├── wheat.png │ │ │ │ ├── wheat_seeds.png │ │ │ │ ├── white_candle.png │ │ │ │ ├── white_dye.png │ │ │ │ ├── wild_armor_trim_smithing_template.png │ │ │ │ ├── wooden_axe.png │ │ │ │ ├── wooden_hoe.png │ │ │ │ ├── wooden_pickaxe.png │ │ │ │ ├── wooden_shovel.png │ │ │ │ ├── wooden_sword.png │ │ │ │ ├── writable_book.png │ │ │ │ ├── written_book.png │ │ │ │ ├── yellow_candle.png │ │ │ │ └── yellow_dye.png │ │ │ │ ├── map │ │ │ │ ├── map_background.png │ │ │ │ ├── map_background_checkerboard.png │ │ │ │ └── map_icons.png │ │ │ │ ├── misc │ │ │ │ ├── enchanted_glint_entity.png │ │ │ │ ├── enchanted_glint_item.png │ │ │ │ ├── enchanted_item_glint.png.mcmeta │ │ │ │ ├── forcefield.png │ │ │ │ ├── nausea.png │ │ │ │ ├── powder_snow_outline.png │ │ │ │ ├── pumpkinblur.png │ │ │ │ ├── pumpkinblur.png.mcmeta │ │ │ │ ├── shadow.png │ │ │ │ ├── shadow.png.mcmeta │ │ │ │ ├── spyglass_scope.png │ │ │ │ ├── underwater.png │ │ │ │ ├── unknown_pack.png │ │ │ │ ├── unknown_server.png │ │ │ │ ├── vignette.png │ │ │ │ ├── vignette.png.mcmeta │ │ │ │ └── white.png │ │ │ │ ├── mob_effect │ │ │ │ ├── absorption.png │ │ │ │ ├── bad_omen.png │ │ │ │ ├── blindness.png │ │ │ │ ├── conduit_power.png │ │ │ │ ├── darkness.png │ │ │ │ ├── dolphins_grace.png │ │ │ │ ├── fire_resistance.png │ │ │ │ ├── glowing.png │ │ │ │ ├── haste.png │ │ │ │ ├── health_boost.png │ │ │ │ ├── hero_of_the_village.png │ │ │ │ ├── hunger.png │ │ │ │ ├── instant_damage.png │ │ │ │ ├── instant_health.png │ │ │ │ ├── invisibility.png │ │ │ │ ├── jump_boost.png │ │ │ │ ├── levitation.png │ │ │ │ ├── luck.png │ │ │ │ ├── mining_fatigue.png │ │ │ │ ├── nausea.png │ │ │ │ ├── night_vision.png │ │ │ │ ├── poison.png │ │ │ │ ├── regeneration.png │ │ │ │ ├── resistance.png │ │ │ │ ├── saturation.png │ │ │ │ ├── slow_falling.png │ │ │ │ ├── slowness.png │ │ │ │ ├── speed.png │ │ │ │ ├── strength.png │ │ │ │ ├── unluck.png │ │ │ │ ├── water_breathing.png │ │ │ │ ├── weakness.png │ │ │ │ └── wither.png │ │ │ │ ├── models │ │ │ │ └── armor │ │ │ │ │ ├── chainmail_layer_1.png │ │ │ │ │ ├── chainmail_layer_2.png │ │ │ │ │ ├── diamond_layer_1.png │ │ │ │ │ ├── diamond_layer_2.png │ │ │ │ │ ├── gold_layer_1.png │ │ │ │ │ ├── gold_layer_2.png │ │ │ │ │ ├── iron_layer_1.png │ │ │ │ │ ├── iron_layer_2.png │ │ │ │ │ ├── leather_layer_1.png │ │ │ │ │ ├── leather_layer_1_overlay.png │ │ │ │ │ ├── leather_layer_2.png │ │ │ │ │ ├── leather_layer_2_overlay.png │ │ │ │ │ ├── netherite_layer_1.png │ │ │ │ │ ├── netherite_layer_2.png │ │ │ │ │ └── turtle_layer_1.png │ │ │ │ ├── painting │ │ │ │ ├── alban.png │ │ │ │ ├── aztec.png │ │ │ │ ├── aztec2.png │ │ │ │ ├── back.png │ │ │ │ ├── bomb.png │ │ │ │ ├── burning_skull.png │ │ │ │ ├── bust.png │ │ │ │ ├── courbet.png │ │ │ │ ├── creebet.png │ │ │ │ ├── donkey_kong.png │ │ │ │ ├── earth.png │ │ │ │ ├── fighters.png │ │ │ │ ├── fire.png │ │ │ │ ├── graham.png │ │ │ │ ├── kebab.png │ │ │ │ ├── match.png │ │ │ │ ├── pigscene.png │ │ │ │ ├── plant.png │ │ │ │ ├── pointer.png │ │ │ │ ├── pool.png │ │ │ │ ├── sea.png │ │ │ │ ├── skeleton.png │ │ │ │ ├── skull_and_roses.png │ │ │ │ ├── stage.png │ │ │ │ ├── sunset.png │ │ │ │ ├── void.png │ │ │ │ ├── wanderer.png │ │ │ │ ├── wasteland.png │ │ │ │ ├── water.png │ │ │ │ ├── wind.png │ │ │ │ └── wither.png │ │ │ │ ├── particle │ │ │ │ ├── angry.png │ │ │ │ ├── big_smoke_0.png │ │ │ │ ├── big_smoke_1.png │ │ │ │ ├── big_smoke_10.png │ │ │ │ ├── big_smoke_11.png │ │ │ │ ├── big_smoke_2.png │ │ │ │ ├── big_smoke_3.png │ │ │ │ ├── big_smoke_4.png │ │ │ │ ├── big_smoke_5.png │ │ │ │ ├── big_smoke_6.png │ │ │ │ ├── big_smoke_7.png │ │ │ │ ├── big_smoke_8.png │ │ │ │ ├── big_smoke_9.png │ │ │ │ ├── bubble.png │ │ │ │ ├── bubble_pop_0.png │ │ │ │ ├── bubble_pop_1.png │ │ │ │ ├── bubble_pop_2.png │ │ │ │ ├── bubble_pop_3.png │ │ │ │ ├── bubble_pop_4.png │ │ │ │ ├── cherry_0.png │ │ │ │ ├── cherry_1.png │ │ │ │ ├── cherry_10.png │ │ │ │ ├── cherry_11.png │ │ │ │ ├── cherry_2.png │ │ │ │ ├── cherry_3.png │ │ │ │ ├── cherry_4.png │ │ │ │ ├── cherry_5.png │ │ │ │ ├── cherry_6.png │ │ │ │ ├── cherry_7.png │ │ │ │ ├── cherry_8.png │ │ │ │ ├── cherry_9.png │ │ │ │ ├── critical_hit.png │ │ │ │ ├── damage.png │ │ │ │ ├── drip_fall.png │ │ │ │ ├── drip_hang.png │ │ │ │ ├── drip_land.png │ │ │ │ ├── effect_0.png │ │ │ │ ├── effect_1.png │ │ │ │ ├── effect_2.png │ │ │ │ ├── effect_3.png │ │ │ │ ├── effect_4.png │ │ │ │ ├── effect_5.png │ │ │ │ ├── effect_6.png │ │ │ │ ├── effect_7.png │ │ │ │ ├── enchanted_hit.png │ │ │ │ ├── explosion_0.png │ │ │ │ ├── explosion_1.png │ │ │ │ ├── explosion_10.png │ │ │ │ ├── explosion_11.png │ │ │ │ ├── explosion_12.png │ │ │ │ ├── explosion_13.png │ │ │ │ ├── explosion_14.png │ │ │ │ ├── explosion_15.png │ │ │ │ ├── explosion_2.png │ │ │ │ ├── explosion_3.png │ │ │ │ ├── explosion_4.png │ │ │ │ ├── explosion_5.png │ │ │ │ ├── explosion_6.png │ │ │ │ ├── explosion_7.png │ │ │ │ ├── explosion_8.png │ │ │ │ ├── explosion_9.png │ │ │ │ ├── flame.png │ │ │ │ ├── flash.png │ │ │ │ ├── generic_0.png │ │ │ │ ├── generic_1.png │ │ │ │ ├── generic_2.png │ │ │ │ ├── generic_3.png │ │ │ │ ├── generic_4.png │ │ │ │ ├── generic_5.png │ │ │ │ ├── generic_6.png │ │ │ │ ├── generic_7.png │ │ │ │ ├── glint.png │ │ │ │ ├── glitter_0.png │ │ │ │ ├── glitter_1.png │ │ │ │ ├── glitter_2.png │ │ │ │ ├── glitter_3.png │ │ │ │ ├── glitter_4.png │ │ │ │ ├── glitter_5.png │ │ │ │ ├── glitter_6.png │ │ │ │ ├── glitter_7.png │ │ │ │ ├── glow.png │ │ │ │ ├── goldheart_0.png │ │ │ │ ├── goldheart_1.png │ │ │ │ ├── goldheart_2.png │ │ │ │ ├── gust_0.png │ │ │ │ ├── gust_1.png │ │ │ │ ├── gust_10.png │ │ │ │ ├── gust_11.png │ │ │ │ ├── gust_2.png │ │ │ │ ├── gust_3.png │ │ │ │ ├── gust_4.png │ │ │ │ ├── gust_5.png │ │ │ │ ├── gust_6.png │ │ │ │ ├── gust_7.png │ │ │ │ ├── gust_8.png │ │ │ │ ├── gust_9.png │ │ │ │ ├── heart.png │ │ │ │ ├── lava.png │ │ │ │ ├── nautilus.png │ │ │ │ ├── note.png │ │ │ │ ├── sculk_charge_0.png │ │ │ │ ├── sculk_charge_1.png │ │ │ │ ├── sculk_charge_2.png │ │ │ │ ├── sculk_charge_3.png │ │ │ │ ├── sculk_charge_4.png │ │ │ │ ├── sculk_charge_5.png │ │ │ │ ├── sculk_charge_6.png │ │ │ │ ├── sculk_charge_pop_0.png │ │ │ │ ├── sculk_charge_pop_1.png │ │ │ │ ├── sculk_charge_pop_2.png │ │ │ │ ├── sculk_charge_pop_3.png │ │ │ │ ├── sculk_soul_0.png │ │ │ │ ├── sculk_soul_1.png │ │ │ │ ├── sculk_soul_10.png │ │ │ │ ├── sculk_soul_2.png │ │ │ │ ├── sculk_soul_3.png │ │ │ │ ├── sculk_soul_4.png │ │ │ │ ├── sculk_soul_5.png │ │ │ │ ├── sculk_soul_6.png │ │ │ │ ├── sculk_soul_7.png │ │ │ │ ├── sculk_soul_8.png │ │ │ │ ├── sculk_soul_9.png │ │ │ │ ├── sga_a.png │ │ │ │ ├── sga_b.png │ │ │ │ ├── sga_c.png │ │ │ │ ├── sga_d.png │ │ │ │ ├── sga_e.png │ │ │ │ ├── sga_f.png │ │ │ │ ├── sga_g.png │ │ │ │ ├── sga_h.png │ │ │ │ ├── sga_i.png │ │ │ │ ├── sga_j.png │ │ │ │ ├── sga_k.png │ │ │ │ ├── sga_l.png │ │ │ │ ├── sga_m.png │ │ │ │ ├── sga_n.png │ │ │ │ ├── sga_o.png │ │ │ │ ├── sga_p.png │ │ │ │ ├── sga_q.png │ │ │ │ ├── sga_r.png │ │ │ │ ├── sga_s.png │ │ │ │ ├── sga_t.png │ │ │ │ ├── sga_u.png │ │ │ │ ├── sga_v.png │ │ │ │ ├── sga_w.png │ │ │ │ ├── sga_x.png │ │ │ │ ├── sga_y.png │ │ │ │ ├── sga_z.png │ │ │ │ ├── shriek.png │ │ │ │ ├── sonic_boom_0.png │ │ │ │ ├── sonic_boom_1.png │ │ │ │ ├── sonic_boom_10.png │ │ │ │ ├── sonic_boom_11.png │ │ │ │ ├── sonic_boom_12.png │ │ │ │ ├── sonic_boom_13.png │ │ │ │ ├── sonic_boom_14.png │ │ │ │ ├── sonic_boom_15.png │ │ │ │ ├── sonic_boom_2.png │ │ │ │ ├── sonic_boom_3.png │ │ │ │ ├── sonic_boom_4.png │ │ │ │ ├── sonic_boom_5.png │ │ │ │ ├── sonic_boom_6.png │ │ │ │ ├── sonic_boom_7.png │ │ │ │ ├── sonic_boom_8.png │ │ │ │ ├── sonic_boom_9.png │ │ │ │ ├── soul_0.png │ │ │ │ ├── soul_1.png │ │ │ │ ├── soul_10.png │ │ │ │ ├── soul_2.png │ │ │ │ ├── soul_3.png │ │ │ │ ├── soul_4.png │ │ │ │ ├── soul_5.png │ │ │ │ ├── soul_6.png │ │ │ │ ├── soul_7.png │ │ │ │ ├── soul_8.png │ │ │ │ ├── soul_9.png │ │ │ │ ├── soul_fire_flame.png │ │ │ │ ├── spark_0.png │ │ │ │ ├── spark_1.png │ │ │ │ ├── spark_2.png │ │ │ │ ├── spark_3.png │ │ │ │ ├── spark_4.png │ │ │ │ ├── spark_5.png │ │ │ │ ├── spark_6.png │ │ │ │ ├── spark_7.png │ │ │ │ ├── spell_0.png │ │ │ │ ├── spell_1.png │ │ │ │ ├── spell_2.png │ │ │ │ ├── spell_3.png │ │ │ │ ├── spell_4.png │ │ │ │ ├── spell_5.png │ │ │ │ ├── spell_6.png │ │ │ │ ├── spell_7.png │ │ │ │ ├── splash_0.png │ │ │ │ ├── splash_1.png │ │ │ │ ├── splash_2.png │ │ │ │ ├── splash_3.png │ │ │ │ ├── sweep_0.png │ │ │ │ ├── sweep_1.png │ │ │ │ ├── sweep_2.png │ │ │ │ ├── sweep_3.png │ │ │ │ ├── sweep_4.png │ │ │ │ ├── sweep_5.png │ │ │ │ ├── sweep_6.png │ │ │ │ ├── sweep_7.png │ │ │ │ ├── trial_spawner_detection_0.png │ │ │ │ ├── trial_spawner_detection_1.png │ │ │ │ ├── trial_spawner_detection_2.png │ │ │ │ ├── trial_spawner_detection_3.png │ │ │ │ ├── trial_spawner_detection_4.png │ │ │ │ ├── vibration.png │ │ │ │ └── vibration.png.mcmeta │ │ │ │ └── trims │ │ │ │ ├── color_palettes │ │ │ │ ├── amethyst.png │ │ │ │ ├── copper.png │ │ │ │ ├── diamond.png │ │ │ │ ├── diamond_darker.png │ │ │ │ ├── emerald.png │ │ │ │ ├── gold.png │ │ │ │ ├── gold_darker.png │ │ │ │ ├── iron.png │ │ │ │ ├── iron_darker.png │ │ │ │ ├── lapis.png │ │ │ │ ├── netherite.png │ │ │ │ ├── netherite_darker.png │ │ │ │ ├── quartz.png │ │ │ │ ├── redstone.png │ │ │ │ └── trim_palette.png │ │ │ │ ├── items │ │ │ │ ├── boots_trim.png │ │ │ │ ├── chestplate_trim.png │ │ │ │ ├── helmet_trim.png │ │ │ │ └── leggings_trim.png │ │ │ │ └── models │ │ │ │ └── armor │ │ │ │ ├── coast.png │ │ │ │ ├── coast_leggings.png │ │ │ │ ├── dune.png │ │ │ │ ├── dune_leggings.png │ │ │ │ ├── eye.png │ │ │ │ ├── eye_leggings.png │ │ │ │ ├── host.png │ │ │ │ ├── host_leggings.png │ │ │ │ ├── raiser.png │ │ │ │ ├── raiser_leggings.png │ │ │ │ ├── rib.png │ │ │ │ ├── rib_leggings.png │ │ │ │ ├── sentry.png │ │ │ │ ├── sentry_leggings.png │ │ │ │ ├── shaper.png │ │ │ │ ├── shaper_leggings.png │ │ │ │ ├── silence.png │ │ │ │ ├── silence_leggings.png │ │ │ │ ├── snout.png │ │ │ │ ├── snout_leggings.png │ │ │ │ ├── spire.png │ │ │ │ ├── spire_leggings.png │ │ │ │ ├── tide.png │ │ │ │ ├── tide_leggings.png │ │ │ │ ├── vex.png │ │ │ │ ├── vex_leggings.png │ │ │ │ ├── ward.png │ │ │ │ ├── ward_leggings.png │ │ │ │ ├── wayfinder.png │ │ │ │ ├── wayfinder_leggings.png │ │ │ │ ├── wild.png │ │ │ │ └── wild_leggings.png │ │ └── pack.mcmeta │ ├── collections │ │ ├── boss.yml │ │ ├── combat.yml │ │ ├── farming.yml │ │ ├── fishing.yml │ │ ├── foraging.yml │ │ └── mining.yml │ ├── items │ │ ├── accessories │ │ │ ├── abicases.yml │ │ │ ├── accessories.yml │ │ │ ├── dungeon.yml │ │ │ ├── scarfs.yml │ │ │ ├── speed.yml │ │ │ ├── spider.yml │ │ │ ├── treasure.yml │ │ │ └── zombie.yml │ │ ├── armor │ │ │ ├── celeste.yml │ │ │ ├── cheaptuxedo.yml │ │ │ ├── eleganttuxedo.yml │ │ │ ├── fancytuxedo.yml │ │ │ ├── farmsuit.yml │ │ │ ├── leaflet.yml │ │ │ ├── mercenary.yml │ │ │ ├── mineroutfit.yml │ │ │ ├── mushroom.yml │ │ │ ├── pumpkin.yml │ │ │ ├── rosetta.yml │ │ │ ├── squire.yml │ │ │ └── starlight.yml │ │ ├── backpacks.yml │ │ ├── bows.yml │ │ ├── brewing.yml │ │ ├── combat │ │ │ ├── combat.yml │ │ │ ├── craftable.yml │ │ │ └── drops.yml │ │ ├── communitycenter │ │ │ ├── communitycenter.yml │ │ │ ├── enrichments.yml │ │ │ ├── katitems.yml │ │ │ ├── sacks.yml │ │ │ ├── stackingenchants.yml │ │ │ └── upgradecomponents.yml │ │ ├── crimson.yml │ │ ├── enchanted.yml │ │ ├── enchantment.yml │ │ ├── farming │ │ │ └── farming.yml │ │ ├── fishing │ │ │ ├── festival.yml │ │ │ └── vanilla.yml │ │ ├── foraging │ │ │ └── foraging.yml │ │ ├── jerrysworkshop.yml │ │ ├── mining │ │ │ ├── crystal.yml │ │ │ ├── dwarven.yml │ │ │ ├── fine.yml │ │ │ ├── flawed.yml │ │ │ ├── flawless.yml │ │ │ ├── mining.yml │ │ │ ├── perfect.yml │ │ │ ├── rough.yml │ │ │ └── vanilla.yml │ │ ├── minions.yml │ │ ├── miscellaneous │ │ │ ├── decorations.yml │ │ │ ├── dungeon.yml │ │ │ ├── fuel.yml │ │ │ ├── gifts.yml │ │ │ ├── miscellaneous.yml │ │ │ ├── shipping.yml │ │ │ ├── skin.yml │ │ │ └── upgrade.yml │ │ ├── pets.yml │ │ ├── pets │ │ │ └── petitems.yml │ │ ├── runes.yml │ │ ├── sacks.yml │ │ ├── sandbox.yml │ │ ├── spooky.yml │ │ ├── travelscroll.yml │ │ ├── vanilla │ │ │ ├── blocks │ │ │ │ ├── banners.yml │ │ │ │ ├── beds.yml │ │ │ │ ├── candles.yml │ │ │ │ ├── carpets.yml │ │ │ │ ├── dirt │ │ │ │ │ └── dirt.yml │ │ │ │ ├── flowers.yml │ │ │ │ ├── glass.yml │ │ │ │ ├── glassPanes.yml │ │ │ │ ├── glazedTerracotta.yml │ │ │ │ ├── greenery │ │ │ │ │ ├── fern.yml │ │ │ │ │ ├── grass.yml │ │ │ │ │ ├── leaves.yml │ │ │ │ │ └── saplings.yml │ │ │ │ ├── others.yml │ │ │ │ ├── stone │ │ │ │ │ ├── andesite.yml │ │ │ │ │ ├── cobblestone.yml │ │ │ │ │ ├── diorite.yml │ │ │ │ │ ├── granite.yml │ │ │ │ │ ├── mossyCobblestone.yml │ │ │ │ │ ├── mossyStoneBrick.yml │ │ │ │ │ ├── netherBrick.yml │ │ │ │ │ ├── polishedAndesite.yml │ │ │ │ │ ├── polishedDiorite.yml │ │ │ │ │ ├── polishedGranite.yml │ │ │ │ │ ├── quartz.yml │ │ │ │ │ ├── redSandstone.yml │ │ │ │ │ ├── sandstone.yml │ │ │ │ │ ├── smoothStone.yml │ │ │ │ │ ├── stone.yml │ │ │ │ │ └── stoneBrick.yml │ │ │ │ ├── terracotta.yml │ │ │ │ ├── wood │ │ │ │ │ ├── acacia.yml │ │ │ │ │ ├── bamboo.yml │ │ │ │ │ ├── birch.yml │ │ │ │ │ ├── cherry.yml │ │ │ │ │ ├── crimson.yml │ │ │ │ │ ├── darkOak.yml │ │ │ │ │ ├── jungle.yml │ │ │ │ │ ├── mangrove.yml │ │ │ │ │ ├── oak.yml │ │ │ │ │ ├── paleOak.yml │ │ │ │ │ ├── spruce.yml │ │ │ │ │ └── warped.yml │ │ │ │ └── wool.yml │ │ │ └── items │ │ │ │ ├── armor │ │ │ │ ├── diamond.yml │ │ │ │ ├── gold.yml │ │ │ │ ├── iron.yml │ │ │ │ └── leather.yml │ │ │ │ ├── brewing.yml │ │ │ │ ├── crops.yml │ │ │ │ ├── dyes.yml │ │ │ │ ├── friendlyMobDrops.yml │ │ │ │ ├── hostileMobDrops.yml │ │ │ │ └── tools │ │ │ │ ├── axes.yml │ │ │ │ ├── hoes.yml │ │ │ │ ├── pickaxes.yml │ │ │ │ ├── range.yml │ │ │ │ ├── shovels.yml │ │ │ │ └── swords.yml │ │ ├── vanillaItems.yml │ │ └── weapons.yml │ ├── levels │ │ └── skyblock_level_rewards.yml │ ├── pack_textures │ │ ├── full_screen_black.png │ │ ├── hud_back_plate.png │ │ └── villager_speak_outline.png │ ├── reforges │ │ ├── astute.yml │ │ ├── awkward.yml │ │ ├── blended.yml │ │ ├── brilliant.yml │ │ ├── clean.yml │ │ ├── colossal.yml │ │ ├── deadly.yml │ │ ├── doubleBit.yml │ │ ├── epic.yml │ │ ├── excellent.yml │ │ ├── fair.yml │ │ ├── fast.yml │ │ ├── fierce.yml │ │ ├── fine.yml │ │ ├── fortunate.yml │ │ ├── gentle.yml │ │ ├── grand.yml │ │ ├── great.yml │ │ ├── greenThumb.yml │ │ ├── hasty.yml │ │ ├── heavy.yml │ │ ├── hefty.yml │ │ ├── heroic.yml │ │ ├── honored.yml │ │ ├── legendary.yml │ │ ├── light.yml │ │ ├── lumberjack's.yml │ │ ├── lush.yml │ │ ├── menacing.yml │ │ ├── mythic.yml │ │ ├── neat.yml │ │ ├── odd_bow.yml │ │ ├── odd_sword.yml │ │ ├── peasant's.yml │ │ ├── prospector's.yml │ │ ├── pure.yml │ │ ├── rapid.yml │ │ ├── rich_bow.yml │ │ ├── rich_sword.yml │ │ ├── robust.yml │ │ ├── rugged.yml │ │ ├── sharp.yml │ │ ├── smart.yml │ │ ├── soft.yml │ │ ├── spicy.yml │ │ ├── stained.yml │ │ ├── sturdy.yml │ │ ├── titanic.yml │ │ ├── unreal.yml │ │ ├── unyielding.yml │ │ ├── wise.yml │ │ └── zooming.yml │ └── songs │ │ ├── wilderness.mid │ │ └── wilderness.nbs ├── update-config.sh ├── update-vars.bat └── velocity.toml ├── docker-compose.yml ├── dungeons ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── dungeons │ ├── DungeonRoomType.java │ ├── DungeonUtilities.java │ ├── DungeonsAPI.java │ ├── DungeonsData.java │ ├── DungeonsTest.java │ ├── GeneratorService.java │ └── SkyBlockDungeon.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── loader ├── build.gradle.kts ├── src │ └── main │ │ ├── java │ │ └── net │ │ │ └── swofty │ │ │ └── loader │ │ │ └── Hypixel.java │ │ └── resources │ │ ├── logback.xml │ │ └── tinylog.properties └── testflows │ ├── send_to_hub.yml │ └── usage.md ├── packer ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── packer │ ├── FileUtils.java │ ├── LangModifier.java │ ├── NegativeSpace.java │ ├── SkyBlockPacker.java │ └── SkyBlockTexture.java ├── proxy.api ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── proxyapi │ ├── ProxyAPI.java │ ├── ProxyInformation.java │ ├── ProxyPlayer.java │ ├── ProxyPlayerSet.java │ ├── ProxyService.java │ ├── impl │ └── ProxyUnderstandableEvent.java │ └── redis │ ├── ProxyToClient.java │ ├── ServerOutboundMessage.java │ └── ServiceToClient.java ├── qodana.yaml ├── script └── install.py ├── server └── proxy │ ├── configuration │ └── resources.json │ └── velocity.jar ├── service.api ├── build.gradle.kts └── src │ └── main │ ├── java │ └── net │ │ └── swofty │ │ └── service │ │ └── api │ │ ├── APIAdminDatabase.java │ │ ├── APIAdminDatabaseObject.java │ │ ├── APIKeyDatabase.java │ │ ├── APIKeyDatabaseObject.java │ │ ├── APIService.java │ │ ├── endpoints │ │ └── EndpointAuthenticateCode.java │ │ └── http │ │ ├── APIResponse.java │ │ ├── ApiRateLimiterHandler.java │ │ ├── EndpointType.java │ │ ├── SkyBlockEndpoint.java │ │ ├── StatusResponse.java │ │ └── endpoints │ │ ├── DeleteKeyEndpoint.java │ │ ├── GetKeysEndpoint.java │ │ ├── InitiateAuthEndpoint.java │ │ ├── InsertKeyEndpoint.java │ │ ├── IsAuthenticatedEndpoint.java │ │ ├── LogoutEndpoint.java │ │ ├── ProfileEndpoint.java │ │ └── UserEndpoint.java │ └── resources │ ├── authenticated.html │ └── unauthenticated.html ├── service.auctionhouse ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── auction │ ├── AuctionActiveDatabase.java │ ├── AuctionInactiveDatabase.java │ ├── AuctionService.java │ ├── AuctionsCacheService.java │ └── endpoints │ ├── EndpointAddItem.java │ ├── EndpointFetchItem.java │ └── EndpointFetchItems.java ├── service.bazaar ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── bazaar │ ├── BazaarMarket.java │ ├── BazaarPropagator.java │ ├── BazaarService.java │ ├── OrderDatabase.java │ ├── OrderRepository.java │ ├── PendingTransactionsDatabase.java │ └── endpoints │ ├── EndpointBazaarBuyOrder.java │ ├── EndpointBazaarSellOrder.java │ ├── EndpointCancelBazaarOrder.java │ ├── EndpointGetBazaarItem.java │ ├── EndpointGetPendingOrders.java │ ├── EndpointGetPendingTransactions.java │ └── EndpointProcessPendingTransactions.java ├── service.datamutex ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── datamutex │ ├── DataLockManager.java │ ├── DataMutexService.java │ ├── LockCleanupTask.java │ └── endpoints │ ├── SynchronizeDataEndpoint.java │ ├── UnlockDataEndpoint.java │ └── UpdateSynchronizedDataEndpoint.java ├── service.generic ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── generic │ ├── MongoDB.java │ ├── ServiceInitializer.java │ ├── SkyBlockService.java │ └── redis │ ├── BroadcastRequest.java │ ├── PingEndpoint.java │ ├── ServiceEndpoint.java │ ├── ServiceRedisManager.java │ └── ServiceToServerManager.java ├── service.itemtracker ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── itemtracker │ ├── ItemTrackerService.java │ ├── TrackedItemsDatabase.java │ └── endpoints │ ├── EndpointGetTrackedItem.java │ └── EndpointUpdateItem.java ├── service.party ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── service │ └── party │ ├── PartyCache.java │ ├── PartyService.java │ └── endpoints │ ├── GetPartyEndpoint.java │ ├── IsPlayerInPartyEndpoint.java │ └── PartyEventToServiceEndpoint.java ├── settings.gradle.kts ├── spark ├── build.gradle.kts ├── dependencies │ └── spark-1.10.1.10-minestom.jar └── src │ └── main │ └── java │ └── net │ └── swofty │ └── spark │ ├── MinestomCommandSender.java │ ├── MinestomPlatformInfo.java │ ├── MinestomSparkCommand.java │ └── Spark.java ├── type.dungeonhub ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── dungeonhub │ ├── TypeDungeonHubLoader.java │ ├── events │ └── ActionPlayerJoin.java │ └── tab │ └── DungeonServerModule.java ├── type.generic ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── generic │ ├── HypixelConst.java │ ├── HypixelGenericLoader.java │ ├── HypixelTypeLoader.java │ ├── SkyBlockTypeLoader.java │ ├── command │ ├── CommandParameters.java │ ├── HypixelCommand.java │ └── commands │ │ ├── AdminMeCommand.java │ │ ├── ChatCommand.java │ │ ├── GamemodeCommand.java │ │ ├── LobbyCommand.java │ │ ├── MessageCommand.java │ │ ├── PartyCommand.java │ │ ├── RankCommand.java │ │ ├── SendToCommand.java │ │ └── SignGUICommand.java │ ├── data │ ├── DataHandler.java │ ├── Datapoint.java │ ├── DatapointUtils.java │ ├── HypixelDataHandler.java │ ├── datapoints │ │ ├── DatapointBoolean.java │ │ ├── DatapointByte.java │ │ ├── DatapointChatType.java │ │ ├── DatapointDouble.java │ │ ├── DatapointFloat.java │ │ ├── DatapointGamemode.java │ │ ├── DatapointInteger.java │ │ ├── DatapointRank.java │ │ ├── DatapointString.java │ │ ├── DatapointStringList.java │ │ └── DatapointToggles.java │ └── mongodb │ │ ├── AttributeDatabase.java │ │ ├── AuthenticationDatabase.java │ │ ├── MongoDB.java │ │ ├── ProfilesDatabase.java │ │ └── UserDatabase.java │ ├── entity │ ├── animalnpc │ │ ├── HypixelAnimalNPC.java │ │ ├── NPCAnimalEntityImpl.java │ │ └── NPCAnimalParameters.java │ ├── hologram │ │ ├── HologramEntity.java │ │ ├── PlayerHolograms.java │ │ └── ServerHolograms.java │ ├── npc │ │ ├── HypixelNPC.java │ │ ├── NPCDialogue.java │ │ ├── NPCEntityImpl.java │ │ └── NPCParameters.java │ └── villager │ │ ├── HypixelVillagerNPC.java │ │ ├── NPCVillagerDialogue.java │ │ ├── NPCVillagerParameters.java │ │ └── VillagerEntityImpl.java │ ├── event │ ├── EventNodes.java │ ├── HypixelEvent.java │ ├── HypixelEventClass.java │ ├── HypixelEventHandler.java │ ├── actions │ │ ├── ActionPlayerWarnCrossVersion.java │ │ ├── data │ │ │ ├── ActionPlayerClearCache.java │ │ │ ├── ActionPlayerDataLoad.java │ │ │ ├── ActionPlayerDataSave.java │ │ │ └── ActionPlayerDataSpawn.java │ │ └── npc │ │ │ ├── ActionPlayerClickedAnimalNPC.java │ │ │ ├── ActionPlayerClickedNPC.java │ │ │ ├── ActionPlayerClickedVillagerNPC.java │ │ │ ├── ActionPlayerMoveAnimalNPC.java │ │ │ ├── ActionPlayerMoveNPC.java │ │ │ └── ActionPlayerMoveVillagerNPC.java │ └── custom │ │ └── VillagerSpokenToEvent.java │ ├── gui │ ├── HypixelAnvilGUI.java │ ├── HypixelSignGUI.java │ └── inventory │ │ ├── HypixelInventoryGUI.java │ │ ├── HypixelPaginatedGUI.java │ │ ├── ItemStackCreator.java │ │ ├── RefreshingGUI.java │ │ └── item │ │ ├── GUIClickableItem.java │ │ ├── GUIItem.java │ │ ├── GUIMaterial.java │ │ └── GUIQueryItem.java │ ├── packet │ ├── HypixelPacketClientListener.java │ ├── HypixelPacketServerListener.java │ └── packets │ │ └── client │ │ ├── PacketListenerItemSwitch.java │ │ ├── PacketListenerNameItem.java │ │ ├── PacketListenerSignUpdate.java │ │ └── anticheat │ │ └── PacketListenerAirJump.java │ ├── party │ └── PartyManager.java │ ├── redis │ ├── RedisOriginServer.java │ ├── RedisPing.java │ ├── RedisTeleport.java │ ├── RedisTransferredFromThisServer.java │ └── service │ │ ├── RedisKickFromGUI.java │ │ └── RedisSendMessage.java │ ├── tab │ ├── EmptyTabModule.java │ ├── StandardTabModule.java │ ├── TablistManager.java │ ├── TablistModule.java │ └── TablistSkinRegistry.java │ ├── user │ ├── AntiCheatHandler.java │ ├── HypixelPlayer.java │ ├── LogHandler.java │ ├── PlayerHookManager.java │ └── categories │ │ ├── CustomGroups.java │ │ └── Rank.java │ └── utility │ ├── BlockUtility.java │ ├── BufferUtility.java │ ├── ChestUtility.java │ ├── MathUtility.java │ └── PaginationList.java ├── type.hub ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── hub │ ├── TypeHubLoader.java │ ├── events │ ├── ActionPlayerClickMuseumDisplay.java │ ├── ActionPlayerClicksMuseumNPCDisplay.java │ ├── ActionPlayerClicksOnRunePedestal.java │ ├── ActionPlayerDisplayMuseum.java │ └── ActionPlayerJoin.java │ ├── gui │ ├── GUIBiblio.java │ ├── GUIGeorge.java │ ├── GUIHubSelector.java │ ├── GUIJamie.java │ ├── GUILonelyPhilosopher.java │ ├── GUIMaxwell.java │ ├── GUIRuneRemoval.java │ ├── GUIRunicPedestal.java │ ├── GUISeymour.java │ ├── GUIShopAdventurer.java │ ├── GUIShopAlchemist.java │ ├── GUIShopBartender.java │ ├── GUIShopBea.java │ ├── GUIShopFarmMerchant.java │ ├── GUIShopFishMerchant.java │ ├── GUIShopLibrarian.java │ ├── GUIShopLumberMerchant.java │ ├── GUIShopMadRedstoneEngineer.java │ ├── GUIShopMineMerchant.java │ ├── GUIShopPat.java │ ├── GUIShopWeaponsmith.java │ ├── GUIShopWoolWeaverCool.java │ ├── GUIShopWoolWeaverVibrant.java │ ├── GUIShopZog.java │ ├── GUITiaTheFairy.java │ ├── builder │ │ ├── GUIBuilder.java │ │ ├── GUIShopBuilderGreenThumb.java │ │ ├── GUIShopBuilderRocksBricks.java │ │ ├── GUIShopBuilderVariety.java │ │ └── GUIShopBuilderWoodworking.java │ ├── elizabeth │ │ ├── CommunityShopItem.java │ │ ├── GUIAccountAndProfileUpgrades.java │ │ ├── GUIBitsShop.java │ │ ├── GUIBuyBoosterCookies.java │ │ ├── GUICityProjects.java │ │ ├── GUIFIRESales.java │ │ ├── GUIHypixelRanks.java │ │ └── subguis │ │ │ ├── GUIBitsAbicases.java │ │ │ ├── GUIBitsAbiphone.java │ │ │ ├── GUIBitsConfirmBuy.java │ │ │ ├── GUIBitsSubCategorys.java │ │ │ └── GUIPreviousCityProjects.java │ ├── kat │ │ ├── GUIConfirmKat.java │ │ └── GUIKat.java │ └── rosetta │ │ ├── GUICelesteArmor.java │ │ ├── GUIMercenaryArmor.java │ │ ├── GUIRosetta.java │ │ ├── GUIRosettaArmor.java │ │ ├── GUIRosettaIronArmor.java │ │ ├── GUISquireArmor.java │ │ └── GUIStarlightArmor.java │ ├── npcs │ ├── NPCAdventurer.java │ ├── NPCAlchemist.java │ ├── NPCAmelia.java │ ├── NPCAnita.java │ ├── NPCArthur.java │ ├── NPCAuctionAgent1.java │ ├── NPCAuctionAgent2.java │ ├── NPCAuctionAgent3.java │ ├── NPCAuctionAgent4.java │ ├── NPCAuctionMaster.java │ ├── NPCBanker.java │ ├── NPCBartender.java │ ├── NPCBazaar.java │ ├── NPCBazaarAgent.java │ ├── NPCBea.java │ ├── NPCBiblio.java │ ├── NPCBillyJoe.java │ ├── NPCBobbyJoe.java │ ├── NPCBuilder.java │ ├── NPCCarpenter.java │ ├── NPCChristopher.java │ ├── NPCClerkSeraphine.java │ ├── NPCCurator.java │ ├── NPCDusk.java │ ├── NPCElizabeth.java │ ├── NPCErihann.java │ ├── NPCFann.java │ ├── NPCFarmMerchant.java │ ├── NPCFarmer.java │ ├── NPCFishMerchant.java │ ├── NPCFisherman.java │ ├── NPCGeorge.java │ ├── NPCGladiator.java │ ├── NPCGuy.java │ ├── NPCHubSelector.java │ ├── NPCJacob.java │ ├── NPCJacobus.java │ ├── NPCJax.java │ ├── NPCJimBob.java │ ├── NPCKat.java │ ├── NPCLonelyPhilosopher.java │ ├── NPCLucius.java │ ├── NPCLumberJack.java │ ├── NPCLumberMerchant.java │ ├── NPCMadRedstoneEngineer.java │ ├── NPCMadameEleanorQGoldsworthIII.java │ ├── NPCMaddoxTheSlayer.java │ ├── NPCMalik.java │ ├── NPCMarco.java │ ├── NPCMaxwell.java │ ├── NPCMineMerchant.java │ ├── NPCMinikloon.java │ ├── NPCMort.java │ ├── NPCMuseumDisplay.java │ ├── NPCNicole.java │ ├── NPCOphelia.java │ ├── NPCOzanne.java │ ├── NPCPat.java │ ├── NPCRosetta.java │ ├── NPCSalesman.java │ ├── NPCScoop.java │ ├── NPCSecuritySloth.java │ ├── NPCSeymour.java │ ├── NPCShania.java │ ├── NPCSwofty.java │ ├── NPCTaylor.java │ ├── NPCTheHandler.java │ ├── NPCTiaTheFairy.java │ ├── NPCUdium.java │ ├── NPCWeaponsmith.java │ ├── NPCWizard.java │ ├── NPCWoolWeaver.java │ └── NPCZog.java │ ├── runes │ └── RuneEntityImpl.java │ ├── tab │ └── HubServerModule.java │ └── villagers │ ├── VillagerAndrew.java │ ├── VillagerApprentice.java │ ├── VillagerBlacksmith.java │ ├── VillagerDuke.java │ ├── VillagerFelix.java │ ├── VillagerJack.java │ ├── VillagerJamie.java │ ├── VillagerLeo.java │ ├── VillagerLiam.java │ ├── VillagerLibrarian.java │ ├── VillagerLynn.java │ ├── VillagerMathsEnjoyer.java │ ├── VillagerPlumberJoe.java │ ├── VillagerRyu.java │ ├── VillagerSmithmonger.java │ ├── VillagerStella.java │ ├── VillagerTom.java │ └── VillagerVex.java ├── type.island ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── island │ ├── TypeIslandLoader.java │ ├── events │ ├── custom │ │ ├── ActionCreateStarterChest.java │ │ ├── ActionIslandCreatePortals.java │ │ ├── ActionIslandInitJerry.java │ │ ├── ActionIslandLoadJerry.java │ │ ├── ActionIslandLoadMinions.java │ │ ├── ActionIslandSaveJerry.java │ │ ├── ActionIslandSaveMinions.java │ │ └── ActionPlayerSpawnFirstMinion.java │ └── traditional │ │ ├── ActionPlayerClickMinion.java │ │ ├── ActionPlayerClickedJerryNPC.java │ │ ├── ActionPlayerJoin.java │ │ ├── ActionPlayerTeleport.java │ │ └── ActionStartIslandMission.java │ ├── gui │ ├── GUIGuests.java │ ├── GUIJerry.java │ └── GUIPatchNotes.java │ └── tab │ ├── IslandGuestsModule.java │ ├── IslandMemberModule.java │ └── IslandServerModule.java ├── type.prototypelobby ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── prototypelobby │ ├── PrototypeLobbyDataHandler.java │ ├── PrototypeLobbyScoreboard.java │ ├── TypePrototypeLobbyLoader.java │ ├── events │ ├── ActionPlayerBlockBreak.java │ ├── ActionPlayerChat.java │ ├── ActionPlayerDataSpawn.java │ ├── ActionPlayerJoin.java │ ├── ActionPrototypeLobbyDataLoad.java │ └── ActionPrototypeLobbyDataSave.java │ ├── npcs │ └── NPCSkyBlock.java │ └── redis │ └── service │ └── RedisPrototypeLobbyPropagatePartyEvent.java ├── type.skyblockgeneric ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── skyblockgeneric │ ├── SkyBlockGenericLoader.java │ ├── auction │ └── AuctionItemLoreHandler.java │ ├── bazaar │ ├── BazaarAwarder.java │ ├── BazaarCategories.java │ ├── BazaarConnector.java │ └── BazaarItemSet.java │ ├── bestiary │ └── BestiaryData.java │ ├── block │ ├── BlockType.java │ ├── SkyBlockBlock.java │ ├── attribute │ │ ├── BlockAttribute.java │ │ ├── BlockAttributeHandler.java │ │ └── attributes │ │ │ ├── BlockAttributeChestData.java │ │ │ └── BlockAttributeType.java │ ├── blocks │ │ ├── BlockChest.java │ │ └── BlockDecoration.java │ ├── impl │ │ ├── BlockBreakable.java │ │ ├── BlockInteractable.java │ │ ├── BlockPlaceable.java │ │ └── CustomSkyBlockBlock.java │ └── placement │ │ ├── BlockPlacementManager.java │ │ ├── BlockUtils.java │ │ ├── MultiplePlacementRules.java │ │ ├── PlacementRule.java │ │ ├── creditPlacementRules │ │ ├── rules │ │ ├── AnvilPlacement.java │ │ ├── AxisPlacement.java │ │ ├── BambooPlacement.java │ │ ├── BedPlacement.java │ │ ├── BellPlacement.java │ │ ├── ButtonAndLeverPlacement.java │ │ ├── CardinalPlacement.java │ │ ├── ChestBlockPlacement.java │ │ ├── DisableWaterLogPlacement.java │ │ ├── DoorPlacement.java │ │ ├── DoublePlantPlacement.java │ │ ├── FacingPlacement.java │ │ ├── FenceGatePlacement.java │ │ ├── GrindstonePlacement.java │ │ ├── HeadPlacement.java │ │ ├── LanternPlacement.java │ │ ├── RedstonePlacement.java │ │ ├── RotationPlacement.java │ │ ├── SlabPlacement.java │ │ ├── SnowLayerPlacement.java │ │ ├── StairsPlacement.java │ │ ├── TorchPlacement.java │ │ ├── TrapdoorPlacement.java │ │ ├── TurtleEggPlacement.java │ │ ├── TwistingVinesPlacement.java │ │ ├── UnknownPlacement.java │ │ ├── WallPlacement.java │ │ └── WeepingVinesPlacement.java │ │ └── states │ │ ├── AxisBlockBlockState.java │ │ ├── BellState.java │ │ ├── BlockState.java │ │ ├── BlockStateManager.java │ │ ├── CampfireState.java │ │ ├── FenceGateState.java │ │ ├── LecternState.java │ │ ├── PistonHeadState.java │ │ ├── ScaffoldingState.java │ │ ├── StairsState.java │ │ ├── WallState.java │ │ ├── WaterloggedState.java │ │ ├── error │ │ ├── StateError.java │ │ └── UnknownBlockStatesKey.java │ │ └── state │ │ ├── Attachment.java │ │ ├── Axis.java │ │ ├── BambooLeaves.java │ │ ├── BooleanState.java │ │ ├── ChestType.java │ │ ├── Directional.java │ │ ├── DoorHalf.java │ │ ├── Face.java │ │ ├── Facing.java │ │ ├── Half.java │ │ ├── Hinge.java │ │ ├── IntegerState.java │ │ ├── Part.java │ │ ├── PistonType.java │ │ ├── PlantHalf.java │ │ ├── RedstoneWireHeight.java │ │ ├── SlabType.java │ │ ├── StairsShape.java │ │ ├── State.java │ │ └── WallHeight.java │ ├── calendar │ ├── CalendarEvent.java │ └── SkyBlockCalendar.java │ ├── chest │ ├── Chest.java │ ├── ChestAnimationType.java │ ├── ChestBuilder.java │ ├── ChestType.java │ ├── DoubleChest.java │ └── SingleChest.java │ ├── collection │ ├── CollectionCategories.java │ ├── CollectionCategory.java │ ├── CollectionLoader.java │ └── CustomCollectionAward.java │ ├── commands │ ├── AddCrystalCommand.java │ ├── AhViewCommand.java │ ├── AnvilGUICommand.java │ ├── AwardHypixelXPCommand.java │ ├── BitsCommand.java │ ├── BuildCommand.java │ ├── ChangeNBTCommand.java │ ├── ClearCommand.java │ ├── ClearMissionCommand.java │ ├── CoinsCommand.java │ ├── CoopCheckCommand.java │ ├── CoopCommand.java │ ├── CoopLeaveCommand.java │ ├── DebugDisplayDICommand.java │ ├── EnchantCommand.java │ ├── FinishMissionSetCommand.java │ ├── GetTrackedItemInformationCommand.java │ ├── HowManyTasksCommand.java │ ├── HubCommand.java │ ├── IslandCommand.java │ ├── ItemCommand.java │ ├── ItemListCommand.java │ ├── MinionGenerationCommand.java │ ├── MissionCommand.java │ ├── MithrilInfuseCommand.java │ ├── NBTCommand.java │ ├── PlaceStructureCommand.java │ ├── PlayMusicCommand.java │ ├── PrintConfigIdsCommand.java │ ├── PrintMissionDataCommand.java │ ├── RecipeDebugCommand.java │ ├── RecombobulateCommand.java │ ├── ReforgeCommand.java │ ├── RegionCommand.java │ ├── RemoveItemLoreCommand.java │ ├── RemoveOrbCommand.java │ ├── ResetMyStocksCommand.java │ ├── SandboxCommand.java │ ├── SetBestiaryCommand.java │ ├── SetCollectionCommand.java │ ├── SetItemLoreCommand.java │ ├── SetItemNameCommand.java │ ├── SetItemStatisticCommand.java │ ├── SetItemTypeCommand.java │ ├── SetPetLevel.java │ ├── SpawnHologramCommand.java │ ├── TeleportCommand.java │ ├── TestBankHashCommand.java │ ├── TestBlackCommand.java │ ├── TestHeadRotation.java │ ├── TestMutexCommand.java │ ├── TestParticleEngineCommand.java │ ├── ToggleDropAlertCommand.java │ ├── ToggleLoreLinesCommand.java │ ├── VerifyApiCommand.java │ ├── VersionCommand.java │ ├── ViewCollectionCommand.java │ ├── ViewRecipeCommand.java │ ├── ViewSkillCommand.java │ ├── WarpCommand.java │ ├── WikiThisCommand.java │ ├── WipeMeCommand.java │ └── XpCommand.java │ ├── data │ ├── DataMutexService.java │ ├── SkyBlockDataHandler.java │ ├── SkyBlockDatapoint.java │ ├── datapoints │ │ ├── DatapointAccessoryBag.java │ │ ├── DatapointAuctionEscrow.java │ │ ├── DatapointAuctionStatistics.java │ │ ├── DatapointBackpacks.java │ │ ├── DatapointBankData.java │ │ ├── DatapointBestiary.java │ │ ├── DatapointCollection.java │ │ ├── DatapointCompletedBazaarTransactions.java │ │ ├── DatapointDeaths.java │ │ ├── DatapointFairySouls.java │ │ ├── DatapointIntegerList.java │ │ ├── DatapointInventory.java │ │ ├── DatapointItemsInSacks.java │ │ ├── DatapointKat.java │ │ ├── DatapointLong.java │ │ ├── DatapointMinionData.java │ │ ├── DatapointMissionData.java │ │ ├── DatapointMuseum.java │ │ ├── DatapointPetData.java │ │ ├── DatapointQuiver.java │ │ ├── DatapointSackOfSacks.java │ │ ├── DatapointShopData.java │ │ ├── DatapointSkillCategory.java │ │ ├── DatapointSkills.java │ │ ├── DatapointSkyBlockBoolean.java │ │ ├── DatapointSkyBlockExperience.java │ │ ├── DatapointStorage.java │ │ ├── DatapointUUID.java │ │ └── DatapointUUIDList.java │ └── monogdb │ │ ├── CoopDatabase.java │ │ ├── CrystalDatabase.java │ │ ├── FairySoulDatabase.java │ │ ├── IslandDatabase.java │ │ └── RegionDatabase.java │ ├── enchantment │ ├── EnchantmentSource.java │ ├── EnchantmentType.java │ ├── SkyBlockEnchantment.java │ ├── abstr │ │ ├── ConflictingEnch.java │ │ ├── DamageEventEnchant.java │ │ ├── Ench.java │ │ ├── EnchFromTable.java │ │ ├── EventBasedEnchant.java │ │ └── KillEventEnchant.java │ ├── debuff │ │ ├── LethalityDebuff.java │ │ ├── ThunderboltTracker.java │ │ └── VenomousDebuff.java │ └── impl │ │ ├── EnchantmentBaneOfArthropods.java │ │ ├── EnchantmentCleave.java │ │ ├── EnchantmentCritical.java │ │ ├── EnchantmentCubism.java │ │ ├── EnchantmentDrain.java │ │ ├── EnchantmentEfficiency.java │ │ ├── EnchantmentEnderSlayer.java │ │ ├── EnchantmentExecute.java │ │ ├── EnchantmentExperience.java │ │ ├── EnchantmentFireAspect.java │ │ ├── EnchantmentFirstStrike.java │ │ ├── EnchantmentFortune.java │ │ ├── EnchantmentGiantKiller.java │ │ ├── EnchantmentGrowth.java │ │ ├── EnchantmentImpaling.java │ │ ├── EnchantmentKnockback.java │ │ ├── EnchantmentLethality.java │ │ ├── EnchantmentLifeSteal.java │ │ ├── EnchantmentLooting.java │ │ ├── EnchantmentLuck.java │ │ ├── EnchantmentManaSteal.java │ │ ├── EnchantmentProsecute.java │ │ ├── EnchantmentProtection.java │ │ ├── EnchantmentScavenger.java │ │ ├── EnchantmentSharpness.java │ │ ├── EnchantmentSilkTouch.java │ │ ├── EnchantmentSmeltingTouch.java │ │ ├── EnchantmentSmite.java │ │ ├── EnchantmentThunderbolt.java │ │ ├── EnchantmentThunderlord.java │ │ ├── EnchantmentVampirism.java │ │ ├── EnchantmentVenomous.java │ │ └── EnchantmentVicious.java │ ├── entity │ ├── ArrowEntityImpl.java │ ├── DecorationEntityImpl.java │ ├── DroppedItemEntityImpl.java │ ├── EntityFairySoul.java │ ├── MinionEntityImpl.java │ ├── PetEntityImpl.java │ ├── ServerCrystalImpl.java │ └── mob │ │ ├── BestiaryMob.java │ │ ├── MobRegistry.java │ │ ├── MobType.java │ │ ├── SkyBlockMob.java │ │ ├── ai │ │ ├── ClosestEntityRegionTarget.java │ │ ├── MeleeAttackWithinRegionGoal.java │ │ └── RandomRegionStrollGoal.java │ │ ├── impl │ │ └── RegionPopulator.java │ │ └── mobs │ │ ├── hub │ │ ├── MobGraveyardZombie.java │ │ ├── MobGraveyardZombieVillager.java │ │ ├── MobRuinsOldWolf.java │ │ └── MobRuinsWolf.java │ │ ├── island │ │ ├── MobZombie_1.java │ │ └── MobZombie_2.java │ │ └── minionMobs │ │ ├── MobMinionChicken.java │ │ ├── MobMinionCow.java │ │ ├── MobMinionPig.java │ │ ├── MobMinionRabbit.java │ │ ├── MobMinionSheep.java │ │ └── MobMinionZombie.java │ ├── event │ ├── actions │ │ ├── custom │ │ │ ├── ActionChangeMiningRegion.java │ │ │ ├── ActionChangeTimeCalender.java │ │ │ ├── ActionDisplayMenu.java │ │ │ ├── ActionNewZoneDisplay.java │ │ │ ├── ActionPlayerDamageBlock.java │ │ │ ├── ActionRegionChangeDisplay.java │ │ │ ├── ActionRegionPlaySong.java │ │ │ ├── ActionStartHubMission.java │ │ │ ├── bestiary │ │ │ │ └── ActionBestiaryLevelUp.java │ │ │ ├── collection │ │ │ │ ├── ActionCollectionAdd.java │ │ │ │ ├── ActionCollectionDisplay.java │ │ │ │ └── ActionCollectionHypixelLevel.java │ │ │ ├── levels │ │ │ │ └── ActionChangeHypixelXP.java │ │ │ ├── loot │ │ │ │ ├── CoinDropHandler.java │ │ │ │ └── VanillaExperienceHandler.java │ │ │ └── skill │ │ │ │ ├── ActionSkillCarpentryGain.java │ │ │ │ ├── ActionSkillDisplay.java │ │ │ │ ├── ActionSkillHypixelLevel.java │ │ │ │ ├── ActionSkillLevelUp.java │ │ │ │ ├── ActionSkillMiningHandler.java │ │ │ │ ├── ActionSkillPetLevel.java │ │ │ │ └── ActionSkillUpdateLast.java │ │ ├── entity │ │ │ ├── ActionAnimateEntityDamage.java │ │ │ └── ActionChunkUnload.java │ │ ├── item │ │ │ ├── ActionItemAbilityBlockLeftUse.java │ │ │ ├── ActionItemAbilityBlockRightUse.java │ │ │ ├── ActionItemAbilityLeftUse.java │ │ │ ├── ActionItemAbilityRightUse.java │ │ │ ├── ActionItemDisableEatingAnimation.java │ │ │ ├── ActionItemDrop.java │ │ │ ├── ActionItemLeftUse.java │ │ │ ├── ActionItemPlace.java │ │ │ ├── ActionItemRightUse.java │ │ │ ├── ActionPlayerItemPickup.java │ │ │ ├── ActionUseBow.java │ │ │ └── ActionUseShortBow.java │ │ └── player │ │ │ ├── ActionAddSkyBlockXPToNametag.java │ │ │ ├── ActionAnvilClick.java │ │ │ ├── ActionClearPendingBazaar.java │ │ │ ├── ActionCraftingTableClick.java │ │ │ ├── ActionEnchantmentTableClick.java │ │ │ ├── ActionPlayerBankAddInterest.java │ │ │ ├── ActionPlayerChangeHypixelMenuDisplay.java │ │ │ ├── ActionPlayerChat.java │ │ │ ├── ActionPlayerInteractFairySoul.java │ │ │ ├── ActionPlayerLaunchPads.java │ │ │ ├── ActionPlayerRemoveTab.java │ │ │ ├── ActionPlayerRightClickOnPlayer.java │ │ │ ├── ActionPlayerStrayTooFar.java │ │ │ ├── ActionPlayerTransferServerParty.java │ │ │ ├── ActionPlayerTravel.java │ │ │ ├── authentication │ │ │ ├── PlayerChatAuthentication.java │ │ │ └── PlayerDisableMoveWhenAuthenticating.java │ │ │ ├── blocks │ │ │ ├── ActionBlockDestroy.java │ │ │ ├── ActionBlockInteract.java │ │ │ └── ActionBlockPlaceable.java │ │ │ ├── data │ │ │ ├── ActionPlayerClearSkyBlockCache.java │ │ │ ├── ActionPlayerDataLoaded.java │ │ │ ├── ActionPlayerSkyBlockDataLoad.java │ │ │ └── ActionPlayerSkyBlockDataSave.java │ │ │ ├── fall │ │ │ ├── ActionPlayerFall.java │ │ │ └── ActionPlayerVoid.java │ │ │ ├── gui │ │ │ ├── ActionPlayerClickItemUpdate.java │ │ │ ├── ActionPlayerInteractWithCrafting.java │ │ │ ├── ActionPlayerInventoryClick.java │ │ │ ├── ActionPlayerInventoryClickAnvil.java │ │ │ ├── ActionPlayerInventoryClose.java │ │ │ ├── ActionPlayerInventoryCloseAnvil.java │ │ │ └── ActionPlayerInventoryPostClick.java │ │ │ ├── mobdamage │ │ │ ├── PlayerActionArrowDamageMob.java │ │ │ ├── PlayerActionDamageMob.java │ │ │ └── PlayerActionDamagedAttacked.java │ │ │ ├── offhand │ │ │ ├── ActionOffhandHandClick.java │ │ │ └── ActionOffhandItemClick.java │ │ │ └── region │ │ │ ├── ActionRegionBlockBreak.java │ │ │ └── ActionRegionBlockPlace.java │ ├── custom │ │ ├── BestiaryUpdateEvent.java │ │ ├── CalenderHourlyUpdateEvent.java │ │ ├── CollectionUpdateEvent.java │ │ ├── CustomBlockBreakEvent.java │ │ ├── IslandFetchedFromDatabaseEvent.java │ │ ├── IslandFirstCreatedEvent.java │ │ ├── IslandPlayerLoadedEvent.java │ │ ├── IslandSavedIntoDatabaseEvent.java │ │ ├── ItemCraftEvent.java │ │ ├── JerryClickedEvent.java │ │ ├── PlayerDamageSkyBlockBlockEvent.java │ │ ├── PlayerKilledSkyBlockMobEvent.java │ │ ├── PlayerRegionChangeEvent.java │ │ ├── SkillUpdateEvent.java │ │ └── SkyBlockXPModificationEvent.java │ └── value │ │ ├── SkyBlockValueEvent.java │ │ ├── ValueUpdateEvent.java │ │ └── events │ │ ├── MaxHealthValueUpdateEvent.java │ │ ├── MiningValueUpdateEvent.java │ │ ├── PlayerDamageMobValueUpdateEvent.java │ │ ├── PlayerDamagedByMobValueUpdateEvent.java │ │ └── RegenerationValueUpdateEvent.java │ ├── gems │ ├── GemRarity.java │ ├── GemStats.java │ └── Gemstone.java │ ├── gui │ ├── SkyBlockShopGUI.java │ └── inventories │ │ ├── GUIAnvil.java │ │ ├── GUIBoosterCookie.java │ │ ├── GUIChest.java │ │ ├── GUICreative.java │ │ ├── GUIEnchantmentTable.java │ │ ├── GUIMinion.java │ │ ├── GUIReforge.java │ │ ├── GUIViewPlayerProfile.java │ │ ├── auction │ │ ├── GUIAuctionBrowser.java │ │ ├── GUIAuctionCreateItem.java │ │ ├── GUIAuctionDuration.java │ │ ├── GUIAuctionHouse.java │ │ ├── GUIAuctionHouseStats.java │ │ ├── GUIAuctionViewItem.java │ │ ├── GUIManageAuctions.java │ │ ├── GUIViewBids.java │ │ └── view │ │ │ ├── AuctionView.java │ │ │ ├── AuctionViewSelfBIN.java │ │ │ ├── AuctionViewSelfNormal.java │ │ │ ├── AuctionViewThirdBin.java │ │ │ └── AuctionViewThirdNormal.java │ │ ├── banker │ │ ├── GUIBanker.java │ │ ├── GUIBankerDeposit.java │ │ └── GUIBankerWithdraw.java │ │ ├── bazaar │ │ ├── GUIBazaar.java │ │ ├── GUIBazaarItem.java │ │ ├── GUIBazaarItemSet.java │ │ ├── GUIBazaarOrderCompletedOptions.java │ │ ├── GUIBazaarOrderOptions.java │ │ ├── GUIBazaarOrders.java │ │ └── selections │ │ │ ├── GUIBazaarOrderAmountSelection.java │ │ │ └── GUIBazaarPriceSelection.java │ │ ├── coop │ │ ├── GUICoopInviteSender.java │ │ └── GUICoopInviteTarget.java │ │ ├── museum │ │ ├── GUIMuseumAppraisal.java │ │ ├── GUIMuseumArmorCategory.java │ │ ├── GUIMuseumCategory.java │ │ ├── GUIMuseumEmptyDisplay.java │ │ ├── GUIMuseumNonEmptyDisplay.java │ │ ├── GUIMuseumRewards.java │ │ └── GUIYourMuseum.java │ │ ├── sbmenu │ │ ├── GUICrafting.java │ │ ├── GUIPets.java │ │ ├── GUISkyBlockMenu.java │ │ ├── GUISkyBlockProfile.java │ │ ├── bags │ │ │ ├── GUIAccessoryBag.java │ │ │ ├── GUIQuiver.java │ │ │ ├── GUISack.java │ │ │ ├── GUISackOfSacks.java │ │ │ ├── GUIYourBags.java │ │ │ └── SackSize.java │ │ ├── bestiary │ │ │ ├── BestiaryCategories.java │ │ │ ├── BestiaryCategory.java │ │ │ ├── BestiaryEntry.java │ │ │ ├── GUIBestiary.java │ │ │ ├── GUIBestiaryIsland.java │ │ │ └── GUIBestiaryMob.java │ │ ├── collection │ │ │ ├── GUICollectionCategory.java │ │ │ ├── GUICollectionItem.java │ │ │ ├── GUICollectionReward.java │ │ │ ├── GUICollections.java │ │ │ └── GUICraftedMinions.java │ │ ├── fasttravel │ │ │ ├── GUIFastTravel.java │ │ │ └── GUIFastTravelSubMenu.java │ │ ├── levels │ │ │ ├── GUILevelsGuide.java │ │ │ ├── GUISkyBlockLevel.java │ │ │ ├── GUISkyBlockLevels.java │ │ │ ├── emblem │ │ │ │ ├── GUIEmblem.java │ │ │ │ └── GUIEmblems.java │ │ │ ├── rewards │ │ │ │ ├── GUILevelEmblemRewards.java │ │ │ │ ├── GUILevelFeatureRewards.java │ │ │ │ ├── GUILevelPrefixRewards.java │ │ │ │ └── GUILevelRewards.java │ │ │ └── starter │ │ │ │ ├── GUIStarterAccessories.java │ │ │ │ └── GUIStarterSkills.java │ │ ├── profiles │ │ │ ├── GUIProfileCreate.java │ │ │ ├── GUIProfileManagement.java │ │ │ ├── GUIProfileSelect.java │ │ │ └── GUIProfileSelectMode.java │ │ ├── questlog │ │ │ ├── GUIFairySoulsGuide.java │ │ │ └── GUIMissionLog.java │ │ ├── recipe │ │ │ ├── GUIMinionRecipes.java │ │ │ ├── GUIRecipe.java │ │ │ ├── GUIRecipeBook.java │ │ │ ├── GUIRecipeCategory.java │ │ │ └── GUIRecipeSlayers.java │ │ ├── skills │ │ │ ├── GUISkillCategory.java │ │ │ └── GUISkills.java │ │ ├── stats │ │ │ ├── GUICombatStats.java │ │ │ ├── GUIGatheringStats.java │ │ │ ├── GUIMiscStats.java │ │ │ └── GUIWisdomStats.java │ │ └── storage │ │ │ ├── GUIStorage.java │ │ │ ├── GUIStorageBackpackPage.java │ │ │ ├── GUIStorageIconSelection.java │ │ │ └── GUIStoragePage.java │ │ └── shop │ │ └── GUIGenericTradingOptions.java │ ├── item │ ├── ConfigurableSkyBlockItem.java │ ├── ItemAttributeHandler.java │ ├── ItemConfigParser.java │ ├── ItemLore.java │ ├── ItemQuantifiable.java │ ├── SkyBlockItem.java │ ├── SkyBlockItemComponent.java │ ├── components │ │ ├── AbilityComponent.java │ │ ├── AccessoryComponent.java │ │ ├── AnvilCombinableComponent.java │ │ ├── ArmorComponent.java │ │ ├── ArrowComponent.java │ │ ├── AuctionCategoryComponent.java │ │ ├── AxeComponent.java │ │ ├── BackpackComponent.java │ │ ├── BowComponent.java │ │ ├── ConstantStatisticsComponent.java │ │ ├── CraftableComponent.java │ │ ├── CustomDisplayNameComponent.java │ │ ├── CustomDropComponent.java │ │ ├── CustomStatisticsComponent.java │ │ ├── DecorationHeadComponent.java │ │ ├── DefaultSoulboundComponent.java │ │ ├── DisableAnimationComponent.java │ │ ├── DrillComponent.java │ │ ├── EnchantableComponent.java │ │ ├── EnchantedComponent.java │ │ ├── ExtraRarityComponent.java │ │ ├── ExtraUnderNameComponent.java │ │ ├── GemstoneComponent.java │ │ ├── GemstoneImplComponent.java │ │ ├── HotPotatoableComponent.java │ │ ├── InteractableComponent.java │ │ ├── KatComponent.java │ │ ├── LeatherColorComponent.java │ │ ├── LoreUpdateComponent.java │ │ ├── MinionComponent.java │ │ ├── MinionFuelComponent.java │ │ ├── MinionShippingComponent.java │ │ ├── MinionSkinComponent.java │ │ ├── MinionUpgradeComponent.java │ │ ├── MuseumComponent.java │ │ ├── NotFinishedYetComponent.java │ │ ├── PetComponent.java │ │ ├── PetItemComponent.java │ │ ├── PickaxeComponent.java │ │ ├── PlaceEventComponent.java │ │ ├── PlaceableComponent.java │ │ ├── PowerStoneComponent.java │ │ ├── QuiverDisplayComponent.java │ │ ├── ReforgableComponent.java │ │ ├── RightClickRecipeComponent.java │ │ ├── RuneComponent.java │ │ ├── RuneableComponent.java │ │ ├── SackComponent.java │ │ ├── SellableComponent.java │ │ ├── ServerOrbComponent.java │ │ ├── ShortBowComponent.java │ │ ├── ShovelComponent.java │ │ ├── SkillableMineComponent.java │ │ ├── SkullHeadComponent.java │ │ ├── StandardItemComponent.java │ │ ├── TieredTalismanComponent.java │ │ ├── TrackedUniqueComponent.java │ │ └── TravelScrollComponent.java │ ├── crafting │ │ ├── ExchangeableType.java │ │ ├── ShapedRecipe.java │ │ ├── ShapelessRecipe.java │ │ └── SkyBlockRecipe.java │ ├── events │ │ └── RuneItemEvent.java │ ├── handlers │ │ ├── ability │ │ │ ├── AbilityRegistry.java │ │ │ ├── RegisteredAbility.java │ │ │ └── abilities │ │ │ │ └── BuildersWandAbility.java │ │ ├── anvilcombine │ │ │ ├── AnvilCombineHandler.java │ │ │ └── AnvilCombineRegistry.java │ │ ├── bow │ │ │ ├── BowHandler.java │ │ │ └── BowRegistry.java │ │ ├── customstatistics │ │ │ ├── CustomStatisticsConfig.java │ │ │ └── CustomStatisticsRegistry.java │ │ ├── interactable │ │ │ ├── InteractableItemConfig.java │ │ │ └── InteractableRegistry.java │ │ ├── lore │ │ │ ├── LoreConfig.java │ │ │ └── LoreRegistry.java │ │ ├── orbs │ │ │ ├── ServerOrbHandler.java │ │ │ └── ServerOrbRegistry.java │ │ ├── pet │ │ │ ├── KatUpgrade.java │ │ │ ├── PetAbility.java │ │ │ ├── PetHandler.java │ │ │ └── PetRegistry.java │ │ └── place │ │ │ ├── PlaceEventHandler.java │ │ │ └── PlaceEventRegistry.java │ ├── set │ │ ├── ArmorSetRegistry.java │ │ ├── impl │ │ │ ├── ArmorSet.java │ │ │ ├── MuseumableSet.java │ │ │ ├── SetEvents.java │ │ │ └── SetRepeatable.java │ │ └── sets │ │ │ ├── CheapTuxedoSet.java │ │ │ ├── ElegantTuxedoSet.java │ │ │ ├── FancyTuxedoSet.java │ │ │ ├── LeafletSet.java │ │ │ ├── MinerOutfitSet.java │ │ │ ├── MushroomSet.java │ │ │ └── PumpkinSet.java │ └── updater │ │ ├── NonPlayerItemUpdater.java │ │ ├── PlayerItemOrigin.java │ │ └── PlayerItemUpdater.java │ ├── levels │ ├── CustomLevelAward.java │ ├── LevelsGuide.java │ ├── SkyBlockEmblems.java │ ├── SkyBlockLevelCause.java │ ├── SkyBlockLevelLoader.java │ ├── SkyBlockLevelRequirement.java │ ├── SkyBlockLevelUnlock.java │ ├── abstr │ │ ├── CauseEmblem.java │ │ └── SkyBlockLevelCauseAbstr.java │ ├── causes │ │ ├── CollectionLevelCause.java │ │ ├── FairySoulExchangeLevelCause.java │ │ ├── LevelCause.java │ │ ├── MissionLevelCause.java │ │ ├── MuseumLevelCause.java │ │ ├── NewAccessoryLevelCause.java │ │ └── SkillLevelCause.java │ └── unlocks │ │ ├── CustomLevelUnlock.java │ │ └── SkyBlockLevelStatisticUnlock.java │ ├── loottable │ ├── LootAffector.java │ ├── OtherLoot.java │ ├── RNGMeterTable.java │ └── SkyBlockLootTable.java │ ├── minion │ ├── IslandMinionData.java │ ├── MinionAction.java │ ├── MinionHandler.java │ ├── MinionIngredient.java │ ├── MinionRecipe.java │ ├── MinionRegistry.java │ ├── SkyBlockMinion.java │ ├── actions │ │ ├── MinionCutTreeAction.java │ │ ├── MinionFishingAction.java │ │ ├── MinionKillMobAction.java │ │ ├── MinionMineAction.java │ │ ├── MinionMineCocoaBeansAction.java │ │ └── MinionMinePumpkinOrMelonAction.java │ ├── extension │ │ ├── MinionExtension.java │ │ ├── MinionExtensionData.java │ │ ├── MinionExtensions.java │ │ └── extensions │ │ │ ├── MinionFuelExtension.java │ │ │ ├── MinionShippingExtension.java │ │ │ ├── MinionSkinExtension.java │ │ │ └── MinionUpgradeExtension.java │ └── minions │ │ ├── combat │ │ ├── MinionBlaze.java │ │ ├── MinionCaveSpider.java │ │ ├── MinionCreeper.java │ │ ├── MinionEnderman.java │ │ ├── MinionGhast.java │ │ ├── MinionMagmaCube.java │ │ ├── MinionSkeleton.java │ │ ├── MinionSlime.java │ │ ├── MinionSpider.java │ │ └── MinionZombie.java │ │ ├── farming │ │ ├── MinionCactus.java │ │ ├── MinionCarrot.java │ │ ├── MinionChicken.java │ │ ├── MinionCocoaBeans.java │ │ ├── MinionCow.java │ │ ├── MinionMelon.java │ │ ├── MinionMushroom.java │ │ ├── MinionNetherWart.java │ │ ├── MinionPig.java │ │ ├── MinionPotato.java │ │ ├── MinionPumpkin.java │ │ ├── MinionRabbit.java │ │ ├── MinionSheep.java │ │ ├── MinionSugarCane.java │ │ └── MinionWheat.java │ │ ├── fishing │ │ ├── MinionClay.java │ │ └── MinionFishing.java │ │ ├── foraging │ │ ├── MinionAcacia.java │ │ ├── MinionBirch.java │ │ ├── MinionDarkOak.java │ │ ├── MinionFlower.java │ │ ├── MinionJungle.java │ │ ├── MinionOak.java │ │ └── MinionSpruce.java │ │ └── mining │ │ ├── MinionCoal.java │ │ ├── MinionCobblestone.java │ │ ├── MinionDiamond.java │ │ ├── MinionEmerald.java │ │ ├── MinionEndstone.java │ │ ├── MinionGlowstone.java │ │ ├── MinionGold.java │ │ ├── MinionGravel.java │ │ ├── MinionHardStone.java │ │ ├── MinionIce.java │ │ ├── MinionIron.java │ │ ├── MinionLapis.java │ │ ├── MinionMithril.java │ │ ├── MinionObsidian.java │ │ ├── MinionQuartz.java │ │ ├── MinionRedstone.java │ │ ├── MinionSand.java │ │ └── MinionSnow.java │ ├── mission │ ├── LocationAssociatedMission.java │ ├── MissionData.java │ ├── MissionRepeater.java │ ├── MissionSet.java │ ├── SkyBlockMission.java │ ├── SkyBlockProgressMission.java │ └── missions │ │ ├── MissionBreakLog.java │ │ ├── MissionCraftWoodenPickaxe.java │ │ ├── MissionCraftWorkbench.java │ │ ├── MissionDepositCoinsInBank.java │ │ ├── MissionGiveWoolToCarpenter.java │ │ ├── MissionKillZombies.java │ │ ├── MissionTalkJerry.java │ │ ├── MissionTalkToAuctionMaster.java │ │ ├── MissionTalkToBanker.java │ │ ├── MissionTalkToBartender.java │ │ ├── MissionTalkToLibrarian.java │ │ ├── MissionTalkToVillagers.java │ │ ├── MissionUseTeleporter.java │ │ ├── barn │ │ ├── MissionCraftWheatMinion.java │ │ ├── MissionTalkToFarmHand.java │ │ └── MissionTalkToFarmhandAgain.java │ │ ├── blacksmith │ │ ├── MissionMineCoal.java │ │ ├── MissionTalkToBlacksmith.java │ │ └── MissionTalkToBlacksmithAgain.java │ │ ├── farmer │ │ ├── MissionCollectWheat.java │ │ ├── MissionTalkToFarmer.java │ │ └── MissionTalkToFarmerAgain.java │ │ ├── lumber │ │ ├── MissionBreakOaklog.java │ │ ├── MissionTalkToLumberjack.java │ │ └── MissionTalkToLumberjackAgain.java │ │ └── sheperd │ │ ├── MissionShearSheep.java │ │ └── MissionTalkToShepherd.java │ ├── museum │ ├── MuseumDisplay.java │ ├── MuseumDisplayEntityImpl.java │ ├── MuseumDisplayEntityInformation.java │ ├── MuseumDisplays.java │ ├── MuseumReward.java │ ├── MuseumRewards.java │ ├── MuseumableItemCategory.java │ ├── display │ │ ├── ArmorMuseumDisplayHandler.java │ │ └── ItemMuseumDisplayHandler.java │ └── rewards │ │ └── MuseumXPReward.java │ ├── noteblock │ ├── Note.java │ ├── SkyBlockSong.java │ └── SkyBlockSongsHandler.java │ ├── packets │ ├── client │ │ └── PacketListenerPlayerDig.java │ └── server │ │ └── PacketOutgoingLog.java │ ├── particle │ ├── ParticleEngine.java │ └── shapes │ │ ├── Particle3DCube.java │ │ ├── Particle3DSphere.java │ │ └── ParticleShape.java │ ├── redis │ ├── RedisAuthenticate.java │ ├── RedisHasIslandLoaded.java │ ├── RedisRefreshCoopData.java │ ├── RedisRunEvent.java │ └── service │ │ ├── RedisGetPlayerData.java │ │ ├── RedisLockPlayerData.java │ │ ├── RedisPropogateBazaarTransaction.java │ │ ├── RedisSkyBlockPropagatePartyEvent.java │ │ ├── RedisUnlockPlayerData.java │ │ ├── RedisUpdatePlayerData.java │ │ └── manager │ │ └── ServerLockManager.java │ ├── region │ ├── RegionType.java │ ├── SkyBlockMiningConfiguration.java │ ├── SkyBlockRegion.java │ └── mining │ │ ├── BreakingTask.java │ │ ├── MineableBlock.java │ │ ├── MiningBlockClassification.java │ │ └── configurations │ │ ├── BarnConfiguration.java │ │ ├── MineCoalConfiguration.java │ │ ├── MineLogsConfiguration.java │ │ ├── MineWheatConfiguration.java │ │ └── WheatAndFlowersConfiguration.java │ ├── server │ ├── attribute │ │ ├── ServerAttribute.java │ │ ├── SkyBlockServerAttributes.java │ │ └── attributes │ │ │ └── AttributeLong.java │ └── eventcaller │ │ ├── CustomEventCaller.java │ │ ├── PlayerValues.java │ │ └── ServerValues.java │ ├── shop │ ├── ShopPrice.java │ └── type │ │ ├── CoinShopPrice.java │ │ ├── CombinedShopPrice.java │ │ └── ItemShopPrice.java │ ├── skill │ ├── SkillCategories.java │ ├── SkillCategory.java │ └── skills │ │ ├── AlchemySkill.java │ │ ├── CarpentrySkill.java │ │ ├── CombatSkill.java │ │ ├── EnchantingSkill.java │ │ ├── FarmingSkill.java │ │ ├── FishingSkill.java │ │ ├── ForagingSkill.java │ │ ├── MiningSkill.java │ │ ├── RunecraftingSkill.java │ │ └── TamingSkill.java │ ├── string │ ├── PlayerTemplateProcessor.java │ └── PlayerTemplates.java │ ├── structure │ ├── PasterService.java │ ├── SkyBlockStructure.java │ └── structures │ │ └── IslandPortal.java │ ├── tabmodules │ ├── AccountInformationModule.java │ └── SkyBlockPlayersOnlineModule.java │ ├── user │ ├── FairySoulHandler.java │ ├── PlayerAbilityHandler.java │ ├── PlayerEnchantmentHandler.java │ ├── SkyBlockActionBar.java │ ├── SkyBlockInventory.java │ ├── SkyBlockIsland.java │ ├── SkyBlockPlayer.java │ ├── SkyBlockScoreboard.java │ ├── fairysouls │ │ ├── FairySoul.java │ │ ├── FairySoulExchangeLevels.java │ │ └── FairySoulZone.java │ └── statistics │ │ ├── PlayerStatistics.java │ │ ├── TemporaryConditionalStatistic.java │ │ └── TemporaryStatistic.java │ ├── utility │ ├── DamageIndicator.java │ ├── DeathMessageCreator.java │ ├── ItemPriceCalculator.java │ ├── JerryInformation.java │ ├── LaunchPads.java │ ├── NumberVisualizer.java │ ├── RarityValue.java │ ├── RecipeParser.java │ ├── ServiceAvailabilityChecker.java │ ├── TriConsumer.java │ └── groups │ │ ├── EnchantItemGroups.java │ │ └── Groups.java │ └── warps │ ├── ScrollUnlockReason.java │ ├── TravelScrollIslands.java │ ├── TravelScrollType.java │ └── unlocks │ ├── ScrollUnlockCustomRecipe.java │ └── ScrollUnlockPurchase.java ├── type.thefarmingislands ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── swofty │ └── type │ └── thefarmingislands │ ├── TypeTheFarmingIslandsLoader.java │ ├── events │ └── ActionPlayerJoin.java │ ├── npcs │ ├── NPCBeth.java │ ├── NPCFarmerJon.java │ ├── NPCFriendlyHiker.java │ ├── NPCHungryHiker.java │ ├── NPCHunterAva.java │ ├── NPCJake.java │ ├── NPCMason.java │ ├── NPCMoby.java │ ├── NPCShepherd.java │ ├── NPCTalbot.java │ ├── NPCTammy.java │ ├── NPCTony.java │ ├── NPCTreasureHunter.java │ └── NPCTrevorTheTrapper.java │ ├── tab │ └── TheFarmingIslandsServerModule.java │ └── villagers │ ├── VillagerFarmHand.java │ └── VillagerWindmillOperator.java └── velocity.extension ├── build.gradle.kts ├── src └── main │ └── java │ └── net │ └── swofty │ └── velocity │ ├── SkyBlockVelocity.java │ ├── command │ └── ServerStatusCommand.java │ ├── data │ ├── CoopDatabase.java │ ├── MongoDB.java │ ├── ProfilesDatabase.java │ └── UserDatabase.java │ ├── gamemanager │ ├── BalanceConfiguration.java │ ├── BalanceConfigurations.java │ ├── GameManager.java │ ├── TransferHandler.java │ └── balanceconfigurations │ │ ├── IslandCheck.java │ │ └── LowestPlayerCount.java │ ├── packet │ ├── PlayerChannelHandler.java │ └── PlayerChannelInitializer.java │ ├── redis │ ├── ChannelListener.java │ ├── RedisListener.java │ ├── RedisMessage.java │ └── listeners │ │ ├── ListenerPlayerCount.java │ │ ├── ListenerPlayerHandler.java │ │ ├── ListenerProxyOnline.java │ │ ├── ListenerRegisterTestFlow.java │ │ ├── ListenerServerFinishedWithPlayer.java │ │ ├── ListenerServerInitialized.java │ │ ├── ListenerServerName.java │ │ ├── ListenerServersInformation.java │ │ └── ListenerTestFlowServerReady.java │ ├── testflow │ ├── ProxyTestFlowHandler.java │ ├── TestFlowManager.java │ └── handlers │ │ └── SendToHubTestFlowHandler.java │ └── viaversion │ ├── handler │ ├── PacketDecodeHandler.java │ └── PacketEncodeHandler.java │ ├── injector │ └── SkyBlockViaInjector.java │ ├── loader │ └── SkyBlockVLLoader.java │ └── provider │ └── SkyBlockVersionProvider.java └── velocity-proxy-3.4.0-SNAPSHOT.jar /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DockerFiles/Dockerfile.game_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/DockerFiles/Dockerfile.game_server -------------------------------------------------------------------------------- /DockerFiles/Dockerfile.proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/DockerFiles/Dockerfile.proxy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/README.md -------------------------------------------------------------------------------- /anticheat/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/anticheat/LICENSE.md -------------------------------------------------------------------------------- /anticheat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/anticheat/README.md -------------------------------------------------------------------------------- /anticheat/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/anticheat/build.gradle.kts -------------------------------------------------------------------------------- /commons/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/commons/build.gradle.kts -------------------------------------------------------------------------------- /commons/src/main/java/net/swofty/commons/item/SkyBlockItemType.java: -------------------------------------------------------------------------------- 1 | package net.swofty.commons.item; 2 | 3 | public class SkyBlockItemType { 4 | } 5 | -------------------------------------------------------------------------------- /configuration/NanoLimbo-1.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/NanoLimbo-1.9.8.jar -------------------------------------------------------------------------------- /configuration/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/entrypoint.sh -------------------------------------------------------------------------------- /configuration/mongo-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/mongo-init.sh -------------------------------------------------------------------------------- /configuration/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/resources.json -------------------------------------------------------------------------------- /configuration/resources.json.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/resources.json.docker -------------------------------------------------------------------------------- /configuration/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/settings.yml -------------------------------------------------------------------------------- /configuration/skyblock/Minestom.crystals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/Minestom.crystals.csv -------------------------------------------------------------------------------- /configuration/skyblock/Minestom.fairysouls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/Minestom.fairysouls.csv -------------------------------------------------------------------------------- /configuration/skyblock/Minestom.regions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/Minestom.regions.csv -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/block/air.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/acacia_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/acacia_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/air.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/allay_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ancient_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/ancient_debris" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/andesite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/andesite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/andesite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/andesite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/andesite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/andesite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/andesite_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/anvil" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/axolotl_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/azalea.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/azalea" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/azalea_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/azalea_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_mosaic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_mosaic" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_mosaic_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_mosaic_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_mosaic_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_mosaic_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bamboo_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bamboo_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/barrel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/barrel" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/basalt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bat_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/beacon" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bedrock.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bedrock" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bee_nest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bee_nest" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bee_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/beehive.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/beehive" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/birch_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/birch_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/black_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/black_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blackstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blackstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blackstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blackstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blackstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blackstone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blackstone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blackstone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blast_furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blast_furnace" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blaze_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_ice" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/blue_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/blue_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bookshelf" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/breeze_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/brown_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/brown_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/budding_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/budding_amethyst" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cactus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cactus" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/calcite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/camel_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cartography_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cartography_table" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/carved_pumpkin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/carved_pumpkin" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cat_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cave_spider_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cherry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cherry_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chicken_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chipped_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chipped_anvil" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_bookshelf_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_nether_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_nether_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_red_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_red_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_tuff" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chiseled_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_tuff_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chorus_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chorus_flower" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/chorus_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chorus_plant" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/clay" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/coal_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/coarse_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/coarse_dirt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobbled_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobbled_deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobbled_deepslate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobbled_deepslate_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobbled_deepslate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobbled_deepslate_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobblestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobblestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cobblestone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cod_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/composter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/composter" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/copper_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/copper_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/copper_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cow_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cracked_deepslate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cracked_deepslate_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cracked_deepslate_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cracked_deepslate_tiles" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cracked_nether_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cracked_nether_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cracked_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cracked_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/creeper_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/creeper_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_hyphae.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_hyphae" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_nylium" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_stem" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crimson_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crimson_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/crying_obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crying_obsidian" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_red_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_red_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_red_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_red_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cut_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/cyan_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cyan_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/damaged_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/damaged_anvil" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_oak_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_prismarine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_prismarine" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_prismarine_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_prismarine_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dark_prismarine_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dark_prismarine_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/daylight_detector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/daylight_detector" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_coal_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_copper_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_diamond_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_emerald_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_gold_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_iron_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_lapis_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_redstone_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_tile_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_tile_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_tile_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_tile_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/deepslate_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate_tiles" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/diamond_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/diorite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/diorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/diorite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/diorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/diorite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/diorite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/diorite_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dirt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dirt_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dirt_path" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dispenser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dispenser" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dolphin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/donkey_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dragon_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dragon_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/dropper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/dropper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/drowned_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/elder_guardian_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/emerald_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/enchanting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/enchanting_table" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_portal_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_portal_frame" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_rod" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_stone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_stone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/end_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/end_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ender_dragon_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/enderman_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/endermite_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/evoker_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_cut_copper_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/exposed_cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_cut_copper_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/farmland" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/fletching_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fletching_table" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/flowering_azalea.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flowering_azalea" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/flowering_azalea_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flowering_azalea_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/fox_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/frog_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/furnace" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ghast_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gilded_blackstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gilded_blackstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/glow_squid_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/glowstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/glowstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/goat_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gold_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/granite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/granite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/granite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/granite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/granite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/granite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/granite_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gravel" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/gray_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/gray_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/green_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/green_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/grindstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/grindstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/guardian_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/hoglin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/horse_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/husk_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/ice" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_chiseled_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_cracked_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cracked_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_mossy_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/infested_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/iron_golem_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/iron_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/iron_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/iron_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jack_o_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jack_o_lantern" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jigsaw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jigsaw" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jukebox.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jukebox" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/jungle_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/jungle_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lapis_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lectern" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_blue_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_blue_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_blue_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_blue_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_blue_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_blue_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_gray_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_gray_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_gray_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_gray_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/light_gray_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/light_gray_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lightning_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lightning_rod" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lime_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lime_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/llama_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/lodestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/lodestone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/loom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/loom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magenta_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/magenta_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/magma_cube_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_roots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_roots" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mangrove_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mangrove_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/melon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/melon" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mooshroom_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/moss_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/moss_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_cobblestone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_cobblestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_cobblestone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_cobblestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_cobblestone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mossy_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mossy_stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mud" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mud_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mud_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mud_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mud_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mud_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mud_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mud_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mud_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/muddy_mangrove_roots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/muddy_mangrove_roots" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mule_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mushroom_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mushroom_stem_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/mycelium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/mycelium" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_brick_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_brick_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_gold_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/nether_quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/nether_quartz_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/netherrack" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oak_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/observer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/observer" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/obsidian" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ocelot_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ochre_froglight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/ochre_froglight" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/orange_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orange_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oxidized_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oxidized_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oxidized_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oxidized_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/oxidized_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_cut_copper_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/packed_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/packed_ice" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/packed_mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/packed_mud" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/panda_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/parrot_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pearlescent_froglight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pearlescent_froglight" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/petrified_oak_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/petrified_oak_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/phantom_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pig_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/piglin_brute_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/piglin_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/piglin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pillager_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pink_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pink_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/piston.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/piston_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/player_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/podzol.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/podzol" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polar_bear_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_andesite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_andesite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_andesite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_andesite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_andesite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_basalt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_blackstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_blackstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_blackstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_blackstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_deepslate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_deepslate_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_deepslate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_deepslate_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_diorite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_diorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_diorite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_diorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_diorite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_granite" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_granite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_granite_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_granite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_granite_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_tuff" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_tuff_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_tuff_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/polished_tuff_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/polished_tuff_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/prismarine_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/prismarine_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pufferfish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/pumpkin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pumpkin" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purple_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purple_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purpur_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purpur_pillar" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purpur_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purpur_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/purpur_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/purpur_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/quartz_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/quartz_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/quartz_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/quartz_pillar" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/quartz_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/quartz_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/quartz_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/quartz_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/rabbit_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/ravager_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_nether_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_nether_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_nether_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_nether_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_nether_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_nether_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_sand" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_sandstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_sandstone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_sandstone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_sandstone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/red_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/red_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/redstone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/redstone_lamp" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/redstone_ore" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/reinforced_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/reinforced_deepslate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/respawn_anchor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/respawn_anchor_0" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/rooted_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/rooted_dirt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/salmon_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sand" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sandstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sandstone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sandstone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sandstone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/scaffolding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/scaffolding_stable" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sculk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sculk" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sculk_catalyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sculk_catalyst" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sculk_sensor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sculk_sensor_inactive" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sculk_shrieker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sculk_shrieker" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sea_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sea_lantern" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sheep_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/shroomlight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/shroomlight" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/shulker_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/silverfish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/skeleton_horse_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/skeleton_skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/skeleton_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/slime_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smithing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smithing_table" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smoker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smoker" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_basalt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_quartz" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_quartz_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_quartz_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_quartz_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_quartz_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_red_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_red_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_red_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_red_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_sandstone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_sandstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_sandstone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_stone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/smooth_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/smooth_stone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sniffer_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/snow_height2" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/snow_golem_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/soul_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/soul_sand" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/soul_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/soul_soil" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spawner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spider_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sponge" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spore_blossom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spore_blossom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_leaves" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/spruce_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/spruce_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/squid_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/sticky_piston.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/sticky_piston_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stone_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stonecutter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stonecutter" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stray_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/strider_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_acacia_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_acacia_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_acacia_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_acacia_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_birch_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_birch_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_birch_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_birch_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_cherry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_cherry_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_cherry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_cherry_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_crimson_hyphae.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_crimson_hyphae" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_crimson_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_crimson_stem" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_dark_oak_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_dark_oak_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_dark_oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_dark_oak_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_jungle_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_jungle_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_jungle_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_jungle_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_mangrove_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_mangrove_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_mangrove_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_mangrove_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_oak_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_oak_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_oak_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_spruce_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_spruce_log" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/stripped_spruce_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stripped_spruce_wood" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/suspicious_gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/suspicious_gravel_0" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/suspicious_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/suspicious_sand_0" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tadpole_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/target.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/target" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tinted_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tinted_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tnt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tnt" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/trader_llama_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/trapped_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/chest" 3 | } 4 | -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/trial_spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/trial_spawner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tropical_fish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_brick_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_brick_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_bricks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/tuff_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tuff_wall_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/turtle_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/verdant_froglight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/verdant_froglight" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/vex_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/villager_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/vindicator_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wandering_trader_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warden_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_button_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_fence_inventory" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_fence_gate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_hyphae.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_hyphae" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_nylium" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_planks" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_pressure_plate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_stem" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/warped_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/warped_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_chiseled_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chiseled_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_copper_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/copper_door" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_copper_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/copper_trapdoor" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cut_copper_stairs" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/exposed_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_copper_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/exposed_copper_door" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_copper_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/exposed_copper_trapdoor" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_exposed_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/exposed_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_oxidized_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_oxidized_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/oxidized_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_oxidized_copper_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/oxidized_copper_door" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_oxidized_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_oxidized_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/oxidized_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_weathered_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_weathered_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/weathered_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_weathered_copper_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/weathered_copper_door" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_weathered_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/waxed_weathered_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/weathered_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/weathered_copper_bulb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_copper_bulb" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/weathered_copper_grate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_copper_grate" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/weathered_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_cut_copper" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/weathered_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/weathered_cut_copper_slab" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wet_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wet_sponge" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/white_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/white_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/witch_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wither_skeleton_skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wither_skeleton_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wither_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/wolf_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_banner" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_carpet" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_concrete" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_concrete_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_concrete_powder" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_glazed_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_glazed_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_stained_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_stained_glass" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_terracotta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_terracotta" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/yellow_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/yellow_wool" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zoglin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zombie_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zombie_horse_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zombie_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zombie_villager_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/models/item/zombified_piglin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/textures/block/fire_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/textures/block/nether_portal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/textures/block/respawn_anchor_top.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/textures/block/soul_fire_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/SkyBlockPack/assets/minecraft/textures/block/water_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /configuration/skyblock/collections/boss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/collections/boss.yml -------------------------------------------------------------------------------- /configuration/skyblock/collections/combat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/collections/combat.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/backpacks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/backpacks.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/bows.yml: -------------------------------------------------------------------------------- 1 | items: -------------------------------------------------------------------------------- /configuration/skyblock/items/brewing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/brewing.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/crimson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/crimson.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/enchanted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/enchanted.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/minions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/minions.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/pets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/pets.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/runes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/runes.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/sacks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/sacks.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/sandbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/sandbox.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/spooky.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/spooky.yml -------------------------------------------------------------------------------- /configuration/skyblock/items/weapons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/items/weapons.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/astute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/astute.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/awkward.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/awkward.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/blended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/blended.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/clean.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/deadly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/deadly.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/epic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/epic.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/fair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/fair.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/fast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/fast.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/fierce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/fierce.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/fine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/fine.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/gentle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/gentle.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/grand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/grand.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/great.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/great.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/hasty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/hasty.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/heavy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/heavy.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/hefty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/hefty.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/heroic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/heroic.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/honored.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/honored.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/light.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/light.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/lush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/lush.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/mythic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/mythic.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/neat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/neat.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/odd_bow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/odd_bow.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/pure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/pure.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/rapid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/rapid.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/robust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/robust.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/rugged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/rugged.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/sharp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/sharp.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/smart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/smart.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/soft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/soft.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/spicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/spicy.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/stained.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/stained.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/sturdy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/sturdy.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/titanic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/titanic.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/unreal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/unreal.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/wise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/wise.yml -------------------------------------------------------------------------------- /configuration/skyblock/reforges/zooming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/reforges/zooming.yml -------------------------------------------------------------------------------- /configuration/skyblock/songs/wilderness.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/songs/wilderness.mid -------------------------------------------------------------------------------- /configuration/skyblock/songs/wilderness.nbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/skyblock/songs/wilderness.nbs -------------------------------------------------------------------------------- /configuration/update-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/update-config.sh -------------------------------------------------------------------------------- /configuration/update-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/update-vars.bat -------------------------------------------------------------------------------- /configuration/velocity.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/configuration/velocity.toml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dungeons/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/dungeons/build.gradle.kts -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/gradlew.bat -------------------------------------------------------------------------------- /loader/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/loader/build.gradle.kts -------------------------------------------------------------------------------- /loader/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/loader/src/main/resources/logback.xml -------------------------------------------------------------------------------- /loader/testflows/send_to_hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/loader/testflows/send_to_hub.yml -------------------------------------------------------------------------------- /loader/testflows/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/loader/testflows/usage.md -------------------------------------------------------------------------------- /packer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/packer/build.gradle.kts -------------------------------------------------------------------------------- /proxy.api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/proxy.api/build.gradle.kts -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/qodana.yaml -------------------------------------------------------------------------------- /script/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/script/install.py -------------------------------------------------------------------------------- /server/proxy/configuration/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/server/proxy/configuration/resources.json -------------------------------------------------------------------------------- /server/proxy/velocity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/server/proxy/velocity.jar -------------------------------------------------------------------------------- /service.api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.api/build.gradle.kts -------------------------------------------------------------------------------- /service.auctionhouse/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.auctionhouse/build.gradle.kts -------------------------------------------------------------------------------- /service.bazaar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.bazaar/build.gradle.kts -------------------------------------------------------------------------------- /service.datamutex/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.datamutex/build.gradle.kts -------------------------------------------------------------------------------- /service.generic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.generic/build.gradle.kts -------------------------------------------------------------------------------- /service.itemtracker/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.itemtracker/build.gradle.kts -------------------------------------------------------------------------------- /service.party/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/service.party/build.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /spark/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/spark/build.gradle.kts -------------------------------------------------------------------------------- /type.dungeonhub/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.dungeonhub/build.gradle.kts -------------------------------------------------------------------------------- /type.generic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.generic/build.gradle.kts -------------------------------------------------------------------------------- /type.hub/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.hub/build.gradle.kts -------------------------------------------------------------------------------- /type.island/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.island/build.gradle.kts -------------------------------------------------------------------------------- /type.prototypelobby/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.prototypelobby/build.gradle.kts -------------------------------------------------------------------------------- /type.skyblockgeneric/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.skyblockgeneric/build.gradle.kts -------------------------------------------------------------------------------- /type.thefarmingislands/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/type.thefarmingislands/build.gradle.kts -------------------------------------------------------------------------------- /velocity.extension/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swofty-Developments/HypixelSkyBlock/HEAD/velocity.extension/build.gradle.kts --------------------------------------------------------------------------------