gitextract_ll5d4bnt/ ├── DebugHelper.lua ├── DebugHelperConfig.lua ├── LICENSE ├── README.md ├── advancements/ │ ├── AdvancementTriggers.lua │ ├── ancient_ingot.json │ ├── ancient_wear.json │ ├── blaze_rod.json │ ├── bow.json │ ├── bread.json │ ├── brew.json │ ├── bronze.json │ ├── cake.json │ ├── crafting_table.json │ ├── crison_eye.json │ ├── crison_eye_killed.json │ ├── crossbow.json │ ├── diamond.json │ ├── diamond_ingot.json │ ├── diamond_wear.json │ ├── dungeon_eater.json │ ├── dungeon_eater_killed.json │ ├── enchant.json │ ├── ender_chest.json │ ├── ender_pearl.json │ ├── farm.json │ ├── flesh_ingot.json │ ├── flesh_wear.json │ ├── furnace.json │ ├── ghast.json │ ├── ghost.json │ ├── ghost_crystal.json │ ├── go_bone_dungeon.json │ ├── go_dark_dungeon.json │ ├── go_deep_snow.json │ ├── go_desert_dungeon.json │ ├── go_ghost_house.json │ ├── go_ice_dungeon.json │ ├── go_lava_dungeon.json │ ├── gold.json │ ├── gold_wear.json │ ├── guardian.json │ ├── gun.json │ ├── hunter.json │ ├── ice_element_ball.json │ ├── inventory.json │ ├── iron.json │ ├── knight_ingot.json │ ├── knight_wear.json │ ├── lava.json │ ├── leather.json │ ├── magic_gold_wear.json │ ├── magic_limit.json │ ├── mine.json │ ├── mine_bronze.json │ ├── mine_copper.json │ ├── mine_diamond.json │ ├── mine_gold.json │ ├── mine_iron.json │ ├── mine_netherite.json │ ├── mine_up.json │ ├── mirror.json │ ├── nether.json │ ├── nether_destroyer.json │ ├── nether_destroyer_killed.json │ ├── netherite.json │ ├── netherite_full_wear.json │ ├── portal.json │ ├── pumpkin_helmet.json │ ├── recipe_book.json │ ├── redstone.json │ ├── redstone_wire.json │ ├── repair.json │ ├── rocket_boost.json │ ├── snow_guard.json │ ├── snow_queen.json │ ├── snow_queen_killed.json │ ├── staff.json │ ├── star_wear.json │ ├── steel.json │ ├── stone.json │ ├── strange_len.json │ ├── super_diamond_sword.json │ ├── super_diamond_wear.json │ ├── sword.json │ └── wood.json ├── api.lua ├── apis/ │ ├── Account.lua │ ├── AccountUtils.lua │ ├── Advancement.lua │ ├── AdvancementUtils.lua │ ├── Attack.lua │ ├── BiomeData.lua │ ├── BiomeUtils.lua │ ├── BlockData.lua │ ├── BlockEntity.lua │ ├── BlockUtils.lua │ ├── Buff.lua │ ├── ClientBoundPacketWriter.lua │ ├── ClientState.lua │ ├── ClientStateManager.lua │ ├── Container.lua │ ├── DataWatcher.lua │ ├── DeathReason.lua │ ├── Defense.lua │ ├── Direction.lua │ ├── Effect.lua │ ├── EffectUtils.lua │ ├── Enchantment.lua │ ├── EnchantmentData.lua │ ├── EnchantmentUtils.lua │ ├── Entity.lua │ ├── EntityIndex.lua │ ├── GameMode.lua │ ├── GlobalBlock.lua │ ├── GlobalNpc.lua │ ├── GlobalPlayer.lua │ ├── GuiContainer.lua │ ├── Hitbox.lua │ ├── Inventory.lua │ ├── Item.lua │ ├── ItemRegistry.lua │ ├── ItemStack.lua │ ├── ItemType.lua │ ├── ItemUtils.lua │ ├── JoinData.lua │ ├── LangUtils.lua │ ├── LightingUtils.lua │ ├── MapPos.lua │ ├── MapUtils.lua │ ├── MiscUtils.lua │ ├── Mod.lua │ ├── ModBlock.lua │ ├── ModBlockEntity.lua │ ├── ModItem.lua │ ├── ModNpc.lua │ ├── ModProjectile.lua │ ├── ModTextureData.lua │ ├── ModTextureUtils.lua │ ├── Npc.lua │ ├── NpcType.lua │ ├── NpcUtils.lua │ ├── OreDataGroup.lua │ ├── ParameterClick.lua │ ├── ParameterDestroy.lua │ ├── ParameterPlace.lua │ ├── ParameterStrike.lua │ ├── Player.lua │ ├── PlayerUtils.lua │ ├── Point.lua │ ├── Projectile.lua │ ├── ProjectileUtils.lua │ ├── Recipe.lua │ ├── RecipeConfig.lua │ ├── RecipeSearchAction.lua │ ├── RecipeUtils.lua │ ├── Rectangle.lua │ ├── Reg.lua │ ├── ServerBoundPacketWriter.lua │ ├── Shape.lua │ ├── Skeleton.lua │ ├── Skin.lua │ ├── SkinUtils.lua │ ├── Slot.lua │ ├── SlotCommandQueue.lua │ ├── SmartMode.lua │ ├── SoundUtils.lua │ ├── SpriteEx.lua │ ├── Type.lua │ ├── Utils.lua │ ├── WorldData.lua │ ├── WorldDataUtils.lua │ ├── WorldGenArea.lua │ ├── WorldGenChunkBuffer.lua │ ├── WorldGenCode.lua │ ├── WorldGenNoise.lua │ └── engine_api/ │ ├── AnimationEvent.lua │ ├── Animator2D.lua │ ├── AnimatorData2D.lua │ ├── App.lua │ ├── Array.lua │ ├── AssetBundle.lua │ ├── AssetManager.lua │ ├── AtlasInfos.lua │ ├── AtlasLoader.lua │ ├── Audio.lua │ ├── ByteStream.lua │ ├── Bytes.lua │ ├── CameraComponentWrapper.lua │ ├── CameraProjection.lua │ ├── CanvasComponentWrapper.lua │ ├── CanvasDisplayMode.lua │ ├── ClipCollection2D.lua │ ├── Color.lua │ ├── ComponentID.lua │ ├── ComponentWrapper.lua │ ├── DateTime.lua │ ├── FadingState.lua │ ├── File.lua │ ├── FileTimeType.lua │ ├── FontManager.lua │ ├── FontSprite.lua │ ├── GameObject.lua │ ├── GameWindow.lua │ ├── GlobalHook.lua │ ├── GraphicsDevice.lua │ ├── HotKeyCombination.lua │ ├── Hotfix.lua │ ├── Image.lua │ ├── ImageInfo.lua │ ├── Input.lua │ ├── IntegratedClient.lua │ ├── IntegratedEnv.lua │ ├── Joint2D.lua │ ├── JointBody2D.lua │ ├── JointCollection2D.lua │ ├── Joystick.lua │ ├── JoystickDevice.lua │ ├── JsonUtil.lua │ ├── KeyTrigger.lua │ ├── Keyboard.lua │ ├── Keys.lua │ ├── ListenerID.lua │ ├── Log.lua │ ├── MathHelper.lua │ ├── Matrix.lua │ ├── MeshFilterComponentWrapper.lua │ ├── MeshRendererComponentWrapper.lua │ ├── Mouse.lua │ ├── NetMode.lua │ ├── ObbDouble.lua │ ├── Path.lua │ ├── Quaternion.lua │ ├── Random.lua │ ├── Rect.lua │ ├── RectFloat.lua │ ├── RectFloatEx.lua │ ├── Registry.lua │ ├── Rigidbody.lua │ ├── Schedule.lua │ ├── ScheduleID.lua │ ├── SerializableType.lua │ ├── Size.lua │ ├── SliderDirection.lua │ ├── Sprite.lua │ ├── SpriteExData.lua │ ├── TextAlignment.lua │ ├── TextBuffer.lua │ ├── TextEditLineType.lua │ ├── TextHorizontalOverflow.lua │ ├── TextStyle.lua │ ├── TextVerticalOverflow.lua │ ├── Texture.lua │ ├── TextureLocation.lua │ ├── TextureManager.lua │ ├── TexturePacker.lua │ ├── Time.lua │ ├── TimeDiff.lua │ ├── Touch.lua │ ├── Transform.lua │ ├── Transform2D.lua │ ├── TransformComponentWrapper.lua │ ├── UIButton.lua │ ├── UICanvas.lua │ ├── UIImage.lua │ ├── UIInputField.lua │ ├── UIJoystick.lua │ ├── UINode.lua │ ├── UINodeDrawLayer.lua │ ├── UIPanel.lua │ ├── UIScrollView.lua │ ├── UISerializable.lua │ ├── UISlices9.lua │ ├── UISlider.lua │ ├── UISprite.lua │ ├── UISpriteStyle.lua │ ├── UISwitch.lua │ ├── UIText.lua │ ├── UITexturePool.lua │ ├── Vector2.lua │ ├── Vector3.lua │ ├── Vector4.lua │ ├── cls.lua │ └── utf8string.lua ├── atlas_config.json ├── biome_types/ │ ├── Nether.json │ ├── Radiation.json │ ├── Space.json │ ├── Surface.json │ ├── TwilightForest.json │ └── Underground.json ├── biomes/ │ ├── nethers/ │ │ └── nether.json │ ├── surfaces/ │ │ ├── badland.json │ │ ├── desert.json │ │ ├── flesh.json │ │ ├── forest.json │ │ ├── jungle.json │ │ ├── mushroom_fields.json │ │ ├── ocean.json │ │ ├── snow_land.json │ │ ├── soft_snow_land.json │ │ ├── super_volcano.json │ │ ├── tainted_land.json │ │ └── volcano.json │ └── undergrounds/ │ ├── andesite_cave.json │ ├── blue_cave.json │ ├── blue_mushroom_cave.json │ ├── deep_ice_cave.json │ ├── deep_magma_cave.json │ ├── desert_cave.json │ ├── diorite_cave.json │ ├── flesh_cave.json │ ├── granite_cave.json │ ├── ice_cave.json │ ├── jungle_cave.json │ ├── lava_cave.json │ ├── magma_cave.json │ ├── mud_cave.json │ ├── mushroom_cave.json │ ├── normal_cave.json │ ├── stone_cave.json │ ├── tainted_cave.json │ └── waste_cave.json ├── block_entity_ai/ │ ├── BrewingEntity.json │ ├── BrewingEntity.lua │ ├── Chest30Entity.json │ ├── Chest30Entity.lua │ ├── IChestEntity.lua │ ├── IShooterEntity.lua │ ├── Shooter9Entity.json │ ├── Shooter9Entity.lua │ ├── SmeltEntity.json │ └── SmeltEntity.lua ├── block_presets/ │ ├── Anvil.json │ ├── Anvil.lua │ ├── Bed.json │ ├── Brewing.json │ ├── BurnerTower.json │ ├── Button.json │ ├── Cake.json │ ├── Cobweb.json │ ├── Cobweb.lua │ ├── CraftingTable.json │ ├── CraftingTable.lua │ ├── Crop.json │ ├── CrystalTower.json │ ├── DaylightTrigger.json │ ├── DoorClosed.json │ ├── DoorOpened.json │ ├── Enchantment.json │ ├── EnchantmentTable.lua │ ├── EndRod.json │ ├── EnderStorage.json │ ├── EnderStorage.lua │ ├── Facing.json │ ├── Farmland.json │ ├── Furnace.json │ ├── Furnace.lua │ ├── Grass.json │ ├── GrowGrass.json │ ├── HeartCrystal.json │ ├── HeartCrystal.lua │ ├── IceSmelt.json │ ├── InsideStorage.json │ ├── Kelp.json │ ├── MagmaBlock.json │ ├── MagmaBlock.lua │ ├── Melon.json │ ├── MelonStem.json │ ├── MoonlightTrigger.json │ ├── NetherAltar.json │ ├── NetherAltar.lua │ ├── Painting.json │ ├── PortalDoor.json │ ├── Pot.json │ ├── Pumpkin.json │ ├── RandomDisplay.json │ ├── RedstoneLamp.json │ ├── RedstonePlate.json │ ├── RedstonePlate.lua │ ├── RedstoneTorch.json │ ├── Sapling.json │ ├── Shooter.json │ ├── SnowQueenBall.json │ ├── SnowQueenBall.lua │ ├── SoulSand.json │ ├── SoulSand.lua │ ├── Sponge.json │ ├── Stalactite.json │ ├── Storage.json │ ├── Sugarcane.json │ ├── TNT.json │ ├── Torch.json │ ├── TrapStorage.json │ ├── Vine.json │ └── WetSponge.json ├── blocks/ │ ├── furnitures/ │ │ ├── beds/ │ │ │ ├── wooden_bed_black.json │ │ │ ├── wooden_bed_blue.json │ │ │ ├── wooden_bed_brown.json │ │ │ ├── wooden_bed_cyan.json │ │ │ ├── wooden_bed_gray.json │ │ │ ├── wooden_bed_green.json │ │ │ ├── wooden_bed_light_blue.json │ │ │ ├── wooden_bed_light_gray.json │ │ │ ├── wooden_bed_lime.json │ │ │ ├── wooden_bed_magenta.json │ │ │ ├── wooden_bed_orange.json │ │ │ ├── wooden_bed_pink.json │ │ │ ├── wooden_bed_purple.json │ │ │ ├── wooden_bed_red.json │ │ │ ├── wooden_bed_white.json │ │ │ └── wooden_bed_yellow.json │ │ ├── benches/ │ │ │ ├── bench_acacia.json │ │ │ ├── bench_birch.json │ │ │ ├── bench_dark_oak.json │ │ │ ├── bench_jungle.json │ │ │ ├── bench_nether.json │ │ │ ├── bench_oak.json │ │ │ ├── bench_palm.json │ │ │ ├── bench_spruce.json │ │ │ ├── bench_tainted.json │ │ │ └── bench_volcano.json │ │ ├── bookcases/ │ │ │ ├── bookcase_acacia.json │ │ │ ├── bookcase_birch.json │ │ │ ├── bookcase_dark_oak.json │ │ │ ├── bookcase_jungle.json │ │ │ ├── bookcase_nether.json │ │ │ ├── bookcase_oak.json │ │ │ ├── bookcase_palm.json │ │ │ ├── bookcase_spruce.json │ │ │ ├── bookcase_tainted.json │ │ │ └── bookcase_volcano.json │ │ ├── bosses/ │ │ │ ├── nether_altar.json │ │ │ └── snow_glass_ball.json │ │ ├── cabinet/ │ │ │ ├── cabinet_acacia.json │ │ │ ├── cabinet_birch.json │ │ │ ├── cabinet_dark_oak.json │ │ │ ├── cabinet_jungle.json │ │ │ ├── cabinet_nether.json │ │ │ ├── cabinet_oak.json │ │ │ ├── cabinet_palm.json │ │ │ ├── cabinet_spruce.json │ │ │ ├── cabinet_tainted.json │ │ │ └── cabinet_volcano.json │ │ ├── chairs/ │ │ │ ├── chair_acacia.json │ │ │ ├── chair_birch.json │ │ │ ├── chair_dark_oak.json │ │ │ ├── chair_jungle.json │ │ │ ├── chair_nether.json │ │ │ ├── chair_oak.json │ │ │ ├── chair_palm.json │ │ │ ├── chair_spruce.json │ │ │ ├── chair_tainted.json │ │ │ └── chair_volcano.json │ │ ├── chests/ │ │ │ ├── barrel.json │ │ │ ├── chest.json │ │ │ ├── ender_chest.json │ │ │ ├── nether_chest.json │ │ │ ├── shulker_box.json │ │ │ ├── stone_chest.json │ │ │ └── trapped_chest.json │ │ ├── doors/ │ │ │ ├── door_nether.json │ │ │ ├── door_nether_open.json │ │ │ ├── iron_door.json │ │ │ ├── iron_door_open.json │ │ │ ├── wooden_door_acacia.json │ │ │ ├── wooden_door_acacia_open.json │ │ │ ├── wooden_door_birch.json │ │ │ ├── wooden_door_birch_open.json │ │ │ ├── wooden_door_dark_oak.json │ │ │ ├── wooden_door_dark_oak_open.json │ │ │ ├── wooden_door_jungle.json │ │ │ ├── wooden_door_jungle_open.json │ │ │ ├── wooden_door_oak.json │ │ │ ├── wooden_door_oak_open.json │ │ │ ├── wooden_door_palm.json │ │ │ ├── wooden_door_palm_open.json │ │ │ ├── wooden_door_spruce.json │ │ │ ├── wooden_door_spruce_open.json │ │ │ ├── wooden_door_tainted.json │ │ │ ├── wooden_door_tainted_open.json │ │ │ ├── wooden_door_volcano.json │ │ │ └── wooden_door_volcano_open.json │ │ ├── farms/ │ │ │ ├── carrot.json │ │ │ ├── melon_stem.json │ │ │ ├── nether_wart.json │ │ │ ├── potato.json │ │ │ ├── pumpkin.json │ │ │ ├── pumpkin_carved.json │ │ │ ├── pumpkin_stem.json │ │ │ ├── sugar_cane.json │ │ │ ├── watermelon.json │ │ │ └── wheat.json │ │ ├── flowers/ │ │ │ ├── allium.json │ │ │ ├── azure_bluet.json │ │ │ ├── blue_orchid.json │ │ │ ├── dandelion.json │ │ │ ├── fern.json │ │ │ ├── lilac.json │ │ │ ├── orange_tulip.json │ │ │ ├── peony.json │ │ │ ├── pink_tulip.json │ │ │ ├── poppy.json │ │ │ ├── red_tulip.json │ │ │ ├── rose_bush.json │ │ │ ├── sunflower.json │ │ │ └── white_tulip.json │ │ ├── grasses/ │ │ │ ├── blood_grass.json │ │ │ ├── eyeball_grass.json │ │ │ ├── grass.json │ │ │ ├── large_eyeball_grass.json │ │ │ └── tainted_grass.json │ │ ├── lightings/ │ │ │ ├── candle.json │ │ │ ├── candle_holder.json │ │ │ ├── chandeliers.json │ │ │ ├── fire_lamp.json │ │ │ ├── jack_o_lantern.json │ │ │ ├── lantern.json │ │ │ └── nether_lamp.json │ │ ├── misc/ │ │ │ ├── anvil.json │ │ │ ├── book.json │ │ │ ├── brewing_stand.json │ │ │ ├── cake.json │ │ │ ├── campfire.json │ │ │ ├── cauldron.json │ │ │ ├── cobweb.json │ │ │ ├── crafting_table.json │ │ │ ├── enchantment_table.json │ │ │ ├── flower_pot.json │ │ │ ├── flower_pot_large.json │ │ │ ├── furnace.json │ │ │ ├── health_crystal.json │ │ │ ├── jukebox.json │ │ │ ├── pot.json │ │ │ ├── potion.json │ │ │ ├── sign.json │ │ │ ├── skull.json │ │ │ └── thorn.json │ │ ├── mushrooms/ │ │ │ ├── brown_mushroom.json │ │ │ ├── glowing_mushroom.json │ │ │ ├── large_brown_mushroom.json │ │ │ ├── large_poison_mushroom.json │ │ │ ├── large_red_mushroom.json │ │ │ ├── poison_mushroom.json │ │ │ └── red_mushroom.json │ │ ├── paintings/ │ │ │ ├── painting.json │ │ │ ├── painting_2x2.json │ │ │ ├── painting_2x4.json │ │ │ ├── painting_4x2.json │ │ │ ├── painting_4x4.json │ │ │ ├── painting_8x4.json │ │ │ ├── painting_8x6.json │ │ │ └── painting_8x8.json │ │ ├── plants/ │ │ │ └── bush.json │ │ ├── redstones/ │ │ │ ├── daylight_sensor.json │ │ │ ├── daylight_sensor_inverted.json │ │ │ ├── dispenser.json │ │ │ ├── lever.json │ │ │ ├── pressure_plates/ │ │ │ │ ├── pressure_plate_golden.json │ │ │ │ ├── pressure_plate_iron.json │ │ │ │ ├── pressure_plate_stone.json │ │ │ │ └── pressure_plate_wooden.json │ │ │ ├── redstone_lamp.json │ │ │ ├── stone_button.json │ │ │ └── wooden_button.json │ │ ├── rocks/ │ │ │ ├── rock.json │ │ │ └── rock_waste.json │ │ ├── saplings/ │ │ │ ├── sapling_acacia.json │ │ │ ├── sapling_bare_oak.json │ │ │ ├── sapling_birch.json │ │ │ ├── sapling_cactus.json │ │ │ ├── sapling_dark_oak.json │ │ │ ├── sapling_jungle.json │ │ │ ├── sapling_oak.json │ │ │ ├── sapling_palm.json │ │ │ ├── sapling_spruce.json │ │ │ ├── sapling_tainted.json │ │ │ └── sapling_volcano.json │ │ ├── seas/ │ │ │ ├── coral.json │ │ │ ├── kelp.json │ │ │ ├── sea_grass.json │ │ │ └── sea_shell.json │ │ ├── small_trees/ │ │ │ ├── small_tree_desert.json │ │ │ ├── small_tree_normal.json │ │ │ ├── small_tree_snowy.json │ │ │ ├── small_tree_tainted.json │ │ │ └── small_tree_waste.json │ │ ├── stabs/ │ │ │ ├── stab_hanging_tainted.json │ │ │ └── stab_tainted.json │ │ ├── stalactites/ │ │ │ ├── stalactite_andesite.json │ │ │ ├── stalactite_desert.json │ │ │ ├── stalactite_diorite.json │ │ │ ├── stalactite_granite.json │ │ │ ├── stalactite_hanging_andesite.json │ │ │ ├── stalactite_hanging_desert.json │ │ │ ├── stalactite_hanging_diorite.json │ │ │ ├── stalactite_hanging_granite.json │ │ │ ├── stalactite_hanging_ice.json │ │ │ ├── stalactite_hanging_small_andesite.json │ │ │ ├── stalactite_hanging_small_desert.json │ │ │ ├── stalactite_hanging_small_diorite.json │ │ │ ├── stalactite_hanging_small_granite.json │ │ │ ├── stalactite_hanging_small_ice.json │ │ │ ├── stalactite_hanging_small_stone.json │ │ │ ├── stalactite_hanging_small_tainted.json │ │ │ ├── stalactite_hanging_small_waste.json │ │ │ ├── stalactite_hanging_stone.json │ │ │ ├── stalactite_hanging_tainted.json │ │ │ ├── stalactite_hanging_waste.json │ │ │ ├── stalactite_ice.json │ │ │ ├── stalactite_small_andesite.json │ │ │ ├── stalactite_small_desert.json │ │ │ ├── stalactite_small_diorite.json │ │ │ ├── stalactite_small_granite.json │ │ │ ├── stalactite_small_ice.json │ │ │ ├── stalactite_small_stone.json │ │ │ ├── stalactite_small_tainted.json │ │ │ ├── stalactite_small_waste.json │ │ │ ├── stalactite_stone.json │ │ │ ├── stalactite_tainted.json │ │ │ └── stalactite_waste.json │ │ ├── stone_decoses/ │ │ │ ├── stone_decos_ice.json │ │ │ ├── stone_decos_mossy.json │ │ │ ├── stone_decos_normal.json │ │ │ ├── stone_decos_tainted.json │ │ │ └── stone_decos_waste.json │ │ ├── stone_pillars/ │ │ │ ├── stone_pillar_desert.json │ │ │ ├── stone_pillar_ice.json │ │ │ ├── stone_pillar_normal.json │ │ │ └── stone_pillar_tainted.json │ │ ├── tables/ │ │ │ ├── table_acacia.json │ │ │ ├── table_birch.json │ │ │ ├── table_dark_oak.json │ │ │ ├── table_jungle.json │ │ │ ├── table_nether.json │ │ │ ├── table_oak.json │ │ │ ├── table_palm.json │ │ │ ├── table_spruce.json │ │ │ ├── table_tainted.json │ │ │ └── table_volcano.json │ │ ├── tentacles/ │ │ │ ├── flesh_tentacle.json │ │ │ └── flesh_tentacle_hanging.json │ │ ├── torches/ │ │ │ ├── blue_torch.json │ │ │ ├── end_rod.json │ │ │ ├── green_torch.json │ │ │ ├── red_torch.json │ │ │ ├── redstone_torch.json │ │ │ ├── torch.json │ │ │ ├── white_torch.json │ │ │ └── yellow_torch.json │ │ └── vines/ │ │ ├── eyeball_vine.json │ │ ├── tainted_vine.json │ │ └── vine.json │ └── tiles/ │ ├── andesites/ │ │ ├── andesite.json │ │ └── andesite_polished.json │ ├── auroras/ │ │ ├── aurora_block.json │ │ └── aurora_pillar.json │ ├── diorites/ │ │ ├── diorite.json │ │ └── diorite_polished.json │ ├── ends/ │ │ ├── end_stone.json │ │ └── end_stone_brick.json │ ├── fences/ │ │ ├── cobblestone_fence.json │ │ ├── fence_acacia.json │ │ ├── fence_birch.json │ │ ├── fence_dark_oak.json │ │ ├── fence_jungle.json │ │ ├── fence_nether.json │ │ ├── fence_oak.json │ │ ├── fence_palm.json │ │ ├── fence_spruce.json │ │ ├── fence_tainted.json │ │ ├── fence_volcano.json │ │ ├── iron_bar.json │ │ └── mossy_cobblestone_fence.json │ ├── fleshes/ │ │ ├── flesh_dirt.json │ │ ├── flesh_gut.json │ │ └── flesh_stone.json │ ├── glasses/ │ │ ├── glass.json │ │ ├── stained_glass_black.json │ │ ├── stained_glass_blue.json │ │ ├── stained_glass_brown.json │ │ ├── stained_glass_cyan.json │ │ ├── stained_glass_gray.json │ │ ├── stained_glass_green.json │ │ ├── stained_glass_light_blue.json │ │ ├── stained_glass_light_gray.json │ │ ├── stained_glass_lime.json │ │ ├── stained_glass_magenta.json │ │ ├── stained_glass_orange.json │ │ ├── stained_glass_pink.json │ │ ├── stained_glass_purple.json │ │ ├── stained_glass_red.json │ │ ├── stained_glass_white.json │ │ └── stained_glass_yellow.json │ ├── granites/ │ │ ├── granite.json │ │ └── granite_polished.json │ ├── ices/ │ │ ├── blue_ice.json │ │ ├── ice.json │ │ ├── ice_brick.json │ │ ├── ice_cobblestone.json │ │ ├── ice_packed.json │ │ └── ice_thin.json │ ├── misc/ │ │ ├── bedrock.json │ │ ├── bone_block.json │ │ ├── brick.json │ │ ├── clay.json │ │ ├── coarse_dirt.json │ │ ├── dirt.json │ │ ├── dirt.mdp │ │ ├── dirt2.mdp │ │ ├── dried_kelp_block.json │ │ ├── farmland.json │ │ ├── gravel.json │ │ ├── hay_bale.json │ │ ├── obsidian.json │ │ ├── slime_block.json │ │ └── tnt.json │ ├── mushrooms/ │ │ ├── brown_mushroom_block.json │ │ ├── mushroom_stem.json │ │ ├── mycelium.json │ │ └── red_mushroom_block.json │ ├── nethers/ │ │ ├── glowstone.json │ │ ├── nether_brick.json │ │ ├── netherrack.json │ │ ├── red_nether_brick.json │ │ └── soul_sand.json │ ├── ore_blocks/ │ │ ├── block_coal.json │ │ ├── block_diamond.json │ │ ├── block_emerald.json │ │ ├── block_gold.json │ │ ├── block_iron.json │ │ ├── block_lapis.json │ │ ├── block_netherite.json │ │ ├── block_quartz.json │ │ └── block_redstone.json │ ├── ores/ │ │ ├── ore_ancient_debris.json │ │ ├── ore_coal.json │ │ ├── ore_copper.json │ │ ├── ore_diamond.json │ │ ├── ore_emerald.json │ │ ├── ore_gold.json │ │ ├── ore_iron.json │ │ ├── ore_lapis.json │ │ ├── ore_lead.json │ │ ├── ore_nether_quartz.json │ │ ├── ore_redstone.json │ │ ├── ore_silver.json │ │ └── ore_tin.json │ ├── planks/ │ │ ├── plank_acacia.json │ │ ├── plank_birch.json │ │ ├── plank_dark_oak.json │ │ ├── plank_jungle.json │ │ ├── plank_oak.json │ │ ├── plank_palm.json │ │ ├── plank_spruce.json │ │ ├── plank_tainted.json │ │ └── plank_volcano.json │ ├── platforms/ │ │ ├── platform_acacia.json │ │ ├── platform_birch.json │ │ ├── platform_dark_oak.json │ │ ├── platform_end_stone.json │ │ ├── platform_jungle.json │ │ ├── platform_nether_brick.json │ │ ├── platform_oak.json │ │ ├── platform_palm.json │ │ ├── platform_prismarine.json │ │ ├── platform_prismarine_dark.json │ │ ├── platform_purpur.json │ │ ├── platform_quartz.json │ │ ├── platform_red_sand_stone.json │ │ ├── platform_sandstone.json │ │ ├── platform_spruce.json │ │ ├── platform_stone_brick.json │ │ ├── platform_tainted.json │ │ └── platform_volcano.json │ ├── prismarines/ │ │ ├── prismarine.json │ │ ├── prismarine_brick.json │ │ ├── prismarine_dark.json │ │ ├── prismarine_mud.json │ │ └── sea_lantern.json │ ├── purpurs/ │ │ └── purpur_block.json │ ├── red_sands/ │ │ ├── red_sand.json │ │ ├── red_sand_carved.json │ │ ├── red_sand_smooth.json │ │ └── red_sand_stone.json │ ├── sands/ │ │ ├── sand.json │ │ ├── sandstone.json │ │ ├── sandstone_carved.json │ │ └── sandstone_smooth.json │ ├── snows/ │ │ ├── snow.json │ │ └── snow_brick.json │ ├── sponges/ │ │ ├── sponge.json │ │ └── wet_sponge.json │ ├── stones/ │ │ ├── cobblestone.json │ │ ├── cobblestone_mossy.json │ │ ├── stone.json │ │ ├── stone_brick.json │ │ ├── stone_brick_carved.json │ │ ├── stone_brick_cracked.json │ │ └── stone_brick_mossy.json │ ├── tainted/ │ │ ├── tainted_dirt.json │ │ └── tainted_stone.json │ ├── terracottas/ │ │ ├── terracotta_black.json │ │ ├── terracotta_blue.json │ │ ├── terracotta_brown.json │ │ ├── terracotta_cyan.json │ │ ├── terracotta_gray.json │ │ ├── terracotta_green.json │ │ ├── terracotta_light_blue.json │ │ ├── terracotta_light_gray.json │ │ ├── terracotta_lime.json │ │ ├── terracotta_magenta.json │ │ ├── terracotta_orange.json │ │ ├── terracotta_pink.json │ │ ├── terracotta_purple.json │ │ ├── terracotta_red.json │ │ ├── terracotta_white.json │ │ └── terracotta_yellow.json │ ├── test/ │ │ ├── blue_mushroom.json │ │ ├── blue_mushroom_dirt.json │ │ ├── blue_mushroom_stem.json │ │ ├── ice_cobblestone_hard.json │ │ ├── large_blue_mushroom.json │ │ ├── lava_block_pile.json │ │ ├── pile_cobblestone.json │ │ ├── snow_soft.json │ │ ├── volcano_burn_stone.json │ │ └── volcano_cobblestone.json │ ├── volcanos/ │ │ ├── magma_block.json │ │ ├── volcano_dirt.json │ │ └── volcano_stone.json │ ├── woods/ │ │ ├── wood_acacia.json │ │ ├── wood_birch.json │ │ ├── wood_dark_oak.json │ │ ├── wood_jungle.json │ │ ├── wood_oak.json │ │ ├── wood_palm.json │ │ ├── wood_spruce.json │ │ ├── wood_stripped_acacia.json │ │ ├── wood_stripped_birch.json │ │ ├── wood_stripped_dark_oak.json │ │ ├── wood_stripped_jungle.json │ │ ├── wood_stripped_oak.json │ │ ├── wood_stripped_palm.json │ │ ├── wood_stripped_spruce.json │ │ ├── wood_stripped_tainted.json │ │ ├── wood_stripped_volcano.json │ │ ├── wood_tainted.json │ │ └── wood_volcano.json │ └── wools/ │ ├── wool_black.json │ ├── wool_blue.json │ ├── wool_brown.json │ ├── wool_cyan.json │ ├── wool_gray.json │ ├── wool_green.json │ ├── wool_light_blue.json │ ├── wool_light_gray.json │ ├── wool_lime.json │ ├── wool_magenta.json │ ├── wool_orange.json │ ├── wool_pink.json │ ├── wool_purple.json │ ├── wool_red.json │ ├── wool_white.json │ └── wool_yellow.json ├── bone2d/ │ ├── ItemJointHelper.lua │ ├── NpcHumanAnimator.lua │ ├── NpcHumanBoneInfo.lua │ ├── NpcHumanClips.lua │ ├── NpcHumanJoints.lua │ ├── NpcHumanJointsTall.lua │ ├── PlayerAnimator.lua │ ├── PlayerBoneInfo.lua │ ├── PlayerClips.lua │ └── PlayerJoints.lua ├── buffs/ │ ├── BaseBuffProxy.lua │ ├── BuffBlindness.lua │ ├── BuffFire.lua │ ├── BuffGlowing.lua │ ├── BuffHappiness.lua │ ├── BuffHealthBoost.lua │ ├── BuffHunger.lua │ ├── BuffHurt.lua │ ├── BuffInvisibility.lua │ ├── BuffJumpBoost.lua │ ├── BuffLevitation.lua │ ├── BuffMiningFatigue.lua │ ├── BuffPoison.lua │ ├── BuffProxies.lua │ ├── BuffRegeneration.lua │ ├── BuffResistance.lua │ ├── BuffSadness.lua │ ├── BuffSlowFalling.lua │ ├── BuffSlowMining.lua │ ├── BuffSlowness.lua │ ├── BuffSpeed.lua │ ├── BuffStrength.lua │ ├── BuffVision.lua │ ├── BuffWeak.lua │ ├── BuffWither.lua │ ├── absorption.json │ ├── blindness.json │ ├── fire.json │ ├── fire_defense.json │ ├── glowing.json │ ├── happiness.json │ ├── health_boost.json │ ├── health_cold.json │ ├── hunger.json │ ├── hurt.json │ ├── invisibility.json │ ├── jump_boost.json │ ├── levitation.json │ ├── luck.json │ ├── mining_fatique.json │ ├── nausea.json │ ├── poison.json │ ├── regeneration.json │ ├── resistance.json │ ├── sadness.json │ ├── slow_falling.json │ ├── slow_mining.json │ ├── slowness.json │ ├── speed.json │ ├── strength.json │ ├── vision.json │ ├── water_breathing.json │ ├── weak.json │ └── wither.json ├── buildings/ │ ├── aurora_palace/ │ │ └── aurora_palace.json │ ├── by_house/ │ │ └── by_house.json │ ├── desert_house/ │ │ └── desert_house.json │ ├── end_outpost/ │ │ └── end_outpost.json │ ├── forest_house/ │ │ └── forest_house.json │ ├── fossils/ │ │ └── fossils.json │ ├── heart/ │ │ └── heart.json │ ├── jungle_temple/ │ │ └── jungle_temple.json │ ├── mineshaft/ │ │ └── mineshaft.json │ ├── mini_house/ │ │ └── mini_house.json │ ├── monument_ocean/ │ │ └── monument_ocean.json │ ├── nether_fortress/ │ │ └── nether_fortress.json │ ├── pyramid/ │ │ └── pyramid.json │ ├── under_dark_oak_cabin/ │ │ └── under_dark_oak_cabin.json │ ├── under_desert_cabin/ │ │ └── under_desert_cabin.json │ ├── under_jungle_cabin/ │ │ └── under_jungle_cabin.json │ ├── under_oak_cabin/ │ │ └── under_oak_cabin.json │ ├── under_spruce_cabin/ │ │ └── under_spruce_cabin.json │ ├── under_stone_cabin/ │ │ └── under_stone_cabin.json │ └── under_tainted_cabin/ │ └── under_tainted_cabin.json ├── client/ │ ├── CameraInGame.lua │ ├── ControlAimMode.lua │ ├── InputControl.lua │ ├── MenuJoinInfo.lua │ ├── ModClient.lua │ ├── ModMusicSceneProxy.lua │ ├── MusicCopyright.lua │ ├── MusicPool.lua │ ├── MusicScene.lua │ ├── MusicSceneProxy.lua │ └── MusicSystem.lua ├── constants/ │ └── Constants.lua ├── contents/ │ ├── IGNORE_THIS_FOLDER.txt │ └── commands/ │ ├── admin.json │ ├── admin.lua │ ├── autosave-off.json │ ├── autosave-on.json │ ├── autosaveoff.lua │ ├── autosaveon.lua │ ├── banip.json │ ├── banip.lua │ ├── blacklist.json │ ├── blacklist.lua │ ├── blueyoshiiscool.json │ ├── buff.json │ ├── buff.lua │ ├── buffp.json │ ├── byiscool.lua │ ├── clear.json │ ├── clear.lua │ ├── clearp.json │ ├── day.json │ ├── day.lua │ ├── dayf.json │ ├── dayf.lua │ ├── daylock.json │ ├── daylock.lua │ ├── dayspeed.json │ ├── dayspeed.lua │ ├── dayunlock.json │ ├── dayunlock.lua │ ├── effect.json │ ├── effect.lua │ ├── enchant.json │ ├── enchant.lua │ ├── ex.json │ ├── ex.lua │ ├── exp.json │ ├── gamemode.json │ ├── gamemodep.json │ ├── gamemodep.lua │ ├── gamemodew.json │ ├── gamemodew.lua │ ├── give.json │ ├── give.lua │ ├── givep.json │ ├── home.json │ ├── home.lua │ ├── kick.json │ ├── kick.lua │ ├── kickall.json │ ├── kickall.lua │ ├── kill.json │ ├── kill.lua │ ├── killp.json │ ├── master.json │ ├── master.lua │ ├── me.json │ ├── me.lua │ ├── msg.json │ ├── msg.lua │ ├── noadmin.json │ ├── noadmin.lua │ ├── nobanip.json │ ├── nobanip.lua │ ├── nomaster.json │ ├── nomaster.lua │ ├── npc.json │ ├── npc.lua │ ├── players.json │ ├── players.lua │ ├── port.json │ ├── port.lua │ ├── pvp-off.json │ ├── pvp-on.json │ ├── pvpoff.lua │ ├── pvpon.lua │ ├── safeblow-off.json │ ├── safeblow-on.json │ ├── safeblowoff.lua │ ├── safeblowon.lua │ ├── save.json │ ├── save.lua │ ├── say.json │ ├── say.lua │ ├── spawn.json │ ├── spawn.lua │ ├── state.json │ ├── stopwea.json │ ├── stopwea.lua │ ├── tp.json │ ├── tp.lua │ ├── tpp.json │ ├── wea.json │ └── wea.lua ├── data/ │ ├── backgrounds.json │ ├── block_config.json │ ├── item_config.json │ ├── sound_config.json │ └── sounds.json ├── effect_ai/ │ ├── Explosion.json │ ├── GlowingFlow.json │ ├── Gore.json │ └── Smoke.json ├── effects/ │ ├── arrow_paticular.json │ ├── chasting_word.json │ ├── chip.json │ ├── chip_fast.json │ ├── circle.json │ ├── ender_flash.json │ ├── exp_paticular.json │ ├── explosion.json │ ├── fallen_flame_star.json │ ├── fire.json │ ├── fire_flame.json │ ├── fire_flame_long.json │ ├── fire_smoke.json │ ├── flame_star.json │ ├── flash.json │ ├── flash2.json │ ├── flow_particular.json │ ├── gores/ │ │ ├── gore_angry_skeleton.json │ │ ├── gore_arrow_zombie.json │ │ ├── gore_bald_zombie.json │ │ ├── gore_bat.json │ │ ├── gore_black_rabbit.json │ │ ├── gore_black_skeleton.json │ │ ├── gore_blood_bat.json │ │ ├── gore_blood_eye.json │ │ ├── gore_blood_skeleton.json │ │ ├── gore_bone_lee.json │ │ ├── gore_bone_officer.json │ │ ├── gore_bone_sniper.json │ │ ├── gore_boney_skeleton.json │ │ ├── gore_brown_mushroom_cow.json │ │ ├── gore_brown_rabbit.json │ │ ├── gore_chicken.json │ │ ├── gore_cow.json │ │ ├── gore_creeper.json │ │ ├── gore_cursed_skull.json │ │ ├── gore_dark_mage.json │ │ ├── gore_dead_mage.json │ │ ├── gore_doge_zombie.json │ │ ├── gore_dolphin.json │ │ ├── gore_drowned.json │ │ ├── gore_dungeon_creeper.json │ │ ├── gore_dungeon_knight.json │ │ ├── gore_eagle.json │ │ ├── gore_enderman.json │ │ ├── gore_evil.json │ │ ├── gore_evoker.json │ │ ├── gore_eye_guard.json │ │ ├── gore_eye_guard_laser.json │ │ ├── gore_flower_creeper.json │ │ ├── gore_fly_eye.json │ │ ├── gore_fly_mouth.json │ │ ├── gore_fly_skeleton.json │ │ ├── gore_giant_cursed_skull.json │ │ ├── gore_grass_walker.json │ │ ├── gore_grim_reaper.json │ │ ├── gore_husk.json │ │ ├── gore_ice_sprite_girl.json │ │ ├── gore_iron_zombie.json │ │ ├── gore_jungle_bat.json │ │ ├── gore_large_bat.json │ │ ├── gore_large_jungle_bat.json │ │ ├── gore_large_spider.json │ │ ├── gore_lava_snake_body.json │ │ ├── gore_lava_snake_head.json │ │ ├── gore_lava_snake_tail.json │ │ ├── gore_mad_skeleton.json │ │ ├── gore_mad_skeleton_armed.json │ │ ├── gore_mad_skeleton_tall.json │ │ ├── gore_mad_skeleton_tall_armed.json │ │ ├── gore_mad_skeleton_tall_helmet_armed.json │ │ ├── gore_magma_birdo.json │ │ ├── gore_man_eater.json │ │ ├── gore_mummy.json │ │ ├── gore_paimon.json │ │ ├── gore_phantom.json │ │ ├── gore_pig.json │ │ ├── gore_ragged_mage.json │ │ ├── gore_red_mage.json │ │ ├── gore_red_mushroom_cow.json │ │ ├── gore_red_phantom.json │ │ ├── gore_rock_man.json │ │ ├── gore_sheep.json │ │ ├── gore_shulker.json │ │ ├── gore_skeleton_assaulter.json │ │ ├── gore_skeleton_blue_armed.json │ │ ├── gore_skeleton_blue_armed_masked.json │ │ ├── gore_skeleton_blue_knight.json │ │ ├── gore_skeleton_fire_armed.json │ │ ├── gore_skeleton_fire_armed_swordsman.json │ │ ├── gore_skeleton_guard.json │ │ ├── gore_skeleton_kid.json │ │ ├── gore_skull.json │ │ ├── gore_small_hell_eater.json │ │ ├── gore_snow_guner.json │ │ ├── gore_spider.json │ │ ├── gore_squid.json │ │ ├── gore_tainted_creeper.json │ │ ├── gore_tainted_skeleton.json │ │ ├── gore_turtle.json │ │ ├── gore_undead_miner.json │ │ ├── gore_vampire_miner.json │ │ ├── gore_villager_zombie.json │ │ ├── gore_waste_mummy.json │ │ ├── gore_white_rabbit.json │ │ ├── gore_wither_skeleton.json │ │ ├── gore_worm_body.json │ │ ├── gore_worm_head.json │ │ ├── gore_worm_tail.json │ │ ├── gore_yellow_rabbit.json │ │ ├── gore_zombie.json │ │ └── gore_zombie_pigman.json │ ├── heal.json │ ├── laser_flash.json │ ├── liquid_paticular.json │ ├── poison.json │ ├── pot_break.json │ ├── redstone_smoke.json │ ├── smoke.json │ ├── star.json │ └── white_smoke.json ├── enchantments/ │ ├── BaseEnchantmentProxy.lua │ ├── EnchantmentAquaAffinity.lua │ ├── EnchantmentBlastProtection.lua │ ├── EnchantmentDepthStrider.lua │ ├── EnchantmentFeatherFalling.lua │ ├── EnchantmentFireProtection.lua │ ├── EnchantmentFrostWalker.lua │ ├── EnchantmentKnockBack.lua │ ├── EnchantmentPhyton.lua │ ├── EnchantmentProjectileProtection.lua │ ├── EnchantmentProtection.lua │ ├── EnchantmentProxies.lua │ ├── EnchantmentRespiration.lua │ ├── EnchantmentSharpness.lua │ ├── EnchantmentThorns.lua │ ├── aqua_affinity.json │ ├── bane_of_arthropods.json │ ├── blast_protection.json │ ├── curse_of_binding.json │ ├── curse_of_vanishing.json │ ├── depth_strider.json │ ├── efficiency.json │ ├── feather_falling.json │ ├── fire_aspect.json │ ├── fire_protection.json │ ├── flame.json │ ├── fortune.json │ ├── frost_walker.json │ ├── infinity.json │ ├── knockback.json │ ├── looting.json │ ├── luck_of_the_sea.json │ ├── lure.json │ ├── multishot.json │ ├── phyton.json │ ├── piercing.json │ ├── power.json │ ├── projectile_protection.json │ ├── protection.json │ ├── punch.json │ ├── quick_charge.json │ ├── respiration.json │ ├── sharpness.json │ ├── silk_touch.json │ ├── smite.json │ ├── thorns.json │ └── unbreaking.json ├── game_debug.json ├── init.lua ├── item_ai/ │ ├── Axe.json │ ├── Axe.lua │ ├── BaseAccessory.lua │ ├── BaseRangedWeapon.lua │ ├── BaseTool.lua │ ├── BlueTalisman.json │ ├── BlueTalisman.lua │ ├── BossCaller.json │ ├── BossCaller.lua │ ├── Bow.json │ ├── Bow.lua │ ├── CrisonEye.json │ ├── CrisonEye.lua │ ├── DungeonEater.json │ ├── DungeonEater.lua │ ├── EnderMirror.json │ ├── EnderMirror.lua │ ├── Food.json │ ├── Food.lua │ ├── Gun.json │ ├── Gun.lua │ ├── InfBow.json │ ├── InfBow.lua │ ├── Ingot.json │ ├── Ingot.lua │ ├── LavaNecklace.json │ ├── LavaNecklace.lua │ ├── LavaSword.json │ ├── LavaSword.lua │ ├── LightingTalisman.json │ ├── LightingTalisman.lua │ ├── Pickaxe.json │ ├── Pickaxe.lua │ ├── Potion.json │ ├── Potion.lua │ ├── RedTalisman.json │ ├── RedTalisman.lua │ ├── RocketBoost.json │ ├── RocketBoost.lua │ ├── Staff.json │ ├── Staff.lua │ ├── Sword.json │ ├── Sword.lua │ ├── Torch.json │ ├── Torch.lua │ ├── cross_bow.json │ ├── cross_bow.lua │ ├── dirt.json │ ├── dirt.lua │ ├── drill.json │ ├── drill.lua │ ├── fire_gun.json │ ├── fishing_rod.json │ ├── fishing_rod.lua │ ├── laser_gun.json │ ├── magic_sword.json │ ├── rocket_launcher.json │ ├── saw.json │ ├── swordA.json │ └── swordA.lua ├── items/ │ ├── accessory/ │ │ ├── blue_talisman.json │ │ ├── gold_talisman.json │ │ ├── heart_talisman.json │ │ ├── lava_necklace.json │ │ ├── lighting_talisman.json │ │ └── rocket_boost.json │ ├── armors/ │ │ ├── ancient/ │ │ │ ├── ancient_chestplate.json │ │ │ ├── ancient_helmet.json │ │ │ └── ancient_leggings.json │ │ ├── bronze/ │ │ │ ├── bronze_chestplate.json │ │ │ ├── bronze_helmet.json │ │ │ └── bronze_leggings.json │ │ ├── copper/ │ │ │ ├── copper_chestplate.json │ │ │ ├── copper_helmet.json │ │ │ └── copper_leggings.json │ │ ├── diamond/ │ │ │ ├── diamond_chestplate.json │ │ │ ├── diamond_helmet.json │ │ │ └── diamond_leggings.json │ │ ├── fine_tin/ │ │ │ ├── fine_tin_chestplate.json │ │ │ ├── fine_tin_helmet.json │ │ │ └── fine_tin_leggings.json │ │ ├── flesh/ │ │ │ ├── flesh_chestplate.json │ │ │ ├── flesh_helmet.json │ │ │ └── flesh_leggings.json │ │ ├── gold/ │ │ │ ├── golden_chestplate.json │ │ │ ├── golden_helmet.json │ │ │ └── golden_leggings.json │ │ ├── iron/ │ │ │ ├── iron_chestplate.json │ │ │ ├── iron_helmet.json │ │ │ └── iron_leggings.json │ │ ├── knight/ │ │ │ ├── knight_chestplate.json │ │ │ ├── knight_helmet.json │ │ │ └── knight_leggings.json │ │ ├── lava/ │ │ │ ├── lava_chestplate.json │ │ │ ├── lava_helmet.json │ │ │ └── lava_leggings.json │ │ ├── lead/ │ │ │ ├── lead_chestplate.json │ │ │ ├── lead_helmet.json │ │ │ └── lead_leggings.json │ │ ├── leather/ │ │ │ ├── leather_chestplate.json │ │ │ ├── leather_helmet.json │ │ │ └── leather_leggings.json │ │ ├── magic_gold/ │ │ │ ├── magic_gold_chestplate.json │ │ │ ├── magic_gold_helmet.json │ │ │ └── magic_gold_leggings.json │ │ ├── magic_shadow/ │ │ │ ├── magic_shadow_chestplate.json │ │ │ ├── magic_shadow_helmet.json │ │ │ └── magic_shadow_leggings.json │ │ ├── magic_silver/ │ │ │ ├── magic_silver_chestplate.json │ │ │ ├── magic_silver_helmet.json │ │ │ └── magic_silver_leggings.json │ │ ├── nether/ │ │ │ ├── nether_chestplate.json │ │ │ ├── nether_helmet.json │ │ │ └── nether_leggings.json │ │ ├── pumpkin/ │ │ │ └── pumpkin_helmet.json │ │ ├── shadow/ │ │ │ ├── shadow_chestplate.json │ │ │ ├── shadow_helmet.json │ │ │ └── shadow_leggings.json │ │ ├── silver/ │ │ │ ├── silver_chestplate.json │ │ │ ├── silver_helmet.json │ │ │ └── silver_leggings.json │ │ ├── star/ │ │ │ ├── star_chestplate.json │ │ │ ├── star_helmet.json │ │ │ └── star_leggings.json │ │ ├── steel/ │ │ │ ├── steel_chestplate.json │ │ │ ├── steel_helmet.json │ │ │ └── steel_leggings.json │ │ ├── super_diamond/ │ │ │ ├── super_diamond_chestplate.json │ │ │ ├── super_diamond_helmet.json │ │ │ └── super_diamond_leggings.json │ │ └── tin/ │ │ ├── tin_chestplate.json │ │ ├── tin_helmet.json │ │ └── tin_leggings.json │ ├── arrows/ │ │ ├── blood_arrow.json │ │ ├── blue_arrow.json │ │ ├── ice_arrow.json │ │ ├── lighting_arrow.json │ │ ├── star_arrow.json │ │ ├── sword_arrow.json │ │ └── wooden_arrow.json │ ├── axes/ │ │ ├── bronze_axe.json │ │ ├── copper_axe.json │ │ ├── diamond_axe.json │ │ ├── golden_axe.json │ │ ├── grass_axe.json │ │ ├── iron_axe.json │ │ ├── lead_axe.json │ │ ├── nether_axe.json │ │ ├── silver_axe.json │ │ ├── steel_axe.json │ │ ├── stone_axe.json │ │ ├── tin_axe.json │ │ └── wooden_axe.json │ ├── bombs/ │ │ ├── bomb.json │ │ ├── glow_bomb.json │ │ └── grenade.json │ ├── boomerangs/ │ │ ├── boomerang.json │ │ ├── fire_boomerang.json │ │ └── wooden_boomerang.json │ ├── bows/ │ │ ├── blood_bow.json │ │ ├── blue_shot_bow.json │ │ ├── blue_stone_bow.json │ │ ├── chast_bow.json │ │ ├── cross_bow.json │ │ ├── curse_bow.json │ │ ├── ice_bow.json │ │ ├── lighting_bow.json │ │ ├── shot_bow.json │ │ ├── super_cross_bow.json │ │ ├── super_fire_shot_bow.json │ │ ├── super_spike_shot_bow.json │ │ └── wooden_bow.json │ ├── buckets/ │ │ ├── bucket_empty.json │ │ ├── bucket_lava.json │ │ ├── bucket_milk.json │ │ └── bucket_water.json │ ├── bullets/ │ │ ├── fire_bullet.json │ │ ├── iron_bullet.json │ │ └── silver_bullet.json │ ├── dyes/ │ │ ├── dye_black.json │ │ ├── dye_blue.json │ │ ├── dye_brown.json │ │ ├── dye_cyan.json │ │ ├── dye_gray.json │ │ ├── dye_green.json │ │ ├── dye_light_blue.json │ │ ├── dye_light_gray.json │ │ ├── dye_lime.json │ │ ├── dye_magenta.json │ │ ├── dye_orange.json │ │ ├── dye_pink.json │ │ ├── dye_purple.json │ │ ├── dye_red.json │ │ ├── dye_white.json │ │ └── dye_yellow.json │ ├── foods/ │ │ ├── apple.json │ │ ├── baked_potato.json │ │ ├── beetroot.json │ │ ├── bread.json │ │ ├── cake_piece.json │ │ ├── carrot.json │ │ ├── chorus_fruit.json │ │ ├── cooked_chicken.json │ │ ├── cooked_cod.json │ │ ├── cooked_mutton.json │ │ ├── cooked_porkchop.json │ │ ├── cooked_rabbit.json │ │ ├── cooked_salmon.json │ │ ├── cookie.json │ │ ├── golden_apple.json │ │ ├── golden_carrot.json │ │ ├── melon_slice.json │ │ ├── mushroom_stew.json │ │ ├── potato.json │ │ ├── pufferfish.json │ │ ├── pumpkin_pie.json │ │ ├── raw_beef.json │ │ ├── raw_chicken.json │ │ ├── raw_cod.json │ │ ├── raw_mutton.json │ │ ├── raw_porkchop.json │ │ ├── raw_rabbit.json │ │ ├── raw_salmon.json │ │ └── steak.json │ ├── guns/ │ │ ├── fire_gun.json │ │ ├── fire_shooter.json │ │ ├── handgun.json │ │ ├── rifle.json │ │ ├── rocket_launcher.json │ │ ├── shotgun.json │ │ └── sniper.json │ ├── hoes/ │ │ ├── stone_hoe.json │ │ └── wooden_hoe.json │ ├── ingots/ │ │ ├── aluminum_ingot.json │ │ ├── antimony_ingot.json │ │ ├── beryllium_ingot.json │ │ ├── bismuth_ingot.json │ │ ├── bronze_ingot.json │ │ ├── chromium_ingot.json │ │ ├── cobalt_ingot.json │ │ ├── copper_ingot.json │ │ ├── gallium_ingot.json │ │ ├── gold_ingot.json │ │ ├── indium_ingot.json │ │ ├── iridium_ingot.json │ │ ├── iron_ingot.json │ │ ├── lead_ingot.json │ │ ├── lithium_ingot.json │ │ ├── magnesium_ingot.json │ │ ├── manganese_ingot.json │ │ ├── molybdenum_ingot.json │ │ ├── netherite_ingot.json │ │ ├── nickel_ingot.json │ │ ├── niobium_ingot.json │ │ ├── osmium_ingot.json │ │ ├── palladium_ingot.json │ │ ├── platinum_ingot.json │ │ ├── redstone_ingot.json │ │ ├── rhenium_ingot.json │ │ ├── silver_ingot.json │ │ ├── sodium_ingot.json │ │ ├── steel_ingot.json │ │ ├── tantalum_ingot.json │ │ ├── tin_ingot.json │ │ ├── titanium_ingot.json │ │ ├── vanadium_ingot.json │ │ ├── vibranium_ingot.json │ │ ├── wolfram_ingot.json │ │ ├── yttrium_ingot.json │ │ └── zinc_ingot.json │ ├── loots/ │ │ ├── guardian.json │ │ ├── nether_destroyer_loot.json │ │ └── snow_queen_loot.json │ ├── magic/ │ │ ├── bone_gun.json │ │ ├── dark_staff.json │ │ ├── fire_book.json │ │ ├── mini_laser_gun.json │ │ ├── mini_rocket_launcher.json │ │ ├── soul_laserer.json │ │ ├── super_shark.json │ │ ├── super_shark_ghost.json │ │ ├── sword_fish.json │ │ ├── sword_fish_gun.json │ │ └── water_book.json │ ├── misc/ │ │ ├── blaze_powder.json │ │ ├── blaze_rod.json │ │ ├── bone.json │ │ ├── bone_meal.json │ │ ├── book.json │ │ ├── bowl.json │ │ ├── charcoal.json │ │ ├── clay.json │ │ ├── coal.json │ │ ├── cocoa_bean.json │ │ ├── diamond.json │ │ ├── dried_kelp.json │ │ ├── egg.json │ │ ├── emerald.json │ │ ├── enchanted_book.json │ │ ├── ender_eye.json │ │ ├── ender_pearl.json │ │ ├── feather.json │ │ ├── fermented_spider_eye.json │ │ ├── fire_charge.json │ │ ├── firework_rocket.json │ │ ├── fishing_rod.json │ │ ├── flint.json │ │ ├── ghast_tear.json │ │ ├── glistering_melon_slice.json │ │ ├── glow_ball.json │ │ ├── glowstone_dust.json │ │ ├── gray_feather.json │ │ ├── gunpowder.json │ │ ├── heart_of_sea.json │ │ ├── ink_sac.json │ │ ├── kelp.json │ │ ├── lapis_lazuli.json │ │ ├── leather.json │ │ ├── lighter.json │ │ ├── magma_cream.json │ │ ├── mana_piece.json │ │ ├── map_paper.json │ │ ├── nautilus_shell.json │ │ ├── nether_brick.json │ │ ├── nether_star.json │ │ ├── nether_wart.json │ │ ├── netherite_scrap.json │ │ ├── paper.json │ │ ├── phantom_membrane.json │ │ ├── popped_chorus_fruits.json │ │ ├── prismarine_crystals.json │ │ ├── prismarine_shard.json │ │ ├── quartz.json │ │ ├── rabbit_foot.json │ │ ├── rabbit_hide.json │ │ ├── red_brick.json │ │ ├── redstone.json │ │ ├── rocket.json │ │ ├── rotten_flesh.json │ │ ├── scute.json │ │ ├── shears.json │ │ ├── shulker_shell.json │ │ ├── slimeball.json │ │ ├── snowball.json │ │ ├── spider_eye.json │ │ ├── stick.json │ │ ├── string.json │ │ ├── sugar_cane.json │ │ ├── suger.json │ │ ├── totem_of_undying.json │ │ ├── vine.json │ │ ├── wheat.json │ │ └── wire_cutter.json │ ├── misc2/ │ │ ├── ancient_ingot.json │ │ ├── ancient_sample.json │ │ ├── blood.json │ │ ├── blue_crystal.json │ │ ├── dark_shadow_ingot.json │ │ ├── dark_shadow_part.json │ │ ├── diamond_ingot.json │ │ ├── ender_mirror.json │ │ ├── evil_part.json │ │ ├── flesh_ingot.json │ │ ├── flesh_machine_part.json │ │ ├── flesh_part.json │ │ ├── ghost.json │ │ ├── ghost_crystal.json │ │ ├── ghost_element.json │ │ ├── ice_element.json │ │ ├── ice_element_ball.json │ │ ├── knight_ingot.json │ │ ├── machine_part.json │ │ ├── magic_cell.json │ │ ├── magic_cell_group.json │ │ ├── magic_crystal.json │ │ ├── magic_silver_ingot.json │ │ ├── magma_gold_ingot.json │ │ ├── nether_destroyer.json │ │ ├── pure_red_stone.json │ │ ├── red_crystal.json │ │ ├── red_gold_ingot.json │ │ ├── soul_element.json │ │ ├── star_ingot.json │ │ ├── strange_eye.json │ │ ├── strange_len.json │ │ ├── tower_core.json │ │ ├── white_crystal.json │ │ └── yellow_crystal.json │ ├── nuggets/ │ │ ├── gold_nugget.json │ │ └── iron_nugget.json │ ├── pickaxes/ │ │ ├── bronze_pickaxe.json │ │ ├── copper_pickaxe.json │ │ ├── diamond_pickaxe.json │ │ ├── golden_pickaxe.json │ │ ├── grass_pickaxe.json │ │ ├── iron_pickaxe.json │ │ ├── lead_pickaxe.json │ │ ├── nether_pickaxe.json │ │ ├── silver_pickaxe.json │ │ ├── steel_pickaxe.json │ │ ├── stone_pickaxe.json │ │ ├── tin_pickaxe.json │ │ └── wooden_pickaxe.json │ ├── potions/ │ │ ├── glass_bottle.json │ │ ├── potion_awkward.json │ │ ├── potion_fire_resistance.json │ │ ├── potion_fire_resistance_long.json │ │ ├── potion_glowing.json │ │ ├── potion_glowing_long.json │ │ ├── potion_harming.json │ │ ├── potion_harming_super.json │ │ ├── potion_healing.json │ │ ├── potion_healing_super.json │ │ ├── potion_invisibility.json │ │ ├── potion_invisibility_long.json │ │ ├── potion_leaping.json │ │ ├── potion_leaping_long.json │ │ ├── potion_night_vision.json │ │ ├── potion_night_vision_long.json │ │ ├── potion_poison.json │ │ ├── potion_poison_long.json │ │ ├── potion_regeneration.json │ │ ├── potion_regeneration_long.json │ │ ├── potion_slow_falling.json │ │ ├── potion_slow_falling_long.json │ │ ├── potion_slowness.json │ │ ├── potion_slowness_long.json │ │ ├── potion_strength.json │ │ ├── potion_strength_long.json │ │ ├── potion_swiftness.json │ │ ├── potion_swiftness_long.json │ │ ├── potion_water.json │ │ ├── potion_water_breathing.json │ │ ├── potion_water_breathing_long.json │ │ ├── potion_weakness.json │ │ └── potion_weakness_long.json │ ├── seeds/ │ │ ├── melon_seed.json │ │ ├── pumpkin_seed.json │ │ └── seed.json │ ├── staffs/ │ │ ├── amethyst_staff.json │ │ ├── fire_staff.json │ │ ├── frosen_staff.json │ │ ├── ice_staff.json │ │ ├── lighting_staff.json │ │ ├── shadow_staff.json │ │ ├── soul_staff.json │ │ └── water_staff.json │ ├── swords/ │ │ ├── air_sword.json │ │ ├── bronze_sword.json │ │ ├── copper_sword.json │ │ ├── diamond_sword.json │ │ ├── ghost_sword.json │ │ ├── golden_sword.json │ │ ├── grass_sword.json │ │ ├── iron_sword.json │ │ ├── lava_sword.json │ │ ├── lead_sword.json │ │ ├── nether_sword.json │ │ ├── silver_sword.json │ │ ├── steel_sword.json │ │ ├── stone_sword.json │ │ ├── super_air_sword.json │ │ ├── super_bronze_sword.json │ │ ├── super_copper_sword.json │ │ ├── super_diamond_sword.json │ │ ├── super_golden_sword.json │ │ ├── super_iron_sword.json │ │ ├── super_lead_sword.json │ │ ├── super_nether_sword.json │ │ ├── super_silver_sword.json │ │ ├── super_steel_sword.json │ │ ├── super_tin_sword.json │ │ ├── tin_sword.json │ │ └── wooden_sword.json │ └── wires/ │ ├── blue_wire.json │ ├── green_wire.json │ ├── red_wire.json │ └── yellow_wire.json ├── languages/ │ ├── Locale.lua │ ├── LocaleHelper.lua │ ├── chinese.json │ └── english.json ├── liquids/ │ ├── lava.json │ └── water.json ├── mod_textures/ │ ├── ModTextures.lua │ ├── blade.json │ ├── candle_fire.json │ ├── candle_fire_blue.json │ ├── crack.json │ ├── electric_direction.json │ ├── fire.json │ ├── flesh_grass.json │ ├── fly_book.json │ ├── grass.json │ ├── mycelium_grass.json │ ├── tainted_grass.json │ ├── torch_fire.json │ ├── torch_fire_blue.json │ ├── torch_fire_green.json │ ├── torch_fire_red.json │ ├── torch_fire_white.json │ ├── torch_fire_yellow.json │ └── torch_redstone.json ├── network/ │ ├── ClientBoundResponse.lua │ ├── ModNetworkProxyHandler.lua │ ├── NetworkProxy.lua │ ├── RPC_ID.lua │ └── TCNetworkProxyHandler.lua ├── npc_ai/ │ ├── AngrySkeleton.json │ ├── AngrySkeleton.lua │ ├── Animal.json │ ├── Animal.lua │ ├── Archer.json │ ├── Archer.lua │ ├── BallMagic.json │ ├── BallMagic.lua │ ├── BaseSnake.lua │ ├── BaseSnakeBody.lua │ ├── Bat.json │ ├── Bat.lua │ ├── BlackSkeleton.json │ ├── BlackSkeleton.lua │ ├── Blaze.json │ ├── Blaze.lua │ ├── BlockSlime.json │ ├── BlockSlime.lua │ ├── BloodSkeleton.json │ ├── BloodSkeleton.lua │ ├── BloodyEye.json │ ├── BloodyEye.lua │ ├── BoneArcher.json │ ├── BoneArcher.lua │ ├── BoneLee.json │ ├── BoneLee.lua │ ├── BoneOfficer.json │ ├── BoneOfficer.lua │ ├── BoneSniper.json │ ├── BoneSniper.lua │ ├── BoneySkeleton.json │ ├── BoneySkeleton.lua │ ├── BouncySlime.json │ ├── BouncySlime.lua │ ├── Butterfly.json │ ├── Butterfly.lua │ ├── Cat.json │ ├── Cat.lua │ ├── Chicken.json │ ├── Chicken.lua │ ├── Creeper.json │ ├── Creeper.lua │ ├── CrisonEye.json │ ├── CrisonEye.lua │ ├── CrystalMonster.json │ ├── CrystalMonster.lua │ ├── CursedSkull.json │ ├── CursedSkull.lua │ ├── DarkMage.json │ ├── DarkMage.lua │ ├── DeadMage.json │ ├── DeadMage.lua │ ├── Dolphin.json │ ├── Dolphin.lua │ ├── DungeonCreeper.json │ ├── DungeonCreeper.lua │ ├── DungeonEater.lua │ ├── DungeonEaterBody.lua │ ├── DungeonEater_Body.json │ ├── DungeonEater_Head.json │ ├── DungeonKnight.json │ ├── DungeonKnight.lua │ ├── DungeonSkeleton.json │ ├── DungeonSkeleton.lua │ ├── DungeonSoul.json │ ├── DungeonSoul.lua │ ├── Eagle.json │ ├── Eagle.lua │ ├── Ender_Dragon.json │ ├── Enderman.json │ ├── Enderman.lua │ ├── Evil.json │ ├── Evil.lua │ ├── Evoker.json │ ├── Evoker.lua │ ├── EyeGuard.json │ ├── EyeGuard.lua │ ├── EyeGuardLaser.json │ ├── EyeGuardLaser.lua │ ├── Fighter.json │ ├── Fighter.lua │ ├── FireHellEater.json │ ├── FireHellEater.lua │ ├── FlameSoul.json │ ├── FlameSoul.lua │ ├── FlyEye.json │ ├── FlyEye.lua │ ├── FlySkeleton.json │ ├── FlySkeleton.lua │ ├── Ghast.json │ ├── Ghast.lua │ ├── GhostGunner.json │ ├── GhostGunner.lua │ ├── GhostSoul.json │ ├── GhostSoul.lua │ ├── GiantCursedSkull.json │ ├── GiantCursedSkull.lua │ ├── GrimReaper.json │ ├── GrimReaper.lua │ ├── Guardian.json │ ├── Guardian.lua │ ├── HellDestroyer.lua │ ├── HellDestroyer_Head.json │ ├── HellEater.json │ ├── HellEater.lua │ ├── HumanFighter.json │ ├── HumanFighter.lua │ ├── IceElf.json │ ├── IceElf.lua │ ├── JungleSnake.lua │ ├── JungleSnake_Head.json │ ├── LargeBat.json │ ├── LargeBat.lua │ ├── LargeSpider.json │ ├── LargeSpider.lua │ ├── MagmaBirdo.json │ ├── MagmaBirdo.lua │ ├── MagmaElf.json │ ├── MagmaElf.lua │ ├── MagmaSlime.json │ ├── MagmaSlime.lua │ ├── ManEater.json │ ├── ManEater.lua │ ├── Meteor.json │ ├── Meteor.lua │ ├── MiniGhast.json │ ├── MiniGhast.lua │ ├── Paimon.json │ ├── Paimon.lua │ ├── Phantom.json │ ├── Phantom.lua │ ├── Pufferfish.json │ ├── Pufferfish.lua │ ├── RaggedMage.json │ ├── RaggedMage.lua │ ├── RedMage.json │ ├── RedMage.lua │ ├── RedPhantom.json │ ├── RedPhantom.lua │ ├── RockMan.json │ ├── RockMan.lua │ ├── RollingFireBall.json │ ├── RollingFireBall.lua │ ├── Sheep.json │ ├── Shulker.json │ ├── Shulker.lua │ ├── SkeletonAssaulter.json │ ├── SkeletonAssaulter.lua │ ├── SkeletonGuard.json │ ├── SkeletonGuard.lua │ ├── Slime.json │ ├── Slime.lua │ ├── Snake_Body.json │ ├── Snake_Head.json │ ├── SnowGuardian.json │ ├── SnowGuardian.lua │ ├── SnowGuardianArcher.json │ ├── SnowGuardianArcher.lua │ ├── SnowQueen.json │ ├── SnowQueen.lua │ ├── Squid.json │ ├── Squid.lua │ ├── SwordHumanFighter.lua │ ├── TaintedSlime.json │ ├── TaintedSlime.lua │ ├── UndeadMiner.json │ ├── UndeadMiner.lua │ ├── Villager.json │ ├── WasteGhost.json │ ├── WasteGhost.lua │ ├── WitherSkeleton.json │ ├── WitherSkeleton.lua │ ├── Wolf.json │ ├── Wolf.lua │ ├── Zombie.json │ ├── Zombie.lua │ ├── Zpig.json │ └── Zpig.lua ├── npc_ai_global/ │ ├── GNpc.lua │ └── GlobalNpc.json ├── npcs/ │ ├── angry_skeleton.json │ ├── arrow_zombie.json │ ├── bald_zombie.json │ ├── bat.json │ ├── black_rabbit.json │ ├── black_skeleton.json │ ├── blaze.json │ ├── block_slime.json │ ├── blood_bat.json │ ├── blood_eye.json │ ├── blood_skeleton.json │ ├── blood_slime.json │ ├── blue_slime.json │ ├── bone_lee.json │ ├── bone_officer.json │ ├── bone_sniper.json │ ├── boney_skeleton.json │ ├── bouncy_slime.json │ ├── brown_mushroom_cow.json │ ├── brown_rabbit.json │ ├── cat.json │ ├── chicken.json │ ├── cow.json │ ├── creeper.json │ ├── crison_eye.json │ ├── crystal_monster.json │ ├── cursed_skull.json │ ├── dark_mage.json │ ├── dead_mage.json │ ├── desert_slime.json │ ├── doge_zombie.json │ ├── dolphin.json │ ├── dragon_skull.json │ ├── drowned.json │ ├── dungeon_creeper.json │ ├── dungeon_eater_body.json │ ├── dungeon_eater_head.json │ ├── dungeon_eater_tail.json │ ├── dungeon_knight.json │ ├── dungeon_slime.json │ ├── dungeon_soul.json │ ├── eagle.json │ ├── ender_dragon.json │ ├── enderman.json │ ├── evil.json │ ├── evoker.json │ ├── eye_guard.json │ ├── eye_guard_laser.json │ ├── flame_soul.json │ ├── flower_creeper.json │ ├── fly_eye.json │ ├── fly_mouth.json │ ├── fly_skeleton.json │ ├── ghast.json │ ├── ghost_gunner.json │ ├── ghost_soul.json │ ├── giant_cursed_skull.json │ ├── green_slime.json │ ├── grim_reaper.json │ ├── guardian.json │ ├── husk.json │ ├── ice_elf.json │ ├── ice_slime.json │ ├── iron_zombie.json │ ├── jungle_bat.json │ ├── large_bat.json │ ├── large_black_slime.json │ ├── large_block_slime.json │ ├── large_desert_slime.json │ ├── large_green_slime.json │ ├── large_ice_slime.json │ ├── large_jungle_bat.json │ ├── large_spider.json │ ├── large_tainted_slime.json │ ├── large_waste_block_slime.json │ ├── large_waste_slime.json │ ├── light_blue_butterfly.json │ ├── mad_skeleton.json │ ├── mad_skeleton_armed.json │ ├── mad_skeleton_tall.json │ ├── mad_skeleton_tall_armed.json │ ├── mad_skeleton_tall_helmet_armed.json │ ├── magma_birdo.json │ ├── magma_elf.json │ ├── magma_slime.json │ ├── man_eater.json │ ├── meteor.json │ ├── mini_ghast.json │ ├── mummy.json │ ├── phantom.json │ ├── pig.json │ ├── pufferfish.json │ ├── purple_slime.json │ ├── ragged_mage.json │ ├── red_butterfly.json │ ├── red_mage.json │ ├── red_mushroom_cow.json │ ├── red_phantom.json │ ├── rock_man.json │ ├── rolling_fire_ball.json │ ├── sheep.json │ ├── shulker.json │ ├── skeleton.json │ ├── skeleton_assaulter.json │ ├── skeleton_blue_armed.json │ ├── skeleton_blue_armed_masked.json │ ├── skeleton_blue_knight.json │ ├── skeleton_fire_armed.json │ ├── skeleton_fire_armed_swordsman.json │ ├── skeleton_guard.json │ ├── small_fire_hell_eater.json │ ├── small_hell_eater.json │ ├── snow_guardian.json │ ├── snow_guardian_archer.json │ ├── snow_queen.json │ ├── snow_slime.json │ ├── spider.json │ ├── squid.json │ ├── tainted_creeper.json │ ├── tainted_skeleton.json │ ├── tainted_slime.json │ ├── turtle.json │ ├── undead_miner.json │ ├── vampire_miner.json │ ├── villager_zombie.json │ ├── vine_man_eater_body.json │ ├── vine_man_eater_head.json │ ├── vine_man_eater_tail.json │ ├── waste_block_slime.json │ ├── waste_ghost.json │ ├── waste_mummy.json │ ├── white_rabbit.json │ ├── wither_skeleton.json │ ├── wolf.json │ ├── worm_body.json │ ├── worm_head.json │ ├── worm_tail.json │ ├── yellow_butterfly.json │ ├── yellow_rabbit.json │ ├── yellow_slime.json │ ├── zombie.json │ └── zombie_pigman.json ├── package.json ├── player/ │ ├── GPlayer.lua │ ├── GlobalPlayer.json │ └── PlayerConstants.lua ├── projectile_ai/ │ ├── AirBullet.json │ ├── AirBullet.lua │ ├── AirWave.json │ ├── AirWave.lua │ ├── AmethystMagic.json │ ├── AmethystMagic.lua │ ├── Arrow.json │ ├── Arrow.lua │ ├── BlackHole.json │ ├── BlackHole.lua │ ├── BlazeRod.json │ ├── BlazeRod.lua │ ├── BloodArrow.json │ ├── BloodArrow.lua │ ├── BlueArrow.json │ ├── BlueArrow.lua │ ├── BlueBullet.json │ ├── BlueBullet.lua │ ├── BlueWave.json │ ├── BlueWave.lua │ ├── Bomb.json │ ├── Bomb.lua │ ├── Boomerang.json │ ├── Boomerang.lua │ ├── Bullet.json │ ├── Bullet.lua │ ├── CrystalMagic.json │ ├── CrystalMagic.lua │ ├── CursedArrow.json │ ├── CursedArrow.lua │ ├── Fire.json │ ├── Fire.lua │ ├── FireArrow.json │ ├── FireArrow.lua │ ├── FireElement.json │ ├── FireElement.lua │ ├── FireFlow.json │ ├── FireFlow.lua │ ├── FireFlowLarge.json │ ├── FireFlowLarge.lua │ ├── FireMagic.json │ ├── FireMagic.lua │ ├── Fireball.json │ ├── Fireball.lua │ ├── GlowBomb.json │ ├── GlowBomb.lua │ ├── Glowball.json │ ├── Glowball.lua │ ├── Grenade.json │ ├── Grenade.lua │ ├── IceArrow.json │ ├── IceArrow.lua │ ├── IceBullet.json │ ├── IceBullet.lua │ ├── IceMagic.json │ ├── IceMagic.lua │ ├── LaserBullet.json │ ├── LaserBullet.lua │ ├── LightingArrow.json │ ├── LightingArrow.lua │ ├── LightingBulletYellow.json │ ├── LightingBulletYellow.lua │ ├── LightingWheel.json │ ├── LightingWheel.lua │ ├── MagicWave.json │ ├── MagicWave.lua │ ├── MiniRocket.json │ ├── MiniRocket.lua │ ├── RedSpeedUp.json │ ├── RedSpeedUp.lua │ ├── Rocket.json │ ├── Rocket.lua │ ├── ShadowMagic.json │ ├── ShadowMagic.lua │ ├── ShulkerBullet.json │ ├── ShulkerBullet.lua │ ├── SnowFlake.json │ ├── SnowFlake.lua │ ├── Spike.json │ ├── Spike.lua │ ├── StarArrow.json │ ├── StarArrow.lua │ ├── StarMagic.json │ ├── StarMagic.lua │ ├── SuperBullet.json │ ├── SuperBullet.lua │ ├── SuperFire.json │ ├── SuperFire.lua │ ├── SwordArrow.json │ ├── SwordArrow.lua │ ├── WaterFlow.json │ ├── WaterFlow.lua │ ├── WaterMagic.json │ └── WaterMagic.lua ├── projectile_ai_global/ │ ├── GProjectile.lua │ └── GlobalProjectile.json ├── projectiles/ │ ├── air_bullet.json │ ├── air_wave.json │ ├── amethyst_magic.json │ ├── black_hole.json │ ├── blaze_rod.json │ ├── blood_arrow.json │ ├── blue_arrow.json │ ├── bomb.json │ ├── bone.json │ ├── boomerang.json │ ├── bullet.json │ ├── bullet_laser.json │ ├── bullet_super.json │ ├── crystal_magic.json │ ├── cursed_arrow.json │ ├── fire_arrow.json │ ├── fire_boomerang.json │ ├── fire_charge.json │ ├── fire_element.json │ ├── fire_flow.json │ ├── fire_flow_large.json │ ├── fire_magic.json │ ├── fire_wave.json │ ├── glow_ball.json │ ├── glow_bomb.json │ ├── grenade.json │ ├── gun_fire.json │ ├── ice_arrow.json │ ├── ice_bullet.json │ ├── ice_magic.json │ ├── light_bullet_laser.json │ ├── lighting_arrow.json │ ├── lighting_bullet_blue.json │ ├── lighting_bullet_red_invert2.json │ ├── lighting_bullet_yellow.json │ ├── lighting_wheel.json │ ├── magic_wave.json │ ├── magic_wave3.json │ ├── mini_rocket.json │ ├── rocket.json │ ├── shadow_magic.json │ ├── shulker_bullet.json │ ├── small_air_bullet.json │ ├── snow_flake.json │ ├── spike.json │ ├── star.json │ ├── star_arrow.json │ ├── super_fire.json │ ├── sword_arrow.json │ ├── tnt.json │ ├── water_flow.json │ ├── water_magic.json │ ├── wooden_arrow.json │ └── wooden_boomerang.json ├── recipe_config/ │ ├── Brew.json │ ├── Craft3x.json │ ├── Repair.json │ └── Smelt.json ├── recipes/ │ ├── brew/ │ │ ├── potion_awkward.json │ │ ├── potion_fire_resistance.json │ │ ├── potion_fire_resistance_long.json │ │ ├── potion_glowing.json │ │ ├── potion_harming.json │ │ ├── potion_harming_2.json │ │ ├── potion_harming_super.json │ │ ├── potion_healing.json │ │ ├── potion_healing_super.json │ │ ├── potion_invisibility.json │ │ ├── potion_invisibility_long.json │ │ ├── potion_leaping.json │ │ ├── potion_leaping_long.json │ │ ├── potion_night_vision.json │ │ ├── potion_night_vision_long.json │ │ ├── potion_poison.json │ │ ├── potion_poison_2.json │ │ ├── potion_poison_long.json │ │ ├── potion_regeneration.json │ │ ├── potion_regeneration_long.json │ │ ├── potion_slow_falling.json │ │ ├── potion_slow_falling_long.json │ │ ├── potion_slowness.json │ │ ├── potion_slowness_2.json │ │ ├── potion_slowness_long.json │ │ ├── potion_strength.json │ │ ├── potion_strength_long.json │ │ ├── potion_swiftness.json │ │ ├── potion_swiftness_long.json │ │ ├── potion_water_breathing.json │ │ ├── potion_water_breathing_long.json │ │ ├── potion_weakness.json │ │ ├── potion_weakness_2.json │ │ └── potion_weakness_long.json │ ├── craft3x/ │ │ ├── acacia_plank.json │ │ ├── amethyst_staff.json │ │ ├── amethyst_staff_2.json │ │ ├── ancient_ingot.json │ │ ├── andesite.json │ │ ├── andesite_polished.json │ │ ├── anvil.json │ │ ├── barrel.json │ │ ├── bench_acacia.json │ │ ├── bench_birch.json │ │ ├── bench_dark_oak.json │ │ ├── bench_jungle.json │ │ ├── bench_nether.json │ │ ├── bench_oak.json │ │ ├── bench_palm.json │ │ ├── bench_spruce.json │ │ ├── bench_tainted.json │ │ ├── bench_volcano.json │ │ ├── birch_plank.json │ │ ├── blaze_powder.json │ │ ├── block_coal.json │ │ ├── block_diamond.json │ │ ├── block_emerald.json │ │ ├── block_gold.json │ │ ├── block_iron.json │ │ ├── block_lapis.json │ │ ├── block_netherite.json │ │ ├── block_quartz.json │ │ ├── block_redstone.json │ │ ├── blood_arrow.json │ │ ├── blood_arrow_2.json │ │ ├── blood_bow.json │ │ ├── blue_ice.json │ │ ├── blue_stone_bow.json │ │ ├── blue_torch.json │ │ ├── blue_wire.json │ │ ├── bomb.json │ │ ├── bomb_2.json │ │ ├── bone_block.json │ │ ├── bone_meal.json │ │ ├── bone_meal_2.json │ │ ├── book.json │ │ ├── book_block.json │ │ ├── bookcase_acacia.json │ │ ├── bookcase_birch.json │ │ ├── bookcase_dark_oak.json │ │ ├── bookcase_jungle.json │ │ ├── bookcase_nether.json │ │ ├── bookcase_oak.json │ │ ├── bookcase_palm.json │ │ ├── bookcase_spruce.json │ │ ├── bookcase_tainted.json │ │ ├── bookcase_volcano.json │ │ ├── boomerang.json │ │ ├── boomerang_2.json │ │ ├── bowl.json │ │ ├── bread.json │ │ ├── brewing_stand.json │ │ ├── brick.json │ │ ├── bronze_axe.json │ │ ├── bronze_chestplate.json │ │ ├── bronze_helmet.json │ │ ├── bronze_ingot.json │ │ ├── bronze_leggings.json │ │ ├── bronze_pickaxe.json │ │ ├── bronze_sword.json │ │ ├── brown_mushroom.json │ │ ├── brown_mushroom_2.json │ │ ├── bucket_empty.json │ │ ├── cabinet_acacia.json │ │ ├── cabinet_birch.json │ │ ├── cabinet_dark_oak.json │ │ ├── cabinet_jungle.json │ │ ├── cabinet_nether.json │ │ ├── cabinet_oak.json │ │ ├── cabinet_palm.json │ │ ├── cabinet_spruce.json │ │ ├── cabinet_tainted.json │ │ ├── cabinet_volcano.json │ │ ├── cake.json │ │ ├── cake_piece.json │ │ ├── campfire.json │ │ ├── campfire_2.json │ │ ├── campfire_3.json │ │ ├── campfire_4.json │ │ ├── candle.json │ │ ├── candle_holder.json │ │ ├── cauldron.json │ │ ├── chair_acacia.json │ │ ├── chair_birch.json │ │ ├── chair_dark_oak.json │ │ ├── chair_jungle.json │ │ ├── chair_nether.json │ │ ├── chair_oak.json │ │ ├── chair_palm.json │ │ ├── chair_spruce.json │ │ ├── chair_tainted.json │ │ ├── chair_volcano.json │ │ ├── chandeliers.json │ │ ├── chest.json │ │ ├── clay.json │ │ ├── clay_block.json │ │ ├── coal.json │ │ ├── coarse_dirt.json │ │ ├── cobblestone_fence.json │ │ ├── cobblestone_mossy.json │ │ ├── cobweb.json │ │ ├── cookie.json │ │ ├── copper_axe.json │ │ ├── copper_chestplate.json │ │ ├── copper_helmet.json │ │ ├── copper_leggings.json │ │ ├── copper_pickaxe.json │ │ ├── copper_sword.json │ │ ├── crafting_table.json │ │ ├── cross_bow.json │ │ ├── dark_oak_plank.json │ │ ├── dark_shadow_ingot.json │ │ ├── daylight_sensor.json │ │ ├── daylight_sensor_inverted.json │ │ ├── diamond.json │ │ ├── diamond_axe.json │ │ ├── diamond_chestplate.json │ │ ├── diamond_helmet.json │ │ ├── diamond_ingot.json │ │ ├── diamond_leggings.json │ │ ├── diamond_pickaxe.json │ │ ├── diamond_sword.json │ │ ├── diorite.json │ │ ├── diorite_polished.json │ │ ├── dirt.json │ │ ├── door_nether.json │ │ ├── dried_kelp.json │ │ ├── dried_kelp_block.json │ │ ├── dungeon_eater.json │ │ ├── dye_black.json │ │ ├── dye_blue.json │ │ ├── dye_brown.json │ │ ├── dye_cyan.json │ │ ├── dye_cyan_2.json │ │ ├── dye_gray.json │ │ ├── dye_light_blue.json │ │ ├── dye_light_blue_2.json │ │ ├── dye_light_blue_3.json │ │ ├── dye_light_gray.json │ │ ├── dye_light_gray_2.json │ │ ├── dye_light_gray_3.json │ │ ├── dye_light_gray_4.json │ │ ├── dye_lime.json │ │ ├── dye_lime_2.json │ │ ├── dye_magenta.json │ │ ├── dye_magenta_2.json │ │ ├── dye_magenta_3.json │ │ ├── dye_magenta_4.json │ │ ├── dye_magenta_5.json │ │ ├── dye_orange.json │ │ ├── dye_orange_2.json │ │ ├── dye_pink.json │ │ ├── dye_pink_2.json │ │ ├── dye_pink_3.json │ │ ├── dye_pink_4.json │ │ ├── dye_purple.json │ │ ├── dye_purple_2.json │ │ ├── dye_red.json │ │ ├── dye_red_2.json │ │ ├── dye_red_3.json │ │ ├── dye_white.json │ │ ├── dye_yellow.json │ │ ├── dye_yellow_2.json │ │ ├── emerald.json │ │ ├── enchantment_table.json │ │ ├── end_rod.json │ │ ├── end_stone_brick.json │ │ ├── ender_chest.json │ │ ├── ender_eye.json │ │ ├── ender_mirror.json │ │ ├── farmland.json │ │ ├── farmland_2.json │ │ ├── fence_acacia.json │ │ ├── fence_birch.json │ │ ├── fence_dark_oak.json │ │ ├── fence_jungle.json │ │ ├── fence_nether.json │ │ ├── fence_oak.json │ │ ├── fence_palm.json │ │ ├── fence_spruce.json │ │ ├── fence_tainted.json │ │ ├── fence_volcano.json │ │ ├── fermented_spider_eye.json │ │ ├── fire_boomerang.json │ │ ├── fire_boomerang_2.json │ │ ├── fire_bullet.json │ │ ├── fire_bullet_2.json │ │ ├── fire_charge.json │ │ ├── fire_charge_2.json │ │ ├── fire_lamp.json │ │ ├── flesh_chestplate.json │ │ ├── flesh_helmet.json │ │ ├── flesh_ingot.json │ │ ├── flesh_leggings.json │ │ ├── flesh_machine_part.json │ │ ├── flower_pot.json │ │ ├── flower_pot_large.json │ │ ├── furnace.json │ │ ├── ghost.json │ │ ├── glass_bottle.json │ │ ├── glistering_melon_slice.json │ │ ├── glow_ball.json │ │ ├── glow_bomb.json │ │ ├── glowing_mushroom.json │ │ ├── glowing_mushroom_2.json │ │ ├── glowstone.json │ │ ├── gold_ingot.json │ │ ├── gold_ingot_2.json │ │ ├── gold_nugget.json │ │ ├── golden_apple.json │ │ ├── golden_axe.json │ │ ├── golden_carrot.json │ │ ├── golden_chestplate.json │ │ ├── golden_helmet.json │ │ ├── golden_leggings.json │ │ ├── golden_pickaxe.json │ │ ├── golden_pressure_plate.json │ │ ├── golden_sword.json │ │ ├── granite.json │ │ ├── granite_polished.json │ │ ├── grass_axe.json │ │ ├── grass_pickaxe.json │ │ ├── grass_sword.json │ │ ├── green_torch.json │ │ ├── green_wire.json │ │ ├── grenade.json │ │ ├── grenade_2.json │ │ ├── hay_bale.json │ │ ├── ice_arrow.json │ │ ├── ice_bow.json │ │ ├── ice_brick.json │ │ ├── ice_element_ball.json │ │ ├── ice_packed.json │ │ ├── ice_staff.json │ │ ├── iron_axe.json │ │ ├── iron_bar.json │ │ ├── iron_bullet.json │ │ ├── iron_bullet_2.json │ │ ├── iron_chestplate.json │ │ ├── iron_door.json │ │ ├── iron_helmet.json │ │ ├── iron_ingot.json │ │ ├── iron_ingot_2.json │ │ ├── iron_leggings.json │ │ ├── iron_nugget.json │ │ ├── iron_pickaxe.json │ │ ├── iron_pressure_plate.json │ │ ├── iron_sword.json │ │ ├── jack_o_lantern.json │ │ ├── jukebox.json │ │ ├── jungle_plank.json │ │ ├── knight_chestplate.json │ │ ├── knight_helmet.json │ │ ├── knight_leggings.json │ │ ├── lantern.json │ │ ├── lapis_lazuli.json │ │ ├── lava_chestplate.json │ │ ├── lava_helmet.json │ │ ├── lava_leggings.json │ │ ├── lead_axe.json │ │ ├── lead_chestplate.json │ │ ├── lead_helmet.json │ │ ├── lead_leggings.json │ │ ├── lead_pickaxe.json │ │ ├── lead_sword.json │ │ ├── leather.json │ │ ├── leather_chestplate.json │ │ ├── leather_helmet.json │ │ ├── leather_leggings.json │ │ ├── lever.json │ │ ├── lighter.json │ │ ├── lighting_arrow.json │ │ ├── lighting_bow.json │ │ ├── lighting_staff.json │ │ ├── machine_part.json │ │ ├── magic_cell_group.json │ │ ├── magic_gold_chestplate.json │ │ ├── magic_gold_helmet.json │ │ ├── magic_gold_leggings.json │ │ ├── magic_silver_chestplate.json │ │ ├── magic_silver_helmet.json │ │ ├── magic_silver_ingot.json │ │ ├── magic_silver_leggings.json │ │ ├── magma_block.json │ │ ├── magma_cream.json │ │ ├── magma_gold_ingot.json │ │ ├── melon_seed.json │ │ ├── mossy_cobblestone_fence.json │ │ ├── mushroom_stew.json │ │ ├── nether_brick_block.json │ │ ├── nether_chest.json │ │ ├── nether_lamp.json │ │ ├── netherite_ingot.json │ │ ├── netherite_ingot_2.json │ │ ├── oak_plank.json │ │ ├── painting_2x2.json │ │ ├── painting_2x2_2.json │ │ ├── painting_2x4.json │ │ ├── painting_4x2.json │ │ ├── painting_4x4.json │ │ ├── painting_8x4.json │ │ ├── painting_8x6.json │ │ ├── painting_8x8.json │ │ ├── palm_plank.json │ │ ├── paper.json │ │ ├── platform_acacia.json │ │ ├── platform_birch.json │ │ ├── platform_dark_oak.json │ │ ├── platform_end_stone.json │ │ ├── platform_jungle.json │ │ ├── platform_nether_brick.json │ │ ├── platform_oak.json │ │ ├── platform_palm.json │ │ ├── platform_prismarine.json │ │ ├── platform_prismarine_dark.json │ │ ├── platform_purpur.json │ │ ├── platform_quartz.json │ │ ├── platform_red_sand_stone.json │ │ ├── platform_sandstone.json │ │ ├── platform_spruce.json │ │ ├── platform_stone_brick.json │ │ ├── platform_tainted.json │ │ ├── platform_volcano.json │ │ ├── poison_mushroom.json │ │ ├── prismarine.json │ │ ├── prismarine_brick.json │ │ ├── prismarine_dark.json │ │ ├── prismarine_dark_2.json │ │ ├── pumpkin_helmet.json │ │ ├── pumpkin_pie.json │ │ ├── pumpkin_seed.json │ │ ├── purpur_block.json │ │ ├── quartz.json │ │ ├── red_gold_ingot.json │ │ ├── red_mushroom.json │ │ ├── red_mushroom_2.json │ │ ├── red_nether_brick.json │ │ ├── red_sand_carved.json │ │ ├── red_sand_stone.json │ │ ├── red_torch.json │ │ ├── red_wire.json │ │ ├── redstone.json │ │ ├── redstone_lamp.json │ │ ├── redstone_torch.json │ │ ├── rocket.json │ │ ├── rocket_boost.json │ │ ├── rotten_flesh.json │ │ ├── sandstone.json │ │ ├── sandstone_carved.json │ │ ├── sea_lantern.json │ │ ├── shadow_staff.json │ │ ├── shears.json │ │ ├── shot_bow.json │ │ ├── shot_bow_2.json │ │ ├── shulker_box.json │ │ ├── sign.json │ │ ├── silver_axe.json │ │ ├── silver_bullet.json │ │ ├── silver_chestplate.json │ │ ├── silver_helmet.json │ │ ├── silver_leggings.json │ │ ├── silver_pickaxe.json │ │ ├── silver_sword.json │ │ ├── slime_block.json │ │ ├── slimeball.json │ │ ├── snow.json │ │ ├── snow_brick.json │ │ ├── snowball.json │ │ ├── spruce_plank.json │ │ ├── stained_glass_black.json │ │ ├── stained_glass_blue.json │ │ ├── stained_glass_brown.json │ │ ├── stained_glass_cyan.json │ │ ├── stained_glass_gray.json │ │ ├── stained_glass_green.json │ │ ├── stained_glass_light_blue.json │ │ ├── stained_glass_light_gray.json │ │ ├── stained_glass_lime.json │ │ ├── stained_glass_magenta.json │ │ ├── stained_glass_orange.json │ │ ├── stained_glass_pink.json │ │ ├── stained_glass_purple.json │ │ ├── stained_glass_red.json │ │ ├── stained_glass_white.json │ │ ├── stained_glass_yellow.json │ │ ├── star_arrow.json │ │ ├── star_chestplate.json │ │ ├── star_helmet.json │ │ ├── star_leggings.json │ │ ├── steel_axe.json │ │ ├── steel_chestplate.json │ │ ├── steel_helmet.json │ │ ├── steel_leggings.json │ │ ├── steel_pickaxe.json │ │ ├── steel_sword.json │ │ ├── stick.json │ │ ├── stone.json │ │ ├── stone_2.json │ │ ├── stone_axe.json │ │ ├── stone_brick.json │ │ ├── stone_brick_carved.json │ │ ├── stone_brick_mossy.json │ │ ├── stone_button.json │ │ ├── stone_chest.json │ │ ├── stone_hoe.json │ │ ├── stone_pickaxe.json │ │ ├── stone_pressure_plate.json │ │ ├── stone_sword.json │ │ ├── strange_eye.json │ │ ├── string.json │ │ ├── suger.json │ │ ├── super_bronze_sword.json │ │ ├── super_copper_sword.json │ │ ├── super_cross_bow.json │ │ ├── super_diamond_chestplate.json │ │ ├── super_diamond_helmet.json │ │ ├── super_diamond_leggings.json │ │ ├── super_diamond_sword.json │ │ ├── super_golden_sword.json │ │ ├── super_iron_sword.json │ │ ├── super_lead_sword.json │ │ ├── super_silver_sword.json │ │ ├── super_steel_sword.json │ │ ├── super_tin_sword.json │ │ ├── sword_arrow.json │ │ ├── sword_arrow_2.json │ │ ├── sword_arrow_3.json │ │ ├── table_acacia.json │ │ ├── table_birch.json │ │ ├── table_dark_oak.json │ │ ├── table_jungle.json │ │ ├── table_nether.json │ │ ├── table_oak.json │ │ ├── table_palm.json │ │ ├── table_spruce.json │ │ ├── table_tainted.json │ │ ├── table_volcano.json │ │ ├── tainted_plank.json │ │ ├── terracotta_black.json │ │ ├── terracotta_black_2.json │ │ ├── terracotta_blue.json │ │ ├── terracotta_blue_2.json │ │ ├── terracotta_brown.json │ │ ├── terracotta_cyan.json │ │ ├── terracotta_gray.json │ │ ├── terracotta_green.json │ │ ├── terracotta_light_blue.json │ │ ├── terracotta_light_gray.json │ │ ├── terracotta_lime.json │ │ ├── terracotta_magenta.json │ │ ├── terracotta_orange.json │ │ ├── terracotta_pink.json │ │ ├── terracotta_purple.json │ │ ├── terracotta_red.json │ │ ├── terracotta_white.json │ │ ├── terracotta_white_2.json │ │ ├── terracotta_yellow.json │ │ ├── tin_axe.json │ │ ├── tin_chestplate.json │ │ ├── tin_helmet.json │ │ ├── tin_leggings.json │ │ ├── tin_pickaxe.json │ │ ├── tin_sword.json │ │ ├── tnt.json │ │ ├── tnt_2.json │ │ ├── torch.json │ │ ├── torch_2.json │ │ ├── torch_3.json │ │ ├── tower_core.json │ │ ├── trapped_chest.json │ │ ├── volcano_plank.json │ │ ├── water_staff.json │ │ ├── watermelon.json │ │ ├── wheat.json │ │ ├── white_torch.json │ │ ├── wire_cutter.json │ │ ├── wooden_arrow.json │ │ ├── wooden_arrow_2.json │ │ ├── wooden_arrow_3.json │ │ ├── wooden_arrow_4.json │ │ ├── wooden_axe.json │ │ ├── wooden_bed_black.json │ │ ├── wooden_bed_black_2.json │ │ ├── wooden_bed_blue.json │ │ ├── wooden_bed_blue_2.json │ │ ├── wooden_bed_brown.json │ │ ├── wooden_bed_brown_2.json │ │ ├── wooden_bed_cyan.json │ │ ├── wooden_bed_cyan_2.json │ │ ├── wooden_bed_gray.json │ │ ├── wooden_bed_gray_2.json │ │ ├── wooden_bed_green.json │ │ ├── wooden_bed_green_2.json │ │ ├── wooden_bed_light_blue.json │ │ ├── wooden_bed_light_blue_2.json │ │ ├── wooden_bed_light_gray.json │ │ ├── wooden_bed_light_gray_2.json │ │ ├── wooden_bed_lime.json │ │ ├── wooden_bed_lime_2.json │ │ ├── wooden_bed_magenta.json │ │ ├── wooden_bed_magenta_2.json │ │ ├── wooden_bed_orange.json │ │ ├── wooden_bed_orange_2.json │ │ ├── wooden_bed_pink.json │ │ ├── wooden_bed_pink_2.json │ │ ├── wooden_bed_purple.json │ │ ├── wooden_bed_purple_2.json │ │ ├── wooden_bed_red.json │ │ ├── wooden_bed_red_2.json │ │ ├── wooden_bed_white.json │ │ ├── wooden_bed_yellow.json │ │ ├── wooden_bed_yellow_2.json │ │ ├── wooden_boomerang.json │ │ ├── wooden_bow.json │ │ ├── wooden_button.json │ │ ├── wooden_door_acacia.json │ │ ├── wooden_door_birch.json │ │ ├── wooden_door_dark_oak.json │ │ ├── wooden_door_jungle.json │ │ ├── wooden_door_oak.json │ │ ├── wooden_door_palm.json │ │ ├── wooden_door_spruce.json │ │ ├── wooden_door_tainted.json │ │ ├── wooden_door_volcano.json │ │ ├── wooden_hoe.json │ │ ├── wooden_pickaxe.json │ │ ├── wooden_pressure_plate.json │ │ ├── wooden_sword.json │ │ ├── wool_black.json │ │ ├── wool_black_2.json │ │ ├── wool_blue.json │ │ ├── wool_blue_2.json │ │ ├── wool_brown.json │ │ ├── wool_cyan.json │ │ ├── wool_gray.json │ │ ├── wool_green.json │ │ ├── wool_light_blue.json │ │ ├── wool_light_gray.json │ │ ├── wool_lime.json │ │ ├── wool_magenta.json │ │ ├── wool_orange.json │ │ ├── wool_pink.json │ │ ├── wool_purple.json │ │ ├── wool_red.json │ │ ├── wool_white.json │ │ ├── wool_yellow.json │ │ ├── yellow_torch.json │ │ └── yellow_wire.json │ ├── repair/ │ │ ├── ancient_chestplate.json │ │ ├── ancient_chestplate_2.json │ │ ├── ancient_helmet.json │ │ ├── ancient_helmet_2.json │ │ ├── ancient_leggings.json │ │ ├── ancient_leggings_2.json │ │ ├── bronze_axe.json │ │ ├── bronze_chestplate.json │ │ ├── bronze_helmet.json │ │ ├── bronze_leggings.json │ │ ├── bronze_pickaxe.json │ │ ├── bronze_sword.json │ │ ├── copper_axe.json │ │ ├── copper_chestplate.json │ │ ├── copper_helmet.json │ │ ├── copper_leggings.json │ │ ├── copper_pickaxe.json │ │ ├── copper_sword.json │ │ ├── diamond_axe.json │ │ ├── diamond_chestplate.json │ │ ├── diamond_helmet.json │ │ ├── diamond_leggings.json │ │ ├── diamond_pickaxe.json │ │ ├── diamond_sword.json │ │ ├── golden_axe.json │ │ ├── golden_chestplate.json │ │ ├── golden_helmet.json │ │ ├── golden_leggings.json │ │ ├── golden_pickaxe.json │ │ ├── golden_sword.json │ │ ├── iron_axe.json │ │ ├── iron_chestplate.json │ │ ├── iron_helmet.json │ │ ├── iron_leggings.json │ │ ├── iron_pickaxe.json │ │ ├── iron_sword.json │ │ ├── lead_axe.json │ │ ├── lead_chestplate.json │ │ ├── lead_helmet.json │ │ ├── lead_leggings.json │ │ ├── lead_pickaxe.json │ │ ├── lead_sword.json │ │ ├── leather_chestplate.json │ │ ├── leather_helmet.json │ │ ├── leather_leggings.json │ │ ├── nether_axe.json │ │ ├── nether_axe_2.json │ │ ├── nether_chestplate.json │ │ ├── nether_chestplate_2.json │ │ ├── nether_helmet.json │ │ ├── nether_helmet_2.json │ │ ├── nether_helmet_3.json │ │ ├── nether_leggings.json │ │ ├── nether_leggings_2.json │ │ ├── nether_pickaxe.json │ │ ├── nether_pickaxe_2.json │ │ ├── nether_sword.json │ │ ├── nether_sword_2.json │ │ ├── silver_axe.json │ │ ├── silver_chestplate.json │ │ ├── silver_helmet.json │ │ ├── silver_leggings.json │ │ ├── silver_pickaxe.json │ │ ├── silver_sword.json │ │ ├── steel_axe.json │ │ ├── steel_chestplate.json │ │ ├── steel_helmet.json │ │ ├── steel_leggings.json │ │ ├── steel_pickaxe.json │ │ ├── steel_sword.json │ │ ├── stone_axe.json │ │ ├── stone_hoe.json │ │ ├── stone_pickaxe.json │ │ ├── stone_sword.json │ │ ├── super_bronze_sword.json │ │ ├── super_copper_sword.json │ │ ├── super_diamond_sword.json │ │ ├── super_golden_sword.json │ │ ├── super_iron_sword.json │ │ ├── super_lead_sword.json │ │ ├── super_nether_sword.json │ │ ├── super_nether_sword_2.json │ │ ├── super_silver_sword.json │ │ ├── super_steel_sword.json │ │ ├── super_tin_sword.json │ │ ├── tin_axe.json │ │ ├── tin_chestplate.json │ │ ├── tin_helmet.json │ │ ├── tin_leggings.json │ │ ├── tin_pickaxe.json │ │ └── tin_sword.json │ └── smelt/ │ ├── baked_potato.json │ ├── charcoal.json │ ├── charcoal_10.json │ ├── charcoal_11.json │ ├── charcoal_12.json │ ├── charcoal_13.json │ ├── charcoal_14.json │ ├── charcoal_15.json │ ├── charcoal_16.json │ ├── charcoal_17.json │ ├── charcoal_18.json │ ├── charcoal_2.json │ ├── charcoal_3.json │ ├── charcoal_4.json │ ├── charcoal_5.json │ ├── charcoal_6.json │ ├── charcoal_7.json │ ├── charcoal_8.json │ ├── charcoal_9.json │ ├── coal.json │ ├── cooked_chicken.json │ ├── cooked_cod.json │ ├── cooked_mutton.json │ ├── cooked_porkchop.json │ ├── cooked_rabbit.json │ ├── cooked_salmon.json │ ├── copper_ingot.json │ ├── diamond.json │ ├── dried_kelp.json │ ├── dye_green.json │ ├── emerald.json │ ├── glass.json │ ├── glass_2.json │ ├── glass_3.json │ ├── gold_ingot.json │ ├── iron_ingot.json │ ├── lapis_lazuli.json │ ├── lead_ingot.json │ ├── nether_brick.json │ ├── netherite_scrap.json │ ├── popped_chorus_fruits.json │ ├── quartz.json │ ├── red_brick.json │ ├── red_sand_smooth.json │ ├── redstone.json │ ├── sandstone_smooth.json │ ├── silver_ingot.json │ ├── sponge.json │ ├── steak.json │ ├── steel_ingot.json │ ├── stone.json │ ├── stone_brick_cracked.json │ ├── terracotta_pink.json │ └── tin_ingot.json ├── record/ │ └── RecordData.lua ├── settings/ │ ├── Settings.lua │ └── SettingsData.lua ├── skins/ │ ├── skin_22.json │ ├── skin_33.json │ ├── skin_my.json │ ├── skin_plin.json │ ├── skin_redust.json │ ├── skin_steve.json │ ├── skin_ym.json │ ├── skin_yy.json │ ├── skin_zk.json │ ├── xqz/ │ │ ├── cloth.mdp │ │ └── hair.mdp │ └── xqz.json ├── sounds/ │ ├── README.txt │ ├── affectionate_scream.ogg │ ├── anvil_land.ogg │ ├── anvil_use.ogg │ ├── attack1.ogg │ ├── attack2.ogg │ ├── barrel_open.ogg │ ├── bat_death.ogg │ ├── bat_hurt1.ogg │ ├── bat_hurt2.ogg │ ├── bat_hurt3.ogg │ ├── bazooka_fire.ogg │ ├── blaze_death.ogg │ ├── blaze_hit1.ogg │ ├── blaze_hit2.ogg │ ├── blaze_hit3.ogg │ ├── bow.ogg │ ├── bowhit.ogg │ ├── bowhit2.ogg │ ├── broken.ogg │ ├── button1.ogg │ ├── cannon.ogg │ ├── cat_hit1.ogg │ ├── cat_hit2.ogg │ ├── cat_hit3.ogg │ ├── cat_meow1.ogg │ ├── cat_meow2.ogg │ ├── cat_meow3.ogg │ ├── chain_gun_fire.ogg │ ├── chest.ogg │ ├── chestclosed.ogg │ ├── chicken_hurt1.ogg │ ├── chicken_hurt2.ogg │ ├── chicken_say1.ogg │ ├── chicken_say2.ogg │ ├── chicken_say3.ogg │ ├── click.ogg │ ├── cloth1.ogg │ ├── cloth2.ogg │ ├── cloth3.ogg │ ├── cow_hurt1.ogg │ ├── cow_hurt2.ogg │ ├── cow_hurt3.ogg │ ├── cow_say1.ogg │ ├── cow_say2.ogg │ ├── cow_say3.ogg │ ├── creeper1.ogg │ ├── creeper2.ogg │ ├── creeper3.ogg │ ├── creeper_death.ogg │ ├── dirt1.ogg │ ├── dirt2.ogg │ ├── dirt3.ogg │ ├── dolphin_death.ogg │ ├── dolphin_hurt1.ogg │ ├── dolphin_hurt2.ogg │ ├── dolphin_hurt3.ogg │ ├── dolphin_play1.ogg │ ├── dolphin_play2.ogg │ ├── door1.ogg │ ├── door2.ogg │ ├── drink.ogg │ ├── eat1.ogg │ ├── eat2.ogg │ ├── eat3.ogg │ ├── enchant1.ogg │ ├── enchant2.ogg │ ├── enchant3.ogg │ ├── enderman_death.ogg │ ├── enderman_hit1.ogg │ ├── enderman_hit2.ogg │ ├── enderman_hit3.ogg │ ├── enderman_idle1.ogg │ ├── enderman_idle2.ogg │ ├── enderman_idle3.ogg │ ├── explode1.ogg │ ├── explode2.ogg │ ├── explode3.ogg │ ├── explode4.ogg │ ├── female_hit1.ogg │ ├── female_hit2.ogg │ ├── female_hit3.ogg │ ├── fireball.ogg │ ├── fireball2.ogg │ ├── fizz.ogg │ ├── fuse.ogg │ ├── ghast_charge.ogg │ ├── ghast_death.ogg │ ├── ghast_moan1.ogg │ ├── ghast_moan2.ogg │ ├── ghast_moan3.ogg │ ├── ghast_moan4.ogg │ ├── glass1.ogg │ ├── glass2.ogg │ ├── glass3.ogg │ ├── gore1.ogg │ ├── gore2.ogg │ ├── gore3.ogg │ ├── grass.ogg │ ├── grass1.ogg │ ├── grass2.ogg │ ├── grass3.ogg │ ├── grenade_fire.ogg │ ├── hit1.ogg │ ├── hit2.ogg │ ├── hit3.ogg │ ├── laser.ogg │ ├── launch.ogg │ ├── lavapop.ogg │ ├── levelup.ogg │ ├── monster.ogg │ ├── orb.ogg │ ├── phantom_death.ogg │ ├── phantom_hurt1.ogg │ ├── phantom_hurt2.ogg │ ├── phantom_hurt3.ogg │ ├── pig_death.ogg │ ├── pig_say1.ogg │ ├── pig_say2.ogg │ ├── pig_say3.ogg │ ├── pistol_fire.ogg │ ├── pop.ogg │ ├── portal.ogg │ ├── portal2.ogg │ ├── pufferfish_blow_out.ogg │ ├── pufferfish_blow_up.ogg │ ├── pufferfish_death.ogg │ ├── pufferfish_hurt1.ogg │ ├── pufferfish_hurt2.ogg │ ├── rabbit_hurt1.ogg │ ├── rabbit_hurt2.ogg │ ├── rabbit_hurt3.ogg │ ├── rain1.ogg │ ├── rain2.ogg │ ├── rain3.ogg │ ├── rain4.ogg │ ├── rifle_fire.ogg │ ├── sand1.ogg │ ├── sand2.ogg │ ├── sand3.ogg │ ├── shatter.ogg │ ├── shatter1.ogg │ ├── shatter2.ogg │ ├── shatter3.ogg │ ├── shear.ogg │ ├── sheep_say1.ogg │ ├── sheep_say2.ogg │ ├── sheep_say3.ogg │ ├── shotgun_fire.ogg │ ├── shulker_ambient1.ogg │ ├── shulker_box_open.ogg │ ├── shulker_close.ogg │ ├── shulker_death.ogg │ ├── shulker_hit1.ogg │ ├── shulker_hit2.ogg │ ├── shulker_hit3.ogg │ ├── shulker_hurt1.ogg │ ├── shulker_hurt2.ogg │ ├── shulker_hurt3.ogg │ ├── shulker_open.ogg │ ├── shulker_shoot.ogg │ ├── skeleton1.ogg │ ├── skeleton2.ogg │ ├── skeleton3.ogg │ ├── skeleton_death.ogg │ ├── slime_attack1.ogg │ ├── slime_attack2.ogg │ ├── snow1.ogg │ ├── snow2.ogg │ ├── snow3.ogg │ ├── spider_death.ogg │ ├── spider_say1.ogg │ ├── spider_say2.ogg │ ├── spider_say3.ogg │ ├── splash.ogg │ ├── step_cloth.ogg │ ├── step_grass1.ogg │ ├── step_grass2.ogg │ ├── step_grass3.ogg │ ├── step_grass4.ogg │ ├── step_grass5.ogg │ ├── step_grass6.ogg │ ├── step_ladder.ogg │ ├── step_sand.ogg │ ├── step_snow1.ogg │ ├── step_snow2.ogg │ ├── step_snow3.ogg │ ├── step_snow4.ogg │ ├── step_stone1.ogg │ ├── step_stone2.ogg │ ├── step_stone3.ogg │ ├── step_stone4.ogg │ ├── step_stone5.ogg │ ├── step_stone6.ogg │ ├── step_wood1.ogg │ ├── step_wood2.ogg │ ├── step_wood3.ogg │ ├── step_wood4.ogg │ ├── step_wood5.ogg │ ├── step_wood6.ogg │ ├── stone1.ogg │ ├── stone2.ogg │ ├── stone3.ogg │ ├── strip1.ogg │ ├── strip2.ogg │ ├── strip3.ogg │ ├── strip4.ogg │ ├── swim1.ogg │ ├── swim2.ogg │ ├── swim3.ogg │ ├── swim4.ogg │ ├── sys3.ogg │ ├── system1.ogg │ ├── system2.ogg │ ├── thorns_hit1.ogg │ ├── thorns_hit2.ogg │ ├── thorns_hit3.ogg │ ├── thorns_hit4.ogg │ ├── thunder1.ogg │ ├── thunder2.ogg │ ├── thunder3.ogg │ ├── tink1.ogg │ ├── tink2.ogg │ ├── tink3.ogg │ ├── travel.ogg │ ├── trigger.ogg │ ├── turtle_death.ogg │ ├── turtle_hurt1.ogg │ ├── turtle_hurt2.ogg │ ├── turtle_hurt3.ogg │ ├── villager_death.ogg │ ├── villager_hit1.ogg │ ├── villager_hit2.ogg │ ├── villager_hit3.ogg │ ├── villager_say1.ogg │ ├── villager_say2.ogg │ ├── villager_say3.ogg │ ├── wand1.ogg │ ├── wand2.ogg │ ├── wand3.ogg │ ├── wandfail.ogg │ ├── weapon.ogg │ ├── wolf_bark1.ogg │ ├── wolf_bark2.ogg │ ├── wolf_bark3.ogg │ ├── wolf_death.ogg │ ├── wolf_hurt1.ogg │ ├── wolf_hurt2.ogg │ ├── wolf_hurt3.ogg │ ├── wood1.ogg │ ├── wood2.ogg │ ├── wood3.ogg │ ├── zombie_death.ogg │ ├── zombie_hurt1.ogg │ ├── zombie_hurt2.ogg │ ├── zombie_say1.ogg │ ├── zombie_say2.ogg │ ├── zombie_say3.ogg │ ├── zpig1.ogg │ ├── zpig2.ogg │ ├── zpig3.ogg │ ├── zpigdeath.ogg │ ├── zpighurt1.ogg │ └── zpighurt2.ogg ├── spawns/ │ ├── aurora_palace.json │ ├── end_outpost.json │ └── monument_ocean.json ├── textures/ │ └── backgrounds/ │ └── atlas_config.json ├── trees/ │ ├── acacia/ │ │ └── acacia.json │ ├── bare_oak/ │ │ └── bare_oak.json │ ├── birch/ │ │ ├── birch.json │ │ └── leaf.mdp │ ├── blue_mushroom/ │ │ └── blue_mushroom.json │ ├── cactus/ │ │ └── cactus.json │ ├── dark_oak/ │ │ └── dark_oak.json │ ├── jungle/ │ │ └── jungle.json │ ├── oak/ │ │ ├── leaf.mdp │ │ └── oak.json │ ├── palm/ │ │ └── palm.json │ ├── spruce/ │ │ └── spruce.json │ ├── tainted/ │ │ └── tainted.json │ └── volcano_oak/ │ └── volcano_oak.json ├── ui/ │ ├── ContainerHelper.lua │ ├── DeathUI.lua │ ├── GuiID.lua │ ├── GuiLoader.lua │ ├── GuiLoaderProxy.lua │ ├── HotkeyUIHelper.lua │ ├── InfoPopupUI.lua │ ├── LanguageUI.lua │ ├── ModListUI.lua │ ├── MouseItemData.lua │ ├── NewPlayerUI.lua │ ├── NewServerUI.lua │ ├── NewWorldUI.lua │ ├── OptionUI.lua │ ├── PendingUI.lua │ ├── PlayerListUI.lua │ ├── RawHotkeyUIHelper.lua │ ├── ServerListUI.lua │ ├── SettingUI.lua │ ├── StartUI.lua │ ├── TipUI.lua │ ├── TipsOfTheDay.lua │ ├── UIDefault.lua │ ├── UIDesign.lua │ ├── UILayerDefine.lua │ ├── UIManager.lua │ ├── UISlotOp.lua │ ├── UISpritePool.lua │ ├── UIUtil.lua │ ├── UIWindow.lua │ ├── WorldListUI.lua │ ├── advancement/ │ │ ├── AdvancementContainerClient.lua │ │ ├── AdvancementTree.lua │ │ ├── AdvancementUI.lua │ │ └── AdvancementUIData.lua │ ├── backpack/ │ │ ├── BackpackContainerClient.lua │ │ ├── BackpackContainerServer.lua │ │ ├── BackpackUI.lua │ │ └── BackpackUIData.lua │ ├── brewing/ │ │ ├── BrewingContainerClient.lua │ │ ├── BrewingContainerServer.lua │ │ ├── BrewingUI.lua │ │ └── BrewingUIData.lua │ ├── chest/ │ │ ├── Chest30ContainerClient.lua │ │ ├── Chest30ContainerServer.lua │ │ ├── Chest30UI.lua │ │ ├── ChestUIData.lua │ │ ├── EnderChest30ContainerServer.lua │ │ ├── EnderChest30UI.lua │ │ ├── IChestContainerClient.lua │ │ ├── IChestContainerServer.lua │ │ └── IChestUI.lua │ ├── craft3x/ │ │ ├── Craft3xContainerClient.lua │ │ ├── Craft3xContainerServer.lua │ │ ├── Craft3xHelper.lua │ │ ├── Craft3xUI.lua │ │ └── Craft3xUIData.lua │ ├── enchant/ │ │ ├── EnchantContainerClient.lua │ │ ├── EnchantContainerServer.lua │ │ ├── EnchantUI.lua │ │ └── EnchantUIData.lua │ ├── hud/ │ │ └── HudUI.lua │ ├── nei/ │ │ ├── NeiDataBrewing.lua │ │ ├── NeiDataCrafting.lua │ │ ├── NeiDataProxy.lua │ │ ├── NeiDataRepairing.lua │ │ ├── NeiDataSmelting.lua │ │ └── NeiUI.lua │ ├── recipe_book/ │ │ ├── RecipeBookServer.lua │ │ └── RecipeBookUI.lua │ ├── repair/ │ │ ├── RepairContainerClient.lua │ │ ├── RepairContainerServer.lua │ │ ├── RepairUI.lua │ │ └── RepairUIData.lua │ ├── shooter/ │ │ ├── IShooterContainerClient.lua │ │ ├── IShooterContainerServer.lua │ │ ├── IShooterUI.lua │ │ ├── Shooter9ContainerClient.lua │ │ ├── Shooter9ContainerServer.lua │ │ └── Shooter9UI.lua │ └── smelt/ │ ├── SmeltContainerClient.lua │ ├── SmeltContainerServer.lua │ ├── SmeltUI.lua │ └── SmeltUIData.lua ├── ui_res/ │ ├── advance_tip.json │ ├── advancement_cell.json │ ├── base.json │ ├── base2.json │ ├── base3.json │ ├── base_list_cell.json │ ├── base_list_cell_highlight.json │ ├── base_list_cell_highlight_2.json │ ├── black.json │ ├── button_disabled.json │ ├── button_highlight.json │ ├── button_normal.json │ ├── button_pressed.json │ ├── cell_empty.json │ ├── cell_empty_2.json │ ├── cell_empty_3.json │ ├── cell_empty_4.json │ ├── cell_normal.json │ ├── cell_selected.json │ ├── cell_selected_2.json │ ├── cell_selected_3.json │ ├── cell_selected_4.json │ ├── cursor.cur │ ├── round_rect_white.json │ ├── tab.json │ ├── tab_clicked.json │ ├── tipbox.json │ ├── white.json │ ├── white_circle.json │ └── window_frame_01.json ├── util/ │ ├── Algorithm.lua │ ├── DictUtil.lua │ ├── MiscHelper.lua │ ├── OrderedArray.lua │ ├── PhysicsUtil.lua │ ├── SnakeModel.lua │ ├── StringUtil.lua │ └── ValidChecker.lua ├── world/ │ ├── Portals.lua │ └── TCModWorldData.lua ├── world_gen/ │ ├── ChunkGenerator.lua │ ├── ModChunkGenerator.lua │ ├── SpecialTerrainProxies.lua │ ├── TerrainProxies.lua │ ├── TransitionProxies.lua │ └── WorldGenDefine.lua └── world_gen_init.lua