├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── todo.yml └── workflows │ ├── ci.yml │ ├── crowdin.yml │ ├── pull_request.yml │ ├── release.yml │ └── style_check.yml ├── .gitignore ├── .idea └── icon.svg ├── ASSETS_LICENSE ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.cn.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_en.md ├── build.gradle ├── crowdin.yml ├── dependencies.gradle ├── docs ├── book.toml └── src │ ├── SUMMARY.md │ ├── about_us.md │ ├── addon │ ├── 01_environment.md │ ├── 02_create_item.md │ └── index.md │ ├── datapack │ ├── 01_anvil_processing_recipe.md │ └── index.md │ ├── img │ └── support.jpg │ └── support_us.md ├── gradle.properties ├── gradle ├── libs.versions.toml ├── scripts │ ├── jars.gradle │ ├── moddevgradle.gradle │ ├── publishing.gradle │ ├── repositories.gradle │ └── resources.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── spotless └── spotless.importorder ├── src ├── generated │ └── resources │ │ ├── assets │ │ └── anvilcraft │ │ │ ├── blockstates │ │ │ ├── berry_cake_block.json │ │ │ ├── berry_cream_block.json │ │ │ ├── black_cement.json │ │ │ ├── black_cement_cauldron.json │ │ │ ├── black_chocolate_block.json │ │ │ ├── black_chocolate_slab.json │ │ │ ├── black_chocolate_stairs.json │ │ │ ├── blue_cement.json │ │ │ ├── blue_cement_cauldron.json │ │ │ ├── brass_block.json │ │ │ ├── brass_pressure_plate.json │ │ │ ├── bronze_block.json │ │ │ ├── bronze_pressure_plate.json │ │ │ ├── brown_cement.json │ │ │ ├── brown_cement_cauldron.json │ │ │ ├── cake_base_block.json │ │ │ ├── cake_block.json │ │ │ ├── chocolate_block.json │ │ │ ├── chocolate_cake_block.json │ │ │ ├── chocolate_cream_block.json │ │ │ ├── chocolate_slab.json │ │ │ ├── chocolate_stairs.json │ │ │ ├── cinerite.json │ │ │ ├── confined_energy_anvilon.json │ │ │ ├── confined_mass_anvilon.json │ │ │ ├── confined_space_anvilon.json │ │ │ ├── confined_time_anvilon.json │ │ │ ├── confinement_chamber.json │ │ │ ├── controllable_sand.json │ │ │ ├── copper_pressure_plate.json │ │ │ ├── cream_block.json │ │ │ ├── cursed_gold_block.json │ │ │ ├── cut_ember_metal_block.json │ │ │ ├── cut_heavy_iron_block.json │ │ │ ├── cut_heavy_iron_slab.json │ │ │ ├── cut_heavy_iron_stairs.json │ │ │ ├── cut_royal_steel_block.json │ │ │ ├── cut_royal_steel_slab.json │ │ │ ├── cut_royal_steel_stairs.json │ │ │ ├── cyan_cement.json │ │ │ ├── cyan_cement_cauldron.json │ │ │ ├── deepslate_lead_ore.json │ │ │ ├── deepslate_silver_ore.json │ │ │ ├── deepslate_tin_ore.json │ │ │ ├── deepslate_titanium_ore.json │ │ │ ├── deepslate_tungsten_ore.json │ │ │ ├── deepslate_uranium_ore.json │ │ │ ├── deepslate_zinc_ore.json │ │ │ ├── earth_core_shard_block.json │ │ │ ├── earth_core_shard_ore.json │ │ │ ├── ember_glass.json │ │ │ ├── ember_metal_block.json │ │ │ ├── end_dust.json │ │ │ ├── exposed_copper_pressure_plate.json │ │ │ ├── frost_metal_block.json │ │ │ ├── glowing_netherite_block.json │ │ │ ├── glowing_tungsten_block.json │ │ │ ├── gray_cement.json │ │ │ ├── gray_cement_cauldron.json │ │ │ ├── green_cement.json │ │ │ ├── green_cement_cauldron.json │ │ │ ├── heated_netherite_block.json │ │ │ ├── heated_tungsten_block.json │ │ │ ├── heavy_iron_block.json │ │ │ ├── impact_pile.json │ │ │ ├── incandescent_netherite_block.json │ │ │ ├── incandescent_tungsten_block.json │ │ │ ├── item_detector.json │ │ │ ├── lead_block.json │ │ │ ├── lead_pressure_plate.json │ │ │ ├── levitation_powder_block.json │ │ │ ├── light_blue_cement.json │ │ │ ├── light_blue_cement_cauldron.json │ │ │ ├── light_gray_cement.json │ │ │ ├── light_gray_cement_cauldron.json │ │ │ ├── lime_cement.json │ │ │ ├── lime_cement_cauldron.json │ │ │ ├── magenta_cement.json │ │ │ ├── magenta_cement_cauldron.json │ │ │ ├── melt_gem.json │ │ │ ├── mineral_fountain.json │ │ │ ├── multiphase_matter_block.json │ │ │ ├── negative_matter_block.json │ │ │ ├── nether_dust.json │ │ │ ├── oil.json │ │ │ ├── orange_cement.json │ │ │ ├── orange_cement_cauldron.json │ │ │ ├── oxidized_copper_pressure_plate.json │ │ │ ├── pink_cement.json │ │ │ ├── pink_cement_cauldron.json │ │ │ ├── polished_heavy_iron_block.json │ │ │ ├── polished_heavy_iron_slab.json │ │ │ ├── polished_heavy_iron_stairs.json │ │ │ ├── pulse_generator.json │ │ │ ├── purple_cement.json │ │ │ ├── purple_cement_cauldron.json │ │ │ ├── quartz_sand.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_titanium_block.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── raw_uranium_block.json │ │ │ ├── raw_zinc_block.json │ │ │ ├── red_cement.json │ │ │ ├── red_cement_cauldron.json │ │ │ ├── redhot_netherite_block.json │ │ │ ├── redhot_tungsten_block.json │ │ │ ├── reinforced_concrete_black.json │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ ├── reinforced_concrete_blue.json │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ ├── reinforced_concrete_brown.json │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ ├── reinforced_concrete_cyan.json │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ ├── reinforced_concrete_gray.json │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ ├── reinforced_concrete_green.json │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ ├── reinforced_concrete_light_blue.json │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ ├── reinforced_concrete_light_gray.json │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ ├── reinforced_concrete_lime.json │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ ├── reinforced_concrete_magenta.json │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ ├── reinforced_concrete_orange.json │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ ├── reinforced_concrete_pink.json │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ ├── reinforced_concrete_purple.json │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ ├── reinforced_concrete_red.json │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ ├── reinforced_concrete_white.json │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ ├── reinforced_concrete_yellow.json │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ ├── royal_steel_block.json │ │ │ ├── ruby_block.json │ │ │ ├── sapphire_block.json │ │ │ ├── silver_block.json │ │ │ ├── silver_pressure_plate.json │ │ │ ├── sliding_rail.json │ │ │ ├── sliding_rail_stop.json │ │ │ ├── smooth_royal_steel_block.json │ │ │ ├── sturdy_deepslate.json │ │ │ ├── tempering_glass.json │ │ │ ├── tin_block.json │ │ │ ├── tin_pressure_plate.json │ │ │ ├── titanium_block.json │ │ │ ├── titanium_pressure_plate.json │ │ │ ├── topaz_block.json │ │ │ ├── transcendium_block.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_pressure_plate.json │ │ │ ├── uranium_block.json │ │ │ ├── uranium_pressure_plate.json │ │ │ ├── void_matter_block.json │ │ │ ├── void_stone.json │ │ │ ├── weathered_copper_pressure_plate.json │ │ │ ├── white_cement.json │ │ │ ├── white_cement_cauldron.json │ │ │ ├── white_chocolate_block.json │ │ │ ├── white_chocolate_slab.json │ │ │ ├── white_chocolate_stairs.json │ │ │ ├── yellow_cement.json │ │ │ ├── yellow_cement_cauldron.json │ │ │ ├── zinc_block.json │ │ │ └── zinc_pressure_plate.json │ │ │ ├── lang │ │ │ ├── en_ud.json │ │ │ └── en_us.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── berry_cream_block.json │ │ │ ├── black_cement.json │ │ │ ├── black_cement_cauldron.json │ │ │ ├── black_chocolate_block.json │ │ │ ├── black_chocolate_slab.json │ │ │ ├── black_chocolate_slab_top.json │ │ │ ├── black_chocolate_stairs.json │ │ │ ├── black_chocolate_stairs_inner.json │ │ │ ├── black_chocolate_stairs_outer.json │ │ │ ├── blue_cement.json │ │ │ ├── blue_cement_cauldron.json │ │ │ ├── brass_block.json │ │ │ ├── brass_pressure_plate.json │ │ │ ├── brass_pressure_plate_down.json │ │ │ ├── bronze_block.json │ │ │ ├── bronze_pressure_plate.json │ │ │ ├── bronze_pressure_plate_down.json │ │ │ ├── brown_cement.json │ │ │ ├── brown_cement_cauldron.json │ │ │ ├── cake_base_block.json │ │ │ ├── chocolate_block.json │ │ │ ├── chocolate_cream_block.json │ │ │ ├── chocolate_slab.json │ │ │ ├── chocolate_slab_top.json │ │ │ ├── chocolate_stairs.json │ │ │ ├── chocolate_stairs_inner.json │ │ │ ├── chocolate_stairs_outer.json │ │ │ ├── cinerite.json │ │ │ ├── copper_pressure_plate.json │ │ │ ├── copper_pressure_plate_down.json │ │ │ ├── cream_block.json │ │ │ ├── cursed_gold_block.json │ │ │ ├── cut_heavy_iron_block.json │ │ │ ├── cut_heavy_iron_slab.json │ │ │ ├── cut_heavy_iron_slab_top.json │ │ │ ├── cut_heavy_iron_stairs.json │ │ │ ├── cut_heavy_iron_stairs_inner.json │ │ │ ├── cut_heavy_iron_stairs_outer.json │ │ │ ├── cut_royal_steel_block.json │ │ │ ├── cut_royal_steel_slab.json │ │ │ ├── cut_royal_steel_slab_top.json │ │ │ ├── cut_royal_steel_stairs.json │ │ │ ├── cut_royal_steel_stairs_inner.json │ │ │ ├── cut_royal_steel_stairs_outer.json │ │ │ ├── cyan_cement.json │ │ │ ├── cyan_cement_cauldron.json │ │ │ ├── deepslate_lead_ore.json │ │ │ ├── deepslate_silver_ore.json │ │ │ ├── deepslate_tin_ore.json │ │ │ ├── deepslate_titanium_ore.json │ │ │ ├── deepslate_tungsten_ore.json │ │ │ ├── deepslate_uranium_ore.json │ │ │ ├── deepslate_zinc_ore.json │ │ │ ├── earth_core_shard_block.json │ │ │ ├── earth_core_shard_ore.json │ │ │ ├── ember_glass.json │ │ │ ├── end_dust.json │ │ │ ├── exposed_copper_pressure_plate.json │ │ │ ├── exposed_copper_pressure_plate_down.json │ │ │ ├── frost_metal_block.json │ │ │ ├── glowing_netherite_block.json │ │ │ ├── glowing_tungsten_block.json │ │ │ ├── gray_cement.json │ │ │ ├── gray_cement_cauldron.json │ │ │ ├── green_cement.json │ │ │ ├── green_cement_cauldron.json │ │ │ ├── heated_netherite_block.json │ │ │ ├── heated_tungsten_block.json │ │ │ ├── incandescent_netherite_block.json │ │ │ ├── incandescent_tungsten_block.json │ │ │ ├── lead_block.json │ │ │ ├── lead_pressure_plate.json │ │ │ ├── lead_pressure_plate_down.json │ │ │ ├── levitation_powder_block.json │ │ │ ├── light_blue_cement.json │ │ │ ├── light_blue_cement_cauldron.json │ │ │ ├── light_gray_cement.json │ │ │ ├── light_gray_cement_cauldron.json │ │ │ ├── lime_cement.json │ │ │ ├── lime_cement_cauldron.json │ │ │ ├── magenta_cement.json │ │ │ ├── magenta_cement_cauldron.json │ │ │ ├── melt_gem.json │ │ │ ├── nether_dust.json │ │ │ ├── oil.json │ │ │ ├── orange_cement.json │ │ │ ├── orange_cement_cauldron.json │ │ │ ├── oxidized_copper_pressure_plate.json │ │ │ ├── oxidized_copper_pressure_plate_down.json │ │ │ ├── pink_cement.json │ │ │ ├── pink_cement_cauldron.json │ │ │ ├── polished_heavy_iron_block.json │ │ │ ├── polished_heavy_iron_slab.json │ │ │ ├── polished_heavy_iron_slab_top.json │ │ │ ├── polished_heavy_iron_stairs.json │ │ │ ├── polished_heavy_iron_stairs_inner.json │ │ │ ├── polished_heavy_iron_stairs_outer.json │ │ │ ├── purple_cement.json │ │ │ ├── purple_cement_cauldron.json │ │ │ ├── quartz_sand.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_titanium_block.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── raw_uranium_block.json │ │ │ ├── raw_zinc_block.json │ │ │ ├── red_cement.json │ │ │ ├── red_cement_cauldron.json │ │ │ ├── redhot_netherite_block.json │ │ │ ├── redhot_tungsten_block.json │ │ │ ├── reinforced_concrete_black.json │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ ├── reinforced_concrete_black_slab_top.json │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ ├── reinforced_concrete_black_stair_inner.json │ │ │ ├── reinforced_concrete_black_stair_outer.json │ │ │ ├── reinforced_concrete_black_wall_post.json │ │ │ ├── reinforced_concrete_black_wall_side.json │ │ │ ├── reinforced_concrete_black_wall_side_tall.json │ │ │ ├── reinforced_concrete_blue.json │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ ├── reinforced_concrete_blue_slab_top.json │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ ├── reinforced_concrete_blue_stair_inner.json │ │ │ ├── reinforced_concrete_blue_stair_outer.json │ │ │ ├── reinforced_concrete_blue_wall_post.json │ │ │ ├── reinforced_concrete_blue_wall_side.json │ │ │ ├── reinforced_concrete_blue_wall_side_tall.json │ │ │ ├── reinforced_concrete_bottom_black.json │ │ │ ├── reinforced_concrete_bottom_blue.json │ │ │ ├── reinforced_concrete_bottom_brown.json │ │ │ ├── reinforced_concrete_bottom_cyan.json │ │ │ ├── reinforced_concrete_bottom_gray.json │ │ │ ├── reinforced_concrete_bottom_green.json │ │ │ ├── reinforced_concrete_bottom_light_blue.json │ │ │ ├── reinforced_concrete_bottom_light_gray.json │ │ │ ├── reinforced_concrete_bottom_lime.json │ │ │ ├── reinforced_concrete_bottom_magenta.json │ │ │ ├── reinforced_concrete_bottom_orange.json │ │ │ ├── reinforced_concrete_bottom_pink.json │ │ │ ├── reinforced_concrete_bottom_purple.json │ │ │ ├── reinforced_concrete_bottom_red.json │ │ │ ├── reinforced_concrete_bottom_white.json │ │ │ ├── reinforced_concrete_bottom_yellow.json │ │ │ ├── reinforced_concrete_brown.json │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ ├── reinforced_concrete_brown_slab_top.json │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ ├── reinforced_concrete_brown_stair_inner.json │ │ │ ├── reinforced_concrete_brown_stair_outer.json │ │ │ ├── reinforced_concrete_brown_wall_post.json │ │ │ ├── reinforced_concrete_brown_wall_side.json │ │ │ ├── reinforced_concrete_brown_wall_side_tall.json │ │ │ ├── reinforced_concrete_cyan.json │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ ├── reinforced_concrete_cyan_slab_top.json │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ ├── reinforced_concrete_cyan_stair_inner.json │ │ │ ├── reinforced_concrete_cyan_stair_outer.json │ │ │ ├── reinforced_concrete_cyan_wall_post.json │ │ │ ├── reinforced_concrete_cyan_wall_side.json │ │ │ ├── reinforced_concrete_cyan_wall_side_tall.json │ │ │ ├── reinforced_concrete_gray.json │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ ├── reinforced_concrete_gray_slab_top.json │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ ├── reinforced_concrete_gray_stair_inner.json │ │ │ ├── reinforced_concrete_gray_stair_outer.json │ │ │ ├── reinforced_concrete_gray_wall_post.json │ │ │ ├── reinforced_concrete_gray_wall_side.json │ │ │ ├── reinforced_concrete_gray_wall_side_tall.json │ │ │ ├── reinforced_concrete_green.json │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ ├── reinforced_concrete_green_slab_top.json │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ ├── reinforced_concrete_green_stair_inner.json │ │ │ ├── reinforced_concrete_green_stair_outer.json │ │ │ ├── reinforced_concrete_green_wall_post.json │ │ │ ├── reinforced_concrete_green_wall_side.json │ │ │ ├── reinforced_concrete_green_wall_side_tall.json │ │ │ ├── reinforced_concrete_light_blue.json │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ ├── reinforced_concrete_light_blue_slab_top.json │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ ├── reinforced_concrete_light_blue_stair_inner.json │ │ │ ├── reinforced_concrete_light_blue_stair_outer.json │ │ │ ├── reinforced_concrete_light_blue_wall_post.json │ │ │ ├── reinforced_concrete_light_blue_wall_side.json │ │ │ ├── reinforced_concrete_light_blue_wall_side_tall.json │ │ │ ├── reinforced_concrete_light_gray.json │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ ├── reinforced_concrete_light_gray_slab_top.json │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ ├── reinforced_concrete_light_gray_stair_inner.json │ │ │ ├── reinforced_concrete_light_gray_stair_outer.json │ │ │ ├── reinforced_concrete_light_gray_wall_post.json │ │ │ ├── reinforced_concrete_light_gray_wall_side.json │ │ │ ├── reinforced_concrete_light_gray_wall_side_tall.json │ │ │ ├── reinforced_concrete_lime.json │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ ├── reinforced_concrete_lime_slab_top.json │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ ├── reinforced_concrete_lime_stair_inner.json │ │ │ ├── reinforced_concrete_lime_stair_outer.json │ │ │ ├── reinforced_concrete_lime_wall_post.json │ │ │ ├── reinforced_concrete_lime_wall_side.json │ │ │ ├── reinforced_concrete_lime_wall_side_tall.json │ │ │ ├── reinforced_concrete_magenta.json │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ ├── reinforced_concrete_magenta_slab_top.json │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ ├── reinforced_concrete_magenta_stair_inner.json │ │ │ ├── reinforced_concrete_magenta_stair_outer.json │ │ │ ├── reinforced_concrete_magenta_wall_post.json │ │ │ ├── reinforced_concrete_magenta_wall_side.json │ │ │ ├── reinforced_concrete_magenta_wall_side_tall.json │ │ │ ├── reinforced_concrete_orange.json │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ ├── reinforced_concrete_orange_slab_top.json │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ ├── reinforced_concrete_orange_stair_inner.json │ │ │ ├── reinforced_concrete_orange_stair_outer.json │ │ │ ├── reinforced_concrete_orange_wall_post.json │ │ │ ├── reinforced_concrete_orange_wall_side.json │ │ │ ├── reinforced_concrete_orange_wall_side_tall.json │ │ │ ├── reinforced_concrete_pink.json │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ ├── reinforced_concrete_pink_slab_top.json │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ ├── reinforced_concrete_pink_stair_inner.json │ │ │ ├── reinforced_concrete_pink_stair_outer.json │ │ │ ├── reinforced_concrete_pink_wall_post.json │ │ │ ├── reinforced_concrete_pink_wall_side.json │ │ │ ├── reinforced_concrete_pink_wall_side_tall.json │ │ │ ├── reinforced_concrete_purple.json │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ ├── reinforced_concrete_purple_slab_top.json │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ ├── reinforced_concrete_purple_stair_inner.json │ │ │ ├── reinforced_concrete_purple_stair_outer.json │ │ │ ├── reinforced_concrete_purple_wall_post.json │ │ │ ├── reinforced_concrete_purple_wall_side.json │ │ │ ├── reinforced_concrete_purple_wall_side_tall.json │ │ │ ├── reinforced_concrete_red.json │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ ├── reinforced_concrete_red_slab_top.json │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ ├── reinforced_concrete_red_stair_inner.json │ │ │ ├── reinforced_concrete_red_stair_outer.json │ │ │ ├── reinforced_concrete_red_wall_post.json │ │ │ ├── reinforced_concrete_red_wall_side.json │ │ │ ├── reinforced_concrete_red_wall_side_tall.json │ │ │ ├── reinforced_concrete_top_black.json │ │ │ ├── reinforced_concrete_top_blue.json │ │ │ ├── reinforced_concrete_top_brown.json │ │ │ ├── reinforced_concrete_top_cyan.json │ │ │ ├── reinforced_concrete_top_gray.json │ │ │ ├── reinforced_concrete_top_green.json │ │ │ ├── reinforced_concrete_top_light_blue.json │ │ │ ├── reinforced_concrete_top_light_gray.json │ │ │ ├── reinforced_concrete_top_lime.json │ │ │ ├── reinforced_concrete_top_magenta.json │ │ │ ├── reinforced_concrete_top_orange.json │ │ │ ├── reinforced_concrete_top_pink.json │ │ │ ├── reinforced_concrete_top_purple.json │ │ │ ├── reinforced_concrete_top_red.json │ │ │ ├── reinforced_concrete_top_white.json │ │ │ ├── reinforced_concrete_top_yellow.json │ │ │ ├── reinforced_concrete_white.json │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ ├── reinforced_concrete_white_slab_top.json │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ ├── reinforced_concrete_white_stair_inner.json │ │ │ ├── reinforced_concrete_white_stair_outer.json │ │ │ ├── reinforced_concrete_white_wall_post.json │ │ │ ├── reinforced_concrete_white_wall_side.json │ │ │ ├── reinforced_concrete_white_wall_side_tall.json │ │ │ ├── reinforced_concrete_yellow.json │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ ├── reinforced_concrete_yellow_slab_top.json │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ ├── reinforced_concrete_yellow_stair_inner.json │ │ │ ├── reinforced_concrete_yellow_stair_outer.json │ │ │ ├── reinforced_concrete_yellow_wall_post.json │ │ │ ├── reinforced_concrete_yellow_wall_side.json │ │ │ ├── reinforced_concrete_yellow_wall_side_tall.json │ │ │ ├── royal_steel_block.json │ │ │ ├── ruby_block.json │ │ │ ├── sapphire_block.json │ │ │ ├── silver_block.json │ │ │ ├── silver_pressure_plate.json │ │ │ ├── silver_pressure_plate_down.json │ │ │ ├── smooth_royal_steel_block.json │ │ │ ├── sturdy_deepslate.json │ │ │ ├── tempering_glass.json │ │ │ ├── tin_block.json │ │ │ ├── tin_pressure_plate.json │ │ │ ├── tin_pressure_plate_down.json │ │ │ ├── titanium_block.json │ │ │ ├── titanium_pressure_plate.json │ │ │ ├── titanium_pressure_plate_down.json │ │ │ ├── topaz_block.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_pressure_plate.json │ │ │ ├── tungsten_pressure_plate_down.json │ │ │ ├── uranium_block.json │ │ │ ├── uranium_pressure_plate.json │ │ │ ├── uranium_pressure_plate_down.json │ │ │ ├── void_stone.json │ │ │ ├── weathered_copper_pressure_plate.json │ │ │ ├── weathered_copper_pressure_plate_down.json │ │ │ ├── white_cement.json │ │ │ ├── white_cement_cauldron.json │ │ │ ├── white_chocolate_block.json │ │ │ ├── white_chocolate_slab.json │ │ │ ├── white_chocolate_slab_top.json │ │ │ ├── white_chocolate_stairs.json │ │ │ ├── white_chocolate_stairs_inner.json │ │ │ ├── white_chocolate_stairs_outer.json │ │ │ ├── yellow_cement.json │ │ │ ├── yellow_cement_cauldron.json │ │ │ ├── zinc_block.json │ │ │ ├── zinc_pressure_plate.json │ │ │ └── zinc_pressure_plate_down.json │ │ │ └── item │ │ │ ├── acceleration_ring.json │ │ │ ├── active_silencer.json │ │ │ ├── amber.json │ │ │ ├── amber_block.json │ │ │ ├── amethyst_axe.json │ │ │ ├── amethyst_hoe.json │ │ │ ├── amethyst_pickaxe.json │ │ │ ├── amethyst_shovel.json │ │ │ ├── amethyst_sword.json │ │ │ ├── amulet_box.json │ │ │ ├── anvil_amulet.json │ │ │ ├── arrow.json │ │ │ ├── batch_crafter.json │ │ │ ├── beef_mushroom_stew.json │ │ │ ├── berry_cake_block.json │ │ │ ├── berry_cream_block.json │ │ │ ├── black_cement_bucket.json │ │ │ ├── black_chocolate_block.json │ │ │ ├── black_chocolate_slab.json │ │ │ ├── black_chocolate_stairs.json │ │ │ ├── block_comparator.json │ │ │ ├── block_devourer.json │ │ │ ├── block_placer.json │ │ │ ├── blue_cement_bucket.json │ │ │ ├── brass_block.json │ │ │ ├── brass_ingot.json │ │ │ ├── brass_nugget.json │ │ │ ├── brass_pressure_plate.json │ │ │ ├── bronze_block.json │ │ │ ├── bronze_ingot.json │ │ │ ├── bronze_nugget.json │ │ │ ├── bronze_pressure_plate.json │ │ │ ├── brown_cement_bucket.json │ │ │ ├── cake_base_block.json │ │ │ ├── cake_block.json │ │ │ ├── canned_food.json │ │ │ ├── cat_amulet.json │ │ │ ├── charge_collector.json │ │ │ ├── charged_neutronium_ingot.json │ │ │ ├── charger.json │ │ │ ├── chocolate.json │ │ │ ├── chocolate_black.json │ │ │ ├── chocolate_block.json │ │ │ ├── chocolate_cake_block.json │ │ │ ├── chocolate_cream_block.json │ │ │ ├── chocolate_slab.json │ │ │ ├── chocolate_stairs.json │ │ │ ├── chocolate_white.json │ │ │ ├── chute.json │ │ │ ├── cinerite.json │ │ │ ├── circuit_board.json │ │ │ ├── cocoa_butter.json │ │ │ ├── cocoa_liquor.json │ │ │ ├── cocoa_powder.json │ │ │ ├── cogwheel_amulet.json │ │ │ ├── comrade_amulet.json │ │ │ ├── confined_energy_anvilon.json │ │ │ ├── confined_mass_anvilon.json │ │ │ ├── confined_space_anvilon.json │ │ │ ├── confined_time_anvilon.json │ │ │ ├── confinement_chamber.json │ │ │ ├── controllable_sand.json │ │ │ ├── copper_nugget.json │ │ │ ├── copper_pressure_plate.json │ │ │ ├── corrupted_beacon.json │ │ │ ├── crab_trap.json │ │ │ ├── cream.json │ │ │ ├── cream_block.json │ │ │ ├── creamy_bread_roll.json │ │ │ ├── crushing_table.json │ │ │ ├── cursed_gold_block.json │ │ │ ├── cursed_gold_ingot.json │ │ │ ├── cursed_gold_nugget.json │ │ │ ├── cut_ember_metal_block.json │ │ │ ├── cut_ember_metal_pillar.json │ │ │ ├── cut_ember_metal_slab.json │ │ │ ├── cut_ember_metal_stairs.json │ │ │ ├── cut_heavy_iron_block.json │ │ │ ├── cut_heavy_iron_slab.json │ │ │ ├── cut_heavy_iron_stairs.json │ │ │ ├── cut_royal_steel_block.json │ │ │ ├── cut_royal_steel_pillar.json │ │ │ ├── cut_royal_steel_slab.json │ │ │ ├── cut_royal_steel_stairs.json │ │ │ ├── cyan_cement_bucket.json │ │ │ ├── deepslate_lead_ore.json │ │ │ ├── deepslate_silver_ore.json │ │ │ ├── deepslate_tin_ore.json │ │ │ ├── deepslate_titanium_ore.json │ │ │ ├── deepslate_tungsten_ore.json │ │ │ ├── deepslate_uranium_ore.json │ │ │ ├── deepslate_zinc_ore.json │ │ │ ├── deflection_ring.json │ │ │ ├── discharger.json │ │ │ ├── disk.json │ │ │ ├── dog_amulet.json │ │ │ ├── dough.json │ │ │ ├── earth_core_shard.json │ │ │ ├── earth_core_shard_block.json │ │ │ ├── earth_core_shard_ore.json │ │ │ ├── eight_to_one_smithing_template.json │ │ │ ├── ember_anvil.json │ │ │ ├── ember_glass.json │ │ │ ├── ember_grindstone.json │ │ │ ├── ember_metal_axe.json │ │ │ ├── ember_metal_block.json │ │ │ ├── ember_metal_hoe.json │ │ │ ├── ember_metal_ingot.json │ │ │ ├── ember_metal_nugget.json │ │ │ ├── ember_metal_pickaxe.json │ │ │ ├── ember_metal_shovel.json │ │ │ ├── ember_metal_sword.json │ │ │ ├── ember_metal_upgrade_smithing_template.json │ │ │ ├── ember_smithing_table.json │ │ │ ├── emerald_amulet.json │ │ │ ├── end_dust.json │ │ │ ├── exposed_copper_pressure_plate.json │ │ │ ├── feather_amulet.json │ │ │ ├── ferrite_core_magnet_block.json │ │ │ ├── flour.json │ │ │ ├── four_to_one_smithing_template.json │ │ │ ├── frost_metal_axe.json │ │ │ ├── frost_metal_block.json │ │ │ ├── frost_metal_hoe.json │ │ │ ├── frost_metal_ingot.json │ │ │ ├── frost_metal_nugget.json │ │ │ ├── frost_metal_pickaxe.json │ │ │ ├── frost_metal_shovel.json │ │ │ ├── frost_metal_sword.json │ │ │ ├── frost_metal_upgrade_smithing_template.json │ │ │ ├── geode.json │ │ │ ├── giant_anvil.json │ │ │ ├── glowing_netherite_block.json │ │ │ ├── glowing_tungsten_block.json │ │ │ ├── gray_cement_bucket.json │ │ │ ├── green_cement_bucket.json │ │ │ ├── hardend_resin.json │ │ │ ├── heated_netherite_block.json │ │ │ ├── heated_tungsten_block.json │ │ │ ├── heater.json │ │ │ ├── heavy_halberd_core.json │ │ │ ├── heavy_iron_block.json │ │ │ ├── heavy_iron_column.json │ │ │ ├── heavy_iron_door.json │ │ │ ├── heavy_iron_plate.json │ │ │ ├── heavy_iron_trapdoor.json │ │ │ ├── heavy_iron_wall.json │ │ │ ├── hollow_magnet_block.json │ │ │ ├── impact_pile.json │ │ │ ├── incandescent_netherite_block.json │ │ │ ├── incandescent_tungsten_block.json │ │ │ ├── induction_light.json │ │ │ ├── ionocraft.json │ │ │ ├── ionocraft_backpack.json │ │ │ ├── item_collector.json │ │ │ ├── item_detector.json │ │ │ ├── jewelcrafting_table.json │ │ │ ├── large_cake.json │ │ │ ├── lead_block.json │ │ │ ├── lead_ingot.json │ │ │ ├── lead_nugget.json │ │ │ ├── lead_pressure_plate.json │ │ │ ├── levitation_powder.json │ │ │ ├── levitation_powder_block.json │ │ │ ├── light_blue_cement_bucket.json │ │ │ ├── light_gray_cement_bucket.json │ │ │ ├── lime_cement_bucket.json │ │ │ ├── lime_powder.json │ │ │ ├── load_monitor.json │ │ │ ├── magenta_cement_bucket.json │ │ │ ├── magnet.json │ │ │ ├── magnet_block.json │ │ │ ├── magnet_ingot.json │ │ │ ├── magnetic_chute.json │ │ │ ├── magnetoelectric_core.json │ │ │ ├── melt_gem_bucket.json │ │ │ ├── menger_sponge.json │ │ │ ├── mineral_fountain.json │ │ │ ├── mob_amber_block.json │ │ │ ├── multiphase_matter.json │ │ │ ├── multiphase_matter_axe.json │ │ │ ├── multiphase_matter_block.json │ │ │ ├── multiphase_matter_hoe.json │ │ │ ├── multiphase_matter_pickaxe.json │ │ │ ├── multiphase_matter_shovel.json │ │ │ ├── multiphase_matter_sword.json │ │ │ ├── negative_matter.json │ │ │ ├── negative_matter_block.json │ │ │ ├── negative_matter_nugget.json │ │ │ ├── nesting_shulker_box.json │ │ │ ├── nether_dust.json │ │ │ ├── netherite_crystal_nucleus.json │ │ │ ├── neutronium_ingot.json │ │ │ ├── oil_bucket.json │ │ │ ├── orange_cement_bucket.json │ │ │ ├── over_nesting_shulker_box.json │ │ │ ├── oxidized_copper_pressure_plate.json │ │ │ ├── piezoelectric_crystal.json │ │ │ ├── pink_cement_bucket.json │ │ │ ├── polished_heavy_iron_block.json │ │ │ ├── polished_heavy_iron_slab.json │ │ │ ├── polished_heavy_iron_stairs.json │ │ │ ├── power_converter_big.json │ │ │ ├── power_converter_middle.json │ │ │ ├── power_converter_small.json │ │ │ ├── prismarine_blade.json │ │ │ ├── prismarine_cluster.json │ │ │ ├── pulse_generator.json │ │ │ ├── purple_cement_bucket.json │ │ │ ├── quartz_sand.json │ │ │ ├── raw_lead.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_titanium.json │ │ │ ├── raw_titanium_block.json │ │ │ ├── raw_tungsten.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── raw_uranium.json │ │ │ ├── raw_uranium_block.json │ │ │ ├── raw_zinc.json │ │ │ ├── raw_zinc_block.json │ │ │ ├── red_cement_bucket.json │ │ │ ├── redhot_netherite_block.json │ │ │ ├── redhot_tungsten_block.json │ │ │ ├── reinforced_concrete_black.json │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ ├── reinforced_concrete_blue.json │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ ├── reinforced_concrete_brown.json │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ ├── reinforced_concrete_cyan.json │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ ├── reinforced_concrete_gray.json │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ ├── reinforced_concrete_green.json │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ ├── reinforced_concrete_light_blue.json │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ ├── reinforced_concrete_light_gray.json │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ ├── reinforced_concrete_lime.json │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ ├── reinforced_concrete_magenta.json │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ ├── reinforced_concrete_orange.json │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ ├── reinforced_concrete_pink.json │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ ├── reinforced_concrete_purple.json │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ ├── reinforced_concrete_red.json │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ ├── reinforced_concrete_white.json │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ ├── reinforced_concrete_yellow.json │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ ├── resentful_amber_block.json │ │ │ ├── resin.json │ │ │ ├── resin_block.json │ │ │ ├── royal_anvil.json │ │ │ ├── royal_grindstone.json │ │ │ ├── royal_smithing_table.json │ │ │ ├── royal_steel_axe.json │ │ │ ├── royal_steel_block.json │ │ │ ├── royal_steel_hoe.json │ │ │ ├── royal_steel_ingot.json │ │ │ ├── royal_steel_nugget.json │ │ │ ├── royal_steel_pickaxe.json │ │ │ ├── royal_steel_shovel.json │ │ │ ├── royal_steel_sword.json │ │ │ ├── royal_steel_upgrade_smithing_template.json │ │ │ ├── ruby.json │ │ │ ├── ruby_amulet.json │ │ │ ├── ruby_block.json │ │ │ ├── ruby_laser.json │ │ │ ├── ruby_prism.json │ │ │ ├── sapphire.json │ │ │ ├── sapphire_amulet.json │ │ │ ├── sapphire_block.json │ │ │ ├── sea_heart_shell.json │ │ │ ├── sea_heart_shell_shard.json │ │ │ ├── seeds_pack.json │ │ │ ├── silence_amulet.json │ │ │ ├── silver_block.json │ │ │ ├── silver_ingot.json │ │ │ ├── silver_nugget.json │ │ │ ├── silver_pressure_plate.json │ │ │ ├── sliding_rail.json │ │ │ ├── sliding_rail_stop.json │ │ │ ├── smooth_royal_steel_block.json │ │ │ ├── space_overcompressor.json │ │ │ ├── spectral_anvil.json │ │ │ ├── sponge_gemmule.json │ │ │ ├── stable_neutronium_ingot.json │ │ │ ├── stamping_platform.json │ │ │ ├── structure_tool.json │ │ │ ├── sturdy_deepslate.json │ │ │ ├── supercritical_nesting_shulker_box.json │ │ │ ├── tempering_glass.json │ │ │ ├── tesla_tower.json │ │ │ ├── thermoelectric_converter.json │ │ │ ├── tin_block.json │ │ │ ├── tin_can.json │ │ │ ├── tin_ingot.json │ │ │ ├── tin_nugget.json │ │ │ ├── tin_pressure_plate.json │ │ │ ├── titanium_block.json │ │ │ ├── titanium_ingot.json │ │ │ ├── titanium_nugget.json │ │ │ ├── titanium_pressure_plate.json │ │ │ ├── topaz.json │ │ │ ├── topaz_amulet.json │ │ │ ├── topaz_block.json │ │ │ ├── transcendium_block.json │ │ │ ├── transcendium_ingot.json │ │ │ ├── transcendium_nugget.json │ │ │ ├── transparent_crafting_table.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_ingot.json │ │ │ ├── tungsten_nugget.json │ │ │ ├── tungsten_pressure_plate.json │ │ │ ├── two_to_one_smithing_template.json │ │ │ ├── uranium_block.json │ │ │ ├── uranium_ingot.json │ │ │ ├── uranium_nugget.json │ │ │ ├── uranium_pressure_plate.json │ │ │ ├── utusan.json │ │ │ ├── void_energy_collector.json │ │ │ ├── void_matter.json │ │ │ ├── void_matter_block.json │ │ │ ├── void_stone.json │ │ │ ├── weathered_copper_pressure_plate.json │ │ │ ├── white_cement_bucket.json │ │ │ ├── white_chocolate_block.json │ │ │ ├── white_chocolate_slab.json │ │ │ ├── white_chocolate_stairs.json │ │ │ ├── wood_fiber.json │ │ │ ├── yellow_cement_bucket.json │ │ │ ├── zinc_block.json │ │ │ ├── zinc_ingot.json │ │ │ ├── zinc_nugget.json │ │ │ └── zinc_pressure_plate.json │ │ └── data │ │ ├── anvilcraft │ │ ├── advancement │ │ │ ├── anvilcraft │ │ │ │ ├── crab_claw.json │ │ │ │ ├── dragon_rod.json │ │ │ │ └── root.json │ │ │ ├── recipe │ │ │ │ ├── anvil_collision │ │ │ │ │ ├── anvil_and_corrupted_beacon.json │ │ │ │ │ ├── anvil_and_giant_anvil.json │ │ │ │ │ ├── anvil_and_space_overcompressor.json │ │ │ │ │ ├── ember_anvil_and_frost_metal_block.json │ │ │ │ │ ├── ember_anvil_and_levitation_powder_block.json │ │ │ │ │ ├── ember_anvil_and_redstone_block.json │ │ │ │ │ ├── royal_anvil_and_levitation_powder_block.json │ │ │ │ │ └── royal_anvil_and_redstone_block.json │ │ │ │ ├── block_compress │ │ │ │ │ ├── berry_cake_block.json │ │ │ │ │ ├── blackstone.json │ │ │ │ │ ├── blue_ice.json │ │ │ │ │ ├── cake_block.json │ │ │ │ │ ├── chocolate_cake_block.json │ │ │ │ │ ├── crimson_nylium.json │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── grass_block.json │ │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ │ ├── mycelium.json │ │ │ │ │ ├── packed_ice.json │ │ │ │ │ ├── podzol.json │ │ │ │ │ ├── space_overcompressor.json │ │ │ │ │ └── warped_nylium.json │ │ │ │ ├── block_crush │ │ │ │ │ ├── andesite.json │ │ │ │ │ ├── cinerite.json │ │ │ │ │ ├── cobblestone.json │ │ │ │ │ ├── cracked_deepslate_bricks.json │ │ │ │ │ ├── cracked_deepslate_tiles.json │ │ │ │ │ ├── cracked_nether_bricks.json │ │ │ │ │ ├── cracked_polished_blackstone_bricks.json │ │ │ │ │ ├── cracked_stone_bricks.json │ │ │ │ │ ├── diorite.json │ │ │ │ │ ├── end_dust.json │ │ │ │ │ ├── granite.json │ │ │ │ │ ├── gravel.json │ │ │ │ │ ├── nether_dust.json │ │ │ │ │ ├── quartz_sand.json │ │ │ │ │ ├── red_sand.json │ │ │ │ │ ├── sand.json │ │ │ │ │ └── soul_sand.json │ │ │ │ ├── boiling │ │ │ │ │ ├── beef_mushroom_stew.json │ │ │ │ │ └── slime_ball.json │ │ │ │ ├── bulging │ │ │ │ │ ├── black_concrete.json │ │ │ │ │ ├── blue_concrete.json │ │ │ │ │ ├── brain_coral_block.json │ │ │ │ │ ├── brown_concrete.json │ │ │ │ │ ├── brown_mushroom_block.json │ │ │ │ │ ├── bubble_coral_block.json │ │ │ │ │ ├── cement_cauldron.json │ │ │ │ │ ├── clay.json │ │ │ │ │ ├── cyan_concrete.json │ │ │ │ │ ├── dough.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 │ │ │ │ │ ├── fermented_spider_eye.json │ │ │ │ │ ├── fire_coral_block.json │ │ │ │ │ ├── gray_concrete.json │ │ │ │ │ ├── green_concrete.json │ │ │ │ │ ├── horn_coral_block.json │ │ │ │ │ ├── kelp.json │ │ │ │ │ ├── light_blue_concrete.json │ │ │ │ │ ├── light_gray_concrete.json │ │ │ │ │ ├── lime_concrete.json │ │ │ │ │ ├── magenta_concrete.json │ │ │ │ │ ├── nether_wart_block.json │ │ │ │ │ ├── orange_concrete.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 │ │ │ │ │ ├── pink_concrete.json │ │ │ │ │ ├── prismarine_cluster.json │ │ │ │ │ ├── purple_concrete.json │ │ │ │ │ ├── red_concrete.json │ │ │ │ │ ├── red_mushroom_block.json │ │ │ │ │ ├── tube_coral_block.json │ │ │ │ │ ├── warped_wart_block.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 │ │ │ │ │ ├── wet_sponge.json │ │ │ │ │ ├── white_concrete.json │ │ │ │ │ └── yellow_concrete.json │ │ │ │ ├── charger_charging │ │ │ │ │ ├── capacitor.json │ │ │ │ │ ├── capacitor_empty.json │ │ │ │ │ ├── charged_neutronium_ingot.json │ │ │ │ │ ├── magnet_ingot.json │ │ │ │ │ └── neutronium_ingot.json │ │ │ │ ├── concrete │ │ │ │ │ ├── anvilcraft_reinforced_concrete.json │ │ │ │ │ └── minecraft_concrete.json │ │ │ │ ├── cooking │ │ │ │ │ ├── cake_base_block.json │ │ │ │ │ ├── hardend_resin.json │ │ │ │ │ └── utusan.json │ │ │ │ ├── four_to_one_smithing │ │ │ │ │ ├── ember_metal_heavy_halberd.json │ │ │ │ │ └── frost_metal_heavy_halberd.json │ │ │ │ ├── item_compress │ │ │ │ │ ├── berry_cream_block.json │ │ │ │ │ ├── bone_block.json │ │ │ │ │ ├── chocolate_cream_block.json │ │ │ │ │ └── cream_block.json │ │ │ │ ├── item_crush │ │ │ │ │ ├── armor_chainmail_boots_2_chain.json │ │ │ │ │ ├── armor_chainmail_chestplate_2_chain.json │ │ │ │ │ ├── armor_chainmail_helmet_2_chain.json │ │ │ │ │ ├── armor_chainmail_leggings_2_chain.json │ │ │ │ │ ├── armor_diamond_boots_2_diamond.json │ │ │ │ │ ├── armor_diamond_chestplate_2_diamond.json │ │ │ │ │ ├── armor_diamond_helmet_2_diamond.json │ │ │ │ │ ├── armor_diamond_horse_armor_2_diamond.json │ │ │ │ │ ├── armor_diamond_leggings_2_diamond.json │ │ │ │ │ ├── armor_golden_boots_2_gold_ingot.json │ │ │ │ │ ├── armor_golden_chestplate_2_gold_ingot.json │ │ │ │ │ ├── armor_golden_helmet_2_gold_ingot.json │ │ │ │ │ ├── armor_golden_horse_armor_2_gold_ingot.json │ │ │ │ │ ├── armor_golden_leggings_2_gold_ingot.json │ │ │ │ │ ├── armor_iron_boots_2_iron_ingot.json │ │ │ │ │ ├── armor_iron_chestplate_2_iron_ingot.json │ │ │ │ │ ├── armor_iron_helmet_2_iron_ingot.json │ │ │ │ │ ├── armor_iron_horse_armor_2_iron_ingot.json │ │ │ │ │ ├── armor_iron_leggings_2_iron_ingot.json │ │ │ │ │ ├── armor_leather_boots_2_leather.json │ │ │ │ │ ├── armor_leather_chestplate_2_leather.json │ │ │ │ │ ├── armor_leather_helmet_2_leather.json │ │ │ │ │ ├── armor_leather_horse_armor_2_leather.json │ │ │ │ │ ├── armor_leather_leggings_2_leather.json │ │ │ │ │ ├── bone_meal.json │ │ │ │ │ ├── flour.json │ │ │ │ │ ├── gunpowder.json │ │ │ │ │ ├── tool_diamond_axe_2_diamond.json │ │ │ │ │ ├── tool_diamond_hoe_2_diamond.json │ │ │ │ │ ├── tool_diamond_pickaxe_2_diamond.json │ │ │ │ │ ├── tool_diamond_shovel_2_diamond.json │ │ │ │ │ ├── tool_diamond_sword_2_diamond.json │ │ │ │ │ ├── tool_golden_axe_2_gold_ingot.json │ │ │ │ │ ├── tool_golden_hoe_2_gold_ingot.json │ │ │ │ │ ├── tool_golden_pickaxe_2_gold_ingot.json │ │ │ │ │ ├── tool_golden_shovel_2_gold_ingot.json │ │ │ │ │ ├── tool_golden_sword_2_gold_ingot.json │ │ │ │ │ ├── tool_iron_axe_2_iron_ingot.json │ │ │ │ │ ├── tool_iron_hoe_2_iron_ingot.json │ │ │ │ │ ├── tool_iron_pickaxe_2_iron_ingot.json │ │ │ │ │ ├── tool_iron_shovel_2_iron_ingot.json │ │ │ │ │ ├── tool_iron_sword_2_iron_ingot.json │ │ │ │ │ └── wood_fiber.json │ │ │ │ ├── item_inject │ │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ │ ├── deepslate_lead_ore.json │ │ │ │ │ ├── deepslate_silver_ore.json │ │ │ │ │ ├── deepslate_tin_ore.json │ │ │ │ │ ├── deepslate_titanium_ore.json │ │ │ │ │ ├── deepslate_tungsten_ore.json │ │ │ │ │ ├── deepslate_uranium_ore.json │ │ │ │ │ ├── deepslate_zinc_ore.json │ │ │ │ │ ├── gilded_blackstone.json │ │ │ │ │ ├── nesting_shulker_box.json │ │ │ │ │ ├── nether_gold_ore.json │ │ │ │ │ ├── over_nesting_shulker_box.json │ │ │ │ │ └── supercritical_nesting_shulker_box.json │ │ │ │ ├── jewel_crafting │ │ │ │ │ ├── anvil_amulet.json │ │ │ │ │ ├── cat_amulet.json │ │ │ │ │ ├── cogwheel_amulet.json │ │ │ │ │ ├── comrade_amulet.json │ │ │ │ │ ├── dog_amulet.json │ │ │ │ │ ├── elytra.json │ │ │ │ │ ├── emerald_amulet.json │ │ │ │ │ ├── enchanted_golden_apple.json │ │ │ │ │ ├── feather_amulet.json │ │ │ │ │ ├── heavy_core.json │ │ │ │ │ ├── ominous_bottle.json │ │ │ │ │ ├── ominous_trial_key.json │ │ │ │ │ ├── ruby_amulet.json │ │ │ │ │ ├── sapphire_amulet.json │ │ │ │ │ ├── silence_amulet.json │ │ │ │ │ ├── topaz_amulet.json │ │ │ │ │ ├── totem_of_undying.json │ │ │ │ │ └── trial_key.json │ │ │ │ ├── mass_inject │ │ │ │ │ ├── anvilcraft_cursed_gold_block.json │ │ │ │ │ ├── anvilcraft_cursed_gold_ingot.json │ │ │ │ │ ├── anvilcraft_cursed_gold_nugget.json │ │ │ │ │ ├── anvilcraft_ember_metal_block.json │ │ │ │ │ ├── anvilcraft_ember_metal_ingot.json │ │ │ │ │ ├── anvilcraft_ember_metal_nugget.json │ │ │ │ │ ├── anvilcraft_heavy_iron_block.json │ │ │ │ │ ├── anvilcraft_royal_steel_block.json │ │ │ │ │ ├── anvilcraft_royal_steel_ingot.json │ │ │ │ │ ├── anvilcraft_royal_steel_nugget.json │ │ │ │ │ ├── c_ingots │ │ │ │ │ │ ├── brass.json │ │ │ │ │ │ ├── bronze.json │ │ │ │ │ │ ├── copper.json │ │ │ │ │ │ ├── gold.json │ │ │ │ │ │ ├── iron.json │ │ │ │ │ │ ├── lead.json │ │ │ │ │ │ ├── netherite.json │ │ │ │ │ │ ├── silver.json │ │ │ │ │ │ ├── tin.json │ │ │ │ │ │ ├── titanium.json │ │ │ │ │ │ ├── tungsten.json │ │ │ │ │ │ ├── uranium.json │ │ │ │ │ │ └── zinc.json │ │ │ │ │ ├── c_nuggets │ │ │ │ │ │ ├── brass.json │ │ │ │ │ │ ├── bronze.json │ │ │ │ │ │ ├── copper.json │ │ │ │ │ │ ├── gold.json │ │ │ │ │ │ ├── iron.json │ │ │ │ │ │ ├── lead.json │ │ │ │ │ │ ├── netherite.json │ │ │ │ │ │ ├── silver.json │ │ │ │ │ │ ├── tin.json │ │ │ │ │ │ ├── titanium.json │ │ │ │ │ │ ├── tungsten.json │ │ │ │ │ │ ├── uranium.json │ │ │ │ │ │ └── zinc.json │ │ │ │ │ └── c_storage_blocks │ │ │ │ │ │ ├── brass.json │ │ │ │ │ │ ├── bronze.json │ │ │ │ │ │ ├── copper.json │ │ │ │ │ │ ├── gold.json │ │ │ │ │ │ ├── iron.json │ │ │ │ │ │ ├── lead.json │ │ │ │ │ │ ├── netherite.json │ │ │ │ │ │ ├── silver.json │ │ │ │ │ │ ├── tin.json │ │ │ │ │ │ ├── titanium.json │ │ │ │ │ │ ├── tungsten.json │ │ │ │ │ │ ├── uranium.json │ │ │ │ │ │ └── zinc.json │ │ │ │ ├── mesh │ │ │ │ │ ├── cinerite │ │ │ │ │ │ ├── cinerite.json │ │ │ │ │ │ ├── gunpowder.json │ │ │ │ │ │ ├── lapis_lazuli.json │ │ │ │ │ │ ├── lead_nugget.json │ │ │ │ │ │ ├── silver_nugget.json │ │ │ │ │ │ ├── tin_nugget.json │ │ │ │ │ │ └── zinc_nugget.json │ │ │ │ │ ├── end_dust │ │ │ │ │ │ ├── chorus_flower.json │ │ │ │ │ │ ├── end_dust.json │ │ │ │ │ │ ├── levitation_powder.json │ │ │ │ │ │ └── titanium_nugget.json │ │ │ │ │ ├── gravel │ │ │ │ │ │ ├── flint.json │ │ │ │ │ │ ├── gravel.json │ │ │ │ │ │ └── iron_nugget.json │ │ │ │ │ ├── nether_dust │ │ │ │ │ │ ├── nether_dust.json │ │ │ │ │ │ ├── redstone.json │ │ │ │ │ │ └── tungsten_nugget.json │ │ │ │ │ ├── quartz_sand │ │ │ │ │ │ ├── quartz.json │ │ │ │ │ │ └── quartz_sand.json │ │ │ │ │ ├── red_sand │ │ │ │ │ │ ├── copper_nugget.json │ │ │ │ │ │ ├── glowstone_dust.json │ │ │ │ │ │ └── red_sand.json │ │ │ │ │ ├── sand │ │ │ │ │ │ ├── clay_ball.json │ │ │ │ │ │ ├── gold_nugget.json │ │ │ │ │ │ └── sand.json │ │ │ │ │ └── soul_sand │ │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ │ └── soul_sand.json │ │ │ │ ├── mineral_fountain │ │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ │ ├── deepslate_lead_ore.json │ │ │ │ │ ├── deepslate_silver_ore.json │ │ │ │ │ ├── deepslate_tin_ore.json │ │ │ │ │ ├── deepslate_titanium_ore.json │ │ │ │ │ ├── deepslate_tungsten_ore.json │ │ │ │ │ ├── deepslate_uranium_ore.json │ │ │ │ │ └── deepslate_zinc_ore.json │ │ │ │ ├── mineral_fountain_chance │ │ │ │ │ ├── earth_core_shard_ore_from_overworld.json │ │ │ │ │ ├── earth_core_shard_ore_from_the_nether.json │ │ │ │ │ ├── void_stone_from_overworld.json │ │ │ │ │ └── void_stone_from_the_end.json │ │ │ │ ├── mob_transform │ │ │ │ │ ├── allay.json │ │ │ │ │ ├── bat.json │ │ │ │ │ ├── cow.json │ │ │ │ │ ├── guardian.json │ │ │ │ │ ├── horse.json │ │ │ │ │ ├── iron_golem.json │ │ │ │ │ ├── pig.json │ │ │ │ │ ├── piglin.json │ │ │ │ │ └── villager.json │ │ │ │ ├── multiblock │ │ │ │ │ ├── acceleration_ring.json │ │ │ │ │ ├── deflection_ring.json │ │ │ │ │ ├── diamond_block.json │ │ │ │ │ ├── giant_anvil_1.json │ │ │ │ │ ├── giant_anvil_2.json │ │ │ │ │ ├── large_cake.json │ │ │ │ │ ├── menger_sponge.json │ │ │ │ │ └── menger_sponge_2.json │ │ │ │ ├── multiblock_conversion │ │ │ │ │ ├── acceleration_ring.json │ │ │ │ │ ├── deflection_ring.json │ │ │ │ │ ├── giant_anvil_1.json │ │ │ │ │ ├── giant_anvil_2.json │ │ │ │ │ ├── large_cake.json │ │ │ │ │ └── spawner.json │ │ │ │ ├── squeezing │ │ │ │ │ ├── lava_from_magma_block.json │ │ │ │ │ ├── power_snow_from_ice.json │ │ │ │ │ ├── water_from_moss_block.json │ │ │ │ │ └── water_from_wet_sponge.json │ │ │ │ ├── stamping │ │ │ │ │ ├── brass_pressure_plate.json │ │ │ │ │ ├── bronze_pressure_plate.json │ │ │ │ │ ├── cocoa_butter.json │ │ │ │ │ ├── copper_pressure_plate.json │ │ │ │ │ ├── cream.json │ │ │ │ │ ├── ember_metal_upgrade_smithing_template.json │ │ │ │ │ ├── geode_gems.json │ │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ │ ├── lead_pressure_plate.json │ │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ │ ├── paper_from_sugar_cane.json │ │ │ │ │ ├── paper_from_wood_fiber.json │ │ │ │ │ ├── pink_petals.json │ │ │ │ │ ├── prismarine_crystals.json │ │ │ │ │ ├── sea_heart_shell_shard.json │ │ │ │ │ ├── shulker_box_from_nesting_shulker_box.json │ │ │ │ │ ├── shulker_box_from_over_nesting_shulker_box.json │ │ │ │ │ ├── shulker_box_from_supercritical_nesting_shulker_box.json │ │ │ │ │ ├── silver_pressure_plate.json │ │ │ │ │ ├── snow.json │ │ │ │ │ ├── tin_can_from_plate.json │ │ │ │ │ ├── tin_pressure_plate.json │ │ │ │ │ ├── titanium_pressure_plate.json │ │ │ │ │ ├── tungsten_pressure_plate.json │ │ │ │ │ ├── uranium_pressure_plate.json │ │ │ │ │ └── zinc_pressure_plate.json │ │ │ │ ├── stamping_unique_items │ │ │ │ │ ├── eight_to_one_smithing_template.json │ │ │ │ │ ├── four_to_one_smithing_template.json │ │ │ │ │ └── two_to_one_smithing_template.json │ │ │ │ ├── super_heating │ │ │ │ │ ├── brass_ingot.json │ │ │ │ │ ├── bronze_ingot.json │ │ │ │ │ ├── charcoal.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── ember_glass.json │ │ │ │ │ ├── end_stone.json │ │ │ │ │ ├── lava_from_cobblestone.json │ │ │ │ │ ├── lava_from_stone.json │ │ │ │ │ ├── lime_powder_from_calcite.json │ │ │ │ │ ├── lime_powder_from_crab_claw.json │ │ │ │ │ ├── lime_powder_from_dead_coral_blocks.json │ │ │ │ │ ├── lime_powder_from_dead_corals.json │ │ │ │ │ ├── lime_powder_from_dripstone_block.json │ │ │ │ │ ├── lime_powder_from_nautilus_shell.json │ │ │ │ │ ├── lime_powder_from_pointed_dripstone.json │ │ │ │ │ ├── magnet_ingot.json │ │ │ │ │ ├── melt_gem_cauldron.json │ │ │ │ │ ├── royal_steel_block.json │ │ │ │ │ ├── royal_steel_ingot.json │ │ │ │ │ └── tempering_glass.json │ │ │ │ ├── time_warp │ │ │ │ │ ├── amber.json │ │ │ │ │ ├── ancient_debris.json │ │ │ │ │ ├── budding_amethyst.json │ │ │ │ │ ├── calcite.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── coal_from_logs.json │ │ │ │ │ ├── crying_obsidian.json │ │ │ │ │ ├── dirt.json │ │ │ │ │ ├── ember_metal_ingot_0.json │ │ │ │ │ ├── ember_metal_ingot_1.json │ │ │ │ │ ├── ember_metal_ingot_2.json │ │ │ │ │ ├── ember_metal_ingot_3.json │ │ │ │ │ ├── emerald_block.json │ │ │ │ │ ├── end_stone.json │ │ │ │ │ ├── frost_metal_ingot.json │ │ │ │ │ ├── frost_metal_upgrade_smithing_template.json │ │ │ │ │ ├── oil_from_beef.json │ │ │ │ │ ├── oil_from_chicken.json │ │ │ │ │ ├── oil_from_foods │ │ │ │ │ │ └── raw_fish.json │ │ │ │ │ ├── oil_from_mutton.json │ │ │ │ │ ├── oil_from_piglin_head.json │ │ │ │ │ ├── oil_from_porkchop.json │ │ │ │ │ ├── oil_from_rabbit.json │ │ │ │ │ ├── oil_from_rotten_flesh.json │ │ │ │ │ ├── oil_from_spider_eye.json │ │ │ │ │ ├── oil_from_zombie_head.json │ │ │ │ │ ├── raw_copper.json │ │ │ │ │ ├── raw_gold.json │ │ │ │ │ ├── raw_iron.json │ │ │ │ │ ├── raw_lead.json │ │ │ │ │ ├── raw_silver.json │ │ │ │ │ ├── raw_tin.json │ │ │ │ │ ├── raw_titanium.json │ │ │ │ │ ├── raw_tungsten.json │ │ │ │ │ ├── raw_uranium.json │ │ │ │ │ ├── raw_zinc.json │ │ │ │ │ ├── ruby_block.json │ │ │ │ │ ├── sapphire_block.json │ │ │ │ │ ├── sea_heart_shell.json │ │ │ │ │ ├── soul_soil.json │ │ │ │ │ ├── topaz_block.json │ │ │ │ │ ├── tuff.json │ │ │ │ │ ├── wither_rose.json │ │ │ │ │ └── wither_skeleton_skull.json │ │ │ │ ├── two_to_one_smithing │ │ │ │ │ ├── multiphase_matter_axe.json │ │ │ │ │ ├── multiphase_matter_hoe.json │ │ │ │ │ ├── multiphase_matter_pickaxe.json │ │ │ │ │ ├── multiphase_matter_shovel.json │ │ │ │ │ └── multiphase_matter_sword.json │ │ │ │ └── unpack │ │ │ │ │ ├── amethyst_shard.json │ │ │ │ │ ├── clay_ball.json │ │ │ │ │ ├── glowstone_dust.json │ │ │ │ │ ├── honey_bottle.json │ │ │ │ │ ├── honeycomb.json │ │ │ │ │ ├── magnet_ingot_from_hollow_magnet_block.json │ │ │ │ │ ├── magnet_ingot_from_magnet_block.json │ │ │ │ │ ├── melon_slice.json │ │ │ │ │ ├── pointed_dripstone.json │ │ │ │ │ ├── prismine_shard_from_prismine.json │ │ │ │ │ ├── prismine_shard_from_prismine_bricks.json │ │ │ │ │ ├── quartz.json │ │ │ │ │ ├── snowball.json │ │ │ │ │ └── sponge_gemmule.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── amber_block.json │ │ │ │ ├── black_chocolate_block.json │ │ │ │ ├── black_chocolate_slab.json │ │ │ │ ├── black_chocolate_stairs.json │ │ │ │ ├── brass_block.json │ │ │ │ ├── bronze_block.json │ │ │ │ ├── chocolate_block.json │ │ │ │ ├── chocolate_slab.json │ │ │ │ ├── chocolate_stairs.json │ │ │ │ ├── cursed_gold_block.json │ │ │ │ ├── cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_slab.json │ │ │ │ ├── cut_ember_metal_stairs.json │ │ │ │ ├── cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_slab.json │ │ │ │ ├── cut_royal_steel_stairs.json │ │ │ │ ├── earth_core_shard_block.json │ │ │ │ ├── ember_metal_block.json │ │ │ │ ├── frost_metal_block.json │ │ │ │ ├── heavy_iron_block.json │ │ │ │ ├── iron_block_from_heavy_iron_block.json │ │ │ │ ├── lead_block.json │ │ │ │ ├── multiphase_matter_block.json │ │ │ │ ├── negative_matter_block.json │ │ │ │ ├── raw_lead_block.json │ │ │ │ ├── raw_silver_block.json │ │ │ │ ├── raw_tin_block.json │ │ │ │ ├── raw_titanium_block.json │ │ │ │ ├── raw_tungsten_block.json │ │ │ │ ├── raw_uranium_block.json │ │ │ │ ├── raw_zinc_block.json │ │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ │ ├── resin_block.json │ │ │ │ ├── royal_steel_block.json │ │ │ │ ├── ruby_block.json │ │ │ │ ├── sapphire_block.json │ │ │ │ ├── silver_block.json │ │ │ │ ├── stonecutting │ │ │ │ │ ├── black_chocolate_slab.json │ │ │ │ │ ├── black_chocolate_stairs.json │ │ │ │ │ ├── chocolate_slab.json │ │ │ │ │ ├── chocolate_stairs.json │ │ │ │ │ ├── cut_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_pillar_from_cut_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_pillar_from_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_slab_from_cut_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_slab_from_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_stairs_from_cut_ember_metal_block.json │ │ │ │ │ ├── cut_ember_metal_stairs_from_ember_metal_block.json │ │ │ │ │ ├── cut_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_block_from_polished_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_slab_from_cut_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_slab_from_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_slab_from_polished_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_stairs_from_cut_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_stairs_from_heavy_iron_block.json │ │ │ │ │ ├── cut_heavy_iron_stairs_from_polished_heavy_iron_block.json │ │ │ │ │ ├── cut_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_pillar_from_cut_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_pillar_from_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_slab_from_cut_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_slab_from_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_stairs_from_cut_royal_steel_block.json │ │ │ │ │ ├── cut_royal_steel_stairs_from_royal_steel_block.json │ │ │ │ │ ├── heavy_iron_beam.json │ │ │ │ │ ├── heavy_iron_beam_from_cut_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_beam_from_polished_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_column.json │ │ │ │ │ ├── heavy_iron_column_from_cut_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_column_from_polished_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_door.json │ │ │ │ │ ├── heavy_iron_door_from_polished_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_plate.json │ │ │ │ │ ├── heavy_iron_plate_from_cut_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_plate_from_cut_heavy_iron_slab.json │ │ │ │ │ ├── heavy_iron_plate_from_polished_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_plate_from_polished_heavy_iron_slab.json │ │ │ │ │ ├── heavy_iron_trapdoor.json │ │ │ │ │ ├── heavy_iron_trapdoor_from_cut_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_trapdoor_from_polished_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_wall.json │ │ │ │ │ ├── heavy_iron_wall_from_cut_heavy_iron_block.json │ │ │ │ │ ├── heavy_iron_wall_from_polished_heavy_iron_block.json │ │ │ │ │ ├── polished_heavy_iron_block.json │ │ │ │ │ ├── polished_heavy_iron_slab_from_heavy_iron_block.json │ │ │ │ │ ├── polished_heavy_iron_slab_from_polished_heavy_iron_block.json │ │ │ │ │ ├── polished_heavy_iron_stairs_from_heavy_iron_block.json │ │ │ │ │ ├── polished_heavy_iron_stairs_from_polished_heavy_iron_block.json │ │ │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ │ │ ├── smooth_royal_steel_block.json │ │ │ │ │ ├── white_chocolate_slab.json │ │ │ │ │ └── white_chocolate_stairs.json │ │ │ │ ├── tin_block.json │ │ │ │ ├── titanium_block.json │ │ │ │ ├── topaz_block.json │ │ │ │ ├── transcendium_block.json │ │ │ │ ├── tungsten_block.json │ │ │ │ ├── uranium_block.json │ │ │ │ ├── void_matter_block.json │ │ │ │ ├── white_chocolate_block.json │ │ │ │ ├── white_chocolate_slab.json │ │ │ │ ├── white_chocolate_stairs.json │ │ │ │ └── zinc_block.json │ │ │ │ ├── decorations │ │ │ │ ├── controllable_sand.json │ │ │ │ └── levitation_powder_block_from_powders.json │ │ │ │ ├── food │ │ │ │ ├── black_chocolate_from_block.json │ │ │ │ ├── campfire_cooking_bread.json │ │ │ │ ├── chocolate.json │ │ │ │ ├── chocolate_black.json │ │ │ │ ├── chocolate_from_block.json │ │ │ │ ├── chocolate_white.json │ │ │ │ ├── cocoa_liquor.json │ │ │ │ ├── creamy_bread_roll.json │ │ │ │ ├── smelting_cooking_bread.json │ │ │ │ ├── smoking_bread.json │ │ │ │ └── white_chocolate_from_block.json │ │ │ │ ├── misc │ │ │ │ ├── active_silencer.json │ │ │ │ ├── amber.json │ │ │ │ ├── blasting │ │ │ │ │ ├── lead_ingot.json │ │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ │ ├── silver_ingot.json │ │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ │ ├── tin_ingot.json │ │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ │ ├── titanium_ingot.json │ │ │ │ │ ├── titanium_ingot_from_ore.json │ │ │ │ │ ├── tungsten_ingot.json │ │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ │ ├── uranium_ingot.json │ │ │ │ │ ├── uranium_ingot_from_ore.json │ │ │ │ │ ├── zinc_ingot.json │ │ │ │ │ └── zinc_ingot_from_ore.json │ │ │ │ ├── brass_ingot.json │ │ │ │ ├── brass_ingot_from_block.json │ │ │ │ ├── brass_nugget.json │ │ │ │ ├── bronze_ingot.json │ │ │ │ ├── bronze_ingot_from_block.json │ │ │ │ ├── bronze_nugget.json │ │ │ │ ├── capacitor_empty.json │ │ │ │ ├── charge_collector.json │ │ │ │ ├── charger.json │ │ │ │ ├── charger_from_discharger.json │ │ │ │ ├── chute.json │ │ │ │ ├── circuit_board.json │ │ │ │ ├── confinement_chamber.json │ │ │ │ ├── copper_ingot_from_nugget.json │ │ │ │ ├── copper_nugget.json │ │ │ │ ├── crab_trap.json │ │ │ │ ├── cursed_gold_ingot_from_cursed_gold_block.json │ │ │ │ ├── cursed_gold_ingot_from_cursed_gold_nugget.json │ │ │ │ ├── cursed_gold_nugget.json │ │ │ │ ├── discharger_from_charger.json │ │ │ │ ├── earth_core_shard.json │ │ │ │ ├── ember_metal_ingot.json │ │ │ │ ├── ember_metal_ingot_from_block.json │ │ │ │ ├── ember_metal_nugget_from_ingot.json │ │ │ │ ├── frost_metal_ingot.json │ │ │ │ ├── frost_metal_ingot_from_block.json │ │ │ │ ├── frost_metal_nugget.json │ │ │ │ ├── heater.json │ │ │ │ ├── heavy_halberd_core.json │ │ │ │ ├── heliostats_biological.json │ │ │ │ ├── heliostats_electrical.json │ │ │ │ ├── impact_pile.json │ │ │ │ ├── induction_light.json │ │ │ │ ├── ionocraft.json │ │ │ │ ├── ionocraft_backpack.json │ │ │ │ ├── item_collector.json │ │ │ │ ├── jewelcrafting_table.json │ │ │ │ ├── lead_ingot.json │ │ │ │ ├── lead_ingot_from_block.json │ │ │ │ ├── lead_nugget.json │ │ │ │ ├── levitation_powder_from_block.json │ │ │ │ ├── load_monitor.json │ │ │ │ ├── magnet_ingot_from_block.json │ │ │ │ ├── magnet_ingot_from_hollow_block.json │ │ │ │ ├── magnetic_chute.json │ │ │ │ ├── magnetoelectric_core.json │ │ │ │ ├── multiphase_matter_from_block.json │ │ │ │ ├── negative_matter.json │ │ │ │ ├── negative_matter_from_block.json │ │ │ │ ├── negative_matter_nugget_from_ingot.json │ │ │ │ ├── netherite_crystal_nucleus.json │ │ │ │ ├── overseer.json │ │ │ │ ├── piezoelectric_crystal.json │ │ │ │ ├── piezoelectric_crystal_amethyst.json │ │ │ │ ├── power_converter_big.json │ │ │ │ ├── power_converter_big_from_middle.json │ │ │ │ ├── power_converter_big_from_small.json │ │ │ │ ├── power_converter_middle_from_small.json │ │ │ │ ├── raw_lead.json │ │ │ │ ├── raw_silver.json │ │ │ │ ├── raw_tin.json │ │ │ │ ├── raw_titanium.json │ │ │ │ ├── raw_tungsten.json │ │ │ │ ├── raw_uranium.json │ │ │ │ ├── raw_zinc.json │ │ │ │ ├── remote_transmission_pole.json │ │ │ │ ├── resin.json │ │ │ │ ├── royal_steel_ingot_from_royal_steel_block.json │ │ │ │ ├── royal_steel_ingot_from_royal_steel_nugget.json │ │ │ │ ├── royal_steel_nugget.json │ │ │ │ ├── ruby.json │ │ │ │ ├── ruby_laser.json │ │ │ │ ├── ruby_prism.json │ │ │ │ ├── sapphire.json │ │ │ │ ├── shaped_crushing_table_recipe.json │ │ │ │ ├── shapeless_crushing_table_recipe.json │ │ │ │ ├── silver_ingot.json │ │ │ │ ├── silver_ingot_from_block.json │ │ │ │ ├── silver_nugget.json │ │ │ │ ├── sliding_rail.json │ │ │ │ ├── sliding_rail_stop.json │ │ │ │ ├── smelting │ │ │ │ │ ├── lead_ingot.json │ │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ │ ├── silver_ingot.json │ │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ │ ├── tin_ingot.json │ │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ │ ├── titanium_ingot.json │ │ │ │ │ ├── titanium_ingot_from_ore.json │ │ │ │ │ ├── tungsten_ingot.json │ │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ │ ├── uranium_ingot.json │ │ │ │ │ ├── uranium_ingot_from_ore.json │ │ │ │ │ ├── zinc_ingot.json │ │ │ │ │ └── zinc_ingot_from_ore.json │ │ │ │ ├── smithing │ │ │ │ │ ├── ember_anvil.json │ │ │ │ │ ├── ember_grindstone.json │ │ │ │ │ ├── ember_smithing_table.json │ │ │ │ │ ├── royal_anvil.json │ │ │ │ │ ├── royal_grindstone.json │ │ │ │ │ └── royal_smithing_table.json │ │ │ │ ├── stable_neutronium_ingot.json │ │ │ │ ├── stamping_platform.json │ │ │ │ ├── stonecutting │ │ │ │ │ ├── power_converter_middle.json │ │ │ │ │ ├── power_converter_small_from_big.json │ │ │ │ │ └── power_converter_small_from_middle.json │ │ │ │ ├── tesla_tower.json │ │ │ │ ├── thermoelectric_converter.json │ │ │ │ ├── tin_ingot.json │ │ │ │ ├── tin_ingot_from_block.json │ │ │ │ ├── tin_nugget.json │ │ │ │ ├── titanium_ingot.json │ │ │ │ ├── titanium_ingot_from_block.json │ │ │ │ ├── titanium_nugget.json │ │ │ │ ├── topaz.json │ │ │ │ ├── transcendium_ingot.json │ │ │ │ ├── transcendium_ingot_from_block.json │ │ │ │ ├── transcendium_nugget_from_ingot.json │ │ │ │ ├── transmission_pole.json │ │ │ │ ├── transparent_crafting_table.json │ │ │ │ ├── tungsten_ingot.json │ │ │ │ ├── tungsten_ingot_from_block.json │ │ │ │ ├── tungsten_nugget.json │ │ │ │ ├── uranium_ingot.json │ │ │ │ ├── uranium_ingot_from_block.json │ │ │ │ ├── uranium_nugget.json │ │ │ │ ├── void_energy_collector.json │ │ │ │ ├── void_matter.json │ │ │ │ ├── zinc_ingot.json │ │ │ │ ├── zinc_ingot_from_block.json │ │ │ │ └── zinc_nugget.json │ │ │ │ ├── redstone │ │ │ │ ├── batch_crafter.json │ │ │ │ ├── block_comparator.json │ │ │ │ ├── block_devourer.json │ │ │ │ ├── block_placer.json │ │ │ │ ├── brass_pressure_plate_from_ingots_brass.json │ │ │ │ ├── bronze_pressure_plate_from_ingots_bronze.json │ │ │ │ ├── copper_pressure_plate_from_copper_ingot.json │ │ │ │ ├── ferrite_core_magnet_block.json │ │ │ │ ├── hollow_magnet_block.json │ │ │ │ ├── item_detector.json │ │ │ │ ├── lead_pressure_plate_from_ingots_lead.json │ │ │ │ ├── magnet_block.json │ │ │ │ ├── pulse_generator.json │ │ │ │ ├── silver_pressure_plate_from_ingots_silver.json │ │ │ │ ├── tin_pressure_plate_from_ingots_tin.json │ │ │ │ ├── titanium_pressure_plate_from_ingots_titanium.json │ │ │ │ ├── tungsten_pressure_plate_from_ingots_tungsten.json │ │ │ │ ├── uranium_pressure_plate_from_ingots_uranium.json │ │ │ │ └── zinc_pressure_plate_from_ingots_zinc.json │ │ │ │ └── tools │ │ │ │ ├── amethyst_axe.json │ │ │ │ ├── amethyst_hoe.json │ │ │ │ ├── amethyst_pickaxe.json │ │ │ │ ├── amethyst_shovel.json │ │ │ │ ├── amethyst_sword.json │ │ │ │ ├── anvil_hammer.json │ │ │ │ ├── disk.json │ │ │ │ ├── dragon_rod.json │ │ │ │ ├── ember_dragon_rod.json │ │ │ │ ├── magnet.json │ │ │ │ ├── royal_dragon_rod.json │ │ │ │ └── smithing │ │ │ │ ├── ember_anvil_hammer.json │ │ │ │ ├── ember_dragon_rod.json │ │ │ │ ├── ember_metal_axe.json │ │ │ │ ├── ember_metal_hoe.json │ │ │ │ ├── ember_metal_pickaxe.json │ │ │ │ ├── ember_metal_shovel.json │ │ │ │ ├── ember_metal_sword.json │ │ │ │ ├── frost_metal_axe.json │ │ │ │ ├── frost_metal_hoe.json │ │ │ │ ├── frost_metal_pickaxe.json │ │ │ │ ├── frost_metal_shovel.json │ │ │ │ ├── frost_metal_sword.json │ │ │ │ ├── royal_anvil_hammer.json │ │ │ │ ├── royal_dragon_rod.json │ │ │ │ ├── royal_steel_axe.json │ │ │ │ ├── royal_steel_hoe.json │ │ │ │ ├── royal_steel_pickaxe.json │ │ │ │ ├── royal_steel_shovel.json │ │ │ │ └── royal_steel_sword.json │ │ ├── curios │ │ │ ├── entities │ │ │ │ └── ionocraft_backpack.json │ │ │ └── slots │ │ │ │ └── ionocraft_backpack.json │ │ ├── damage_type │ │ │ ├── laser.json │ │ │ └── lost_in_time.json │ │ ├── enchantment │ │ │ ├── beheading.json │ │ │ ├── felling.json │ │ │ └── harvest.json │ │ ├── loot_table │ │ │ ├── advancement │ │ │ │ └── root.json │ │ │ ├── blocks │ │ │ │ ├── acceleration_ring.json │ │ │ │ ├── active_silencer.json │ │ │ │ ├── amber_block.json │ │ │ │ ├── arrow.json │ │ │ │ ├── batch_crafter.json │ │ │ │ ├── berry_cake_block.json │ │ │ │ ├── berry_cream_block.json │ │ │ │ ├── black_cement_cauldron.json │ │ │ │ ├── black_chocolate_block.json │ │ │ │ ├── black_chocolate_slab.json │ │ │ │ ├── black_chocolate_stairs.json │ │ │ │ ├── block_comparator.json │ │ │ │ ├── block_devourer.json │ │ │ │ ├── block_placer.json │ │ │ │ ├── blue_cement_cauldron.json │ │ │ │ ├── brass_block.json │ │ │ │ ├── brass_pressure_plate.json │ │ │ │ ├── bronze_block.json │ │ │ │ ├── bronze_pressure_plate.json │ │ │ │ ├── brown_cement_cauldron.json │ │ │ │ ├── cake_base_block.json │ │ │ │ ├── cake_block.json │ │ │ │ ├── charge_collector.json │ │ │ │ ├── charger.json │ │ │ │ ├── chocolate_block.json │ │ │ │ ├── chocolate_cake_block.json │ │ │ │ ├── chocolate_cream_block.json │ │ │ │ ├── chocolate_slab.json │ │ │ │ ├── chocolate_stairs.json │ │ │ │ ├── chute.json │ │ │ │ ├── cinerite.json │ │ │ │ ├── confined_energy_anvilon.json │ │ │ │ ├── confined_mass_anvilon.json │ │ │ │ ├── confined_space_anvilon.json │ │ │ │ ├── confined_time_anvilon.json │ │ │ │ ├── confinement_chamber.json │ │ │ │ ├── controllable_sand.json │ │ │ │ ├── copper_pressure_plate.json │ │ │ │ ├── corrupted_beacon.json │ │ │ │ ├── crab_trap.json │ │ │ │ ├── cream_block.json │ │ │ │ ├── creative_generator.json │ │ │ │ ├── crushing_table.json │ │ │ │ ├── cursed_gold_block.json │ │ │ │ ├── cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_pillar.json │ │ │ │ ├── cut_ember_metal_slab.json │ │ │ │ ├── cut_ember_metal_stairs.json │ │ │ │ ├── cut_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_slab.json │ │ │ │ ├── cut_heavy_iron_stairs.json │ │ │ │ ├── cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_pillar.json │ │ │ │ ├── cut_royal_steel_slab.json │ │ │ │ ├── cut_royal_steel_stairs.json │ │ │ │ ├── cyan_cement_cauldron.json │ │ │ │ ├── deepslate_lead_ore.json │ │ │ │ ├── deepslate_silver_ore.json │ │ │ │ ├── deepslate_tin_ore.json │ │ │ │ ├── deepslate_titanium_ore.json │ │ │ │ ├── deepslate_tungsten_ore.json │ │ │ │ ├── deepslate_uranium_ore.json │ │ │ │ ├── deepslate_zinc_ore.json │ │ │ │ ├── deflection_ring.json │ │ │ │ ├── discharger.json │ │ │ │ ├── earth_core_shard_block.json │ │ │ │ ├── earth_core_shard_ore.json │ │ │ │ ├── ember_anvil.json │ │ │ │ ├── ember_glass.json │ │ │ │ ├── ember_grindstone.json │ │ │ │ ├── ember_metal_block.json │ │ │ │ ├── ember_smithing_table.json │ │ │ │ ├── end_dust.json │ │ │ │ ├── exposed_copper_pressure_plate.json │ │ │ │ ├── ferrite_core_magnet_block.json │ │ │ │ ├── fire_cauldron.json │ │ │ │ ├── frost_metal_block.json │ │ │ │ ├── giant_anvil.json │ │ │ │ ├── glowing_netherite_block.json │ │ │ │ ├── glowing_tungsten_block.json │ │ │ │ ├── gray_cement_cauldron.json │ │ │ │ ├── green_cement_cauldron.json │ │ │ │ ├── heated_netherite_block.json │ │ │ │ ├── heated_tungsten_block.json │ │ │ │ ├── heater.json │ │ │ │ ├── heavy_iron_beam.json │ │ │ │ ├── heavy_iron_block.json │ │ │ │ ├── heavy_iron_column.json │ │ │ │ ├── heavy_iron_door.json │ │ │ │ ├── heavy_iron_plate.json │ │ │ │ ├── heavy_iron_trapdoor.json │ │ │ │ ├── heavy_iron_wall.json │ │ │ │ ├── heliostats.json │ │ │ │ ├── hollow_magnet_block.json │ │ │ │ ├── honey_cauldron.json │ │ │ │ ├── impact_pile.json │ │ │ │ ├── incandescent_netherite_block.json │ │ │ │ ├── incandescent_tungsten_block.json │ │ │ │ ├── induction_light.json │ │ │ │ ├── item_collector.json │ │ │ │ ├── item_detector.json │ │ │ │ ├── jewelcrafting_table.json │ │ │ │ ├── large_cake.json │ │ │ │ ├── lava_cauldron.json │ │ │ │ ├── lead_block.json │ │ │ │ ├── lead_pressure_plate.json │ │ │ │ ├── levitation_powder_block.json │ │ │ │ ├── light_blue_cement_cauldron.json │ │ │ │ ├── light_gray_cement_cauldron.json │ │ │ │ ├── lime_cement_cauldron.json │ │ │ │ ├── load_monitor.json │ │ │ │ ├── magenta_cement_cauldron.json │ │ │ │ ├── magnet_block.json │ │ │ │ ├── magnetic_chute.json │ │ │ │ ├── magnetoelectric_core.json │ │ │ │ ├── melt_gem_cauldron.json │ │ │ │ ├── menger_sponge.json │ │ │ │ ├── mob_amber_block.json │ │ │ │ ├── multiphase_matter_block.json │ │ │ │ ├── negative_matter_block.json │ │ │ │ ├── nesting_shulker_box.json │ │ │ │ ├── nether_dust.json │ │ │ │ ├── obsidian_cauldron.json │ │ │ │ ├── oil_cauldron.json │ │ │ │ ├── orange_cement_cauldron.json │ │ │ │ ├── over_nesting_shulker_box.json │ │ │ │ ├── overseer.json │ │ │ │ ├── oxidized_copper_pressure_plate.json │ │ │ │ ├── piezoelectric_crystal.json │ │ │ │ ├── pink_cement_cauldron.json │ │ │ │ ├── polished_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_slab.json │ │ │ │ ├── polished_heavy_iron_stairs.json │ │ │ │ ├── power_converter_big.json │ │ │ │ ├── power_converter_middle.json │ │ │ │ ├── power_converter_small.json │ │ │ │ ├── pulse_generator.json │ │ │ │ ├── purple_cement_cauldron.json │ │ │ │ ├── quartz_sand.json │ │ │ │ ├── raw_lead_block.json │ │ │ │ ├── raw_silver_block.json │ │ │ │ ├── raw_tin_block.json │ │ │ │ ├── raw_titanium_block.json │ │ │ │ ├── raw_tungsten_block.json │ │ │ │ ├── raw_uranium_block.json │ │ │ │ ├── raw_zinc_block.json │ │ │ │ ├── red_cement_cauldron.json │ │ │ │ ├── redhot_netherite_block.json │ │ │ │ ├── redhot_tungsten_block.json │ │ │ │ ├── reinforced_concrete_black.json │ │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ │ ├── reinforced_concrete_blue.json │ │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ │ ├── reinforced_concrete_brown.json │ │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ │ ├── reinforced_concrete_cyan.json │ │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ │ ├── reinforced_concrete_gray.json │ │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ │ ├── reinforced_concrete_green.json │ │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ │ ├── reinforced_concrete_light_blue.json │ │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ │ ├── reinforced_concrete_light_gray.json │ │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ │ ├── reinforced_concrete_lime.json │ │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ │ ├── reinforced_concrete_magenta.json │ │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ │ ├── reinforced_concrete_orange.json │ │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ │ ├── reinforced_concrete_pink.json │ │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ │ ├── reinforced_concrete_purple.json │ │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ │ ├── reinforced_concrete_red.json │ │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ │ ├── reinforced_concrete_white.json │ │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ │ ├── reinforced_concrete_yellow.json │ │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ │ ├── remote_transmission_pole.json │ │ │ │ ├── resentful_amber_block.json │ │ │ │ ├── resin_block.json │ │ │ │ ├── royal_anvil.json │ │ │ │ ├── royal_grindstone.json │ │ │ │ ├── royal_smithing_table.json │ │ │ │ ├── royal_steel_block.json │ │ │ │ ├── ruby_block.json │ │ │ │ ├── ruby_laser.json │ │ │ │ ├── ruby_prism.json │ │ │ │ ├── sapphire_block.json │ │ │ │ ├── silver_block.json │ │ │ │ ├── silver_pressure_plate.json │ │ │ │ ├── simple_chute.json │ │ │ │ ├── sliding_rail.json │ │ │ │ ├── sliding_rail_stop.json │ │ │ │ ├── smooth_royal_steel_block.json │ │ │ │ ├── space_overcompressor.json │ │ │ │ ├── spectral_anvil.json │ │ │ │ ├── stamping_platform.json │ │ │ │ ├── supercritical_nesting_shulker_box.json │ │ │ │ ├── tempering_glass.json │ │ │ │ ├── tesla_tower.json │ │ │ │ ├── thermoelectric_converter.json │ │ │ │ ├── tin_block.json │ │ │ │ ├── tin_pressure_plate.json │ │ │ │ ├── titanium_block.json │ │ │ │ ├── titanium_pressure_plate.json │ │ │ │ ├── topaz_block.json │ │ │ │ ├── transcendium_block.json │ │ │ │ ├── transmission_pole.json │ │ │ │ ├── transparent_crafting_table.json │ │ │ │ ├── tungsten_block.json │ │ │ │ ├── tungsten_pressure_plate.json │ │ │ │ ├── uranium_block.json │ │ │ │ ├── uranium_pressure_plate.json │ │ │ │ ├── void_energy_collector.json │ │ │ │ ├── void_matter_block.json │ │ │ │ ├── void_stone.json │ │ │ │ ├── weathered_copper_pressure_plate.json │ │ │ │ ├── white_cement_cauldron.json │ │ │ │ ├── white_chocolate_block.json │ │ │ │ ├── white_chocolate_slab.json │ │ │ │ ├── white_chocolate_stairs.json │ │ │ │ ├── yellow_cement_cauldron.json │ │ │ │ ├── zinc_block.json │ │ │ │ └── zinc_pressure_plate.json │ │ │ ├── entities │ │ │ │ └── beheading │ │ │ │ │ └── minecraft │ │ │ │ │ ├── creeper.json │ │ │ │ │ ├── ender_dragon.json │ │ │ │ │ ├── piglin.json │ │ │ │ │ ├── player.json │ │ │ │ │ ├── skeleton.json │ │ │ │ │ ├── wither_skeleton.json │ │ │ │ │ └── zombie.json │ │ │ └── gameplay │ │ │ │ └── crab_trap │ │ │ │ ├── common.json │ │ │ │ ├── jungle.json │ │ │ │ ├── ocean.json │ │ │ │ ├── river.json │ │ │ │ ├── swamp.json │ │ │ │ └── warm_ocean.json │ │ ├── recipe │ │ │ ├── active_silencer.json │ │ │ ├── amber.json │ │ │ ├── amber_block.json │ │ │ ├── amethyst_axe.json │ │ │ ├── amethyst_hoe.json │ │ │ ├── amethyst_pickaxe.json │ │ │ ├── amethyst_shovel.json │ │ │ ├── amethyst_sword.json │ │ │ ├── anvil_collision │ │ │ │ ├── anvil_and_corrupted_beacon.json │ │ │ │ ├── anvil_and_giant_anvil.json │ │ │ │ ├── anvil_and_space_overcompressor.json │ │ │ │ ├── ember_anvil_and_frost_metal_block.json │ │ │ │ ├── ember_anvil_and_levitation_powder_block.json │ │ │ │ ├── ember_anvil_and_redstone_block.json │ │ │ │ ├── royal_anvil_and_levitation_powder_block.json │ │ │ │ └── royal_anvil_and_redstone_block.json │ │ │ ├── anvil_hammer.json │ │ │ ├── batch_crafter.json │ │ │ ├── black_chocolate_block.json │ │ │ ├── black_chocolate_from_block.json │ │ │ ├── black_chocolate_slab.json │ │ │ ├── black_chocolate_stairs.json │ │ │ ├── blasting │ │ │ │ ├── lead_ingot.json │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ ├── silver_ingot.json │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ ├── tin_ingot.json │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ ├── titanium_ingot.json │ │ │ │ ├── titanium_ingot_from_ore.json │ │ │ │ ├── tungsten_ingot.json │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ ├── uranium_ingot.json │ │ │ │ ├── uranium_ingot_from_ore.json │ │ │ │ ├── zinc_ingot.json │ │ │ │ └── zinc_ingot_from_ore.json │ │ │ ├── block_comparator.json │ │ │ ├── block_compress │ │ │ │ ├── berry_cake_block.json │ │ │ │ ├── blackstone.json │ │ │ │ ├── blue_ice.json │ │ │ │ ├── cake_block.json │ │ │ │ ├── chocolate_cake_block.json │ │ │ │ ├── crimson_nylium.json │ │ │ │ ├── deepslate.json │ │ │ │ ├── grass_block.json │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ ├── mycelium.json │ │ │ │ ├── packed_ice.json │ │ │ │ ├── podzol.json │ │ │ │ ├── space_overcompressor.json │ │ │ │ └── warped_nylium.json │ │ │ ├── block_crush │ │ │ │ ├── andesite.json │ │ │ │ ├── cinerite.json │ │ │ │ ├── cobblestone.json │ │ │ │ ├── cracked_deepslate_bricks.json │ │ │ │ ├── cracked_deepslate_tiles.json │ │ │ │ ├── cracked_nether_bricks.json │ │ │ │ ├── cracked_polished_blackstone_bricks.json │ │ │ │ ├── cracked_stone_bricks.json │ │ │ │ ├── diorite.json │ │ │ │ ├── end_dust.json │ │ │ │ ├── granite.json │ │ │ │ ├── gravel.json │ │ │ │ ├── nether_dust.json │ │ │ │ ├── quartz_sand.json │ │ │ │ ├── red_sand.json │ │ │ │ ├── sand.json │ │ │ │ └── soul_sand.json │ │ │ ├── block_devourer.json │ │ │ ├── block_placer.json │ │ │ ├── boiling │ │ │ │ ├── beef_mushroom_stew.json │ │ │ │ └── slime_ball.json │ │ │ ├── brass_block.json │ │ │ ├── brass_ingot.json │ │ │ ├── brass_ingot_from_block.json │ │ │ ├── brass_nugget.json │ │ │ ├── brass_pressure_plate_from_ingots_brass.json │ │ │ ├── bronze_block.json │ │ │ ├── bronze_ingot.json │ │ │ ├── bronze_ingot_from_block.json │ │ │ ├── bronze_nugget.json │ │ │ ├── bronze_pressure_plate_from_ingots_bronze.json │ │ │ ├── bulging │ │ │ │ ├── black_concrete.json │ │ │ │ ├── blue_concrete.json │ │ │ │ ├── brain_coral_block.json │ │ │ │ ├── brown_concrete.json │ │ │ │ ├── brown_mushroom_block.json │ │ │ │ ├── bubble_coral_block.json │ │ │ │ ├── cement_cauldron.json │ │ │ │ ├── clay.json │ │ │ │ ├── cyan_concrete.json │ │ │ │ ├── dough.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 │ │ │ │ ├── fermented_spider_eye.json │ │ │ │ ├── fire_coral_block.json │ │ │ │ ├── gray_concrete.json │ │ │ │ ├── green_concrete.json │ │ │ │ ├── horn_coral_block.json │ │ │ │ ├── kelp.json │ │ │ │ ├── light_blue_concrete.json │ │ │ │ ├── light_gray_concrete.json │ │ │ │ ├── lime_concrete.json │ │ │ │ ├── magenta_concrete.json │ │ │ │ ├── nether_wart_block.json │ │ │ │ ├── orange_concrete.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 │ │ │ │ ├── pink_concrete.json │ │ │ │ ├── prismarine_cluster.json │ │ │ │ ├── purple_concrete.json │ │ │ │ ├── red_concrete.json │ │ │ │ ├── red_mushroom_block.json │ │ │ │ ├── tube_coral_block.json │ │ │ │ ├── warped_wart_block.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 │ │ │ │ ├── wet_sponge.json │ │ │ │ ├── white_concrete.json │ │ │ │ └── yellow_concrete.json │ │ │ ├── campfire_cooking_bread.json │ │ │ ├── canned_food.json │ │ │ ├── capacitor_empty.json │ │ │ ├── charge_collector.json │ │ │ ├── charger.json │ │ │ ├── charger_charging │ │ │ │ ├── capacitor.json │ │ │ │ ├── capacitor_empty.json │ │ │ │ ├── charged_neutronium_ingot.json │ │ │ │ ├── magnet_ingot.json │ │ │ │ └── neutronium_ingot.json │ │ │ ├── charger_from_discharger.json │ │ │ ├── chocolate.json │ │ │ ├── chocolate_black.json │ │ │ ├── chocolate_block.json │ │ │ ├── chocolate_from_block.json │ │ │ ├── chocolate_slab.json │ │ │ ├── chocolate_stairs.json │ │ │ ├── chocolate_white.json │ │ │ ├── chute.json │ │ │ ├── circuit_board.json │ │ │ ├── cocoa_liquor.json │ │ │ ├── concrete │ │ │ │ ├── anvilcraft_reinforced_concrete.json │ │ │ │ └── minecraft_concrete.json │ │ │ ├── confinement_chamber.json │ │ │ ├── controllable_sand.json │ │ │ ├── cooking │ │ │ │ ├── cake_base_block.json │ │ │ │ ├── hardend_resin.json │ │ │ │ └── utusan.json │ │ │ ├── copper_ingot_from_nugget.json │ │ │ ├── copper_nugget.json │ │ │ ├── copper_pressure_plate_from_copper_ingot.json │ │ │ ├── crab_trap.json │ │ │ ├── creamy_bread_roll.json │ │ │ ├── cursed_gold_block.json │ │ │ ├── cursed_gold_ingot_from_cursed_gold_block.json │ │ │ ├── cursed_gold_ingot_from_cursed_gold_nugget.json │ │ │ ├── cursed_gold_nugget.json │ │ │ ├── cut_ember_metal_block.json │ │ │ ├── cut_ember_metal_slab.json │ │ │ ├── cut_ember_metal_stairs.json │ │ │ ├── cut_royal_steel_block.json │ │ │ ├── cut_royal_steel_slab.json │ │ │ ├── cut_royal_steel_stairs.json │ │ │ ├── discharger_from_charger.json │ │ │ ├── disk.json │ │ │ ├── dragon_rod.json │ │ │ ├── earth_core_shard.json │ │ │ ├── earth_core_shard_block.json │ │ │ ├── ember_dragon_rod.json │ │ │ ├── ember_metal_block.json │ │ │ ├── ember_metal_ingot.json │ │ │ ├── ember_metal_ingot_from_block.json │ │ │ ├── ember_metal_nugget_from_ingot.json │ │ │ ├── ferrite_core_magnet_block.json │ │ │ ├── four_to_one_smithing │ │ │ │ ├── ember_metal_heavy_halberd.json │ │ │ │ └── frost_metal_heavy_halberd.json │ │ │ ├── frost_metal_block.json │ │ │ ├── frost_metal_ingot.json │ │ │ ├── frost_metal_ingot_from_block.json │ │ │ ├── frost_metal_nugget.json │ │ │ ├── heater.json │ │ │ ├── heavy_halberd_core.json │ │ │ ├── heavy_iron_block.json │ │ │ ├── heliostats_biological.json │ │ │ ├── heliostats_electrical.json │ │ │ ├── hollow_magnet_block.json │ │ │ ├── impact_pile.json │ │ │ ├── induction_light.json │ │ │ ├── ionocraft.json │ │ │ ├── ionocraft_backpack.json │ │ │ ├── iron_block_from_heavy_iron_block.json │ │ │ ├── item_collector.json │ │ │ ├── item_compress │ │ │ │ ├── berry_cream_block.json │ │ │ │ ├── bone_block.json │ │ │ │ ├── chocolate_cream_block.json │ │ │ │ └── cream_block.json │ │ │ ├── item_crush │ │ │ │ ├── armor_chainmail_boots_2_chain.json │ │ │ │ ├── armor_chainmail_chestplate_2_chain.json │ │ │ │ ├── armor_chainmail_helmet_2_chain.json │ │ │ │ ├── armor_chainmail_leggings_2_chain.json │ │ │ │ ├── armor_diamond_boots_2_diamond.json │ │ │ │ ├── armor_diamond_chestplate_2_diamond.json │ │ │ │ ├── armor_diamond_helmet_2_diamond.json │ │ │ │ ├── armor_diamond_horse_armor_2_diamond.json │ │ │ │ ├── armor_diamond_leggings_2_diamond.json │ │ │ │ ├── armor_golden_boots_2_gold_ingot.json │ │ │ │ ├── armor_golden_chestplate_2_gold_ingot.json │ │ │ │ ├── armor_golden_helmet_2_gold_ingot.json │ │ │ │ ├── armor_golden_horse_armor_2_gold_ingot.json │ │ │ │ ├── armor_golden_leggings_2_gold_ingot.json │ │ │ │ ├── armor_iron_boots_2_iron_ingot.json │ │ │ │ ├── armor_iron_chestplate_2_iron_ingot.json │ │ │ │ ├── armor_iron_helmet_2_iron_ingot.json │ │ │ │ ├── armor_iron_horse_armor_2_iron_ingot.json │ │ │ │ ├── armor_iron_leggings_2_iron_ingot.json │ │ │ │ ├── armor_leather_boots_2_leather.json │ │ │ │ ├── armor_leather_chestplate_2_leather.json │ │ │ │ ├── armor_leather_helmet_2_leather.json │ │ │ │ ├── armor_leather_horse_armor_2_leather.json │ │ │ │ ├── armor_leather_leggings_2_leather.json │ │ │ │ ├── bone_meal.json │ │ │ │ ├── flour.json │ │ │ │ ├── gunpowder.json │ │ │ │ ├── tool_diamond_axe_2_diamond.json │ │ │ │ ├── tool_diamond_hoe_2_diamond.json │ │ │ │ ├── tool_diamond_pickaxe_2_diamond.json │ │ │ │ ├── tool_diamond_shovel_2_diamond.json │ │ │ │ ├── tool_diamond_sword_2_diamond.json │ │ │ │ ├── tool_golden_axe_2_gold_ingot.json │ │ │ │ ├── tool_golden_hoe_2_gold_ingot.json │ │ │ │ ├── tool_golden_pickaxe_2_gold_ingot.json │ │ │ │ ├── tool_golden_shovel_2_gold_ingot.json │ │ │ │ ├── tool_golden_sword_2_gold_ingot.json │ │ │ │ ├── tool_iron_axe_2_iron_ingot.json │ │ │ │ ├── tool_iron_hoe_2_iron_ingot.json │ │ │ │ ├── tool_iron_pickaxe_2_iron_ingot.json │ │ │ │ ├── tool_iron_shovel_2_iron_ingot.json │ │ │ │ ├── tool_iron_sword_2_iron_ingot.json │ │ │ │ └── wood_fiber.json │ │ │ ├── item_detector.json │ │ │ ├── item_inject │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ ├── deepslate_lead_ore.json │ │ │ │ ├── deepslate_silver_ore.json │ │ │ │ ├── deepslate_tin_ore.json │ │ │ │ ├── deepslate_titanium_ore.json │ │ │ │ ├── deepslate_tungsten_ore.json │ │ │ │ ├── deepslate_uranium_ore.json │ │ │ │ ├── deepslate_zinc_ore.json │ │ │ │ ├── gilded_blackstone.json │ │ │ │ ├── nesting_shulker_box.json │ │ │ │ ├── nether_gold_ore.json │ │ │ │ ├── over_nesting_shulker_box.json │ │ │ │ └── supercritical_nesting_shulker_box.json │ │ │ ├── jewel_crafting │ │ │ │ ├── anvil_amulet.json │ │ │ │ ├── cat_amulet.json │ │ │ │ ├── cogwheel_amulet.json │ │ │ │ ├── comrade_amulet.json │ │ │ │ ├── dog_amulet.json │ │ │ │ ├── elytra.json │ │ │ │ ├── emerald_amulet.json │ │ │ │ ├── enchanted_golden_apple.json │ │ │ │ ├── feather_amulet.json │ │ │ │ ├── heavy_core.json │ │ │ │ ├── ominous_bottle.json │ │ │ │ ├── ominous_trial_key.json │ │ │ │ ├── ruby_amulet.json │ │ │ │ ├── sapphire_amulet.json │ │ │ │ ├── silence_amulet.json │ │ │ │ ├── topaz_amulet.json │ │ │ │ ├── totem_of_undying.json │ │ │ │ └── trial_key.json │ │ │ ├── jewelcrafting_table.json │ │ │ ├── lead_block.json │ │ │ ├── lead_ingot.json │ │ │ ├── lead_ingot_from_block.json │ │ │ ├── lead_nugget.json │ │ │ ├── lead_pressure_plate_from_ingots_lead.json │ │ │ ├── levitation_powder_block_from_powders.json │ │ │ ├── levitation_powder_from_block.json │ │ │ ├── load_monitor.json │ │ │ ├── magnet.json │ │ │ ├── magnet_block.json │ │ │ ├── magnet_ingot_from_block.json │ │ │ ├── magnet_ingot_from_hollow_block.json │ │ │ ├── magnetic_chute.json │ │ │ ├── magnetoelectric_core.json │ │ │ ├── mass_inject │ │ │ │ ├── anvilcraft_cursed_gold_block.json │ │ │ │ ├── anvilcraft_cursed_gold_ingot.json │ │ │ │ ├── anvilcraft_cursed_gold_nugget.json │ │ │ │ ├── anvilcraft_ember_metal_block.json │ │ │ │ ├── anvilcraft_ember_metal_ingot.json │ │ │ │ ├── anvilcraft_ember_metal_nugget.json │ │ │ │ ├── anvilcraft_heavy_iron_block.json │ │ │ │ ├── anvilcraft_royal_steel_block.json │ │ │ │ ├── anvilcraft_royal_steel_ingot.json │ │ │ │ ├── anvilcraft_royal_steel_nugget.json │ │ │ │ ├── c_ingots │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── titanium.json │ │ │ │ │ ├── tungsten.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── c_nuggets │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── titanium.json │ │ │ │ │ ├── tungsten.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ └── c_storage_blocks │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── titanium.json │ │ │ │ │ ├── tungsten.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ ├── mesh │ │ │ │ ├── cinerite │ │ │ │ │ ├── cinerite.json │ │ │ │ │ ├── gunpowder.json │ │ │ │ │ ├── lapis_lazuli.json │ │ │ │ │ ├── lead_nugget.json │ │ │ │ │ ├── silver_nugget.json │ │ │ │ │ ├── tin_nugget.json │ │ │ │ │ └── zinc_nugget.json │ │ │ │ ├── end_dust │ │ │ │ │ ├── chorus_flower.json │ │ │ │ │ ├── end_dust.json │ │ │ │ │ ├── levitation_powder.json │ │ │ │ │ └── titanium_nugget.json │ │ │ │ ├── gravel │ │ │ │ │ ├── flint.json │ │ │ │ │ ├── gravel.json │ │ │ │ │ └── iron_nugget.json │ │ │ │ ├── nether_dust │ │ │ │ │ ├── nether_dust.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ └── tungsten_nugget.json │ │ │ │ ├── quartz_sand │ │ │ │ │ ├── quartz.json │ │ │ │ │ └── quartz_sand.json │ │ │ │ ├── red_sand │ │ │ │ │ ├── copper_nugget.json │ │ │ │ │ ├── glowstone_dust.json │ │ │ │ │ └── red_sand.json │ │ │ │ ├── sand │ │ │ │ │ ├── clay_ball.json │ │ │ │ │ ├── gold_nugget.json │ │ │ │ │ └── sand.json │ │ │ │ └── soul_sand │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ └── soul_sand.json │ │ │ ├── mineral_fountain │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ ├── deepslate_lead_ore.json │ │ │ │ ├── deepslate_silver_ore.json │ │ │ │ ├── deepslate_tin_ore.json │ │ │ │ ├── deepslate_titanium_ore.json │ │ │ │ ├── deepslate_tungsten_ore.json │ │ │ │ ├── deepslate_uranium_ore.json │ │ │ │ └── deepslate_zinc_ore.json │ │ │ ├── mineral_fountain_chance │ │ │ │ ├── earth_core_shard_ore_from_overworld.json │ │ │ │ ├── earth_core_shard_ore_from_the_nether.json │ │ │ │ ├── void_stone_from_overworld.json │ │ │ │ └── void_stone_from_the_end.json │ │ │ ├── mob_transform │ │ │ │ ├── allay.json │ │ │ │ ├── bat.json │ │ │ │ ├── cow.json │ │ │ │ ├── guardian.json │ │ │ │ ├── horse.json │ │ │ │ ├── iron_golem.json │ │ │ │ ├── pig.json │ │ │ │ ├── piglin.json │ │ │ │ └── villager.json │ │ │ ├── multiblock │ │ │ │ ├── acceleration_ring.json │ │ │ │ ├── deflection_ring.json │ │ │ │ ├── diamond_block.json │ │ │ │ ├── giant_anvil_1.json │ │ │ │ ├── giant_anvil_2.json │ │ │ │ ├── large_cake.json │ │ │ │ ├── menger_sponge.json │ │ │ │ └── menger_sponge_2.json │ │ │ ├── multiblock_conversion │ │ │ │ ├── acceleration_ring.json │ │ │ │ ├── deflection_ring.json │ │ │ │ ├── giant_anvil_1.json │ │ │ │ ├── giant_anvil_2.json │ │ │ │ ├── large_cake.json │ │ │ │ └── spawner.json │ │ │ ├── multiphase_matter_block.json │ │ │ ├── multiphase_matter_from_block.json │ │ │ ├── negative_matter.json │ │ │ ├── negative_matter_block.json │ │ │ ├── negative_matter_from_block.json │ │ │ ├── negative_matter_nugget_from_ingot.json │ │ │ ├── netherite_crystal_nucleus.json │ │ │ ├── overseer.json │ │ │ ├── piezoelectric_crystal.json │ │ │ ├── piezoelectric_crystal_amethyst.json │ │ │ ├── power_converter_big.json │ │ │ ├── power_converter_big_from_middle.json │ │ │ ├── power_converter_big_from_small.json │ │ │ ├── power_converter_middle_from_small.json │ │ │ ├── pulse_generator.json │ │ │ ├── raw_lead.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_titanium.json │ │ │ ├── raw_titanium_block.json │ │ │ ├── raw_tungsten.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── raw_uranium.json │ │ │ ├── raw_uranium_block.json │ │ │ ├── raw_zinc.json │ │ │ ├── raw_zinc_block.json │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ ├── remote_transmission_pole.json │ │ │ ├── resin.json │ │ │ ├── resin_block.json │ │ │ ├── royal_dragon_rod.json │ │ │ ├── royal_steel_block.json │ │ │ ├── royal_steel_ingot_from_royal_steel_block.json │ │ │ ├── royal_steel_ingot_from_royal_steel_nugget.json │ │ │ ├── royal_steel_nugget.json │ │ │ ├── ruby.json │ │ │ ├── ruby_block.json │ │ │ ├── ruby_laser.json │ │ │ ├── ruby_prism.json │ │ │ ├── sapphire.json │ │ │ ├── sapphire_block.json │ │ │ ├── shaped_crushing_table_recipe.json │ │ │ ├── shapeless_crushing_table_recipe.json │ │ │ ├── silver_block.json │ │ │ ├── silver_ingot.json │ │ │ ├── silver_ingot_from_block.json │ │ │ ├── silver_nugget.json │ │ │ ├── silver_pressure_plate_from_ingots_silver.json │ │ │ ├── sliding_rail.json │ │ │ ├── sliding_rail_stop.json │ │ │ ├── smelting │ │ │ │ ├── lead_ingot.json │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ ├── silver_ingot.json │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ ├── tin_ingot.json │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ ├── titanium_ingot.json │ │ │ │ ├── titanium_ingot_from_ore.json │ │ │ │ ├── tungsten_ingot.json │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ ├── uranium_ingot.json │ │ │ │ ├── uranium_ingot_from_ore.json │ │ │ │ ├── zinc_ingot.json │ │ │ │ └── zinc_ingot_from_ore.json │ │ │ ├── smelting_cooking_bread.json │ │ │ ├── smithing │ │ │ │ ├── ember_anvil.json │ │ │ │ ├── ember_anvil_hammer.json │ │ │ │ ├── ember_dragon_rod.json │ │ │ │ ├── ember_grindstone.json │ │ │ │ ├── ember_metal_axe.json │ │ │ │ ├── ember_metal_hoe.json │ │ │ │ ├── ember_metal_pickaxe.json │ │ │ │ ├── ember_metal_shovel.json │ │ │ │ ├── ember_metal_sword.json │ │ │ │ ├── ember_smithing_table.json │ │ │ │ ├── frost_metal_axe.json │ │ │ │ ├── frost_metal_hoe.json │ │ │ │ ├── frost_metal_pickaxe.json │ │ │ │ ├── frost_metal_shovel.json │ │ │ │ ├── frost_metal_sword.json │ │ │ │ ├── royal_anvil.json │ │ │ │ ├── royal_anvil_hammer.json │ │ │ │ ├── royal_dragon_rod.json │ │ │ │ ├── royal_grindstone.json │ │ │ │ ├── royal_smithing_table.json │ │ │ │ ├── royal_steel_axe.json │ │ │ │ ├── royal_steel_hoe.json │ │ │ │ ├── royal_steel_pickaxe.json │ │ │ │ ├── royal_steel_shovel.json │ │ │ │ └── royal_steel_sword.json │ │ │ ├── smoking_bread.json │ │ │ ├── squeezing │ │ │ │ ├── lava_from_magma_block.json │ │ │ │ ├── power_snow_from_ice.json │ │ │ │ ├── water_from_moss_block.json │ │ │ │ └── water_from_wet_sponge.json │ │ │ ├── stable_neutronium_ingot.json │ │ │ ├── stamping │ │ │ │ ├── brass_pressure_plate.json │ │ │ │ ├── bronze_pressure_plate.json │ │ │ │ ├── cocoa_butter.json │ │ │ │ ├── copper_pressure_plate.json │ │ │ │ ├── cream.json │ │ │ │ ├── ember_metal_upgrade_smithing_template.json │ │ │ │ ├── geode_gems.json │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ ├── lead_pressure_plate.json │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ ├── paper_from_sugar_cane.json │ │ │ │ ├── paper_from_wood_fiber.json │ │ │ │ ├── pink_petals.json │ │ │ │ ├── prismarine_crystals.json │ │ │ │ ├── sea_heart_shell_shard.json │ │ │ │ ├── shulker_box_from_nesting_shulker_box.json │ │ │ │ ├── shulker_box_from_over_nesting_shulker_box.json │ │ │ │ ├── shulker_box_from_supercritical_nesting_shulker_box.json │ │ │ │ ├── silver_pressure_plate.json │ │ │ │ ├── snow.json │ │ │ │ ├── tin_can_from_plate.json │ │ │ │ ├── tin_pressure_plate.json │ │ │ │ ├── titanium_pressure_plate.json │ │ │ │ ├── tungsten_pressure_plate.json │ │ │ │ ├── uranium_pressure_plate.json │ │ │ │ └── zinc_pressure_plate.json │ │ │ ├── stamping_platform.json │ │ │ ├── stamping_unique_items │ │ │ │ ├── eight_to_one_smithing_template.json │ │ │ │ ├── four_to_one_smithing_template.json │ │ │ │ └── two_to_one_smithing_template.json │ │ │ ├── stonecutting │ │ │ │ ├── black_chocolate_slab.json │ │ │ │ ├── black_chocolate_stairs.json │ │ │ │ ├── chocolate_slab.json │ │ │ │ ├── chocolate_stairs.json │ │ │ │ ├── cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_pillar_from_cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_pillar_from_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_slab_from_cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_slab_from_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_stairs_from_cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_stairs_from_ember_metal_block.json │ │ │ │ ├── cut_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_block_from_polished_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_slab_from_cut_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_slab_from_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_slab_from_polished_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_stairs_from_cut_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_stairs_from_heavy_iron_block.json │ │ │ │ ├── cut_heavy_iron_stairs_from_polished_heavy_iron_block.json │ │ │ │ ├── cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_pillar_from_cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_pillar_from_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_slab_from_cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_slab_from_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_stairs_from_cut_royal_steel_block.json │ │ │ │ ├── cut_royal_steel_stairs_from_royal_steel_block.json │ │ │ │ ├── heavy_iron_beam.json │ │ │ │ ├── heavy_iron_beam_from_cut_heavy_iron_block.json │ │ │ │ ├── heavy_iron_beam_from_polished_heavy_iron_block.json │ │ │ │ ├── heavy_iron_column.json │ │ │ │ ├── heavy_iron_column_from_cut_heavy_iron_block.json │ │ │ │ ├── heavy_iron_column_from_polished_heavy_iron_block.json │ │ │ │ ├── heavy_iron_door.json │ │ │ │ ├── heavy_iron_door_from_polished_heavy_iron_block.json │ │ │ │ ├── heavy_iron_plate.json │ │ │ │ ├── heavy_iron_plate_from_cut_heavy_iron_block.json │ │ │ │ ├── heavy_iron_plate_from_cut_heavy_iron_slab.json │ │ │ │ ├── heavy_iron_plate_from_polished_heavy_iron_block.json │ │ │ │ ├── heavy_iron_plate_from_polished_heavy_iron_slab.json │ │ │ │ ├── heavy_iron_trapdoor.json │ │ │ │ ├── heavy_iron_trapdoor_from_cut_heavy_iron_block.json │ │ │ │ ├── heavy_iron_trapdoor_from_polished_heavy_iron_block.json │ │ │ │ ├── heavy_iron_wall.json │ │ │ │ ├── heavy_iron_wall_from_cut_heavy_iron_block.json │ │ │ │ ├── heavy_iron_wall_from_polished_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_slab_from_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_slab_from_polished_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_stairs_from_heavy_iron_block.json │ │ │ │ ├── polished_heavy_iron_stairs_from_polished_heavy_iron_block.json │ │ │ │ ├── power_converter_middle.json │ │ │ │ ├── power_converter_small_from_big.json │ │ │ │ ├── power_converter_small_from_middle.json │ │ │ │ ├── reinforced_concrete_black_slab.json │ │ │ │ ├── reinforced_concrete_black_stair.json │ │ │ │ ├── reinforced_concrete_black_wall.json │ │ │ │ ├── reinforced_concrete_blue_slab.json │ │ │ │ ├── reinforced_concrete_blue_stair.json │ │ │ │ ├── reinforced_concrete_blue_wall.json │ │ │ │ ├── reinforced_concrete_brown_slab.json │ │ │ │ ├── reinforced_concrete_brown_stair.json │ │ │ │ ├── reinforced_concrete_brown_wall.json │ │ │ │ ├── reinforced_concrete_cyan_slab.json │ │ │ │ ├── reinforced_concrete_cyan_stair.json │ │ │ │ ├── reinforced_concrete_cyan_wall.json │ │ │ │ ├── reinforced_concrete_gray_slab.json │ │ │ │ ├── reinforced_concrete_gray_stair.json │ │ │ │ ├── reinforced_concrete_gray_wall.json │ │ │ │ ├── reinforced_concrete_green_slab.json │ │ │ │ ├── reinforced_concrete_green_stair.json │ │ │ │ ├── reinforced_concrete_green_wall.json │ │ │ │ ├── reinforced_concrete_light_blue_slab.json │ │ │ │ ├── reinforced_concrete_light_blue_stair.json │ │ │ │ ├── reinforced_concrete_light_blue_wall.json │ │ │ │ ├── reinforced_concrete_light_gray_slab.json │ │ │ │ ├── reinforced_concrete_light_gray_stair.json │ │ │ │ ├── reinforced_concrete_light_gray_wall.json │ │ │ │ ├── reinforced_concrete_lime_slab.json │ │ │ │ ├── reinforced_concrete_lime_stair.json │ │ │ │ ├── reinforced_concrete_lime_wall.json │ │ │ │ ├── reinforced_concrete_magenta_slab.json │ │ │ │ ├── reinforced_concrete_magenta_stair.json │ │ │ │ ├── reinforced_concrete_magenta_wall.json │ │ │ │ ├── reinforced_concrete_orange_slab.json │ │ │ │ ├── reinforced_concrete_orange_stair.json │ │ │ │ ├── reinforced_concrete_orange_wall.json │ │ │ │ ├── reinforced_concrete_pink_slab.json │ │ │ │ ├── reinforced_concrete_pink_stair.json │ │ │ │ ├── reinforced_concrete_pink_wall.json │ │ │ │ ├── reinforced_concrete_purple_slab.json │ │ │ │ ├── reinforced_concrete_purple_stair.json │ │ │ │ ├── reinforced_concrete_purple_wall.json │ │ │ │ ├── reinforced_concrete_red_slab.json │ │ │ │ ├── reinforced_concrete_red_stair.json │ │ │ │ ├── reinforced_concrete_red_wall.json │ │ │ │ ├── reinforced_concrete_white_slab.json │ │ │ │ ├── reinforced_concrete_white_stair.json │ │ │ │ ├── reinforced_concrete_white_wall.json │ │ │ │ ├── reinforced_concrete_yellow_slab.json │ │ │ │ ├── reinforced_concrete_yellow_stair.json │ │ │ │ ├── reinforced_concrete_yellow_wall.json │ │ │ │ ├── smooth_royal_steel_block.json │ │ │ │ ├── white_chocolate_slab.json │ │ │ │ └── white_chocolate_stairs.json │ │ │ ├── super_heating │ │ │ │ ├── brass_ingot.json │ │ │ │ ├── bronze_ingot.json │ │ │ │ ├── charcoal.json │ │ │ │ ├── diamond.json │ │ │ │ ├── ember_glass.json │ │ │ │ ├── end_stone.json │ │ │ │ ├── lava_from_cobblestone.json │ │ │ │ ├── lava_from_stone.json │ │ │ │ ├── lime_powder_from_calcite.json │ │ │ │ ├── lime_powder_from_crab_claw.json │ │ │ │ ├── lime_powder_from_dead_coral_blocks.json │ │ │ │ ├── lime_powder_from_dead_corals.json │ │ │ │ ├── lime_powder_from_dripstone_block.json │ │ │ │ ├── lime_powder_from_nautilus_shell.json │ │ │ │ ├── lime_powder_from_pointed_dripstone.json │ │ │ │ ├── magnet_ingot.json │ │ │ │ ├── melt_gem_cauldron.json │ │ │ │ ├── royal_steel_block.json │ │ │ │ ├── royal_steel_ingot.json │ │ │ │ └── tempering_glass.json │ │ │ ├── tesla_tower.json │ │ │ ├── thermoelectric_converter.json │ │ │ ├── time_warp │ │ │ │ ├── amber.json │ │ │ │ ├── ancient_debris.json │ │ │ │ ├── budding_amethyst.json │ │ │ │ ├── calcite.json │ │ │ │ ├── coal.json │ │ │ │ ├── coal_from_logs.json │ │ │ │ ├── crying_obsidian.json │ │ │ │ ├── dirt.json │ │ │ │ ├── ember_metal_ingot_0.json │ │ │ │ ├── ember_metal_ingot_1.json │ │ │ │ ├── ember_metal_ingot_2.json │ │ │ │ ├── ember_metal_ingot_3.json │ │ │ │ ├── emerald_block.json │ │ │ │ ├── end_stone.json │ │ │ │ ├── frost_metal_ingot.json │ │ │ │ ├── frost_metal_upgrade_smithing_template.json │ │ │ │ ├── oil_from_beef.json │ │ │ │ ├── oil_from_chicken.json │ │ │ │ ├── oil_from_foods │ │ │ │ │ └── raw_fish.json │ │ │ │ ├── oil_from_mutton.json │ │ │ │ ├── oil_from_piglin_head.json │ │ │ │ ├── oil_from_porkchop.json │ │ │ │ ├── oil_from_rabbit.json │ │ │ │ ├── oil_from_rotten_flesh.json │ │ │ │ ├── oil_from_spider_eye.json │ │ │ │ ├── oil_from_zombie_head.json │ │ │ │ ├── raw_copper.json │ │ │ │ ├── raw_gold.json │ │ │ │ ├── raw_iron.json │ │ │ │ ├── raw_lead.json │ │ │ │ ├── raw_silver.json │ │ │ │ ├── raw_tin.json │ │ │ │ ├── raw_titanium.json │ │ │ │ ├── raw_tungsten.json │ │ │ │ ├── raw_uranium.json │ │ │ │ ├── raw_zinc.json │ │ │ │ ├── ruby_block.json │ │ │ │ ├── sapphire_block.json │ │ │ │ ├── sea_heart_shell.json │ │ │ │ ├── soul_soil.json │ │ │ │ ├── topaz_block.json │ │ │ │ ├── tuff.json │ │ │ │ ├── wither_rose.json │ │ │ │ └── wither_skeleton_skull.json │ │ │ ├── tin_block.json │ │ │ ├── tin_ingot.json │ │ │ ├── tin_ingot_from_block.json │ │ │ ├── tin_nugget.json │ │ │ ├── tin_pressure_plate_from_ingots_tin.json │ │ │ ├── titanium_block.json │ │ │ ├── titanium_ingot.json │ │ │ ├── titanium_ingot_from_block.json │ │ │ ├── titanium_nugget.json │ │ │ ├── titanium_pressure_plate_from_ingots_titanium.json │ │ │ ├── topaz.json │ │ │ ├── topaz_block.json │ │ │ ├── transcendium_block.json │ │ │ ├── transcendium_ingot.json │ │ │ ├── transcendium_ingot_from_block.json │ │ │ ├── transcendium_nugget_from_ingot.json │ │ │ ├── transmission_pole.json │ │ │ ├── transparent_crafting_table.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_ingot.json │ │ │ ├── tungsten_ingot_from_block.json │ │ │ ├── tungsten_nugget.json │ │ │ ├── tungsten_pressure_plate_from_ingots_tungsten.json │ │ │ ├── two_to_one_smithing │ │ │ │ ├── multiphase_matter_axe.json │ │ │ │ ├── multiphase_matter_hoe.json │ │ │ │ ├── multiphase_matter_pickaxe.json │ │ │ │ ├── multiphase_matter_shovel.json │ │ │ │ └── multiphase_matter_sword.json │ │ │ ├── unpack │ │ │ │ ├── amethyst_shard.json │ │ │ │ ├── clay_ball.json │ │ │ │ ├── glowstone_dust.json │ │ │ │ ├── honey_bottle.json │ │ │ │ ├── honeycomb.json │ │ │ │ ├── magnet_ingot_from_hollow_magnet_block.json │ │ │ │ ├── magnet_ingot_from_magnet_block.json │ │ │ │ ├── melon_slice.json │ │ │ │ ├── pointed_dripstone.json │ │ │ │ ├── prismine_shard_from_prismine.json │ │ │ │ ├── prismine_shard_from_prismine_bricks.json │ │ │ │ ├── quartz.json │ │ │ │ ├── snowball.json │ │ │ │ └── sponge_gemmule.json │ │ │ ├── uranium_block.json │ │ │ ├── uranium_ingot.json │ │ │ ├── uranium_ingot_from_block.json │ │ │ ├── uranium_nugget.json │ │ │ ├── uranium_pressure_plate_from_ingots_uranium.json │ │ │ ├── void_energy_collector.json │ │ │ ├── void_matter.json │ │ │ ├── void_matter_block.json │ │ │ ├── white_chocolate_block.json │ │ │ ├── white_chocolate_from_block.json │ │ │ ├── white_chocolate_slab.json │ │ │ ├── white_chocolate_stairs.json │ │ │ ├── zinc_block.json │ │ │ ├── zinc_ingot.json │ │ │ ├── zinc_ingot_from_block.json │ │ │ ├── zinc_nugget.json │ │ │ └── zinc_pressure_plate_from_ingots_zinc.json │ │ └── tags │ │ │ ├── block │ │ │ ├── anvil_hammer_blacklist.json │ │ │ ├── block_devourer_chain_devouring.json │ │ │ ├── block_devourer_probability_dropping.json │ │ │ ├── cant_broken_anvil.json │ │ │ ├── cleaning_applicable.json │ │ │ ├── crafting_matrix_element.json │ │ │ ├── end_portal_unable_change.json │ │ │ ├── felling_applicable.json │ │ │ ├── hammer_changeable.json │ │ │ ├── hammer_removable.json │ │ │ ├── incorrect_for_amethyst_tool.json │ │ │ ├── incorrect_for_ember_tool.json │ │ │ ├── incorrect_for_frost_metal_tool.json │ │ │ ├── incorrect_for_multiphase_tool.json │ │ │ ├── laser_can_pass_though.json │ │ │ ├── magnet.json │ │ │ ├── mushroom_block.json │ │ │ ├── neutronium_cannot_pass_through.json │ │ │ ├── non_magnetic.json │ │ │ ├── overseer_base.json │ │ │ ├── redstone_torch.json │ │ │ ├── spectral_can_through.json │ │ │ ├── under_cauldron.json │ │ │ └── void_decay_products.json │ │ │ ├── enchantment │ │ │ ├── frost_passed.json │ │ │ ├── merciless_damage_passed.json │ │ │ └── merciless_passed.json │ │ │ ├── fluid │ │ │ └── menger_sponge_can_absorb.json │ │ │ └── item │ │ │ ├── amulet.json │ │ │ ├── capacitor.json │ │ │ ├── dead_coral_blocks.json │ │ │ ├── dead_corals.json │ │ │ ├── ember_metal_axe_base.json │ │ │ ├── ember_metal_hoe_base.json │ │ │ ├── ember_metal_pickaxe_base.json │ │ │ ├── ember_metal_shovel_base.json │ │ │ ├── ember_metal_sword_base.json │ │ │ ├── explosion_proof.json │ │ │ ├── fire_starter.json │ │ │ ├── frost_metal_axe_base.json │ │ │ ├── frost_metal_hoe_base.json │ │ │ ├── frost_metal_pickaxe_base.json │ │ │ ├── frost_metal_shovel_base.json │ │ │ ├── frost_metal_sword_base.json │ │ │ ├── gem_blocks.json │ │ │ ├── gems.json │ │ │ ├── multiple_to_one_smithing_templates.json │ │ │ ├── netherite_block.json │ │ │ ├── reinforced_concrete.json │ │ │ ├── royal_steel_axe_base.json │ │ │ ├── royal_steel_hoe_base.json │ │ │ ├── royal_steel_pickaxe_base.json │ │ │ ├── royal_steel_shovel_base.json │ │ │ ├── royal_steel_sword_base.json │ │ │ ├── seeds_pack_content.json │ │ │ ├── templates.json │ │ │ ├── tools │ │ │ ├── anvil_hammer.json │ │ │ ├── dragon_rod.json │ │ │ └── heavy_halberd.json │ │ │ ├── unbroken_fire_starter.json │ │ │ ├── uncharged_neutronium_ingots.json │ │ │ └── void_resistant.json │ │ ├── c │ │ └── tags │ │ │ ├── block │ │ │ ├── dyed.json │ │ │ ├── dyed │ │ │ │ ├── black.json │ │ │ │ ├── blue.json │ │ │ │ ├── brown.json │ │ │ │ ├── cyan.json │ │ │ │ ├── gray.json │ │ │ │ ├── green.json │ │ │ │ ├── light_blue.json │ │ │ │ ├── light_gray.json │ │ │ │ ├── lime.json │ │ │ │ ├── magenta.json │ │ │ │ ├── orange.json │ │ │ │ ├── pink.json │ │ │ │ ├── purple.json │ │ │ │ ├── red.json │ │ │ │ ├── white.json │ │ │ │ └── yellow.json │ │ │ ├── glass_blocks.json │ │ │ ├── ores.json │ │ │ ├── ores │ │ │ │ ├── earth_core_shard.json │ │ │ │ ├── lead.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── titanium.json │ │ │ │ ├── tungsten.json │ │ │ │ ├── uranium.json │ │ │ │ ├── void_matter.json │ │ │ │ └── zinc.json │ │ │ ├── ores_in_ground │ │ │ │ └── deepslate.json │ │ │ ├── player_workstations │ │ │ │ └── crafting_tables.json │ │ │ ├── storage_blocks.json │ │ │ ├── storage_blocks │ │ │ │ ├── amber.json │ │ │ │ ├── brass.json │ │ │ │ ├── bronze.json │ │ │ │ ├── earth_core_shard.json │ │ │ │ ├── lead.json │ │ │ │ ├── magnet.json │ │ │ │ ├── multiphase_matter.json │ │ │ │ ├── raw_lead.json │ │ │ │ ├── raw_silver.json │ │ │ │ ├── raw_tin.json │ │ │ │ ├── raw_titanium.json │ │ │ │ ├── raw_tungsten.json │ │ │ │ ├── raw_uranium.json │ │ │ │ ├── raw_zinc.json │ │ │ │ ├── resin.json │ │ │ │ ├── ruby.json │ │ │ │ ├── sapphire.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── titanium.json │ │ │ │ ├── topaz.json │ │ │ │ ├── tungsten.json │ │ │ │ ├── uranium.json │ │ │ │ ├── void_matter.json │ │ │ │ └── zinc.json │ │ │ └── villager_job_sites.json │ │ │ ├── enchantment │ │ │ └── increase_block_drops.json │ │ │ ├── fluid │ │ │ ├── cement.json │ │ │ └── oil.json │ │ │ └── item │ │ │ ├── berries.json │ │ │ ├── buckets.json │ │ │ ├── buckets │ │ │ ├── cement.json │ │ │ └── oil.json │ │ │ ├── dough.json │ │ │ ├── dough │ │ │ └── wheat.json │ │ │ ├── dyed.json │ │ │ ├── dyed │ │ │ ├── black.json │ │ │ ├── blue.json │ │ │ ├── brown.json │ │ │ ├── cyan.json │ │ │ ├── gray.json │ │ │ ├── green.json │ │ │ ├── light_blue.json │ │ │ ├── light_gray.json │ │ │ ├── lime.json │ │ │ ├── magenta.json │ │ │ ├── orange.json │ │ │ ├── pink.json │ │ │ ├── purple.json │ │ │ ├── red.json │ │ │ ├── white.json │ │ │ └── yellow.json │ │ │ ├── flour.json │ │ │ ├── flour │ │ │ └── wheat.json │ │ │ ├── foods.json │ │ │ ├── foods │ │ │ └── edible_when_placed.json │ │ │ ├── gems.json │ │ │ ├── gems │ │ │ ├── amber.json │ │ │ ├── ruby.json │ │ │ ├── sapphire.json │ │ │ └── topaz.json │ │ │ ├── glass_blocks.json │ │ │ ├── ingots.json │ │ │ ├── ingots │ │ │ ├── brass.json │ │ │ ├── bronze.json │ │ │ ├── lead.json │ │ │ ├── magnet.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ └── zinc.json │ │ │ ├── nuggets.json │ │ │ ├── nuggets │ │ │ ├── brass.json │ │ │ ├── bronze.json │ │ │ ├── copper.json │ │ │ ├── lead.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ └── zinc.json │ │ │ ├── ores.json │ │ │ ├── ores │ │ │ ├── earth_core_shard.json │ │ │ ├── lead.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ ├── void_matter.json │ │ │ └── zinc.json │ │ │ ├── plates.json │ │ │ ├── plates │ │ │ ├── brass.json │ │ │ ├── bronze.json │ │ │ ├── copper.json │ │ │ ├── gold.json │ │ │ ├── iron.json │ │ │ ├── lead.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ └── zinc.json │ │ │ ├── raw_materials.json │ │ │ ├── raw_materials │ │ │ ├── lead.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ └── zinc.json │ │ │ ├── storage_blocks.json │ │ │ ├── storage_blocks │ │ │ ├── amber.json │ │ │ ├── brass.json │ │ │ ├── bronze.json │ │ │ ├── earth_core_shard.json │ │ │ ├── lead.json │ │ │ ├── magnet.json │ │ │ ├── multiphase_matter.json │ │ │ ├── raw_lead.json │ │ │ ├── raw_silver.json │ │ │ ├── raw_tin.json │ │ │ ├── raw_titanium.json │ │ │ ├── raw_tungsten.json │ │ │ ├── raw_uranium.json │ │ │ ├── raw_zinc.json │ │ │ ├── resin.json │ │ │ ├── ruby.json │ │ │ ├── sapphire.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── titanium.json │ │ │ ├── topaz.json │ │ │ ├── tungsten.json │ │ │ ├── uranium.json │ │ │ ├── void_matter.json │ │ │ └── zinc.json │ │ │ ├── tools │ │ │ ├── melee_weapon.json │ │ │ ├── mining_tool.json │ │ │ └── wrench.json │ │ │ ├── vegetables.json │ │ │ └── villager_job_sites.json │ │ ├── mekanism │ │ └── tags │ │ │ └── block │ │ │ └── cardboard_blacklist.json │ │ ├── minecraft │ │ ├── advancement │ │ │ ├── recipe │ │ │ │ └── negative_matter_block.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ └── wet_sponge.json │ │ │ │ ├── combat │ │ │ │ └── trident.json │ │ │ │ └── misc │ │ │ │ ├── chipped_anvil.json │ │ │ │ ├── damaged_anvil.json │ │ │ │ └── heart_of_the_sea.json │ │ ├── recipe │ │ │ ├── chipped_anvil.json │ │ │ ├── damaged_anvil.json │ │ │ ├── heart_of_the_sea.json │ │ │ ├── negative_matter_block.json │ │ │ ├── trident.json │ │ │ └── wet_sponge.json │ │ └── tags │ │ │ ├── block │ │ │ ├── anvil.json │ │ │ ├── beacon_base_blocks.json │ │ │ ├── cauldrons.json │ │ │ ├── doors.json │ │ │ ├── dragon_immune.json │ │ │ ├── mineable │ │ │ │ ├── axe.json │ │ │ │ ├── hoe.json │ │ │ │ ├── pickaxe.json │ │ │ │ └── shovel.json │ │ │ ├── needs_diamond_tool.json │ │ │ ├── needs_iron_tool.json │ │ │ ├── needs_stone_tool.json │ │ │ ├── pressure_plates.json │ │ │ ├── slabs.json │ │ │ ├── stairs.json │ │ │ ├── trapdoors.json │ │ │ ├── walls.json │ │ │ └── wither_immune.json │ │ │ ├── damage_type │ │ │ ├── bypasses_armor.json │ │ │ ├── bypasses_resistance.json │ │ │ └── no_knockback.json │ │ │ ├── item │ │ │ ├── anvil.json │ │ │ ├── axes.json │ │ │ ├── beacon_payment_items.json │ │ │ ├── bookshelf_books.json │ │ │ ├── cluster_max_harvestables.json │ │ │ ├── doors.json │ │ │ ├── enchantable │ │ │ │ ├── durability.json │ │ │ │ ├── mace.json │ │ │ │ ├── mining_loot.json │ │ │ │ ├── sword.json │ │ │ │ └── trident.json │ │ │ ├── hoes.json │ │ │ ├── pickaxes.json │ │ │ ├── piglin_loved.json │ │ │ ├── shovels.json │ │ │ ├── slabs.json │ │ │ ├── stairs.json │ │ │ ├── swords.json │ │ │ ├── trapdoors.json │ │ │ └── walls.json │ │ │ └── point_of_interest_type │ │ │ └── acquirable_job_site.json │ │ └── neoforge │ │ ├── data_maps │ │ └── item │ │ │ └── furnace_fuels.json │ │ └── tags │ │ ├── block │ │ └── needs_netherite_tool.json │ │ └── damage_type │ │ └── is_magic.json └── main │ ├── java │ └── dev │ │ └── dubhe │ │ └── anvilcraft │ │ ├── AnvilCraft.java │ │ ├── api │ │ ├── BlockPlaceAssist.java │ │ ├── DeferTaskSubmittable.java │ │ ├── IHasDisplayItem.java │ │ ├── IHasMultiBlock.java │ │ ├── RipeningManager.java │ │ ├── SpawningManager.java │ │ ├── anvil │ │ │ ├── IAnvilBehavior.java │ │ │ └── impl │ │ │ │ ├── BoilingBehavior.java │ │ │ │ ├── BulgingBehavior.java │ │ │ │ ├── CementStainingBehavior.java │ │ │ │ ├── ConcreteBehavior.java │ │ │ │ ├── CookingBehavior.java │ │ │ │ ├── HitBeeNestBehavior.java │ │ │ │ ├── HitCrabTrapBehavior.java │ │ │ │ ├── HitSpawnerBehavior.java │ │ │ │ ├── ItemCompressBehavior.java │ │ │ │ ├── ItemCrushBehavior.java │ │ │ │ ├── ItemMeshBehavior.java │ │ │ │ ├── ItemStampingBehavior.java │ │ │ │ ├── MassInjectBehavior.java │ │ │ │ ├── RedstoneEMPBehavior.java │ │ │ │ ├── ResetVaultBehavior.java │ │ │ │ ├── SuperHeatingBehavior.java │ │ │ │ ├── TimeWarpBehavior.java │ │ │ │ └── UnpackBehavior.java │ │ ├── behavior │ │ │ ├── BehaviorTree.java │ │ │ ├── ExecutableTreeNode.java │ │ │ ├── ExecutionContext.java │ │ │ ├── PredicateExecutableTreeNode.java │ │ │ ├── PredicateTreeNode.java │ │ │ ├── SetTreeNode.java │ │ │ └── TreeNode.java │ │ ├── block │ │ │ ├── IEmberBlock.java │ │ │ ├── INegativeMatterBlock.java │ │ │ ├── INegativeShapeBlock.java │ │ │ └── ITranscendiumBlock.java │ │ ├── chargecollector │ │ │ ├── ChargeCollectorManager.java │ │ │ ├── HeatedBlockRecorder.java │ │ │ ├── ThermoEntry.java │ │ │ └── ThermoManager.java │ │ ├── energy │ │ │ └── EnergyHelper.java │ │ ├── entity │ │ │ ├── EntityHelper.java │ │ │ ├── attribute │ │ │ │ └── EntityReachAttribute.java │ │ │ ├── fakeplayer │ │ │ │ └── AnvilCraftBlockPlacerFakePlayer.java │ │ │ └── player │ │ │ │ ├── AnvilCraftBlockPlacer.java │ │ │ │ └── IAnvilCraftBlockPlacer.java │ │ ├── event │ │ │ ├── BlockEntityEvent.java │ │ │ ├── FallingBlockCollisionEvent.java │ │ │ ├── LightningBoltStrikeEvent.java │ │ │ ├── anvil │ │ │ │ ├── AnvilEvent.java │ │ │ │ ├── AnvilFallOnLandEvent.java │ │ │ │ ├── AnvilHurtEntityEvent.java │ │ │ │ └── GiantAnvilFallOnLandEvent.java │ │ │ └── item │ │ │ │ └── UseMagnetEvent.java │ │ ├── hammer │ │ │ ├── HammerManager.java │ │ │ ├── HammerRotateBehavior.java │ │ │ ├── IHammerChangeable.java │ │ │ ├── IHammerRemovable.java │ │ │ └── IHasHammerEffect.java │ │ ├── heatable │ │ │ └── HeatableBlockManager.java │ │ ├── injection │ │ │ ├── UnimplementedException.java │ │ │ └── tooltip │ │ │ │ └── IInjectedTooltipProducer.java │ │ ├── input │ │ │ └── IMouseHandlerExtension.java │ │ ├── integration │ │ │ ├── Integration.java │ │ │ ├── IntegrationInstance.java │ │ │ └── IntegrationManager.java │ │ ├── item │ │ │ ├── IChargerChargeable.java │ │ │ ├── IChargerDischargeable.java │ │ │ ├── IDiskCloneable.java │ │ │ ├── IExtraItemDisplay.java │ │ │ ├── IMultipleResult.java │ │ │ ├── IMultipleToOneSmithingRecipeMaterial.java │ │ │ └── property │ │ │ │ └── Multiphase.java │ │ ├── itemhandler │ │ │ ├── FilteredItemStackHandler.java │ │ │ ├── HoneyCauldronWrapper.java │ │ │ ├── IItemHandlerHolder.java │ │ │ ├── InputRefusingItemHandlerWrapper.java │ │ │ ├── ItemHandlerUtil.java │ │ │ ├── PollableFilteredItemStackHandler.java │ │ │ ├── PollableItemHandler.java │ │ │ └── SlotItemHandlerWithFilter.java │ │ ├── power │ │ │ ├── DynamicPowerComponent.java │ │ │ ├── FastShape.java │ │ │ ├── IDynamicPowerComponentHolder.java │ │ │ ├── IPowerComponent.java │ │ │ ├── IPowerConsumer.java │ │ │ ├── IPowerProducer.java │ │ │ ├── IPowerStorage.java │ │ │ ├── IPowerTransmitter.java │ │ │ ├── PowerComponentInfo.java │ │ │ ├── PowerComponentType.java │ │ │ ├── PowerGrid.java │ │ │ ├── PowerGridManager.java │ │ │ └── SimplePowerGrid.java │ │ ├── rendering │ │ │ ├── CacheableBERenderingPipeline.java │ │ │ ├── CacheableBlockEntityRenderer.java │ │ │ ├── CacheableBlockEntityRenderers.java │ │ │ ├── CompileResult.java │ │ │ ├── FullyBufferedBufferSource.java │ │ │ └── RenderRegion.java │ │ ├── sound │ │ │ ├── ISoundEventListener.java │ │ │ └── SoundHelper.java │ │ ├── taslatower │ │ │ ├── HasCustomNameFilter.java │ │ │ ├── IsBabyFriendlyFilter.java │ │ │ ├── IsEntityIdFilter.java │ │ │ ├── IsFriendlyFilter.java │ │ │ ├── IsOnVehicleFilter.java │ │ │ ├── IsPetFilter.java │ │ │ ├── IsPlayerFilter.java │ │ │ ├── IsPlayerIdFilter.java │ │ │ └── TeslaFilter.java │ │ ├── tooltip │ │ │ ├── HudTooltipManager.java │ │ │ ├── ItemTooltipManager.java │ │ │ ├── TooltipRenderHelper.java │ │ │ ├── impl │ │ │ │ ├── AffectRangeProviderImpl.java │ │ │ │ ├── HeliostatsTooltip.java │ │ │ │ ├── HeliostatsTooltipProvider.java │ │ │ │ ├── InjectedBlockEntityTooltipProvider.java │ │ │ │ ├── InjectedBlockTooltipProvider.java │ │ │ │ ├── PowerComponentTooltipProvider.java │ │ │ │ ├── RubyPrismTooltipProvider.java │ │ │ │ └── SpaceOvercompressorTooltipProvider.java │ │ │ └── providers │ │ │ │ ├── IAffectRangeProvider.java │ │ │ │ ├── IBlockEntityTooltipProvider.java │ │ │ │ ├── IHandHeldItemTooltipProvider.java │ │ │ │ ├── IHasAffectRange.java │ │ │ │ └── ITooltipProvider.java │ │ └── world │ │ │ └── load │ │ │ ├── LevelLoadManager.java │ │ │ ├── LoadChuckData.java │ │ │ └── RandomChuckTickLoadManager.java │ │ ├── block │ │ ├── AbstractCakeBlock.java │ │ ├── AccelerationRingBlock.java │ │ ├── ActiveSilencerBlock.java │ │ ├── AmberBlock.java │ │ ├── ArrowBlock.java │ │ ├── BaseLaserBlock.java │ │ ├── BasePowerConverterBlock.java │ │ ├── BatchCrafterBlock.java │ │ ├── BerryCakeBlock.java │ │ ├── BerryCreamBlock.java │ │ ├── BlockComparatorBlock.java │ │ ├── BlockDevourerBlock.java │ │ ├── BlockPlacerBlock.java │ │ ├── CakeBaseBlock.java │ │ ├── CakeBlock.java │ │ ├── CementCauldronBlock.java │ │ ├── ChargeCollectorBlock.java │ │ ├── ChargerBlock.java │ │ ├── ChocolateCakeBlock.java │ │ ├── ChocolateCreamBlock.java │ │ ├── ChuteBlock.java │ │ ├── ConfinementChamberBlock.java │ │ ├── ControllableSandBlock.java │ │ ├── CorruptedBeaconBlock.java │ │ ├── CrabTrapBlock.java │ │ ├── CreamBlock.java │ │ ├── CreativeGeneratorBlock.java │ │ ├── CrushingTableBlock.java │ │ ├── DeflectionRingBlock.java │ │ ├── DischargerBlock.java │ │ ├── EmberAnvilBlock.java │ │ ├── EmberGrindstoneBlock.java │ │ ├── EmberMetalBlock.java │ │ ├── EmberMetalPillarBlock.java │ │ ├── EmberMetalSlabBlock.java │ │ ├── EmberMetalStairBlock.java │ │ ├── EmberSmithingTableBlock.java │ │ ├── EndDustBlock.java │ │ ├── FerriteCoreMagnetBlock.java │ │ ├── FireCauldronBlock.java │ │ ├── GiantAnvilBlock.java │ │ ├── GlowingMetalBlock.java │ │ ├── HasMobBlock.java │ │ ├── HeaterBlock.java │ │ ├── HeavyIronBeamBlock.java │ │ ├── HeavyIronDoorBlock.java │ │ ├── HeavyIronPlateBlock.java │ │ ├── HeavyIronTrapdoorBlock.java │ │ ├── HeavyIronWallBlock.java │ │ ├── HeliostatsBlock.java │ │ ├── HollowMagnetBlock.java │ │ ├── HoneyCauldronBlock.java │ │ ├── ImpactPileBlock.java │ │ ├── IncandescentMetalBlock.java │ │ ├── InductionLightBlock.java │ │ ├── ItemCollectorBlock.java │ │ ├── ItemDetectorBlock.java │ │ ├── JewelCraftingTable.java │ │ ├── LargeCakeBlock.java │ │ ├── LavaCauldronBlock.java │ │ ├── Layered4LevelCauldronBlock.java │ │ ├── LevitationPowderBlock.java │ │ ├── LoadMonitorBlock.java │ │ ├── MagnetBlock.java │ │ ├── MagneticChuteBlock.java │ │ ├── MagnetoElectricCoreBlock.java │ │ ├── MeltGemCauldron.java │ │ ├── MengerSpongeBlock.java │ │ ├── MineralFountainBlock.java │ │ ├── MobAmberBlock.java │ │ ├── NegativeMatterBlock.java │ │ ├── NestingShulkerBoxBlock.java │ │ ├── ObsidianCauldron.java │ │ ├── OilCauldronBlock.java │ │ ├── OverNestingShulkerBoxBlock.java │ │ ├── OverseerBlock.java │ │ ├── PiezoelectricCrystalBlock.java │ │ ├── PowerConverterBigBlock.java │ │ ├── PowerConverterMiddleBlock.java │ │ ├── PowerConverterSmallBlock.java │ │ ├── PulseGeneratorBlock.java │ │ ├── RedhotMetalBlock.java │ │ ├── ReinforcedConcreteBlock.java │ │ ├── RemoteTransmissionPoleBlock.java │ │ ├── ResentfulAmberBlock.java │ │ ├── ResinBlock.java │ │ ├── RoyalAnvilBlock.java │ │ ├── RoyalGrindstone.java │ │ ├── RoyalSmithingTableBlock.java │ │ ├── RubyLaserBlock.java │ │ ├── RubyPrismBlock.java │ │ ├── SimpleChuteBlock.java │ │ ├── SlidingRailBlock.java │ │ ├── SlidingRailStopBlock.java │ │ ├── SpaceOvercompressorBlock.java │ │ ├── SpectralAnvilBlock.java │ │ ├── StampingPlatformBlock.java │ │ ├── StepEffectBlock.java │ │ ├── StepEffectSlabBlock.java │ │ ├── StepEffectStairBlock.java │ │ ├── SupercriticalNestingShulkerBoxBlock.java │ │ ├── TeslaTowerBlock.java │ │ ├── ThermoelectricConverterBlock.java │ │ ├── TranscendiumBlock.java │ │ ├── TransmissionPoleBlock.java │ │ ├── TransparentCraftingTableBlock.java │ │ ├── VoidEnergyCollectorBlock.java │ │ ├── VoidMatterBlock.java │ │ ├── better │ │ │ ├── BetterAbstractCauldronBlock.java │ │ │ ├── BetterAnvilBlock.java │ │ │ ├── BetterBaseEntityBlock.java │ │ │ ├── BetterBlock.java │ │ │ └── BetterGrindstoneBlock.java │ │ ├── entity │ │ │ ├── AbstractTransmissionPoleBlockEntity.java │ │ │ ├── AccelerationRingBlockEntity.java │ │ │ ├── ActiveSilencerBlockEntity.java │ │ │ ├── BaseChuteBlockEntity.java │ │ │ ├── BaseLaserBlockEntity.java │ │ │ ├── BaseMachineBlockEntity.java │ │ │ ├── BatchCrafterBlockEntity.java │ │ │ ├── ChargeCollectorBlockEntity.java │ │ │ ├── ChargerBlockEntity.java │ │ │ ├── ChuteBlockEntity.java │ │ │ ├── ConfinementChamberBlockEntity.java │ │ │ ├── CorruptedBeaconBlockEntity.java │ │ │ ├── CrabTrapBlockEntity.java │ │ │ ├── CreativeGeneratorBlockEntity.java │ │ │ ├── DeflectionRingBlockEntity.java │ │ │ ├── HasMobBlockEntity.java │ │ │ ├── HeaterBlockEntity.java │ │ │ ├── HeliostatsBlockEntity.java │ │ │ ├── IFilterBlockEntity.java │ │ │ ├── InductionLightBlockEntity.java │ │ │ ├── ItemCollectorBlockEntity.java │ │ │ ├── ItemDetectorBlockEntity.java │ │ │ ├── LoadMonitorBlockEntity.java │ │ │ ├── MagneticChuteBlockEntity.java │ │ │ ├── MineralFountainBlockEntity.java │ │ │ ├── MobAmberBlockEntity.java │ │ │ ├── OverseerBlockEntity.java │ │ │ ├── PowerConverterBlockEntity.java │ │ │ ├── PulseGeneratorBlockEntity.java │ │ │ ├── RemoteTransmissionPoleBlockEntity.java │ │ │ ├── ResentfulAmberBlockEntity.java │ │ │ ├── RubyLaserBlockEntity.java │ │ │ ├── RubyPrismBlockEntity.java │ │ │ ├── SimpleChuteBlockEntity.java │ │ │ ├── SpaceOvercompressorBlockEntity.java │ │ │ ├── TeslaTowerBlockEntity.java │ │ │ ├── ThermoelectricConverterBlockEntity.java │ │ │ ├── TransmissionPoleBlockEntity.java │ │ │ ├── VoidEnergyCollectorBlockEntity.java │ │ │ └── plate │ │ │ │ └── TimeCountedPressurePlateBlockEntity.java │ │ ├── multipart │ │ │ ├── AbstractMultiPartBlock.java │ │ │ ├── FlexibleMultiPartBlock.java │ │ │ ├── IMultiPartBlockModelHolder.java │ │ │ └── SimpleMultiPartBlock.java │ │ ├── piston │ │ │ └── IMoveableEntityBlock.java │ │ ├── plate │ │ │ ├── EntityCountPressurePlateBlock.java │ │ │ ├── EntityTypePressurePlateBlock.java │ │ │ ├── FireImmunePressurePlateBlock.java │ │ │ ├── HealthPercentPressurePlateBlock.java │ │ │ ├── ItemDurabilityPressurePlateBlock.java │ │ │ ├── PlayerHungerPressurePlateBlock.java │ │ │ ├── PlayerInventoryPressurePlateBlock.java │ │ │ ├── PowerLevelPressurePlateBlock.java │ │ │ └── TimeCountedPressurePlateBlock.java │ │ └── state │ │ │ ├── Color.java │ │ │ ├── Cube3x3PartHalf.java │ │ │ ├── DirectionCube3x3PartHalf.java │ │ │ ├── GiantAnvilCube.java │ │ │ ├── IFlexibleMultiPartBlockState.java │ │ │ ├── ISimpleMultiPartBlockState.java │ │ │ ├── LightColor.java │ │ │ ├── Orientation.java │ │ │ ├── ReinforcedConcreteHalf.java │ │ │ ├── Vertical3PartHalf.java │ │ │ └── Vertical4PartHalf.java │ │ ├── client │ │ ├── AnvilCraftClient.java │ │ ├── ModInspectionClient.java │ │ ├── PowerGridClient.java │ │ ├── event │ │ │ ├── ClientBlockEventListener.java │ │ │ ├── ClientEventListener.java │ │ │ ├── GuiLayerRegistrationEventListener.java │ │ │ ├── HammerEffectRenderEventListener.java │ │ │ ├── RegisterAdditionalEventListener.java │ │ │ └── RenderEventListener.java │ │ ├── gui │ │ │ ├── component │ │ │ │ ├── CycleFilterModeButton.java │ │ │ │ ├── EnableFilterButton.java │ │ │ │ ├── ItemCollectorButton.java │ │ │ │ ├── OutputDirectionButton.java │ │ │ │ ├── SilencerButton.java │ │ │ │ ├── Slider.java │ │ │ │ ├── SwitchableButton.java │ │ │ │ ├── TeslaTowerButton.java │ │ │ │ ├── TextWidget.java │ │ │ │ └── TexturedButton.java │ │ │ └── screen │ │ │ │ ├── ActiveSilencerScreen.java │ │ │ │ ├── AnvilHammerScreen.java │ │ │ │ ├── BaseChuteScreen.java │ │ │ │ ├── BaseMachineScreen.java │ │ │ │ ├── BatchCrafterScreen.java │ │ │ │ ├── ChuteScreen.java │ │ │ │ ├── EmberAnvilScreen.java │ │ │ │ ├── EmberGrindstoneScreen.java │ │ │ │ ├── EmberSmithingScreen.java │ │ │ │ ├── IFilterScreen.java │ │ │ │ ├── ItemCollectorScreen.java │ │ │ │ ├── ItemDetectorScreen.java │ │ │ │ ├── JewelCraftingScreen.java │ │ │ │ ├── MagneticChuteScreen.java │ │ │ │ ├── PulseGeneratorScreen.java │ │ │ │ ├── RoyalAnvilScreen.java │ │ │ │ ├── RoyalGrindstoneScreen.java │ │ │ │ ├── RoyalSmithingScreen.java │ │ │ │ ├── SliderScreen.java │ │ │ │ ├── StructureToolScreen.java │ │ │ │ └── TeslaTowerScreen.java │ │ ├── hud │ │ │ └── IonoCraftBackpackHUD.java │ │ ├── init │ │ │ ├── ModKeyMappings.java │ │ │ ├── ModModelLayers.java │ │ │ ├── ModRenderTargets.java │ │ │ ├── ModRenderTypes.java │ │ │ └── ModShaders.java │ │ └── renderer │ │ │ ├── Line.java │ │ │ ├── RenderState.java │ │ │ ├── blockentity │ │ │ ├── BaseShowItemRenderer.java │ │ │ ├── BatchCrafterRenderer.java │ │ │ ├── ChargeCollectorRenderer.java │ │ │ ├── ConfinementChamberRenderer.java │ │ │ ├── CorruptedBeaconRenderer.java │ │ │ ├── CreativeGeneratorRenderer.java │ │ │ ├── HasMobBlockRenderer.java │ │ │ ├── HeliostatsRenderer.java │ │ │ ├── LaserBlockRenderer.java │ │ │ ├── PowerProducerRenderer.java │ │ │ └── VoidEnergyCollectorRenderer.java │ │ │ ├── entity │ │ │ ├── AscendingBlockRenderer.java │ │ │ ├── IonocraftRenderer.java │ │ │ ├── SpectralBlockRenderer.java │ │ │ └── ThrownHeavyHalberdRenderer.java │ │ │ ├── item │ │ │ └── decoration │ │ │ │ └── IonoCraftBackpackDecoration.java │ │ │ └── laser │ │ │ ├── LaserCompiler.java │ │ │ ├── LaserRenderer.java │ │ │ └── LaserState.java │ │ ├── config │ │ └── AnvilCraftConfig.java │ │ ├── data │ │ ├── AnvilCraftDatagen.java │ │ ├── advancement │ │ │ ├── AdvancementHandler.java │ │ │ └── AnvilCraftAdvancement.java │ │ ├── lang │ │ │ ├── AdvancementLang.java │ │ │ ├── ConfigScreenLang.java │ │ │ ├── CuriosLang.java │ │ │ ├── EnchantmentDescriptionsLang.java │ │ │ ├── ItemTooltipLang.java │ │ │ ├── JadeLang.java │ │ │ ├── JeiLang.java │ │ │ ├── LangHandler.java │ │ │ ├── OtherLang.java │ │ │ ├── PatchouliLang.java │ │ │ ├── ScreenLang.java │ │ │ └── WthitLang.java │ │ ├── provider │ │ │ ├── ModCuriosProvider.java │ │ │ ├── ModDamageTypeProvider.java │ │ │ ├── ModDamageTypeTagProvider.java │ │ │ ├── ModFurnaceFuelProvider.java │ │ │ ├── ModLootTableProvider.java │ │ │ ├── ModPoiTagProvider.java │ │ │ ├── ModRegistryProvider.java │ │ │ └── loot │ │ │ │ ├── AdvancementLootSubProvider.java │ │ │ │ ├── BeheadingLootSubProvider.java │ │ │ │ └── CrabTrapLootSubProvider.java │ │ ├── recipe │ │ │ ├── AnvilCollisionCraftRecipeLoader.java │ │ │ ├── BlockCompressRecipeLoader.java │ │ │ ├── BlockCrushRecipeLoader.java │ │ │ ├── BlockSmearRecipeLoader.java │ │ │ ├── BulgingRecipeLoader.java │ │ │ ├── ChargerChargingRecipeLoader.java │ │ │ ├── ConcreteRecipeLoader.java │ │ │ ├── CookingRecipeLoader.java │ │ │ ├── ItemCompressRecipeLoader.java │ │ │ ├── ItemCrushRecipeLoader.java │ │ │ ├── ItemInjectRecipeLoader.java │ │ │ ├── JewelCraftingRecipeLoader.java │ │ │ ├── MassInjectRecipeLoader.java │ │ │ ├── MeshRecipeLoader.java │ │ │ ├── MineralFountainRecipeLoader.java │ │ │ ├── MobTransformRecipeLoader.java │ │ │ ├── MultiBlockConversionRecipeLoader.java │ │ │ ├── MultiBlockRecipeLoader.java │ │ │ ├── MultipleToOneSmithingRecipeLoader.java │ │ │ ├── RecipeHandler.java │ │ │ ├── SpecialCraftingRecipeLoader.java │ │ │ ├── SqueezingRecipeLoader.java │ │ │ ├── StampingRecipeLoader.java │ │ │ ├── SuperHeatingRecipeLoader.java │ │ │ ├── TimeWarpRecipeLoader.java │ │ │ ├── UnpackRecipeLoader.java │ │ │ └── VanillaRecipesLoader.java │ │ └── tags │ │ │ ├── BlockTagLoader.java │ │ │ ├── EnchantmentTagLoader.java │ │ │ ├── FluidTagLoader.java │ │ │ ├── ItemTagLoader.java │ │ │ └── TagsHandler.java │ │ ├── enchantment │ │ ├── FellingEffect.java │ │ └── HarvestEffect.java │ │ ├── entity │ │ ├── AnimateAscendingBlockEntity.java │ │ ├── FallingGiantAnvilEntity.java │ │ ├── FallingSpectralBlockEntity.java │ │ ├── FloatingBlockEntity.java │ │ ├── IonocraftEntity.java │ │ ├── LevitatingBlockEntity.java │ │ ├── StandableFallingBlockEntity.java │ │ ├── StandableLevitatingBlockEntity.java │ │ ├── ThrownEmberMetalHeavyHalberdEntity.java │ │ ├── ThrownFrostMetalHeavyHalberdEntity.java │ │ ├── ThrownHeavyHalberdEntity.java │ │ └── model │ │ │ ├── IonocraftBackpackModel.java │ │ │ ├── IonocraftModel.java │ │ │ └── ThrownHeavyHalberdModel.java │ │ ├── event │ │ ├── AnvilEntityEventListener.java │ │ ├── BlockEventListener.java │ │ ├── BreakBlockEventListener.java │ │ ├── CapabilitiesEventListener.java │ │ ├── CauldronFluidContentEventListener.java │ │ ├── FallingBlockCollisionEventListener.java │ │ ├── LevelEventListener.java │ │ ├── LightningEventListener.java │ │ ├── LivingEntityEventListener.java │ │ ├── LootTableEventListener.java │ │ ├── PistonMoveBlockListener.java │ │ ├── PlayerEventListener.java │ │ ├── PlayerTickEventHandler.java │ │ ├── PlayerTrackingChunkEventListener.java │ │ ├── ServerBlockEntityEventListener.java │ │ ├── ServerLifecycleEventListener.java │ │ ├── UseOnBlockEventListener.java │ │ ├── VillagerEventListener.java │ │ ├── anvil │ │ │ ├── AnvilEventListener.java │ │ │ ├── AnvilHitBlockDevourerEventListener.java │ │ │ ├── AnvilHitBlockPlacerEventListener.java │ │ │ ├── AnvilHitImpactPileEventListener.java │ │ │ ├── AnvilHitPiezoelectricCrystalBlockEventListener.java │ │ │ └── AnvilHurtVillagerEventListener.java │ │ └── giantanvil │ │ │ ├── GiantAnvilLandingEventListener.java │ │ │ ├── IShockBehaviorDefinition.java │ │ │ └── shock │ │ │ ├── DestroyMode.java │ │ │ ├── DestroyType.java │ │ │ ├── FakePlayerSupport.java │ │ │ ├── GiantAnvilShockEventListener.java │ │ │ ├── HurtType.java │ │ │ └── ShockContext.java │ │ ├── init │ │ ├── ModBlockEntities.java │ │ ├── ModBlockTags.java │ │ ├── ModBlocks.java │ │ ├── ModCommands.java │ │ ├── ModComponents.java │ │ ├── ModDamageTypes.java │ │ ├── ModDataAttachments.java │ │ ├── ModDispenserBehavior.java │ │ ├── ModEnchantmentEffectComponents.java │ │ ├── ModEnchantmentEffects.java │ │ ├── ModEnchantmentTags.java │ │ ├── ModEnchantments.java │ │ ├── ModEntities.java │ │ ├── ModFluidTags.java │ │ ├── ModFluids.java │ │ ├── ModHammerInits.java │ │ ├── ModInspections.java │ │ ├── ModItemGroups.java │ │ ├── ModItemProperties.java │ │ ├── ModItemTags.java │ │ ├── ModItems.java │ │ ├── ModLootContextParamSets.java │ │ ├── ModLootItemConditions.java │ │ ├── ModLootItemFunctions.java │ │ ├── ModLootTables.java │ │ ├── ModMenuTypes.java │ │ ├── ModNetworks.java │ │ ├── ModRecipeTypes.java │ │ └── ModVillagers.java │ │ ├── integration │ │ ├── appeng │ │ │ └── AppEngCompat.java │ │ ├── create │ │ │ ├── BatchCrafterUnpackingHandler.java │ │ │ ├── CreateIntegration.java │ │ │ └── VisualizationUnsupported.java │ │ ├── curios │ │ │ ├── CuriosIntegration.java │ │ │ └── renderer │ │ │ │ ├── GogglesCurioRenderer.java │ │ │ │ └── IonoCraftBackpackCurioRenderer.java │ │ ├── iris │ │ │ └── IrisState.java │ │ ├── jade │ │ │ ├── AnvilCraftJadePlugin.java │ │ │ └── provider │ │ │ │ ├── CrabTrapStorageProvider.java │ │ │ │ ├── ItemDetectorProvider.java │ │ │ │ ├── PowerBlockProvider.java │ │ │ │ ├── RubyPrismProvider.java │ │ │ │ └── SpaceOvercompressorProvider.java │ │ ├── jei │ │ │ ├── AnvilCraftJeiPlugin.java │ │ │ ├── category │ │ │ │ ├── BeaconConversionCategory.java │ │ │ │ ├── ChargerChargingCategory.java │ │ │ │ ├── EndPortalConversionCategory.java │ │ │ │ ├── JewelCraftingCategory.java │ │ │ │ ├── MultipleToOneSmithingCategory.java │ │ │ │ ├── VoidDecayCategory.java │ │ │ │ ├── anvil │ │ │ │ │ ├── AbstractItemProgressCategory.java │ │ │ │ │ ├── BlockCompressCategory.java │ │ │ │ │ ├── BlockCrushCategory.java │ │ │ │ │ ├── BoilingCategory.java │ │ │ │ │ ├── BulgingCategory.java │ │ │ │ │ ├── CementStainingCategory.java │ │ │ │ │ ├── ConcreteCategory.java │ │ │ │ │ ├── CookingCategory.java │ │ │ │ │ ├── ItemCompressCategory.java │ │ │ │ │ ├── ItemCrushCategory.java │ │ │ │ │ ├── ItemInjectCategory.java │ │ │ │ │ ├── MassInjectCategory.java │ │ │ │ │ ├── MeshRecipeCategory.java │ │ │ │ │ ├── SqueezingCategory.java │ │ │ │ │ ├── StampingCategory.java │ │ │ │ │ ├── SuperHeatingCategory.java │ │ │ │ │ ├── TimeWarpCategory.java │ │ │ │ │ └── UnpackCategory.java │ │ │ │ ├── extension │ │ │ │ │ └── CanningFoodExtension.java │ │ │ │ └── multiblock │ │ │ │ │ ├── MultiBlockConversionCategory.java │ │ │ │ │ └── MultiBlockCraftingCategory.java │ │ │ ├── drawable │ │ │ │ ├── DrawableBlockStateIcon.java │ │ │ │ └── JeiButton.java │ │ │ ├── recipe │ │ │ │ ├── BeaconConversionRecipe.java │ │ │ │ ├── CementStainingRecipe.java │ │ │ │ ├── ColoredConcreteRecipe.java │ │ │ │ ├── EndPortalConversionRecipe.java │ │ │ │ ├── MeshRecipeGroup.java │ │ │ │ └── VoidDecayRecipe.java │ │ │ └── util │ │ │ │ ├── BlockTagUtil.java │ │ │ │ ├── JeiRecipeUtil.java │ │ │ │ ├── JeiRenderHelper.java │ │ │ │ ├── JeiSlotUtil.java │ │ │ │ └── TextureConstants.java │ │ ├── kubejs │ │ │ ├── AnvilCraftKubeJsPlugin.java │ │ │ └── recipe │ │ │ │ ├── AnvilCraftKubeRecipe.java │ │ │ │ ├── AnvilCraftRecipeComponents.java │ │ │ │ ├── IDRecipeConstructor.java │ │ │ │ ├── JewelCraftingRecipeSchema.java │ │ │ │ ├── anvil │ │ │ │ ├── BlockCompressRecipeSchema.java │ │ │ │ ├── BlockCrushRecipeSchema.java │ │ │ │ ├── BulgingRecipeSchema.java │ │ │ │ ├── ItemInjectRecipeSchema.java │ │ │ │ ├── ItemProcessRecipeSchema.java │ │ │ │ ├── MeshRecipeSchema.java │ │ │ │ ├── SqueezingRecipeSchema.java │ │ │ │ ├── SuperHeatingRecipeSchema.java │ │ │ │ └── TimeWarpRecipeSchema.java │ │ │ │ ├── mineral │ │ │ │ ├── MineralFountainChanceRecipeSchema.java │ │ │ │ └── MineralFountainRecipeSchema.java │ │ │ │ ├── multiblock │ │ │ │ └── MultiblockRecipeSchema.java │ │ │ │ └── transform │ │ │ │ └── MobTransformRecipeSchema.java │ │ ├── patchouli │ │ │ ├── PatchouliIntegration.java │ │ │ ├── PatchouliUtil.java │ │ │ ├── element │ │ │ │ └── ItemTagVariableSerializer.java │ │ │ ├── page │ │ │ │ ├── PageMultipleToOneSmithing.java │ │ │ │ ├── PageSpotlightItemTag.java │ │ │ │ └── PageTimeWarp.java │ │ │ └── util │ │ │ │ └── PatchouliRenderHelper.java │ │ └── top │ │ │ ├── AnvilCraftTopPlugin.java │ │ │ └── provider │ │ │ ├── ItemDetectorProvider.java │ │ │ ├── PowerBlockProvider.java │ │ │ ├── RubyPrismProvider.java │ │ │ └── SpaceOvercompressorProvider.java │ │ ├── inventory │ │ ├── ActiveSilencerMenu.java │ │ ├── BaseChuteMenu.java │ │ ├── BaseMachineMenu.java │ │ ├── BatchCrafterContainer.java │ │ ├── BatchCrafterMenu.java │ │ ├── ChuteMenu.java │ │ ├── EmberAnvilMenu.java │ │ ├── EmberGrindstoneMenu.java │ │ ├── EmberSmithingMenu.java │ │ ├── IFilterMenu.java │ │ ├── ItemCollectorMenu.java │ │ ├── ItemDetectorMenu.java │ │ ├── JewelCraftingMenu.java │ │ ├── MagneticChuteMenu.java │ │ ├── PulseGeneratorMenu.java │ │ ├── RoyalAnvilMenu.java │ │ ├── RoyalGrindstoneMenu.java │ │ ├── RoyalSmithingMenu.java │ │ ├── SliderMenu.java │ │ ├── StructureToolMenu.java │ │ ├── TeslaTowerMenu.java │ │ ├── component │ │ │ ├── FilterOnlySlot.java │ │ │ ├── LimitSlot.java │ │ │ ├── ReadOnlySlot.java │ │ │ └── jewel │ │ │ │ ├── JewelInputSlot.java │ │ │ │ └── JewelResultSlot.java │ │ └── container │ │ │ ├── FilterOnlyContainer.java │ │ │ └── JewelSourceContainer.java │ │ ├── item │ │ ├── AmethystAxeItem.java │ │ ├── AmethystHoeItem.java │ │ ├── AmethystPickaxeItem.java │ │ ├── AmethystShovelItem.java │ │ ├── AmethystSwordItem.java │ │ ├── AnvilHammerItem.java │ │ ├── CannedFoodItem.java │ │ ├── CapacitorItem.java │ │ ├── ChuteBlockItem.java │ │ ├── CrabClawItem.java │ │ ├── CursedBlockItem.java │ │ ├── CursedItem.java │ │ ├── DiskItem.java │ │ ├── DragonRodItem.java │ │ ├── EmberAnvilHammerItem.java │ │ ├── EmberMetalAxeItem.java │ │ ├── EmberMetalHeavyHalberdItem.java │ │ ├── EmberMetalHoeItem.java │ │ ├── EmberMetalPickaxeItem.java │ │ ├── EmberMetalShovelItem.java │ │ ├── EmberMetalSwordItem.java │ │ ├── EmptyCapacitorItem.java │ │ ├── EndDustBlockItem.java │ │ ├── FlexibleMultiPartBlockItem.java │ │ ├── FrostMetalAxeItem.java │ │ ├── FrostMetalHeavyHalberdItem.java │ │ ├── FrostMetalHoeItem.java │ │ ├── FrostMetalPickaxeItem.java │ │ ├── FrostMetalShovelItem.java │ │ ├── FrostMetalSwordItem.java │ │ ├── GeodeItem.java │ │ ├── GuideBookItem.java │ │ ├── HasMobBlockItem.java │ │ ├── HeavyHalberdCoreItem.java │ │ ├── HeavyHalberdItem.java │ │ ├── HeliostatsItem.java │ │ ├── ICursed.java │ │ ├── IInventoryCarriedAware.java │ │ ├── ILevitationLike.java │ │ ├── ISuperHeavy.java │ │ ├── IonoCraftBackpackItem.java │ │ ├── IonoCraftItem.java │ │ ├── LevitationPowderBlockItem.java │ │ ├── LevitationPowderItem.java │ │ ├── MagnetItem.java │ │ ├── ModFoods.java │ │ ├── ModTiers.java │ │ ├── MultiphaseMatterAxeItem.java │ │ ├── MultiphaseMatterHoeItem.java │ │ ├── MultiphaseMatterItem.java │ │ ├── MultiphaseMatterPickaxeItem.java │ │ ├── MultiphaseMatterShovelItem.java │ │ ├── MultiphaseMatterSwordItem.java │ │ ├── PlaceInWaterBlockItem.java │ │ ├── ResinBlockItem.java │ │ ├── RoyalAnvilHammerItem.java │ │ ├── RoyalAxeItem.java │ │ ├── RoyalHoeItem.java │ │ ├── RoyalPickaxeItem.java │ │ ├── RoyalShovelItem.java │ │ ├── RoyalSwordItem.java │ │ ├── SeedsPackItem.java │ │ ├── SimpleMultiPartBlockItem.java │ │ ├── StructureToolItem.java │ │ ├── SuperHeavyItem.java │ │ ├── TeslaTowerItem.java │ │ ├── TopazItem.java │ │ ├── UtusanItem.java │ │ ├── amulet │ │ │ ├── AbstractAmuletItem.java │ │ │ ├── AmuletBoxItem.java │ │ │ ├── AnvilAmuletItem.java │ │ │ ├── CatAmuletItem.java │ │ │ ├── CogwheelAmuletItem.java │ │ │ ├── ComradeAmuletItem.java │ │ │ ├── DogAmuletItem.java │ │ │ ├── EmeraldAmuletItem.java │ │ │ ├── FeatherAmuletItem.java │ │ │ ├── RubyAmuletItem.java │ │ │ ├── SapphireAmuletItem.java │ │ │ ├── SilenceAmuletItem.java │ │ │ └── TopazAmuletItem.java │ │ ├── package-info.java │ │ ├── property │ │ │ └── FlightTimePropertyFunction.java │ │ └── template │ │ │ ├── BaseMultipleToOneTemplateItem.java │ │ │ ├── EightToOneTemplateItem.java │ │ │ ├── EmberMetalUpgradeTemplateItem.java │ │ │ ├── FourToOneTemplateItem.java │ │ │ ├── FrostMetalUpgradeTemplateItem.java │ │ │ ├── RoyalUpgradeTemplateItem.java │ │ │ └── TwoToOneTemplateItem.java │ │ ├── loot │ │ ├── conditions │ │ │ └── MatchDataComponent.java │ │ └── functions │ │ │ └── CurseLootItemFunction.java │ │ ├── mixin │ │ ├── AnvilBlockMixin.java │ │ ├── AnvilMenuMixin.java │ │ ├── ApplyBonusCountMixin.java │ │ ├── BeaconMenuMixin.java │ │ ├── BlockItemInvoker.java │ │ ├── BlockMixin.java │ │ ├── ClientLevelMixin.java │ │ ├── ComparatorBlockEntityMixin.java │ │ ├── CraftingMenuMixin.java │ │ ├── CreeperMixin.java │ │ ├── DamageSourcesMixin.java │ │ ├── DataComponentPredicateMixin.java │ │ ├── DefaultDispenseItemBehaviorMixin.java │ │ ├── DispenseItemEmptyBottleBehaviorMixin.java │ │ ├── DispenseItemEmptyBucketBehaviorMixin.java │ │ ├── DispenseItemWaterBottleBehaviorMixin.java │ │ ├── EnchantmentHelperMixin.java │ │ ├── EndPortalBlockMixin.java │ │ ├── EntityMixin.java │ │ ├── ExplosionMixin.java │ │ ├── FlyingHitEntityMixin.java │ │ ├── GameRendererMixin.java │ │ ├── GuiGraphicsMixin.java │ │ ├── HopperBlockMixin.java │ │ ├── InventoryMixin.java │ │ ├── ItemEnchantmentsPredicateMixin.java │ │ ├── ItemEntityMixin.java │ │ ├── ItemInHandRendererMixin.java │ │ ├── LevelChunkMixin.java │ │ ├── LevelRendererMixin.java │ │ ├── LivingEntityMixin.java │ │ ├── MinecraftClientMixin.java │ │ ├── MouseHandlerMixin.java │ │ ├── PhantomGoalMixin.java │ │ ├── PistonBaseBlockMixin.java │ │ ├── PistonMovingBlockEntityMixin.java │ │ ├── PistonStructureResolverMixin.java │ │ ├── PlayerHitEntityMixin.java │ │ ├── PlayerMixin.java │ │ ├── RecipeManagerMixin.java │ │ ├── RedstoneWireBlockMixin.java │ │ ├── SectionCompilerMixin.java │ │ ├── ServerGamePacketListenerMixin.java │ │ ├── ServerLevelMixin.java │ │ ├── ServerPlayerMixin.java │ │ ├── SkeletonMixin.java │ │ ├── SoundEngineMixin.java │ │ ├── VaultServerDataAccessor.java │ │ ├── VibrationSystemUserMixin.java │ │ ├── VillagerMixin.java │ │ ├── ZombieVillagerMixin.java │ │ ├── accessor │ │ │ ├── BaseSpawnerAccessor.java │ │ │ ├── CropBlockAccessor.java │ │ │ ├── GrowingPlantAccessor.java │ │ │ ├── ScreenAccessor.java │ │ │ └── ShapedRecipePatternAccessor.java │ │ ├── compat │ │ │ ├── BatchCrafterBlockEntityMixin.java │ │ │ ├── BatchCrafterBlockMixin.java │ │ │ ├── CerbonNewBeaconMenuMixin.java │ │ │ ├── EmbChunkBuilderMeshingTaskMixin.java │ │ │ └── SodiumChunkBuilderMeshingTaskMixin.java │ │ ├── forge │ │ │ ├── FallingBlockEntityMixin.java │ │ │ ├── LevelChunkMixin.java │ │ │ ├── LightningBoltMixin.java │ │ │ └── PistonMovingBlockEntityMixin.java │ │ ├── piglin │ │ │ ├── AbstractPiglinMixin.java │ │ │ └── PiglinMixin.java │ │ ├── piston │ │ │ ├── PistonBaseBlockMixin.java │ │ │ └── PistonMovingBlockEntityMixin.java │ │ └── plugin │ │ │ └── AnvilCraftMixinPlugin.java │ │ ├── network │ │ ├── AddMutedSoundPacket.java │ │ ├── AddTeslaFilterPacket.java │ │ ├── ChargeCollectorIncomingChargePacket.java │ │ ├── CyclingValueSyncPacket.java │ │ ├── DragonRodDevourPacket.java │ │ ├── HammerChangeBlockPacket.java │ │ ├── HammerUsePacket.java │ │ ├── HeliostatsIrradiationPacket.java │ │ ├── InspectionStateChangedPacket.java │ │ ├── ItemDetectorChangeRangePacket.java │ │ ├── LaserEmitPacket.java │ │ ├── MachineCycleFilterModePacket.java │ │ ├── MachineEnableFilterPacket.java │ │ ├── MachineOutputDirectionPacket.java │ │ ├── MutedSoundSyncPacket.java │ │ ├── PowerGridRemovePacket.java │ │ ├── PowerGridSyncPacket.java │ │ ├── PulseGeneratorUpdatePacket.java │ │ ├── RecipeCacheSyncPacket.java │ │ ├── RemoveMutedSoundPacket.java │ │ ├── RemoveTeslaFilterPacket.java │ │ ├── RocketJumpPacket.java │ │ ├── SliderInitPacket.java │ │ ├── SliderUpdatePacket.java │ │ ├── SlotDisableChangePacket.java │ │ ├── SlotFilterChangePacket.java │ │ ├── StructureDataSyncPacket.java │ │ ├── SwitchPhasePacket.java │ │ ├── SyncEmberGrindstonePacket.java │ │ ├── TeslaFilterSyncPacket.java │ │ ├── UpdateDisplayItemPacket.java │ │ └── package-info.java │ │ ├── recipe │ │ ├── CanningFoodRecipe.java │ │ ├── ChanceItemStack.java │ │ ├── ChargerChargingRecipe.java │ │ ├── IDatagen.java │ │ ├── JewelCraftingRecipe.java │ │ ├── anvil │ │ │ ├── AbstractItemProcessRecipe.java │ │ │ ├── BlockCompressRecipe.java │ │ │ ├── BlockCrushRecipe.java │ │ │ ├── BlockSmearRecipe.java │ │ │ ├── BoilingRecipe.java │ │ │ ├── BulgingRecipe.java │ │ │ ├── ConcreteRecipe.java │ │ │ ├── CookingRecipe.java │ │ │ ├── ItemCompressRecipe.java │ │ │ ├── ItemCrushRecipe.java │ │ │ ├── ItemInjectRecipe.java │ │ │ ├── MassInjectRecipe.java │ │ │ ├── MeshRecipe.java │ │ │ ├── SingleIngredientRecipe.java │ │ │ ├── SqueezingRecipe.java │ │ │ ├── StampingRecipe.java │ │ │ ├── StampingUniqueItemsRecipe.java │ │ │ ├── SuperHeatingRecipe.java │ │ │ ├── TimeWarpRecipe.java │ │ │ ├── UnpackRecipe.java │ │ │ ├── builder │ │ │ │ ├── AbstractItemProcessBuilder.java │ │ │ │ └── AbstractRecipeBuilder.java │ │ │ ├── cache │ │ │ │ ├── JewelCraftingRecipeCache.java │ │ │ │ ├── MeshRecipeCache.java │ │ │ │ └── RecipeCaches.java │ │ │ ├── collision │ │ │ │ ├── AnvilCollisionCraftRecipe.java │ │ │ │ └── BlockTransform.java │ │ │ └── input │ │ │ │ ├── IItemsInput.java │ │ │ │ └── ItemProcessInput.java │ │ ├── elements │ │ │ ├── InputBlock.java │ │ │ ├── OutputBlock.java │ │ │ └── OutputItem.java │ │ ├── generate │ │ │ ├── BaseGeneratingCache.java │ │ │ ├── JewelCraftingRecipeGeneratingCache.java │ │ │ ├── MeshRecipeGeneratingCache.java │ │ │ └── RecipeGenerator.java │ │ ├── mineral │ │ │ ├── MineralFountainChanceRecipe.java │ │ │ └── MineralFountainRecipe.java │ │ ├── multiblock │ │ │ ├── BlockPattern.java │ │ │ ├── BlockPredicateWithState.java │ │ │ ├── ModifySpawnerAction.java │ │ │ ├── MultiblockBuilder.java │ │ │ ├── MultiblockConversionRecipe.java │ │ │ ├── MultiblockInput.java │ │ │ └── MultiblockRecipe.java │ │ ├── multiple │ │ │ ├── BaseMultipleToOneSmithingRecipe.java │ │ │ ├── EightToOneSmithingRecipe.java │ │ │ ├── FourToOneSmithingRecipe.java │ │ │ ├── MultipleToOneSmithingRecipeInput.java │ │ │ └── TwoToOneSmithingRecipe.java │ │ └── transform │ │ │ ├── MobTransformInput.java │ │ │ ├── MobTransformRecipe.java │ │ │ ├── NumericTagValuePredicate.java │ │ │ ├── TagModification.java │ │ │ ├── TransformOptions.java │ │ │ ├── TransformRecipeBuilder.java │ │ │ └── TransformResult.java │ │ └── util │ │ ├── AabbUtil.java │ │ ├── AmuletUtil.java │ │ ├── AnvilUtil.java │ │ ├── BlockHighlightUtil.java │ │ ├── BlockStateUtil.java │ │ ├── BlockTransformExplosion.java │ │ ├── BreadthFirstTraversalPos.java │ │ ├── BreakBlockUtil.java │ │ ├── Callback.java │ │ ├── CauldronUtil.java │ │ ├── CodecUtil.java │ │ ├── ColorUtil.java │ │ ├── DamageSourceUtil.java │ │ ├── DangerUtil.java │ │ ├── DataGenUtil.java │ │ ├── DeflectionEntity.java │ │ ├── DistExecutor.java │ │ ├── DistanceComparator.java │ │ ├── EnchantmentUtil.java │ │ ├── EntityUtil.java │ │ ├── FormattingUtil.java │ │ ├── FullBrightLevel.java │ │ ├── InventoryUtil.java │ │ ├── Lazy.java │ │ ├── LevelLike.java │ │ ├── LightningPathGenerator.java │ │ ├── ListUtil.java │ │ ├── MagnetUtil.java │ │ ├── MathUtil.java │ │ ├── MergeCooldownItemEntity.java │ │ ├── ModClientFluidTypeExtensionImpl.java │ │ ├── ModEnchantmentHelper.java │ │ ├── ModInteractionMap.java │ │ ├── MultiPartBlockUtil.java │ │ ├── NetworkUtil.java │ │ ├── PlayerUtil.java │ │ ├── RecipeUtil.java │ │ ├── RenderHelper.java │ │ ├── ShapeUtil.java │ │ ├── SpectralAnvilConversionUtil.java │ │ ├── StateListener.java │ │ ├── StateUtil.java │ │ ├── TagUtil.java │ │ ├── ThreadFactoryImpl.java │ │ ├── Util.java │ │ ├── VanillaConstants.java │ │ ├── VertexConsumerWithPose.java │ │ ├── VirtualThreadFactoryImpl.java │ │ ├── WatchableCyclingValue.java │ │ ├── WatchablePropertyDelegate.java │ │ ├── mixin │ │ └── magic │ │ │ └── PistonMovingBlockEntityInjector.java │ │ └── registrater │ │ ├── BlockStatProviderUtil.java │ │ ├── ModelProviderUtil.java │ │ └── PropertiesProviderUtil.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── neoforge.mods.toml │ ├── anvilcraft.mixins.json │ ├── assets │ ├── anvilcraft │ │ ├── blockstates │ │ │ ├── acceleration_ring.json │ │ │ ├── active_silencer.json │ │ │ ├── advanced_comparator.json │ │ │ ├── amber_block.json │ │ │ ├── arrow.json │ │ │ ├── auto_crafter.json │ │ │ ├── batch_crafter.json │ │ │ ├── block_comparator.json │ │ │ ├── block_devourer.json │ │ │ ├── block_placer.json │ │ │ ├── charge_collector.json │ │ │ ├── charger.json │ │ │ ├── chute.json │ │ │ ├── corrupted_beacon.json │ │ │ ├── crab_trap.json │ │ │ ├── creative_generator.json │ │ │ ├── creative_generator_cube.json │ │ │ ├── crushing_table.json │ │ │ ├── cut_ember_metal_pillar.json │ │ │ ├── cut_ember_metal_slab.json │ │ │ ├── cut_ember_metal_stairs.json │ │ │ ├── cut_royal_steel_pillar.json │ │ │ ├── deflection_ring.json │ │ │ ├── discharger.json │ │ │ ├── ember_anvil.json │ │ │ ├── ember_grindstone.json │ │ │ ├── ember_smithing_table.json │ │ │ ├── experience_cauldron.json │ │ │ ├── ferrite_core_magnet_block.json │ │ │ ├── fire_cauldron.json │ │ │ ├── giant_anvil.json │ │ │ ├── heat_collector.json │ │ │ ├── heater.json │ │ │ ├── heavy_iron_beam.json │ │ │ ├── heavy_iron_column.json │ │ │ ├── heavy_iron_door.json │ │ │ ├── heavy_iron_plate.json │ │ │ ├── heavy_iron_trapdoor.json │ │ │ ├── heavy_iron_wall.json │ │ │ ├── heliostats.json │ │ │ ├── heliostats_head.json │ │ │ ├── hollow_magnet_block.json │ │ │ ├── honey_cauldron.json │ │ │ ├── induction_light.json │ │ │ ├── item_collector.json │ │ │ ├── jewelcrafting_table.json │ │ │ ├── large_cake.json │ │ │ ├── lava_cauldron.json │ │ │ ├── load_monitor.json │ │ │ ├── lunar_rock.json │ │ │ ├── lunar_soil.json │ │ │ ├── magnet_block.json │ │ │ ├── magnetic_chute.json │ │ │ ├── magnetoelectric_core.json │ │ │ ├── melt_gem_cauldron.json │ │ │ ├── menger_sponge.json │ │ │ ├── mob_amber_block.json │ │ │ ├── nesting_shulker_box.json │ │ │ ├── obsidian_cauldron.json │ │ │ ├── oil_cauldron.json │ │ │ ├── over_nesting_shulker_box.json │ │ │ ├── overseer.json │ │ │ ├── piezoelectric_crystal.json │ │ │ ├── power_converter_big.json │ │ │ ├── power_converter_middle.json │ │ │ ├── power_converter_small.json │ │ │ ├── remote_transmission_pole.json │ │ │ ├── resentful_amber_block.json │ │ │ ├── resin_block.json │ │ │ ├── royal_anvil.json │ │ │ ├── royal_grindstone.json │ │ │ ├── royal_smithing_table.json │ │ │ ├── ruby_laser.json │ │ │ ├── ruby_prism.json │ │ │ ├── simple_chute.json │ │ │ ├── space_overcompressor.json │ │ │ ├── spectral_anvil.json │ │ │ ├── stamping_platform.json │ │ │ ├── supercritical_nesting_shulker_box.json │ │ │ ├── tesla_tower.json │ │ │ ├── thermoelectric_converter.json │ │ │ ├── transmission_pole.json │ │ │ ├── transparent_crafting_table.json │ │ │ └── void_energy_collector.json │ │ ├── lang │ │ │ ├── de_de.json │ │ │ ├── es_es.json │ │ │ ├── fr_fr.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── lzh.json │ │ │ ├── ru_ru.json │ │ │ ├── zh_cn.json │ │ │ ├── zh_hk.json │ │ │ ├── zh_meme.json │ │ │ └── zh_tw.json │ │ ├── models │ │ │ ├── block │ │ │ │ ├── acceleration_ring.json │ │ │ │ ├── acceleration_ring_off.json │ │ │ │ ├── acceleration_ring_overload.json │ │ │ │ ├── acceleration_ring_part.json │ │ │ │ ├── active_silencer.json │ │ │ │ ├── advanced_comparator.json │ │ │ │ ├── advanced_comparator_indicator.json │ │ │ │ ├── amber_block.json │ │ │ │ ├── arrow.json │ │ │ │ ├── auto_crafter.json │ │ │ │ ├── auto_crafter_overload.json │ │ │ │ ├── auto_crafter_vertical.json │ │ │ │ ├── auto_crafter_vertical_overload.json │ │ │ │ ├── axis.json │ │ │ │ ├── batch_crafter.json │ │ │ │ ├── batch_crafter_down.json │ │ │ │ ├── batch_crafter_down_overload.json │ │ │ │ ├── batch_crafter_overload.json │ │ │ │ ├── batch_crafter_top.json │ │ │ │ ├── batch_crafter_top_overload.json │ │ │ │ ├── berry_cake_block.json │ │ │ │ ├── black_hole.json │ │ │ │ ├── block_comparator.json │ │ │ │ ├── block_comparator_on.json │ │ │ │ ├── block_comparator_precise.json │ │ │ │ ├── block_comparator_precise_on.json │ │ │ │ ├── block_devourer.json │ │ │ │ ├── block_devourer_on.json │ │ │ │ ├── block_placer.json │ │ │ │ ├── block_placer_on.json │ │ │ │ ├── cake_block.json │ │ │ │ ├── charge_collector.json │ │ │ │ ├── charge_collector_base.json │ │ │ │ ├── charge_collector_cube.json │ │ │ │ ├── charger.json │ │ │ │ ├── charger_off.json │ │ │ │ ├── charger_overload.json │ │ │ │ ├── chocolate_cake_block.json │ │ │ │ ├── chute.json │ │ │ │ ├── chute_side.json │ │ │ │ ├── confined_energy_anvilon.json │ │ │ │ ├── confined_mass_anvilon.json │ │ │ │ ├── confined_space_anvilon.json │ │ │ │ ├── confined_time_anvilon.json │ │ │ │ ├── confinement_chamber.json │ │ │ │ ├── controllable_sand.json │ │ │ │ ├── copper_sink.json │ │ │ │ ├── corrupted_beacon.json │ │ │ │ ├── crab_trap.json │ │ │ │ ├── creative_generator.json │ │ │ │ ├── creative_generator_base.json │ │ │ │ ├── creative_generator_cube.json │ │ │ │ ├── crushing_table.json │ │ │ │ ├── cut_ember_metal_block.json │ │ │ │ ├── cut_ember_metal_pillar.json │ │ │ │ ├── cut_ember_metal_slab.json │ │ │ │ ├── cut_ember_metal_slab_top.json │ │ │ │ ├── cut_ember_metal_stairs.json │ │ │ │ ├── cut_ember_metal_stairs_inner.json │ │ │ │ ├── cut_ember_metal_stairs_outer.json │ │ │ │ ├── cut_royal_steel_pillar.json │ │ │ │ ├── cut_royal_steel_pillar_horizontal.json │ │ │ │ ├── deflection_ring.json │ │ │ │ ├── deflection_ring_off.json │ │ │ │ ├── deflection_ring_overload.json │ │ │ │ ├── deflection_ring_part.json │ │ │ │ ├── demagnetized_ferrite_core_magnet_block.json │ │ │ │ ├── demagnetized_hollow_magnet_block.json │ │ │ │ ├── demagnetized_magnet_block.json │ │ │ │ ├── discharger.json │ │ │ │ ├── discharger_off.json │ │ │ │ ├── discharger_overload.json │ │ │ │ ├── ember_anvil.json │ │ │ │ ├── ember_grindstone.json │ │ │ │ ├── ember_metal_block.json │ │ │ │ ├── ember_smithing_table.json │ │ │ │ ├── experience_cauldron_full.json │ │ │ │ ├── experience_cauldron_level1.json │ │ │ │ ├── experience_cauldron_level2.json │ │ │ │ ├── experience_cauldron_level3.json │ │ │ │ ├── ferrite_core_magnet_block.json │ │ │ │ ├── fire_cauldron_fire1.json │ │ │ │ ├── fire_cauldron_fire2.json │ │ │ │ ├── fire_cauldron_fire3.json │ │ │ │ ├── fire_cauldron_fire4.json │ │ │ │ ├── giant_anvil.json │ │ │ │ ├── giant_anvil_part.json │ │ │ │ ├── giant_structure.json │ │ │ │ ├── heat_collector.json │ │ │ │ ├── heat_collector_base.json │ │ │ │ ├── heat_collector_cube.json │ │ │ │ ├── heater.json │ │ │ │ ├── heater_lit.json │ │ │ │ ├── heavy_iron_beam_x.json │ │ │ │ ├── heavy_iron_beam_z.json │ │ │ │ ├── heavy_iron_block.json │ │ │ │ ├── heavy_iron_column.json │ │ │ │ ├── heavy_iron_door_bottom_left.json │ │ │ │ ├── heavy_iron_door_bottom_left_open.json │ │ │ │ ├── heavy_iron_door_bottom_right.json │ │ │ │ ├── heavy_iron_door_bottom_right_open.json │ │ │ │ ├── heavy_iron_door_top_left.json │ │ │ │ ├── heavy_iron_door_top_left_open.json │ │ │ │ ├── heavy_iron_door_top_right.json │ │ │ │ ├── heavy_iron_door_top_right_open.json │ │ │ │ ├── heavy_iron_plate.json │ │ │ │ ├── heavy_iron_trapdoor_bottom.json │ │ │ │ ├── heavy_iron_trapdoor_open.json │ │ │ │ ├── heavy_iron_trapdoor_top.json │ │ │ │ ├── heavy_iron_wall_inventory.json │ │ │ │ ├── heavy_iron_wall_post.json │ │ │ │ ├── heavy_iron_wall_side.json │ │ │ │ ├── heavy_iron_wall_side_tall.json │ │ │ │ ├── heliostats.json │ │ │ │ ├── heliostats_base.json │ │ │ │ ├── heliostats_head.json │ │ │ │ ├── heliostats_head_sunflower.json │ │ │ │ ├── hollow_magnet_block.json │ │ │ │ ├── honey_cauldron_full.json │ │ │ │ ├── honey_cauldron_level1.json │ │ │ │ ├── honey_cauldron_level2.json │ │ │ │ ├── honey_cauldron_level3.json │ │ │ │ ├── hypercube.json │ │ │ │ ├── hypergravity_generator.json │ │ │ │ ├── hysteresis_comparator.json │ │ │ │ ├── hysteresis_comparator_in.json │ │ │ │ ├── hysteresis_comparator_in_out.json │ │ │ │ ├── hysteresis_comparator_out.json │ │ │ │ ├── impact_pile.json │ │ │ │ ├── induction_light.json │ │ │ │ ├── induction_light_dark.json │ │ │ │ ├── induction_light_dark_off.json │ │ │ │ ├── induction_light_off.json │ │ │ │ ├── induction_light_overload.json │ │ │ │ ├── induction_light_pink.json │ │ │ │ ├── induction_light_pink_off.json │ │ │ │ ├── induction_light_yellow.json │ │ │ │ ├── induction_light_yellow_off.json │ │ │ │ ├── item_collector.json │ │ │ │ ├── item_collector_off.json │ │ │ │ ├── item_collector_overload.json │ │ │ │ ├── item_detector.json │ │ │ │ ├── item_detector_on.json │ │ │ │ ├── jewelcrafting_table.json │ │ │ │ ├── large_cake.json │ │ │ │ ├── large_cake_base_center.json │ │ │ │ ├── large_cake_base_corner.json │ │ │ │ ├── large_cake_base_side.json │ │ │ │ ├── large_cake_mid_center.json │ │ │ │ ├── large_cake_mid_corner.json │ │ │ │ ├── large_cake_mid_side.json │ │ │ │ ├── large_cake_top_center.json │ │ │ │ ├── large_cake_top_corner.json │ │ │ │ ├── large_cake_top_side.json │ │ │ │ ├── laser.json │ │ │ │ ├── lava_cauldron_level1.json │ │ │ │ ├── lava_cauldron_level2.json │ │ │ │ ├── lava_cauldron_level3.json │ │ │ │ ├── load_monitor.json │ │ │ │ ├── load_monitor_0.json │ │ │ │ ├── load_monitor_1.json │ │ │ │ ├── load_monitor_10.json │ │ │ │ ├── load_monitor_2.json │ │ │ │ ├── load_monitor_3.json │ │ │ │ ├── load_monitor_4.json │ │ │ │ ├── load_monitor_5.json │ │ │ │ ├── load_monitor_6.json │ │ │ │ ├── load_monitor_7.json │ │ │ │ ├── load_monitor_8.json │ │ │ │ ├── load_monitor_9.json │ │ │ │ ├── load_monitor_overload.json │ │ │ │ ├── lunar_rock.json │ │ │ │ ├── lunar_rock_1.json │ │ │ │ ├── lunar_rock_2.json │ │ │ │ ├── lunar_rock_3.json │ │ │ │ ├── lunar_soil.json │ │ │ │ ├── magnet_block.json │ │ │ │ ├── magnetic_chute.json │ │ │ │ ├── magnetoelectric_core.json │ │ │ │ ├── melt_gem_cauldron.json │ │ │ │ ├── menger_sponge.json │ │ │ │ ├── mineral_fountain.json │ │ │ │ ├── mob_amber_block.json │ │ │ │ ├── multiphase_matter_block.json │ │ │ │ ├── negative_matter_block.json │ │ │ │ ├── nesting_shulker_box.json │ │ │ │ ├── obsidian_cauldron.json │ │ │ │ ├── oil_cauldron_full.json │ │ │ │ ├── oil_cauldron_level1.json │ │ │ │ ├── oil_cauldron_level2.json │ │ │ │ ├── oil_cauldron_level3.json │ │ │ │ ├── over_nesting_shulker_box.json │ │ │ │ ├── overseer_base_0.json │ │ │ │ ├── overseer_base_1.json │ │ │ │ ├── overseer_mid_0.json │ │ │ │ ├── overseer_mid_1.json │ │ │ │ ├── overseer_overall.json │ │ │ │ ├── overseer_top_0.json │ │ │ │ ├── overseer_top_1.json │ │ │ │ ├── piezoelectric_crystal.json │ │ │ │ ├── plasma_jets.json │ │ │ │ ├── power_converter_big.json │ │ │ │ ├── power_converter_middle.json │ │ │ │ ├── power_converter_overload_big.json │ │ │ │ ├── power_converter_overload_middle.json │ │ │ │ ├── power_converter_overload_small.json │ │ │ │ ├── power_converter_small.json │ │ │ │ ├── pulse_generator.json │ │ │ │ ├── pulse_generator_on.json │ │ │ │ ├── remote_transmission_pole_base.json │ │ │ │ ├── remote_transmission_pole_mid.json │ │ │ │ ├── remote_transmission_pole_overall.json │ │ │ │ ├── remote_transmission_pole_top.json │ │ │ │ ├── remote_transmission_pole_top_off.json │ │ │ │ ├── remote_transmission_pole_top_overload.json │ │ │ │ ├── resentful_amber_block.json │ │ │ │ ├── resin_block.json │ │ │ │ ├── royal_anvil.json │ │ │ │ ├── royal_grindstone.json │ │ │ │ ├── royal_smithing_table.json │ │ │ │ ├── ruby_laser.json │ │ │ │ ├── ruby_laser_off.json │ │ │ │ ├── ruby_laser_overload.json │ │ │ │ ├── ruby_prism.json │ │ │ │ ├── silicon_block.json │ │ │ │ ├── simple_chute.json │ │ │ │ ├── simple_chute_side.json │ │ │ │ ├── simple_chute_side_tall.json │ │ │ │ ├── simple_chute_tall.json │ │ │ │ ├── sliding_rail.json │ │ │ │ ├── sliding_rail_cross.json │ │ │ │ ├── sliding_rail_stop.json │ │ │ │ ├── space_overcompressor.json │ │ │ │ ├── spectral_anvil.json │ │ │ │ ├── stamping_platform.json │ │ │ │ ├── supercritical_nesting_shulker_box.json │ │ │ │ ├── template_cauldron_level1of4.json │ │ │ │ ├── template_cauldron_level2of4.json │ │ │ │ ├── template_cauldron_level3of4.json │ │ │ │ ├── tesla_tower_base.json │ │ │ │ ├── tesla_tower_middown.json │ │ │ │ ├── tesla_tower_midup.json │ │ │ │ ├── tesla_tower_overall.json │ │ │ │ ├── tesla_tower_top.json │ │ │ │ ├── tesla_tower_top_off.json │ │ │ │ ├── tesla_tower_top_overload.json │ │ │ │ ├── thermoelectric_converter.json │ │ │ │ ├── transcendium_block.json │ │ │ │ ├── transmission_pole_base.json │ │ │ │ ├── transmission_pole_mid.json │ │ │ │ ├── transmission_pole_overall.json │ │ │ │ ├── transmission_pole_top.json │ │ │ │ ├── transmission_pole_top_off.json │ │ │ │ ├── transmission_pole_top_overload.json │ │ │ │ ├── transparent_crafting_table.json │ │ │ │ ├── transparent_crafting_table_all.json │ │ │ │ ├── transparent_crafting_table_center.json │ │ │ │ ├── transparent_crafting_table_core.json │ │ │ │ ├── transparent_crafting_table_corner.json │ │ │ │ ├── transparent_crafting_table_side.json │ │ │ │ ├── void_energy_collector.json │ │ │ │ ├── void_energy_collector_base.json │ │ │ │ ├── void_energy_collector_head.json │ │ │ │ ├── void_matter_block.json │ │ │ │ ├── void_matter_block_center.json │ │ │ │ ├── white_hole.json │ │ │ │ ├── window_comparator.json │ │ │ │ ├── window_comparator_in.json │ │ │ │ ├── window_comparator_in_out.json │ │ │ │ └── window_comparator_out.json │ │ │ ├── entity │ │ │ │ ├── ember_metal_heavy_halberd.bbmodel │ │ │ │ ├── ember_metal_heavy_halberd.java │ │ │ │ ├── frost_metal_heavy_halberd.bbmodel │ │ │ │ ├── frost_metal_heavy_halberd.java │ │ │ │ ├── ionocraft.bbmodel │ │ │ │ └── ionocraft.java │ │ │ ├── equipment │ │ │ │ ├── ionocraft_backpack.bbmodel │ │ │ │ └── ionocraft_backpack.java │ │ │ ├── item │ │ │ │ ├── anvil_hammer.json │ │ │ │ ├── capacitor.json │ │ │ │ ├── capacitor_empty.json │ │ │ │ ├── crab_claw.json │ │ │ │ ├── crab_claw_holding_block.json │ │ │ │ ├── crab_claw_holding_item.json │ │ │ │ ├── creative_generator.json │ │ │ │ ├── dragon_rod.json │ │ │ │ ├── ember_anvil_hammer.json │ │ │ │ ├── ember_dragon_rod.json │ │ │ │ ├── ember_metal_heavy_halberd.json │ │ │ │ ├── ember_metal_heavy_halberd_throwing.json │ │ │ │ ├── ember_metal_resonance_axe.json │ │ │ │ ├── ember_metal_resonance_hoe.json │ │ │ │ ├── ember_metal_resonance_pickaxe.json │ │ │ │ ├── ember_metal_resonance_shovel.json │ │ │ │ ├── ember_metal_resonator.json │ │ │ │ ├── frost_metal_heavy_halberd.json │ │ │ │ ├── frost_metal_heavy_halberd_throwing.json │ │ │ │ ├── frost_metal_resonance_axe.json │ │ │ │ ├── frost_metal_resonance_hoe.json │ │ │ │ ├── frost_metal_resonance_pickaxe.json │ │ │ │ ├── frost_metal_resonance_shovel.json │ │ │ │ ├── frost_metal_resonator.json │ │ │ │ ├── guide_book.json │ │ │ │ ├── heavy_iron_beam.json │ │ │ │ ├── heliostats.json │ │ │ │ ├── overseer.json │ │ │ │ ├── remote_transmission_pole.json │ │ │ │ ├── royal_anvil_hammer.json │ │ │ │ ├── royal_dragon_rod.json │ │ │ │ ├── supercapacitor.json │ │ │ │ ├── supercapacitor_empty.json │ │ │ │ └── transmission_pole.json │ │ │ └── title │ │ │ │ └── model.bbmodel │ │ ├── patchouli_books │ │ │ └── guide │ │ │ │ ├── en_us │ │ │ │ ├── categories │ │ │ │ │ ├── advanced_features.json │ │ │ │ │ ├── basic_gameplay.json │ │ │ │ │ ├── power_system.json │ │ │ │ │ ├── process.json │ │ │ │ │ └── smithing_system.json │ │ │ │ └── entries │ │ │ │ │ ├── advanced_tool_properties.json │ │ │ │ │ ├── basic_block_processing.json │ │ │ │ │ ├── basic_introduction.json │ │ │ │ │ ├── basic_item_processing.json │ │ │ │ │ ├── basic_more_device.json │ │ │ │ │ ├── basic_more_processing.json │ │ │ │ │ ├── basic_vanilla_improve.json │ │ │ │ │ ├── game_process_1.json │ │ │ │ │ ├── game_process_2.json │ │ │ │ │ ├── game_process_3.json │ │ │ │ │ ├── power_consumption.json │ │ │ │ │ ├── power_generation.json │ │ │ │ │ ├── power_introduction.json │ │ │ │ │ ├── power_transmission.json │ │ │ │ │ ├── smithing_corrupted_beacon.json │ │ │ │ │ ├── smithing_cursed_gold.json │ │ │ │ │ ├── smithing_introduction.json │ │ │ │ │ ├── smithing_jewelcrafting_table.json │ │ │ │ │ ├── smithing_royal_steel.json │ │ │ │ │ └── smithing_tier_2_materials.json │ │ │ │ └── zh_cn │ │ │ │ ├── categories │ │ │ │ ├── advanced_features.json │ │ │ │ ├── basic_gameplay.json │ │ │ │ ├── power_system.json │ │ │ │ ├── process.json │ │ │ │ └── smithing_system.json │ │ │ │ └── entries │ │ │ │ ├── advanced_tool_properties.json │ │ │ │ ├── basic_block_processing.json │ │ │ │ ├── basic_introduction.json │ │ │ │ ├── basic_item_processing.json │ │ │ │ ├── basic_more_device.json │ │ │ │ ├── basic_more_processing.json │ │ │ │ ├── basic_vanilla_improve.json │ │ │ │ ├── game_process_1.json │ │ │ │ ├── game_process_2.json │ │ │ │ ├── game_process_3.json │ │ │ │ ├── power_consumption.json │ │ │ │ ├── power_generation.json │ │ │ │ ├── power_introduction.json │ │ │ │ ├── power_transmission.json │ │ │ │ ├── smithing_corrupted_beacon.json │ │ │ │ ├── smithing_cursed_gold.json │ │ │ │ ├── smithing_introduction.json │ │ │ │ ├── smithing_jewelcrafting_table.json │ │ │ │ ├── smithing_royal_steel.json │ │ │ │ └── smithing_tier_2_materials.json │ │ ├── shaders │ │ │ ├── core │ │ │ │ ├── blit.fsh │ │ │ │ ├── blit.json │ │ │ │ ├── blit.vsh │ │ │ │ ├── rendertype_laser.fsh │ │ │ │ ├── rendertype_laser.json │ │ │ │ ├── rendertype_laser.vsh │ │ │ │ ├── rendertype_translucent_colored_overlay.fsh │ │ │ │ ├── rendertype_translucent_colored_overlay.json │ │ │ │ ├── ring.fsh │ │ │ │ ├── ring.json │ │ │ │ ├── selection.fsh │ │ │ │ └── selection.json │ │ │ ├── post │ │ │ │ ├── bloom.json │ │ │ │ └── line_bloom.json │ │ │ └── program │ │ │ │ ├── apply_bloom.fsh │ │ │ │ ├── apply_bloom.json │ │ │ │ ├── blit.fsh │ │ │ │ ├── blit.json │ │ │ │ ├── blur.fsh │ │ │ │ ├── blur.json │ │ │ │ └── blur.vsh │ │ └── textures │ │ │ ├── block │ │ │ ├── acceleration_ring_center.png │ │ │ ├── acceleration_ring_center_inner.png │ │ │ ├── acceleration_ring_center_side.png │ │ │ ├── acceleration_ring_direction.png │ │ │ ├── acceleration_ring_in.png │ │ │ ├── acceleration_ring_inner.png │ │ │ ├── acceleration_ring_off.png │ │ │ ├── acceleration_ring_on.png │ │ │ ├── acceleration_ring_out.png │ │ │ ├── acceleration_ring_outer.png │ │ │ ├── acceleration_ring_overload.png │ │ │ ├── acceleration_ring_pipe.png │ │ │ ├── active_silencer.png │ │ │ ├── advanced_comparator.png │ │ │ ├── advanced_comparator_side.png │ │ │ ├── advanced_comparator_top.png │ │ │ ├── advanced_diode_bottom.png │ │ │ ├── amber_block.png │ │ │ ├── arrow.png │ │ │ ├── auto_crafter_back.png │ │ │ ├── auto_crafter_back_overload.png │ │ │ ├── auto_crafter_bottom.png │ │ │ ├── auto_crafter_bottom_overload.png │ │ │ ├── auto_crafter_bottom_vertical.png │ │ │ ├── auto_crafter_bottom_vertical_overload.png │ │ │ ├── auto_crafter_front.png │ │ │ ├── auto_crafter_front_overload.png │ │ │ ├── auto_crafter_left.png │ │ │ ├── auto_crafter_left_overload.png │ │ │ ├── auto_crafter_right.png │ │ │ ├── auto_crafter_right_overload.png │ │ │ ├── auto_crafter_top.png │ │ │ ├── auto_crafter_top_overload.png │ │ │ ├── auto_crafter_top_vertical.png │ │ │ ├── auto_crafter_top_vertical_overload.png │ │ │ ├── axis.png │ │ │ ├── batch_crafter_front.png │ │ │ ├── batch_crafter_front_overload.png │ │ │ ├── batch_crafter_inner.png │ │ │ ├── batch_crafter_inner_overload.png │ │ │ ├── batch_crafter_side.png │ │ │ ├── batch_crafter_side_overload.png │ │ │ ├── batch_crafter_top.png │ │ │ ├── batch_crafter_vertical.png │ │ │ ├── batch_crafter_vertical_overload.png │ │ │ ├── berry_cake_block.png │ │ │ ├── berry_cream_block.png │ │ │ ├── black_cement.png │ │ │ ├── black_chocolate_block.png │ │ │ ├── black_hole.png │ │ │ ├── black_hole.png.mcmeta │ │ │ ├── black_hole_inner.png │ │ │ ├── black_hole_outline.png │ │ │ ├── black_hole_outline.png.mcmeta │ │ │ ├── black_hole_outline_2.png │ │ │ ├── black_hole_outline_2.png.mcmeta │ │ │ ├── black_sand.png │ │ │ ├── block_comparator.png │ │ │ ├── block_comparator_body.png │ │ │ ├── block_comparator_eyes.png │ │ │ ├── block_comparator_eyes_precise.png │ │ │ ├── block_comparator_on.png │ │ │ ├── block_devourer_bottom.png │ │ │ ├── block_devourer_bottom_on.png │ │ │ ├── block_devourer_head.png │ │ │ ├── block_devourer_inner.png │ │ │ ├── block_devourer_jaw.png │ │ │ ├── block_devourer_side.png │ │ │ ├── block_devourer_side_on.png │ │ │ ├── block_devourer_top.png │ │ │ ├── block_placer_back.png │ │ │ ├── block_placer_back_on.png │ │ │ ├── block_placer_bottom.png │ │ │ ├── block_placer_face.png │ │ │ ├── block_placer_side.png │ │ │ ├── block_placer_side_on.png │ │ │ ├── block_placer_top.png │ │ │ ├── block_placer_top_on.png │ │ │ ├── blue_cement.png │ │ │ ├── brass_block.png │ │ │ ├── bronze_block.png │ │ │ ├── brown_cement.png │ │ │ ├── cake_base_block.png │ │ │ ├── cake_block.png │ │ │ ├── capacitor_bank.png │ │ │ ├── capacitor_bank_top.png │ │ │ ├── charge_collector_bottom.png │ │ │ ├── charge_collector_head.png │ │ │ ├── charge_collector_side.png │ │ │ ├── charge_collector_top.png │ │ │ ├── charger.png │ │ │ ├── charger_bottom.png │ │ │ ├── charger_off.png │ │ │ ├── charger_overload.png │ │ │ ├── chocolate_block.png │ │ │ ├── chocolate_cake_block.png │ │ │ ├── chocolate_cream_block.png │ │ │ ├── chute.png │ │ │ ├── chute_bottom.png │ │ │ ├── chute_top.png │ │ │ ├── chute_top_directional.png │ │ │ ├── cinerite.png │ │ │ ├── confined_energy_anvilon.png │ │ │ ├── confined_mass_anvilon.png │ │ │ ├── confined_space_anvilon.png │ │ │ ├── confined_time_anvilon.png │ │ │ ├── confinement_chamber.png │ │ │ ├── controllable_sand.png │ │ │ ├── controllable_sand_inner.png │ │ │ ├── copper_sink_bottom.png │ │ │ ├── copper_sink_inner.png │ │ │ ├── copper_sink_inner_side.png │ │ │ ├── copper_sink_side.png │ │ │ ├── copper_sink_top.png │ │ │ ├── corrupted_beacon_base.png │ │ │ ├── corrupted_beacon_core.png │ │ │ ├── corrupted_beacon_glass.png │ │ │ ├── corrupted_beacon_inner.png │ │ │ ├── crab_claw.png │ │ │ ├── crab_claw_in.png │ │ │ ├── crab_claw_movable.png │ │ │ ├── crab_claw_movable_in.png │ │ │ ├── crab_trap.png │ │ │ ├── crab_trap_top.png │ │ │ ├── cream_block.png │ │ │ ├── creative_generator_bottom.png │ │ │ ├── creative_generator_head.png │ │ │ ├── creative_generator_side.png │ │ │ ├── creative_generator_top.png │ │ │ ├── crushing_table.png │ │ │ ├── crystal_crafting_table.png │ │ │ ├── crystal_crafting_table_core.png │ │ │ ├── crystal_crafting_table_corner.png │ │ │ ├── crystal_crafting_table_corner_top.png │ │ │ ├── crystal_crafting_table_hollow.png │ │ │ ├── crystal_crafting_table_inner.png │ │ │ ├── crystal_crafting_table_side.png │ │ │ ├── crystal_crafting_table_side_top.png │ │ │ ├── cursed_gold_block.png │ │ │ ├── cut_ember_metal_block.png │ │ │ ├── cut_ember_metal_pillar.png │ │ │ ├── cut_ember_metal_pillar_inner.png │ │ │ ├── cut_ember_metal_pillar_top.png │ │ │ ├── cut_ember_metal_stairs.png │ │ │ ├── cut_heavy_iron_block.png │ │ │ ├── cut_royal_steel_block.png │ │ │ ├── cut_royal_steel_pillar.png │ │ │ ├── cut_royal_steel_pillar_top.png │ │ │ ├── cyan_cement.png │ │ │ ├── deepslate_chips.png │ │ │ ├── deepslate_lead_ore.png │ │ │ ├── deepslate_silver_ore.png │ │ │ ├── deepslate_tin_ore.png │ │ │ ├── deepslate_titanium_ore.png │ │ │ ├── deepslate_tungsten_ore.png │ │ │ ├── deepslate_uranium_ore.png │ │ │ ├── deepslate_zinc_ore.png │ │ │ ├── deflection_ring_off.png │ │ │ ├── deflection_ring_on.png │ │ │ ├── deflection_ring_overload.png │ │ │ ├── deflection_ring_side.png │ │ │ ├── deflection_ring_small_coil.png │ │ │ ├── deflection_ring_top.png │ │ │ ├── demagnetized_magnet_block_bottom.png │ │ │ ├── demagnetized_magnet_block_side.png │ │ │ ├── demagnetized_magnet_block_top.png │ │ │ ├── diode_unified.png │ │ │ ├── discharger.png │ │ │ ├── discharger_bottom.png │ │ │ ├── discharger_off.png │ │ │ ├── discharger_overload.png │ │ │ ├── earth_core_shard_block.png │ │ │ ├── earth_core_shard_ore.png │ │ │ ├── ember_anvil.png │ │ │ ├── ember_anvil_bottom.png │ │ │ ├── ember_anvil_side.png │ │ │ ├── ember_anvil_top.png │ │ │ ├── ember_glass.png │ │ │ ├── ember_grindstone_pivot.png │ │ │ ├── ember_grindstone_round.png │ │ │ ├── ember_grindstone_side.png │ │ │ ├── ember_metal_block.png │ │ │ ├── ember_metal_block_outline.png │ │ │ ├── ember_metal_block_outline.png.mcmeta │ │ │ ├── ember_smithing_table_bottom.png │ │ │ ├── ember_smithing_table_inner.png │ │ │ ├── ember_smithing_table_side.png │ │ │ ├── ember_smithing_table_top.png │ │ │ ├── end_dust.png │ │ │ ├── frost_metal_block.png │ │ │ ├── giant_acceleration_section.png │ │ │ ├── giant_anvil_bottom.png │ │ │ ├── giant_anvil_side.png │ │ │ ├── giant_anvil_top.png │ │ │ ├── glowing_netherite_block.png │ │ │ ├── glowing_tungsten_block.png │ │ │ ├── gray_cement.png │ │ │ ├── green_cement.png │ │ │ ├── heat_collector_bottom.png │ │ │ ├── heat_collector_head.png │ │ │ ├── heat_collector_side.png │ │ │ ├── heat_collector_top.png │ │ │ ├── heated_netherite_block.png │ │ │ ├── heated_tungsten_block.png │ │ │ ├── heater.png │ │ │ ├── heater_bottom.png │ │ │ ├── heater_lit.png │ │ │ ├── heater_lit.png.mcmeta │ │ │ ├── heater_top.png │ │ │ ├── heater_top_layer.png │ │ │ ├── heater_top_lit.png │ │ │ ├── heater_top_lit.png.mcmeta │ │ │ ├── heavy_iron_beam.png │ │ │ ├── heavy_iron_beam_side.png │ │ │ ├── heavy_iron_beam_x.png │ │ │ ├── heavy_iron_beam_z.png │ │ │ ├── heavy_iron_block.png │ │ │ ├── heavy_iron_block_inner.png │ │ │ ├── heavy_iron_column.png │ │ │ ├── heavy_iron_column_extend.png │ │ │ ├── heavy_iron_column_extend_top.png │ │ │ ├── heavy_iron_column_top.png │ │ │ ├── heavy_iron_door_bottom.png │ │ │ ├── heavy_iron_door_top.png │ │ │ ├── heavy_iron_trapdoor.png │ │ │ ├── heavy_iron_wall.png │ │ │ ├── heavy_iron_wall_post.png │ │ │ ├── heavy_iron_wall_side.png │ │ │ ├── heavy_iron_wall_side_end.png │ │ │ ├── heavy_iron_wall_side_tall.png │ │ │ ├── heavy_iron_wall_side_tall_end.png │ │ │ ├── heliostats.png │ │ │ ├── heliostats_back.png │ │ │ ├── heliostats_base.png │ │ │ ├── heliostats_front.png │ │ │ ├── heliostats_sunflower.png │ │ │ ├── hypercube.png │ │ │ ├── hypercube_1.png │ │ │ ├── hypercube_2.png │ │ │ ├── hypercube_inner.png │ │ │ ├── hypergravity_generator_bottom.png │ │ │ ├── hypergravity_generator_inner.png │ │ │ ├── hypergravity_generator_side.png │ │ │ ├── hypergravity_generator_top.png │ │ │ ├── impact_pile.png │ │ │ ├── incandescent_netherite_block.png │ │ │ ├── incandescent_tungsten_block.png │ │ │ ├── induction_light.png │ │ │ ├── induction_light_dark.png │ │ │ ├── induction_light_pink.png │ │ │ ├── induction_light_yellow.png │ │ │ ├── item_collector_bottom.png │ │ │ ├── item_collector_side.png │ │ │ ├── item_collector_side_off.png │ │ │ ├── item_collector_side_overload.png │ │ │ ├── item_collector_top.png │ │ │ ├── item_collector_top_off.png │ │ │ ├── item_collector_top_overload.png │ │ │ ├── item_detector.png │ │ │ ├── item_detector_bottom.png │ │ │ ├── item_detector_side.png │ │ │ ├── jewelcrafting_table_bottom.png │ │ │ ├── jewelcrafting_table_saw.png │ │ │ ├── jewelcrafting_table_side.png │ │ │ ├── jewelcrafting_table_top.png │ │ │ ├── large_cake.png │ │ │ ├── large_cake_bottom.png │ │ │ ├── large_cake_top.png │ │ │ ├── laser.png │ │ │ ├── lead_block.png │ │ │ ├── levitation_powder_block.png │ │ │ ├── light_blue_cement.png │ │ │ ├── light_gray_cement.png │ │ │ ├── lime_cement.png │ │ │ ├── load_monitor.png │ │ │ ├── load_monitor_0.png │ │ │ ├── load_monitor_1.png │ │ │ ├── load_monitor_10.png │ │ │ ├── load_monitor_2.png │ │ │ ├── load_monitor_3.png │ │ │ ├── load_monitor_4.png │ │ │ ├── load_monitor_5.png │ │ │ ├── load_monitor_6.png │ │ │ ├── load_monitor_7.png │ │ │ ├── load_monitor_8.png │ │ │ ├── load_monitor_9.png │ │ │ ├── load_monitor_bottom.png │ │ │ ├── load_monitor_overload.png │ │ │ ├── load_monitor_top.png │ │ │ ├── lunar_rock.png │ │ │ ├── lunar_rock_1.png │ │ │ ├── lunar_rock_2.png │ │ │ ├── lunar_rock_3.png │ │ │ ├── lunar_soil.png │ │ │ ├── magenta_cement.png │ │ │ ├── magnet_block_bottom.png │ │ │ ├── magnet_block_side.png │ │ │ ├── magnet_block_top.png │ │ │ ├── magnetic_chute_bottom.png │ │ │ ├── magnetic_chute_side.png │ │ │ ├── magnetoelectric_core.png │ │ │ ├── melt_gem.png │ │ │ ├── melt_gem.png.mcmeta │ │ │ ├── melt_gem_flow.png │ │ │ ├── melt_gem_flow.png.mcmeta │ │ │ ├── menger_sponge.png │ │ │ ├── mineral_fountain.png │ │ │ ├── mineral_fountain_top.png │ │ │ ├── multiphase_matter_block.png │ │ │ ├── multiphase_matter_block_1.png │ │ │ ├── negative_matter_block.png │ │ │ ├── negative_matter_block_outline.png │ │ │ ├── nesting_shulker.png │ │ │ ├── nesting_shulker_inner.png │ │ │ ├── nesting_shulker_inner_surface.png │ │ │ ├── nesting_shulker_innerbottom.png │ │ │ ├── nesting_shulker_innertop.png │ │ │ ├── nether_dust.png │ │ │ ├── oil.png │ │ │ ├── oil.png.mcmeta │ │ │ ├── oil_flow.png │ │ │ ├── oil_flow.png.mcmeta │ │ │ ├── orange_cement.png │ │ │ ├── overseer_base_0.png │ │ │ ├── overseer_base_1.png │ │ │ ├── overseer_bottom.png │ │ │ ├── overseer_mid_0.png │ │ │ ├── overseer_mid_1.png │ │ │ ├── overseer_top.png │ │ │ ├── overseer_top_0.png │ │ │ ├── overseer_top_1.png │ │ │ ├── piezoelectric_crystal.png │ │ │ ├── piezoelectric_crystal_top.png │ │ │ ├── pink_cement.png │ │ │ ├── plasma_jets.png │ │ │ ├── plutonium_block.png │ │ │ ├── polished_heavy_iron_block.png │ │ │ ├── power_converter.png │ │ │ ├── power_converter_overload.png │ │ │ ├── pulse_generator.png │ │ │ ├── pulse_generator_on.png │ │ │ ├── pulse_generator_on_side.png │ │ │ ├── pulse_generator_side.png │ │ │ ├── purple_cement.png │ │ │ ├── quartz_sand.png │ │ │ ├── raw_lead_block.png │ │ │ ├── raw_silver_block.png │ │ │ ├── raw_tin_block.png │ │ │ ├── raw_titanium_block.png │ │ │ ├── raw_tungsten_block.png │ │ │ ├── raw_uranium_block.png │ │ │ ├── raw_zinc_block.png │ │ │ ├── red_cement.png │ │ │ ├── redhot_netherite_block.png │ │ │ ├── redhot_tungsten_block.png │ │ │ ├── redstone_torch_unified.png │ │ │ ├── reinforced_concrete_black.png │ │ │ ├── reinforced_concrete_black_bottom.png │ │ │ ├── reinforced_concrete_black_top.png │ │ │ ├── reinforced_concrete_black_wall.png │ │ │ ├── reinforced_concrete_blue.png │ │ │ ├── reinforced_concrete_blue_bottom.png │ │ │ ├── reinforced_concrete_blue_top.png │ │ │ ├── reinforced_concrete_blue_wall.png │ │ │ ├── reinforced_concrete_brown.png │ │ │ ├── reinforced_concrete_brown_bottom.png │ │ │ ├── reinforced_concrete_brown_top.png │ │ │ ├── reinforced_concrete_brown_wall.png │ │ │ ├── reinforced_concrete_cyan.png │ │ │ ├── reinforced_concrete_cyan_bottom.png │ │ │ ├── reinforced_concrete_cyan_top.png │ │ │ ├── reinforced_concrete_cyan_wall.png │ │ │ ├── reinforced_concrete_gray.png │ │ │ ├── reinforced_concrete_gray_bottom.png │ │ │ ├── reinforced_concrete_gray_top.png │ │ │ ├── reinforced_concrete_gray_wall.png │ │ │ ├── reinforced_concrete_green.png │ │ │ ├── reinforced_concrete_green_bottom.png │ │ │ ├── reinforced_concrete_green_top.png │ │ │ ├── reinforced_concrete_green_wall.png │ │ │ ├── reinforced_concrete_light_blue.png │ │ │ ├── reinforced_concrete_light_blue_bottom.png │ │ │ ├── reinforced_concrete_light_blue_top.png │ │ │ ├── reinforced_concrete_light_blue_wall.png │ │ │ ├── reinforced_concrete_light_gray.png │ │ │ ├── reinforced_concrete_light_gray_bottom.png │ │ │ ├── reinforced_concrete_light_gray_top.png │ │ │ ├── reinforced_concrete_light_gray_wall.png │ │ │ ├── reinforced_concrete_lime.png │ │ │ ├── reinforced_concrete_lime_bottom.png │ │ │ ├── reinforced_concrete_lime_top.png │ │ │ ├── reinforced_concrete_lime_wall.png │ │ │ ├── reinforced_concrete_magenta.png │ │ │ ├── reinforced_concrete_magenta_bottom.png │ │ │ ├── reinforced_concrete_magenta_top.png │ │ │ ├── reinforced_concrete_magenta_wall.png │ │ │ ├── reinforced_concrete_orange.png │ │ │ ├── reinforced_concrete_orange_bottom.png │ │ │ ├── reinforced_concrete_orange_top.png │ │ │ ├── reinforced_concrete_orange_wall.png │ │ │ ├── reinforced_concrete_pink.png │ │ │ ├── reinforced_concrete_pink_bottom.png │ │ │ ├── reinforced_concrete_pink_top.png │ │ │ ├── reinforced_concrete_pink_wall.png │ │ │ ├── reinforced_concrete_purple.png │ │ │ ├── reinforced_concrete_purple_bottom.png │ │ │ ├── reinforced_concrete_purple_top.png │ │ │ ├── reinforced_concrete_purple_wall.png │ │ │ ├── reinforced_concrete_red.png │ │ │ ├── reinforced_concrete_red_bottom.png │ │ │ ├── reinforced_concrete_red_top.png │ │ │ ├── reinforced_concrete_red_wall.png │ │ │ ├── reinforced_concrete_white.png │ │ │ ├── reinforced_concrete_white_bottom.png │ │ │ ├── reinforced_concrete_white_top.png │ │ │ ├── reinforced_concrete_white_wall.png │ │ │ ├── reinforced_concrete_yellow.png │ │ │ ├── reinforced_concrete_yellow_bottom.png │ │ │ ├── reinforced_concrete_yellow_top.png │ │ │ ├── reinforced_concrete_yellow_wall.png │ │ │ ├── remote_transmission_pole_base.png │ │ │ ├── remote_transmission_pole_bottom.png │ │ │ ├── remote_transmission_pole_head.png │ │ │ ├── remote_transmission_pole_head_off.png │ │ │ ├── remote_transmission_pole_head_overload.png │ │ │ ├── resentful_amber_block.png │ │ │ ├── resentful_amber_block_bottom.png │ │ │ ├── resin_block.png │ │ │ ├── royal_anvil.png │ │ │ ├── royal_anvil_bottom.png │ │ │ ├── royal_anvil_side.png │ │ │ ├── royal_anvil_top.png │ │ │ ├── royal_grindstone_pivot.png │ │ │ ├── royal_grindstone_round.png │ │ │ ├── royal_grindstone_side.png │ │ │ ├── royal_smithing_table_bottom.png │ │ │ ├── royal_smithing_table_front.png │ │ │ ├── royal_smithing_table_side.png │ │ │ ├── royal_smithing_table_top.png │ │ │ ├── royal_steel_block.png │ │ │ ├── ruby_block.png │ │ │ ├── ruby_laser.png │ │ │ ├── ruby_laser_inner.png │ │ │ ├── ruby_laser_off.png │ │ │ ├── ruby_laser_overload.png │ │ │ ├── ruby_laser_ruby.png │ │ │ ├── ruby_laser_top.png │ │ │ ├── ruby_prism.png │ │ │ ├── ruby_prism_bottom.png │ │ │ ├── ruby_prism_side.png │ │ │ ├── ruby_prism_top.png │ │ │ ├── sapphire_block.png │ │ │ ├── shulker_container_center.png │ │ │ ├── shulker_container_corner.png │ │ │ ├── shulker_container_edge.png │ │ │ ├── shulker_container_open_center.png │ │ │ ├── shulker_container_open_corner.png │ │ │ ├── shulker_container_open_edge.png │ │ │ ├── silicon_block_side.png │ │ │ ├── silicon_block_top.png │ │ │ ├── silver_block.png │ │ │ ├── simple_chute.png │ │ │ ├── simple_chute_directional.png │ │ │ ├── simple_chute_tall_side.png │ │ │ ├── simple_chute_tall_top.png │ │ │ ├── sliding_rail.png │ │ │ ├── sliding_rail_bottom.png │ │ │ ├── sliding_rail_cross_bottom.png │ │ │ ├── sliding_rail_cross_side.png │ │ │ ├── sliding_rail_cross_top.png │ │ │ ├── sliding_rail_side.png │ │ │ ├── sliding_rail_stop_bottom.png │ │ │ ├── sliding_rail_stop_top-02.png │ │ │ ├── sliding_rail_stop_top.png │ │ │ ├── sliding_rail_top.png │ │ │ ├── smooth_royal_steel_block.png │ │ │ ├── space_overcompressor.png │ │ │ ├── space_overcompressor_center.png │ │ │ ├── space_overcompressor_center.png.mcmeta │ │ │ ├── space_overcompressor_inner.png │ │ │ ├── spectral_anvil.png │ │ │ ├── spectral_anvil_top.png │ │ │ ├── stamping_platform_bottom.png │ │ │ ├── stamping_platform_side.png │ │ │ ├── stamping_platform_top.png │ │ │ ├── sturdy_deepslate.png │ │ │ ├── sulfur_block.png │ │ │ ├── tempering_glass.png │ │ │ ├── tesla_tower_base.png │ │ │ ├── tesla_tower_bottom.png │ │ │ ├── tesla_tower_head.png │ │ │ ├── tesla_tower_head_overload.png │ │ │ ├── tesla_tower_head_overload_off.png │ │ │ ├── tesla_tower_mid.png │ │ │ ├── thermoelectric_converter.png │ │ │ ├── thermoelectric_converter_fin.png │ │ │ ├── thermoelectric_converter_top.png │ │ │ ├── tin_block.png │ │ │ ├── titanium_block.png │ │ │ ├── topaz_block.png │ │ │ ├── transcendium_block.png │ │ │ ├── transcendium_block_outline.png │ │ │ ├── transcendium_block_outline.png.mcmeta │ │ │ ├── transmission_pole_base.png │ │ │ ├── transmission_pole_bottom.png │ │ │ ├── transmission_pole_head.png │ │ │ ├── transmission_pole_head_off.png │ │ │ ├── transmission_pole_head_overload.png │ │ │ ├── tungsten_block.png │ │ │ ├── uranium_block.png │ │ │ ├── void_energy_collector_bottom.png │ │ │ ├── void_energy_collector_head.png │ │ │ ├── void_energy_collector_side.png │ │ │ ├── void_energy_collector_top.png │ │ │ ├── void_matter_block.png │ │ │ ├── void_matter_block_inner.png │ │ │ ├── void_stone.png │ │ │ ├── white_cement.png │ │ │ ├── white_chocolate_block.png │ │ │ ├── white_hole.png │ │ │ ├── white_hole.png.mcmeta │ │ │ ├── white_hole_inner.png │ │ │ ├── white_hole_outline.png │ │ │ ├── white_hole_outline.png.mcmeta │ │ │ ├── white_hole_outline_2.png │ │ │ ├── white_hole_outline_2.png.mcmeta │ │ │ ├── yellow_cement.png │ │ │ └── zinc_block.png │ │ │ ├── entity │ │ │ ├── equipment │ │ │ │ ├── ionocraft_backpack.png │ │ │ │ └── ionocraft_backpack_off.png │ │ │ ├── heavy_halberd │ │ │ │ ├── ember_metal.png │ │ │ │ └── frost_metal.png │ │ │ ├── ionocraft.png │ │ │ ├── laser.png │ │ │ ├── villager │ │ │ │ └── profession │ │ │ │ │ ├── jeweler.png │ │ │ │ │ └── jeweler.png.mcmeta │ │ │ └── zombie_villager │ │ │ │ └── profession │ │ │ │ ├── jeweler.png │ │ │ │ └── jeweler.png.mcmeta │ │ │ ├── gui │ │ │ ├── advancements │ │ │ │ └── background.png │ │ │ ├── container │ │ │ │ ├── amulet_box │ │ │ │ │ ├── background.png │ │ │ │ │ └── selection_box.png │ │ │ │ ├── insight │ │ │ │ │ ├── insight.png │ │ │ │ │ ├── insight_display_modes.png │ │ │ │ │ ├── insight_layer_down.png │ │ │ │ │ ├── insight_layer_switch.png │ │ │ │ │ ├── insight_layer_up.png │ │ │ │ │ ├── insight_list.png │ │ │ │ │ ├── insight_list_button.png │ │ │ │ │ ├── insight_thumbnail.png │ │ │ │ │ └── insight_thumbnail_button.png │ │ │ │ ├── jewelcrafting │ │ │ │ │ └── background.png │ │ │ │ ├── machine │ │ │ │ │ ├── active_silencer_button_add.png │ │ │ │ │ ├── active_silencer_button_remove.png │ │ │ │ │ ├── active_silencer_slider.png │ │ │ │ │ ├── advanced_comparator_slider.png │ │ │ │ │ ├── background │ │ │ │ │ │ ├── active_silencer.png │ │ │ │ │ │ ├── advanced_comparator.png │ │ │ │ │ │ ├── auto_crafter.png │ │ │ │ │ │ ├── chute.png │ │ │ │ │ │ ├── item_collector.png │ │ │ │ │ │ ├── item_detector.png │ │ │ │ │ │ ├── pulse_generator.png │ │ │ │ │ │ └── tesla_tower.png │ │ │ │ │ ├── button_all.png │ │ │ │ │ ├── button_any.png │ │ │ │ │ ├── button_d.png │ │ │ │ │ ├── button_e.png │ │ │ │ │ ├── button_falling_edge.png │ │ │ │ │ ├── button_hysteresis.png │ │ │ │ │ ├── button_loop.png │ │ │ │ │ ├── button_n.png │ │ │ │ │ ├── button_no.png │ │ │ │ │ ├── button_redstone_control_off.png │ │ │ │ │ ├── button_redstone_control_on.png │ │ │ │ │ ├── button_reverse_off.png │ │ │ │ │ ├── button_reverse_on.png │ │ │ │ │ ├── button_rising_edge.png │ │ │ │ │ ├── button_s.png │ │ │ │ │ ├── button_u.png │ │ │ │ │ ├── button_w.png │ │ │ │ │ ├── button_window.png │ │ │ │ │ ├── button_yes.png │ │ │ │ │ ├── disabled_slot.png │ │ │ │ │ ├── item_collector_button_add.png │ │ │ │ │ ├── item_collector_button_minus.png │ │ │ │ │ ├── pulse_generator_button_add_m.png │ │ │ │ │ ├── pulse_generator_button_add_s.png │ │ │ │ │ ├── pulse_generator_button_add_t.png │ │ │ │ │ ├── pulse_generator_button_minus_m.png │ │ │ │ │ ├── pulse_generator_button_minus_s.png │ │ │ │ │ └── pulse_generator_button_minus_t.png │ │ │ │ ├── slider │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button_add.png │ │ │ │ │ ├── button_max.png │ │ │ │ │ ├── button_min.png │ │ │ │ │ ├── button_minus.png │ │ │ │ │ └── slider.png │ │ │ │ ├── smithing │ │ │ │ │ ├── background │ │ │ │ │ │ ├── ember_anvil.png │ │ │ │ │ │ ├── ember_grindstone.png │ │ │ │ │ │ ├── ember_smithing_table.png │ │ │ │ │ │ ├── multiple_to_one_smithing_jei.png │ │ │ │ │ │ ├── royal_anvil.png │ │ │ │ │ │ ├── royal_grindstone.png │ │ │ │ │ │ └── royal_smithing_table.png │ │ │ │ │ ├── ember_grindstone_button.png │ │ │ │ │ ├── ember_grindstone_slider.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── royal_smithing_table_template.png │ │ │ │ │ ├── text_field.png │ │ │ │ │ └── text_field_disabled.png │ │ │ │ └── structure_tool │ │ │ │ │ └── background.png │ │ │ ├── patchouli │ │ │ │ ├── book.png │ │ │ │ └── crafting.png │ │ │ ├── pre_rendered_end_portal.png │ │ │ ├── selector │ │ │ │ ├── select_ring.png │ │ │ │ └── selected_part.png │ │ │ └── sprites │ │ │ │ ├── jei.png │ │ │ │ └── widget │ │ │ │ ├── battery_display │ │ │ │ ├── battery_empty.png │ │ │ │ └── battery_full.png │ │ │ │ └── structure_tool │ │ │ │ ├── button.png │ │ │ │ └── button_highlighted.png │ │ │ ├── item │ │ │ ├── amber.png │ │ │ ├── amethyst_axe.png │ │ │ ├── amethyst_hoe.png │ │ │ ├── amethyst_pickaxe.png │ │ │ ├── amethyst_shovel.png │ │ │ ├── amethyst_sword.png │ │ │ ├── amulet_box.png │ │ │ ├── anvil_amulet.png │ │ │ ├── anvil_hammer.png │ │ │ ├── beef_mushroom_stew.png │ │ │ ├── beef_mushroom_stew_raw.png │ │ │ ├── brass_ingot.png │ │ │ ├── brass_nugget.png │ │ │ ├── bronze_ingot.png │ │ │ ├── bronze_nugget.png │ │ │ ├── canned_food.png │ │ │ ├── capacitor.png │ │ │ ├── capacitor_empty.png │ │ │ ├── cat_amulet.png │ │ │ ├── charged_neutronium_ingot.png │ │ │ ├── charged_neutronium_ingot.png.mcmeta │ │ │ ├── chocolate.png │ │ │ ├── chocolate_black.png │ │ │ ├── chocolate_white.png │ │ │ ├── circuit_board.png │ │ │ ├── cocoa_butter.png │ │ │ ├── cocoa_liquor.png │ │ │ ├── cocoa_powder.png │ │ │ ├── cogwheel_amulet.png │ │ │ ├── comrade_amulet.png │ │ │ ├── copper_nugget.png │ │ │ ├── crab_claw.png │ │ │ ├── crab_claw_in.png │ │ │ ├── crab_claw_inventory.png │ │ │ ├── crab_claw_movable.png │ │ │ ├── crab_claw_movable_in.png │ │ │ ├── cream.png │ │ │ ├── creamy_bread_roll.png │ │ │ ├── cursed_gold_ingot.png │ │ │ ├── cursed_gold_nugget.png │ │ │ ├── disk.png │ │ │ ├── dog_amulet.png │ │ │ ├── dough.png │ │ │ ├── dragon_rod.png │ │ │ ├── dust.png │ │ │ ├── earth_core_shard.png │ │ │ ├── eight_to_one_smithing_template.png │ │ │ ├── ember_anvil_hammer.png │ │ │ ├── ember_dragon_rod.png │ │ │ ├── ember_metal_axe.png │ │ │ ├── ember_metal_axe_lit.png │ │ │ ├── ember_metal_heavy_halberd.png │ │ │ ├── ember_metal_hoe.png │ │ │ ├── ember_metal_hoe_lit.png │ │ │ ├── ember_metal_ingot.png │ │ │ ├── ember_metal_nugget.png │ │ │ ├── ember_metal_pickaxe.png │ │ │ ├── ember_metal_pickaxe_lit.png │ │ │ ├── ember_metal_resonator.png │ │ │ ├── ember_metal_shovel.png │ │ │ ├── ember_metal_shovel_lit.png │ │ │ ├── ember_metal_sword.png │ │ │ ├── ember_metal_sword_lit.png │ │ │ ├── ember_metal_upgrade_smithing_template.png │ │ │ ├── emerald_amulet.png │ │ │ ├── empty_slot_block.png │ │ │ ├── empty_slot_eight_to_one_smithing_template.png │ │ │ ├── empty_slot_four_to_one_smithing_template.png │ │ │ ├── empty_slot_hammer.png │ │ │ ├── empty_slot_mace.png │ │ │ ├── empty_slot_multiphase_matter.png │ │ │ ├── empty_slot_trident.png │ │ │ ├── empty_slot_two_to_one_smithing_template.png │ │ │ ├── feather_amulet.png │ │ │ ├── flour.png │ │ │ ├── four_to_one_smithing_template.png │ │ │ ├── frost_metal_axe.png │ │ │ ├── frost_metal_heavy_halberd.png │ │ │ ├── frost_metal_hoe.png │ │ │ ├── frost_metal_ingot.png │ │ │ ├── frost_metal_nugget.png │ │ │ ├── frost_metal_pickaxe.png │ │ │ ├── frost_metal_resonator.png │ │ │ ├── frost_metal_shovel.png │ │ │ ├── frost_metal_sword.png │ │ │ ├── frost_metal_upgrade_smithing_template.png │ │ │ ├── geode.png │ │ │ ├── guide_book.png │ │ │ ├── hardend_resin.png │ │ │ ├── heavy_halberd_core.png │ │ │ ├── heavy_iron_door.png │ │ │ ├── ionocraft.png │ │ │ ├── ionocraft_backpack.png │ │ │ ├── ionocraft_backpack_off.png │ │ │ ├── lead_ingot.png │ │ │ ├── lead_nugget.png │ │ │ ├── levitation_powder.png │ │ │ ├── lime_powder.png │ │ │ ├── magnet.png │ │ │ ├── magnet_ingot.png │ │ │ ├── multiphase_matter.png │ │ │ ├── multiphase_matter_axe.png │ │ │ ├── multiphase_matter_hoe.png │ │ │ ├── multiphase_matter_pickaxe.png │ │ │ ├── multiphase_matter_shovel.png │ │ │ ├── multiphase_matter_sword.png │ │ │ ├── negative_matter.png │ │ │ ├── negative_matter_nugget.png │ │ │ ├── netherite_crystal_nucleus.png │ │ │ ├── neutronium_ingot.png │ │ │ ├── pill.png │ │ │ ├── plutonium_ingot.png │ │ │ ├── plutonium_nugget.png │ │ │ ├── prismarine_blade.png │ │ │ ├── prismarine_cluster.png │ │ │ ├── processor.png │ │ │ ├── pulp.png │ │ │ ├── raw_lead.png │ │ │ ├── raw_silver.png │ │ │ ├── raw_tin.png │ │ │ ├── raw_titanium.png │ │ │ ├── raw_tungsten.png │ │ │ ├── raw_uranium.png │ │ │ ├── raw_zinc.png │ │ │ ├── resin.png │ │ │ ├── resonator_core.png │ │ │ ├── royal_anvil_hammer.png │ │ │ ├── royal_dragon_rod.png │ │ │ ├── royal_steel_axe.png │ │ │ ├── royal_steel_hoe.png │ │ │ ├── royal_steel_ingot.png │ │ │ ├── royal_steel_nugget.png │ │ │ ├── royal_steel_pickaxe.png │ │ │ ├── royal_steel_shovel.png │ │ │ ├── royal_steel_sword.png │ │ │ ├── royal_steel_upgrade_smithing_template.png │ │ │ ├── ruby.png │ │ │ ├── ruby_amulet.png │ │ │ ├── sapphire.png │ │ │ ├── sapphire_amulet.png │ │ │ ├── sea_heart_shell.png │ │ │ ├── sea_heart_shell_shard.png │ │ │ ├── seeds_pack.png │ │ │ ├── silence_amulet.png │ │ │ ├── silicon.png │ │ │ ├── silicon_wafer_defective.png │ │ │ ├── silicon_wafer_flawless.png │ │ │ ├── silicon_wafer_useless.png │ │ │ ├── silver_ingot.png │ │ │ ├── silver_nugget.png │ │ │ ├── sponge_gemmule.png │ │ │ ├── stable_neutronium_ingot.png │ │ │ ├── sulfur.png │ │ │ ├── supercapacitor.png │ │ │ ├── supercapacitor_electric.png │ │ │ ├── supercapacitor_electric.png.mcmeta │ │ │ ├── supercapacitor_empty.png │ │ │ ├── time_anvilon.png.mcmeta │ │ │ ├── tin_can.png │ │ │ ├── tin_ingot.png │ │ │ ├── tin_nugget.png │ │ │ ├── titanium_ingot.png │ │ │ ├── titanium_nugget.png │ │ │ ├── topaz.png │ │ │ ├── topaz_amulet.png │ │ │ ├── transcendium_ingot.png │ │ │ ├── transcendium_nugget.png │ │ │ ├── tungsten_ingot.png │ │ │ ├── tungsten_nugget.png │ │ │ ├── two_to_one_smithing_template.png │ │ │ ├── uranium_ingot.png │ │ │ ├── uranium_nugget.png │ │ │ ├── utusan.png │ │ │ ├── utusan_raw.png │ │ │ ├── void_matter.png │ │ │ ├── wood_fiber.png │ │ │ ├── zinc_ingot.png │ │ │ └── zinc_nugget.png │ │ │ ├── particle │ │ │ ├── charge_0.png │ │ │ ├── charge_1.png │ │ │ ├── charge_2.png │ │ │ ├── charge_3.png │ │ │ └── charge_4.png │ │ │ ├── slot │ │ │ └── empty_ionocraft_backpack_slot.png │ │ │ └── title │ │ │ ├── anvilcraft.png │ │ │ ├── clear.png │ │ │ └── gravity_tech.png │ └── anvilcraft_skyland │ │ ├── models │ │ └── block │ │ │ └── stone_anvil.json │ │ └── textures │ │ ├── block │ │ ├── stone_anvil_bottom.png │ │ ├── stone_anvil_side.png │ │ └── stone_anvil_top.png │ │ └── item │ │ ├── bamboo_leaves.png │ │ ├── moss.png │ │ └── pebble.png │ ├── data │ ├── anvilcraft │ │ ├── curios │ │ │ └── entities │ │ │ │ └── player.json │ │ ├── patchouli_books │ │ │ └── guide │ │ │ │ └── book.json │ │ └── recipe │ │ │ └── mob_transform │ │ │ └── zombie.json │ ├── better_beacons │ │ ├── base_blocks_amplifier │ │ │ └── anvilcraft.json │ │ └── payment_items_range │ │ │ └── anvilcraft.json │ └── curios │ │ └── tags │ │ └── item │ │ ├── head.json │ │ ├── ionocraft_backpack.json │ │ └── necklace.json │ ├── interface_injections.json │ ├── kubejs.plugins.txt │ ├── pack.mcmeta │ ├── pack.png │ ├── resourcepacks │ └── transparent_cauldron │ │ ├── assets │ │ ├── amendments │ │ │ └── models │ │ │ │ └── block │ │ │ │ ├── cauldron.json │ │ │ │ ├── cauldron_level_11.json │ │ │ │ ├── cauldron_level_12.json │ │ │ │ ├── cauldron_level_13.json │ │ │ │ ├── cauldron_level_15.json │ │ │ │ └── cauldron_level_9.json │ │ ├── anvilcraft │ │ │ └── models │ │ │ │ └── block │ │ │ │ ├── template_cauldron_level1of4.json │ │ │ │ ├── template_cauldron_level2of4.json │ │ │ │ └── template_cauldron_level3of4.json │ │ └── minecraft │ │ │ ├── models │ │ │ └── block │ │ │ │ ├── cauldron.json │ │ │ │ ├── template_cauldron_full.json │ │ │ │ ├── template_cauldron_level1.json │ │ │ │ └── template_cauldron_level2.json │ │ │ └── textures │ │ │ └── block │ │ │ ├── cauldron_bottom.png │ │ │ ├── cauldron_inner.png │ │ │ ├── cauldron_inner_side.png │ │ │ ├── cauldron_side.png │ │ │ └── cauldron_top.png │ │ ├── pack.mcmeta │ │ └── pack.png │ └── wthit_plugins.json └── style.xml /ASSETS_LICENSE: -------------------------------------------------------------------------------- 1 | All rights reserved unless explicitly stated. 2 | -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- 1 | [book] 2 | authors = ["Gugle"] 3 | language = "zh" 4 | multilingual = false 5 | src = "src" 6 | title = "铁砧工艺:原版科技" 7 | -------------------------------------------------------------------------------- /docs/src/addon/index.md: -------------------------------------------------------------------------------- 1 | # 附属开发 2 | -------------------------------------------------------------------------------- /docs/src/datapack/index.md: -------------------------------------------------------------------------------- 1 | # 数据包 2 | -------------------------------------------------------------------------------- /docs/src/img/support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anvil-Dev/AnvilCraft/2c37054b255875cc7585d4ed5700bc46e38f9566/docs/src/img/support.jpg -------------------------------------------------------------------------------- /docs/src/support_us.md: -------------------------------------------------------------------------------- 1 | ## 扫描二维码赞助我们 2 | 3 | * 记得备注自己的游戏ID、QQ号和B站UID 4 | 5 | ![Support QR Code](./img/support.jpg) 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anvil-Dev/AnvilCraft/2c37054b255875cc7585d4ed5700bc46e38f9566/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spotless/spotless.importorder: -------------------------------------------------------------------------------- 1 | 0=dev.dubhe 2 | 1=net 3 | 2= 4 | 3=java 5 | 4=javax 6 | 5=\# -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/berry_cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/berry_cake_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/berry_cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/berry_cream_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/black_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/black_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/black_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/black_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/black_chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/black_chocolate_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/blue_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/blue_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/blue_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/blue_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/brass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/brass_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/bronze_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/bronze_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/brown_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/brown_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/brown_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/brown_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cake_base_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cake_base_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cake_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/chocolate_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/chocolate_cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/chocolate_cake_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/chocolate_cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/chocolate_cream_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cinerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cinerite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/confined_energy_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/confined_energy_anvilon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/confined_mass_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/confined_mass_anvilon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/confined_space_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/confined_space_anvilon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/confined_time_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/confined_time_anvilon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/confinement_chamber.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/confinement_chamber" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/controllable_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/controllable_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cream_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cursed_gold_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cursed_gold_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cut_ember_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cut_ember_metal_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cut_heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cut_heavy_iron_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cut_royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cut_royal_steel_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cyan_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cyan_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/cyan_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/cyan_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_lead_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_lead_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_silver_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_tin_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_tin_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_titanium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_titanium_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_tungsten_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_tungsten_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_uranium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_uranium_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/deepslate_zinc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/deepslate_zinc_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/earth_core_shard_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/earth_core_shard_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/earth_core_shard_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/earth_core_shard_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/ember_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/ember_glass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/ember_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/ember_metal_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/end_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/end_dust" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/frost_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/frost_metal_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/glowing_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/glowing_netherite_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/glowing_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/glowing_tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/gray_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/gray_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/gray_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/gray_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/green_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/green_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/green_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/green_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/heated_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heated_netherite_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/heated_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heated_tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heavy_iron_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/impact_pile.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/impact_pile" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/incandescent_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/incandescent_netherite_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/incandescent_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/incandescent_tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/lead_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/levitation_powder_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/levitation_powder_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/light_blue_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/light_blue_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/light_blue_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/light_blue_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/light_gray_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/light_gray_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/light_gray_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/light_gray_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/lime_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/lime_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/lime_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/lime_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/magenta_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/magenta_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/magenta_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/magenta_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/melt_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/melt_gem" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/mineral_fountain.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/mineral_fountain" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/multiphase_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/multiphase_matter_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/negative_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/negative_matter_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/nether_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/nether_dust" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/oil" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/orange_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/orange_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/orange_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/orange_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/pink_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/pink_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/pink_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/pink_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/polished_heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/polished_heavy_iron_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/purple_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/purple_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/purple_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/purple_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/quartz_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/quartz_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_lead_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_silver_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_tin_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_titanium_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_uranium_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/raw_zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/raw_zinc_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/red_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/red_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/red_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/red_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/redhot_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/redhot_netherite_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/redhot_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/redhot_tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/royal_steel_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/ruby_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/ruby_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/sapphire_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/sapphire_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/silver_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/sliding_rail_stop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/sliding_rail_stop" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/smooth_royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/smooth_royal_steel_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/sturdy_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/sturdy_deepslate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/tempering_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/tempering_glass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/tin_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/titanium_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/topaz_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/topaz_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/transcendium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/transcendium_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/tungsten_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/uranium_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/void_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/void_matter_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/void_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/white_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/white_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/white_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/white_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/white_chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/white_chocolate_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/yellow_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/yellow_cement" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/yellow_cement_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/yellow_cement_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/blockstates/zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/zinc_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/berry_cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/berry_cream_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/black_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/black_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/blue_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/blue_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/brass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/brass_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/bronze_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/bronze_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/brown_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/brown_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/cake_base_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/cake_base_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/chocolate_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/cinerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/cinerite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/cream_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/cursed_gold_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/cursed_gold_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/cyan_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/cyan_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/deepslate_lead_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/deepslate_lead_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/deepslate_tin_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/deepslate_tin_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/deepslate_zinc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/deepslate_zinc_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/end_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/end_dust" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/frost_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/frost_metal_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/gray_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/gray_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/green_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/green_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lead_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/light_blue_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/light_blue_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/light_gray_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/light_gray_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/lime_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/lime_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/magenta_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/magenta_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/melt_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/melt_gem" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/nether_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/nether_dust" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/oil" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/orange_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/orange_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/pink_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/pink_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/purple_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/purple_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/quartz_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/quartz_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_lead_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_silver_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_tin_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_titanium_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_tungsten_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_uranium_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/raw_zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/raw_zinc_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/red_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/red_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/royal_steel_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/ruby_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/ruby_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/sapphire_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/sapphire_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/silver_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/sturdy_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/sturdy_deepslate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/tin_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/titanium_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/topaz_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/topaz_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/tungsten_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/uranium_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/void_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/white_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/white_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/yellow_cement.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "anvilcraft:block/yellow_cement" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/block/zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/zinc_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/acceleration_ring.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/acceleration_ring" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/active_silencer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/active_silencer" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amber" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/amber_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amethyst_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amethyst_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amethyst_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amethyst_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amethyst_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amethyst_pickaxe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amethyst_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amethyst_shovel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amethyst_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amethyst_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/amulet_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/amulet_box" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/anvil_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/anvil_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/arrow" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/batch_crafter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/batch_crafter" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/beef_mushroom_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/beef_mushroom_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/berry_cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/berry_cake_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/berry_cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/berry_cream_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/black_chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/black_chocolate_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/black_chocolate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/black_chocolate_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/black_chocolate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/black_chocolate_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/block_comparator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/block_comparator" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/block_devourer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/block_devourer" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/block_placer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/block_placer" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/brass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/brass_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/brass_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/brass_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/brass_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/brass_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/brass_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/brass_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/bronze_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/bronze_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/bronze_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/bronze_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/bronze_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/bronze_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/bronze_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/bronze_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cake_base_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cake_base_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cake_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/canned_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/canned_food" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cat_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cat_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/charge_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/charge_collector" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/charger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/charger" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/chocolate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/chocolate_black" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chocolate_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chocolate_cake_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chocolate_cream_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chocolate_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chocolate_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chocolate_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/chocolate_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/chute.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/chute" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cinerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cinerite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/circuit_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/circuit_board" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cocoa_butter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cocoa_butter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cocoa_liquor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cocoa_liquor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cocoa_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cocoa_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cogwheel_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cogwheel_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/comrade_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/comrade_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/confined_energy_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/confined_energy_anvilon" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/confined_mass_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/confined_mass_anvilon" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/confined_space_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/confined_space_anvilon" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/confined_time_anvilon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/confined_time_anvilon" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/confinement_chamber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/confinement_chamber" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/controllable_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/controllable_sand" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/copper_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/copper_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/copper_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/copper_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/corrupted_beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/corrupted_beacon" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/crab_trap.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/crab_trap" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/cream" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cream_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cream_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/crushing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/crushing_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cursed_gold_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cursed_gold_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_ember_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_ember_metal_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_ember_metal_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_ember_metal_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_ember_metal_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_ember_metal_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_ember_metal_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_ember_metal_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_heavy_iron_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_heavy_iron_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_heavy_iron_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_heavy_iron_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_heavy_iron_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_royal_steel_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_royal_steel_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_royal_steel_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_royal_steel_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_royal_steel_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/cut_royal_steel_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/cut_royal_steel_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_lead_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_lead_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_silver_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_tin_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_tin_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_titanium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_titanium_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_tungsten_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_tungsten_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_uranium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_uranium_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deepslate_zinc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deepslate_zinc_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/deflection_ring.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/deflection_ring" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/discharger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/discharger" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/disk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/disk" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/dog_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/dog_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/dough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/earth_core_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/earth_core_shard" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/earth_core_shard_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/earth_core_shard_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/earth_core_shard_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/earth_core_shard_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ember_anvil" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ember_glass" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_grindstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ember_grindstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_metal_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ember_metal_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ember_metal_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_metal_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ember_metal_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_metal_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ember_metal_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ember_smithing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ember_smithing_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/emerald_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/emerald_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/end_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/end_dust" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/exposed_copper_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/exposed_copper_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/feather_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/feather_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ferrite_core_magnet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ferrite_core_magnet_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/flour" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/frost_metal_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/frost_metal_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/frost_metal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/frost_metal_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/frost_metal_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/frost_metal_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/frost_metal_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/frost_metal_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/geode.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/geode" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/giant_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/giant_anvil" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/glowing_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/glowing_netherite_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/glowing_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/glowing_tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/hardend_resin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/hardend_resin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heated_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heated_netherite_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heated_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heated_tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heater.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heater" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heavy_iron_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heavy_iron_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heavy_iron_column" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heavy_iron_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/heavy_iron_door" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heavy_iron_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heavy_iron_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/heavy_iron_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heavy_iron_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/hollow_magnet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/hollow_magnet_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/impact_pile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/impact_pile" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/incandescent_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/incandescent_netherite_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/incandescent_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/incandescent_tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/induction_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/induction_light" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ionocraft.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ionocraft" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/item_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/item_collector" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/item_detector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/item_detector" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/jewelcrafting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/jewelcrafting_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/large_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/large_cake" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/lead_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/lead_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/lead_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/lead_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/lead_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/lead_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/lead_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/levitation_powder_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/levitation_powder_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/lime_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/lime_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/load_monitor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/load_monitor_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/magnet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/magnet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/magnet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/magnet_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/magnet_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/magnet_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/magnetic_chute.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/magnetic_chute" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/magnetoelectric_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/magnetoelectric_core" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/melt_gem_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "neoforge:item/bucket_drip", 3 | "fluid": "anvilcraft:melt_gem", 4 | "loader": "neoforge:fluid_container" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/menger_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/menger_sponge" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/mineral_fountain.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/mineral_fountain" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/mob_amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/mob_amber_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/multiphase_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/multiphase_matter_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/negative_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/negative_matter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/negative_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/negative_matter_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/nesting_shulker_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/nesting_shulker_box" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/nether_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/nether_dust" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/neutronium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/neutronium_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/oil_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "neoforge:item/bucket_drip", 3 | "fluid": "anvilcraft:oil", 4 | "loader": "neoforge:fluid_container" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/over_nesting_shulker_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/over_nesting_shulker_box" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/oxidized_copper_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/oxidized_copper_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/piezoelectric_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/piezoelectric_crystal" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/polished_heavy_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/polished_heavy_iron_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/polished_heavy_iron_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/polished_heavy_iron_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/polished_heavy_iron_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/polished_heavy_iron_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/power_converter_big.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/power_converter_big" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/power_converter_middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/power_converter_middle" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/power_converter_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/power_converter_small" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/prismarine_blade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/prismarine_blade" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/pulse_generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/pulse_generator" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/quartz_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/quartz_sand" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_lead" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_lead_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_lead_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_silver" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_silver_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_tin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_tin_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_titanium" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_titanium_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_tungsten" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_uranium" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_uranium_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/raw_zinc" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/raw_zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/raw_zinc_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/redhot_netherite_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/redhot_netherite_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/redhot_tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/redhot_tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_black" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_black_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_black_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_black_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_black_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_blue" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_blue_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_blue_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_blue_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_blue_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_brown.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_brown" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_brown_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_brown_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_brown_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_brown_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_cyan" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_cyan_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_cyan_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_cyan_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_cyan_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_gray" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_gray_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_gray_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_gray_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_gray_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_green" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_green_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_green_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_green_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_green_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_blue" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_blue_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_blue_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_blue_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_blue_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_gray" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_gray_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_gray_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_light_gray_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_light_gray_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_lime" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_lime_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_lime_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_lime_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_lime_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_magenta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_magenta" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_magenta_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_magenta_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_magenta_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_magenta_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_orange" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_orange_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_orange_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_orange_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_orange_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_pink.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_pink" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_pink_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_pink_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_pink_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_pink_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_purple" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_purple_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_purple_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_purple_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_purple_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_red" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_red_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_red_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_red_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_red_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_white" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_white_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_white_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_white_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_white_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_yellow" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_yellow_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_yellow_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/reinforced_concrete_yellow_stair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/reinforced_concrete_yellow_stair" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/resentful_amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/resentful_amber_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/resin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/resin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/resin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/resin_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/royal_anvil" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_grindstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/royal_grindstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_smithing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/royal_smithing_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_steel_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/royal_steel_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/royal_steel_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_steel_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/royal_steel_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/royal_steel_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "anvilcraft:item/royal_steel_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ruby.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ruby" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ruby_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/ruby_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ruby_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ruby_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ruby_laser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ruby_laser" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/ruby_prism.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/ruby_prism" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sapphire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/sapphire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sapphire_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/sapphire_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sapphire_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/sapphire_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sea_heart_shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/sea_heart_shell" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/seeds_pack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/seeds_pack" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/silence_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/silence_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/silver_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/silver_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/silver_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/silver_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/silver_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/silver_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/silver_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/silver_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sliding_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/sliding_rail" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sliding_rail_stop.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/sliding_rail_stop" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/smooth_royal_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/smooth_royal_steel_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/space_overcompressor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/space_overcompressor" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/spectral_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/spectral_anvil" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sponge_gemmule.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/sponge_gemmule" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/stamping_platform.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/stamping_platform" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/structure_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "minecraft:item/paper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/sturdy_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/sturdy_deepslate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/supercritical_nesting_shulker_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/supercritical_nesting_shulker_box" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tempering_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tempering_glass" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tesla_tower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tesla_tower_overall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/thermoelectric_converter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/thermoelectric_converter" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tin_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tin_can.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/tin_can" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tin_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/tin_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tin_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/tin_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tin_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tin_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/titanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/titanium_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/titanium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/titanium_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/titanium_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/titanium_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/titanium_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/titanium_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/topaz.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/topaz" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/topaz_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/topaz_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/topaz_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/topaz_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/transcendium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/transcendium_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/transparent_crafting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/transparent_crafting_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tungsten_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tungsten_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tungsten_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/tungsten_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tungsten_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/tungsten_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/tungsten_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/tungsten_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/uranium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/uranium_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/uranium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/uranium_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/uranium_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/uranium_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/uranium_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/uranium_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/utusan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/utusan" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/void_energy_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/void_energy_collector" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/void_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/void_matter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/void_matter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/void_matter_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/void_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/weathered_copper_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/weathered_copper_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/white_chocolate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/white_chocolate_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/white_chocolate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/white_chocolate_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/white_chocolate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/white_chocolate_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/wood_fiber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/wood_fiber" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/zinc_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/zinc_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/zinc_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/zinc_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/zinc_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "anvilcraft:item/zinc_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/anvilcraft/models/item/zinc_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/zinc_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/curios/entities/ionocraft_backpack.json: -------------------------------------------------------------------------------- 1 | { 2 | "entities": [ 3 | "minecraft:player" 4 | ], 5 | "slots": [ 6 | "ionocraft_backpack" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/curios/slots/ionocraft_backpack.json: -------------------------------------------------------------------------------- 1 | { 2 | "add_cosmetic": true, 3 | "icon": "anvilcraft:slot/empty_ionocraft_backpack_slot" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/damage_type/lost_in_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "anvilcraft.lost_in_time", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/loot_table/blocks/large_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "anvilcraft:blocks/large_cake" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:polished_andesite", 4 | "result": "minecraft:andesite" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/cinerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:andesite", 4 | "result": "anvilcraft:cinerite" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:stone", 4 | "result": "minecraft:cobblestone" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:polished_diorite", 4 | "result": "minecraft:diorite" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/end_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:end_stone", 4 | "result": "anvilcraft:end_dust" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:polished_granite", 4 | "result": "minecraft:granite" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:cobblestone", 4 | "result": "minecraft:gravel" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/nether_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:netherrack", 4 | "result": "anvilcraft:nether_dust" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/quartz_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:diorite", 4 | "result": "anvilcraft:quartz_sand" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/red_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:granite", 4 | "result": "minecraft:red_sand" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:gravel", 4 | "result": "minecraft:sand" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/block_crush/soul_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:block_crush", 3 | "input": "minecraft:soul_soil", 4 | "result": "minecraft:soul_sand" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/recipe/canned_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "anvilcraft:canning_food", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/block_devourer_chain_devouring.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#c:sands", 4 | "#c:gravels" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/crafting_matrix_element.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:space_overcompressor", 4 | "#c:player_workstations/crafting_tables" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/end_portal_unable_change.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:dragon_egg" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/incorrect_for_amethyst_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:incorrect_for_stone_tool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/incorrect_for_ember_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/incorrect_for_frost_metal_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:incorrect_for_netherite_tool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/incorrect_for_multiphase_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#anvilcraft:incorrect_for_ember_tool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/laser_can_pass_though.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#c:glass_blocks", 4 | "#c:glass_panes", 5 | "#minecraft:replaceable" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/non_magnetic.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:spectral_anvil" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/redstone_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:redstone_wall_torch", 4 | "minecraft:redstone_torch" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/block/spectral_can_through.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#c:glass_blocks", 4 | "#c:glass_panes", 5 | "#minecraft:leaves" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/enchantment/frost_passed.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mending" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/enchantment/merciless_damage_passed.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sweeping_edge" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/capacitor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:capacitor", 4 | "anvilcraft:capacitor_empty" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/ember_metal_axe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_axe", 4 | "minecraft:netherite_axe" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/ember_metal_hoe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_hoe", 4 | "minecraft:netherite_hoe" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/ember_metal_pickaxe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_pickaxe", 4 | "minecraft:netherite_pickaxe" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/ember_metal_shovel_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_shovel", 4 | "minecraft:netherite_shovel" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/ember_metal_sword_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_sword", 4 | "minecraft:netherite_sword" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/frost_metal_axe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_axe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/frost_metal_hoe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_hoe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/frost_metal_pickaxe_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_pickaxe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/frost_metal_shovel_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_shovel" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/frost_metal_sword_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:royal_steel_sword" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/gems.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:emerald", 4 | "anvilcraft:ruby", 5 | "anvilcraft:sapphire", 6 | "anvilcraft:topaz" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/tools/heavy_halberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:frost_metal_heavy_halberd", 4 | "anvilcraft:ember_metal_heavy_halberd" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/uncharged_neutronium_ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:neutronium_ingot", 4 | "anvilcraft:stable_neutronium_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/anvilcraft/tags/item/void_resistant.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:void_stone", 4 | "anvilcraft:void_matter_block", 5 | "anvilcraft:void_matter" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/glass_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tempering_glass", 4 | "anvilcraft:ember_glass" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/earth_core_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:earth_core_shard_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_lead_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_silver_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_tin_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_titanium_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_tungsten_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_uranium_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/void_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:void_stone" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_zinc_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/player_workstations/crafting_tables.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:transparent_crafting_table" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/amber.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:amber_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:brass_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:bronze_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/earth_core_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:earth_core_shard_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:lead_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/magnet.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:magnet_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/multiphase_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:multiphase_matter_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_lead_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_silver_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_titanium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tungsten_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_uranium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/raw_zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_zinc_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/resin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:resin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/ruby.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:ruby_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/sapphire.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:sapphire_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:silver_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:titanium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/topaz.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:topaz_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tungsten_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:uranium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/void_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:void_matter_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:zinc_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/villager_job_sites.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:jewelcrafting_table" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/enchantment/increase_block_drops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "anvilcraft:harvest", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:oil", 4 | "anvilcraft:flowing_oil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/berries.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sweet_berries", 4 | "minecraft:glow_berries" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:oil_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:dough" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dough/wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:dough" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:flour" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/flour/wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:flour" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:topaz", 4 | "anvilcraft:ruby", 5 | "anvilcraft:sapphire", 6 | "anvilcraft:amber" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/amber.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:amber" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/ruby.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:ruby" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/sapphire.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:sapphire" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/topaz.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:topaz" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/glass_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tempering_glass", 4 | "anvilcraft:ember_glass" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:brass_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:bronze_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:lead_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/magnet.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:magnet_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:silver_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tin_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:titanium_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tungsten_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:uranium_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:zinc_ingot" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:brass_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:bronze_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:copper_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:lead_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:silver_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tin_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:titanium_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tungsten_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:uranium_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:zinc_nugget" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/earth_core_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:earth_core_shard_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_lead_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_silver_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_tin_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_titanium_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_tungsten_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_uranium_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/void_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:void_stone" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:deepslate_zinc_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:brass_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:bronze_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:light_weighted_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:heavy_weighted_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:lead_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:silver_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tin_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:titanium_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tungsten_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:uranium_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/plates/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:zinc_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_lead" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_silver" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_titanium" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tungsten" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_uranium" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_zinc" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/amber.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:amber_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:brass_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:bronze_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/earth_core_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:earth_core_shard_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:lead_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/magnet.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:magnet_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/multiphase_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:multiphase_matter_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_lead_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_silver_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_titanium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_tungsten_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_uranium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/raw_zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:raw_zinc_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/resin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:resin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/ruby.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:ruby_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/sapphire.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:sapphire_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:silver_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tin_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:titanium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/topaz.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:topaz_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/tungsten.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:tungsten_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:uranium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/void_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:void_matter_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:zinc_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/wrench.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:anvil_hammer", 4 | "anvilcraft:royal_anvil_hammer", 5 | "anvilcraft:ember_anvil_hammer" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/vegetables.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:potato", 4 | "minecraft:carrot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/villager_job_sites.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:jewelcrafting_table" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:spectral_anvil", 4 | "anvilcraft:royal_anvil", 5 | "anvilcraft:ember_anvil" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:heavy_iron_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/mineable/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:crab_trap" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/mineable/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:menger_sponge" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:heavy_iron_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "anvilcraft:lost_in_time", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_resistance.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "anvilcraft:lost_in_time", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/no_knockback.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "anvilcraft:lost_in_time", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:spectral_anvil", 4 | "anvilcraft:royal_anvil", 5 | "anvilcraft:ember_anvil" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/bookshelf_books.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:guide_book" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:heavy_iron_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/enchantable/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:frost_metal_heavy_halberd", 4 | "anvilcraft:ember_metal_heavy_halberd" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/enchantable/trident.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:frost_metal_heavy_halberd", 4 | "anvilcraft:ember_metal_heavy_halberd" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:heavy_iron_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/neoforge/data_maps/item/furnace_fuels.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": { 3 | "anvilcraft:wood_fiber": { 4 | "burn_time": 300 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/neoforge/tags/block/needs_netherite_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "anvilcraft:transcendium_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/neoforge/tags/damage_type/is_magic.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "anvilcraft:lost_in_time", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/java/dev/dubhe/anvilcraft/api/block/INegativeShapeBlock.java: -------------------------------------------------------------------------------- 1 | package dev.dubhe.anvilcraft.api.block; 2 | 3 | public interface INegativeShapeBlock { 4 | Class getBlockType(); 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/dev/dubhe/anvilcraft/api/hammer/IHammerRemovable.java: -------------------------------------------------------------------------------- 1 | package dev.dubhe.anvilcraft.api.hammer; 2 | 3 | /** 4 | * 可被锤子移除的 5 | */ 6 | public interface IHammerRemovable { 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/dev/dubhe/anvilcraft/network/package-info.java: -------------------------------------------------------------------------------- 1 | @MethodsReturnNonnullByDefault 2 | package dev.dubhe.anvilcraft.network; 3 | 4 | import net.minecraft.MethodsReturnNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/dev/dubhe/anvilcraft/util/Callback.java: -------------------------------------------------------------------------------- 1 | package dev.dubhe.anvilcraft.util; 2 | 3 | public interface Callback { 4 | void onValueChange(T newValue); 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/active_silencer.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/active_silencer" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/amber_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/charge_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/charge_collector_base" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/corrupted_beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/corrupted_beacon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/creative_generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/creative_generator_base" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/creative_generator_cube.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/creative_generator_cube" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/crushing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/crushing_table" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/ember_smithing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/ember_smithing_table" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/heat_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heat_collector_base" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/heavy_iron_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heavy_iron_column" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/heavy_iron_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heavy_iron_plate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/heliostats.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heliostats_base" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/heliostats_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/heliostats_head" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/magnetoelectric_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/magnetoelectric_core" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/melt_gem_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/melt_gem_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/menger_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/menger_sponge" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/mob_amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/mob_amber_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/nesting_shulker_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/nesting_shulker_box" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/obsidian_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/obsidian_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/over_nesting_shulker_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/over_nesting_shulker_box" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/piezoelectric_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/piezoelectric_crystal" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/resentful_amber_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/resentful_amber_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/resin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/resin_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/royal_smithing_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/royal_smithing_table" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/space_overcompressor.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/space_overcompressor" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/stamping_platform.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/stamping_platform" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/thermoelectric_converter.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/thermoelectric_converter" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/blockstates/void_energy_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "anvilcraft:block/void_energy_collector_base" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/deflection_ring_part.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "anvilcraft:block/deflection_ring_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/giant_anvil_part.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "anvilcraft:block/giant_anvil_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/laser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/laser" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/lunar_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lunar_rock" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/lunar_rock_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lunar_rock_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/lunar_rock_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lunar_rock_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/lunar_rock_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lunar_rock_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/block/lunar_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "anvilcraft:block/lunar_soil" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/creative_generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/creative_generator" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/heavy_iron_beam.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heavy_iron_beam_x" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/heliostats.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/heliostats" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/overseer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/overseer_overall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/remote_transmission_pole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/remote_transmission_pole_overall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/models/item/transmission_pole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "anvilcraft:block/transmission_pole_overall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/patchouli_books/guide/zh_cn/categories/power_system.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "电力系统", 3 | "description": "更强的自动化。", 4 | "icon": "anvilcraft:magnetoelectric_core" 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/black_hole.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/black_hole_outline.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/black_hole_outline_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/ember_metal_block_outline.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true, 5 | "frames": [0, 1, 2, 1] 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/heater_lit.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/heater_top_lit.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/melt_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/melt_gem_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/oil.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/oil_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/space_overcompressor_center.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/transcendium_block_outline.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true, 5 | "frames": [0, 1, 2, 1] 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/white_hole.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "frames": [7, 6, 5, 4, 3, 2, 1, 0] 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/white_hole_outline.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "frames": [5, 4, 3, 2, 1, 0] 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/block/white_hole_outline_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "frames": [5, 4, 3, 2, 1, 0] 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/entity/villager/profession/jeweler.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/entity/zombie_villager/profession/jeweler.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/item/charged_neutronium_ingot.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/item/supercapacitor_electric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/anvilcraft/textures/item/time_anvilon.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/item/ionocraft_backpack.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "anvilcraft:ionocraft_backpack" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/item/necklace.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#anvilcraft:amulet", 5 | { "id": "anvilcraft:cogwheel_amulet", "required": false } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/kubejs.plugins.txt: -------------------------------------------------------------------------------- 1 | dev.dubhe.anvilcraft.integration.kubejs.AnvilCraftKubeJsPlugin -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "AnvilCraft resources", 4 | "pack_format": 15, 5 | "forge:server_data_pack_format": 12 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anvil-Dev/AnvilCraft/2c37054b255875cc7585d4ed5700bc46e38f9566/src/main/resources/pack.png --------------------------------------------------------------------------------