Skip to content

Instantly share code, notes, and snippets.

@EvilSupahFly
Last active March 16, 2025 19:29
Show Gist options
  • Select an option

  • Save EvilSupahFly/01936a78e7ef6c67c2cb12896acd1879 to your computer and use it in GitHub Desktop.

Select an option

Save EvilSupahFly/01936a78e7ef6c67c2cb12896acd1879 to your computer and use it in GitHub Desktop.
minecraft_resource_pack Directory tree
minecraft_resource_pack-1.4.6
├── dist
│ ├── minecraft_resource_pack-1.4.6-py3-none-any.whl
│ └── minecraft_resource_pack-1.4.6.tar.gz
├── .gitignore
├── MANIFEST.in
├── .vscode
│ └── settings.json
├── minecraft_resource_pack.egg-info
│ ├── entry_points.txt
│ ├── top_level.txt
│ ├── SOURCES.txt
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── not-zip-safe
│ └── requires.txt
├── minecraft_model_reader
│ ├── _version.py
│ ├── api
│ │ ├── image
│ │ │ ├── missing_no.png
│ │ │ ├── __init__.py
│ │ │ └── missing_pack_java.png
│ │ ├── amulet
│ │ │ ├── block.py
│ │ │ └── __init__.py
│ │ ├── resource_pack
│ │ │ ├── java
│ │ │ │ ├── java_vanilla_fix
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── minecraft
│ │ │ │ │ │ ├── blockstates
│ │ │ │ │ │ │ ├── blue_banner.json
│ │ │ │ │ │ │ ├── white_wall_banner.json
│ │ │ │ │ │ │ ├── light_gray_bed.json
│ │ │ │ │ │ │ ├── purple_wall_banner.json
│ │ │ │ │ │ │ ├── birch_wall_sign.json
│ │ │ │ │ │ │ ├── brown_wall_banner.json
│ │ │ │ │ │ │ ├── skeleton_skull.json
│ │ │ │ │ │ │ ├── black_banner.json
│ │ │ │ │ │ │ ├── light_gray_banner.json
│ │ │ │ │ │ │ ├── pink_banner.json
│ │ │ │ │ │ │ ├── zombie_wall_head.json
│ │ │ │ │ │ │ ├── jungle_wall_sign.json
│ │ │ │ │ │ │ ├── dragon_head.json
│ │ │ │ │ │ │ ├── jungle_sign.json
│ │ │ │ │ │ │ ├── cyan_bed.json
│ │ │ │ │ │ │ ├── green_banner.json
│ │ │ │ │ │ │ ├── skeleton_wall_skull.json
│ │ │ │ │ │ │ ├── black_bed.json
│ │ │ │ │ │ │ ├── green_wall_banner.json
│ │ │ │ │ │ │ ├── light_blue_banner.json
│ │ │ │ │ │ │ ├── wither_skeleton_skull.json
│ │ │ │ │ │ │ ├── lime_banner.json
│ │ │ │ │ │ │ ├── mangrove_wall_sign.json
│ │ │ │ │ │ │ ├── blue_bed.json
│ │ │ │ │ │ │ ├── cyan_wall_banner.json
│ │ │ │ │ │ │ ├── chest.json
│ │ │ │ │ │ │ ├── cyan_banner.json
│ │ │ │ │ │ │ ├── light.json
│ │ │ │ │ │ │ ├── orange_banner.json
│ │ │ │ │ │ │ ├── white_banner.json
│ │ │ │ │ │ │ ├── creeper_head.json
│ │ │ │ │ │ │ ├── yellow_banner.json
│ │ │ │ │ │ │ ├── black_wall_banner.json
│ │ │ │ │ │ │ ├── lime_bed.json
│ │ │ │ │ │ │ ├── creeper_wall_head.json
│ │ │ │ │ │ │ ├── structure_void.json
│ │ │ │ │ │ │ ├── wither_skeleton_wall_skull.json
│ │ │ │ │ │ │ ├── purple_bed.json
│ │ │ │ │ │ │ ├── spruce_wall_sign.json
│ │ │ │ │ │ │ ├── red_wall_banner.json
│ │ │ │ │ │ │ ├── ender_chest.json
│ │ │ │ │ │ │ ├── oak_wall_sign.json
│ │ │ │ │ │ │ ├── white_bed.json
│ │ │ │ │ │ │ ├── trapped_chest.json
│ │ │ │ │ │ │ ├── pink_wall_banner.json
│ │ │ │ │ │ │ ├── red_bed.json
│ │ │ │ │ │ │ ├── dark_oak_wall_sign.json
│ │ │ │ │ │ │ ├── red_banner.json
│ │ │ │ │ │ │ ├── crimson_sign.json
│ │ │ │ │ │ │ ├── grass.json
│ │ │ │ │ │ │ ├── birch_sign.json
│ │ │ │ │ │ │ ├── light_gray_wall_banner.json
│ │ │ │ │ │ │ ├── purple_banner.json
│ │ │ │ │ │ │ ├── player_wall_head.json
│ │ │ │ │ │ │ ├── spruce_sign.json
│ │ │ │ │ │ │ ├── warped_sign.json
│ │ │ │ │ │ │ ├── crimson_wall_sign.json
│ │ │ │ │ │ │ ├── warped_wall_sign.json
│ │ │ │ │ │ │ ├── dark_oak_sign.json
│ │ │ │ │ │ │ ├── yellow_wall_banner.json
│ │ │ │ │ │ │ ├── blue_wall_banner.json
│ │ │ │ │ │ │ ├── gray_wall_banner.json
│ │ │ │ │ │ │ ├── green_bed.json
│ │ │ │ │ │ │ ├── oak_sign.json
│ │ │ │ │ │ │ ├── magenta_bed.json
│ │ │ │ │ │ │ ├── orange_bed.json
│ │ │ │ │ │ │ ├── gray_bed.json
│ │ │ │ │ │ │ ├── acacia_sign.json
│ │ │ │ │ │ │ ├── magenta_wall_banner.json
│ │ │ │ │ │ │ ├── dragon_wall_head.json
│ │ │ │ │ │ │ ├── yellow_bed.json
│ │ │ │ │ │ │ ├── lime_wall_banner.json
│ │ │ │ │ │ │ ├── brown_banner.json
│ │ │ │ │ │ │ ├── player_head.json
│ │ │ │ │ │ │ ├── light_blue_wall_banner.json
│ │ │ │ │ │ │ ├── pink_bed.json
│ │ │ │ │ │ │ ├── magenta_banner.json
│ │ │ │ │ │ │ ├── orange_wall_banner.json
│ │ │ │ │ │ │ ├── acacia_wall_sign.json
│ │ │ │ │ │ │ ├── mangrove_sign.json
│ │ │ │ │ │ │ ├── zombie_head.json
│ │ │ │ │ │ │ ├── gray_banner.json
│ │ │ │ │ │ │ ├── light_blue_bed.json
│ │ │ │ │ │ │ └── brown_bed.json
│ │ │ │ │ │ ├── textures
│ │ │ │ │ │ │ └── block
│ │ │ │ │ │ │ ├── water_still.png
│ │ │ │ │ │ │ ├── lava.png
│ │ │ │ │ │ │ ├── water.png
│ │ │ │ │ │ │ ├── lava_flow.png
│ │ │ │ │ │ │ ├── structure_void.png
│ │ │ │ │ │ │ ├── grass.png
│ │ │ │ │ │ │ ├── barrier.png
│ │ │ │ │ │ │ ├── lava_still.png
│ │ │ │ │ │ │ ├── end_portal.png
│ │ │ │ │ │ │ ├── banner
│ │ │ │ │ │ │ │ ├── banner_blue.png
│ │ │ │ │ │ │ │ ├── banner_gray.png
│ │ │ │ │ │ │ │ ├── banner_red.png
│ │ │ │ │ │ │ │ ├── banner_pink.png
│ │ │ │ │ │ │ │ ├── banner_orange.png
│ │ │ │ │ │ │ │ ├── banner_purple.png
│ │ │ │ │ │ │ │ ├── banner_cyan.png
│ │ │ │ │ │ │ │ ├── banner_brown.png
│ │ │ │ │ │ │ │ ├── banner_light_blue.png
│ │ │ │ │ │ │ │ ├── banner_magenta.png
│ │ │ │ │ │ │ │ ├── banner_lime.png
│ │ │ │ │ │ │ │ ├── banner_green.png
│ │ │ │ │ │ │ │ ├── banner_light_gray.png
│ │ │ │ │ │ │ │ ├── banner_white.png
│ │ │ │ │ │ │ │ ├── banner_black.png
│ │ │ │ │ │ │ │ └── banner_yellow.png
│ │ │ │ │ │ │ └── water_flow.png
│ │ │ │ │ │ └── models
│ │ │ │ │ │ └── block
│ │ │ │ │ │ ├── brown_shulker_box.json
│ │ │ │ │ │ ├── green_shulker_box.json
│ │ │ │ │ │ ├── red_shulker_box.json
│ │ │ │ │ │ ├── sign
│ │ │ │ │ │ │ ├── oak_1.json
│ │ │ │ │ │ │ ├── mangrove_1.json
│ │ │ │ │ │ │ ├── sign_0.json
│ │ │ │ │ │ │ ├── jungle_0.json
│ │ │ │ │ │ │ ├── acacia_2.json
│ │ │ │ │ │ │ ├── birch_1.json
│ │ │ │ │ │ │ ├── crimson_3.json
│ │ │ │ │ │ │ ├── crimson_2.json
│ │ │ │ │ │ │ ├── acacia_0.json
│ │ │ │ │ │ │ ├── sign_1.json
│ │ │ │ │ │ │ ├── mangrove_0.json
│ │ │ │ │ │ │ ├── oak_3.json
│ │ │ │ │ │ │ ├── spruce_3.json
│ │ │ │ │ │ │ ├── mangrove_2.json
│ │ │ │ │ │ │ ├── jungle_1.json
│ │ │ │ │ │ │ ├── sign_3.json
│ │ │ │ │ │ │ ├── birch_2.json
│ │ │ │ │ │ │ ├── warped_2.json
│ │ │ │ │ │ │ ├── oak_0.json
│ │ │ │ │ │ │ ├── dark_oak_2.json
│ │ │ │ │ │ │ ├── spruce_1.json
│ │ │ │ │ │ │ ├── birch_3.json
│ │ │ │ │ │ │ ├── jungle_2.json
│ │ │ │ │ │ │ ├── crimson_0.json
│ │ │ │ │ │ │ ├── spruce_0.json
│ │ │ │ │ │ │ ├── warped_3.json
│ │ │ │ │ │ │ ├── acacia_1.json
│ │ │ │ │ │ │ ├── jungle_3.json
│ │ │ │ │ │ │ ├── birch_0.json
│ │ │ │ │ │ │ ├── warped_0.json
│ │ │ │ │ │ │ ├── crimson_1.json
│ │ │ │ │ │ │ ├── dark_oak_1.json
│ │ │ │ │ │ │ ├── warped_1.json
│ │ │ │ │ │ │ ├── sign_2.json
│ │ │ │ │ │ │ ├── dark_oak_0.json
│ │ │ │ │ │ │ ├── spruce_2.json
│ │ │ │ │ │ │ ├── dark_oak_3.json
│ │ │ │ │ │ │ ├── acacia_3.json
│ │ │ │ │ │ │ ├── oak_2.json
│ │ │ │ │ │ │ └── mangrove_3.json
│ │ │ │ │ │ ├── bell_floor.json
│ │ │ │ │ │ ├── cyan_shulker_box.json
│ │ │ │ │ │ ├── purple_shulker_box.json
│ │ │ │ │ │ ├── white_shulker_box.json
│ │ │ │ │ │ ├── wall_banner
│ │ │ │ │ │ │ ├── black.json
│ │ │ │ │ │ │ ├── light_gray.json
│ │ │ │ │ │ │ ├── blue.json
│ │ │ │ │ │ │ ├── light_blue.json
│ │ │ │ │ │ │ ├── yellow.json
│ │ │ │ │ │ │ ├── gray.json
│ │ │ │ │ │ │ ├── green.json
│ │ │ │ │ │ │ ├── red.json
│ │ │ │ │ │ │ ├── orange.json
│ │ │ │ │ │ │ ├── purple.json
│ │ │ │ │ │ │ ├── magenta.json
│ │ │ │ │ │ │ ├── white.json
│ │ │ │ │ │ │ ├── lime.json
│ │ │ │ │ │ │ ├── pink.json
│ │ │ │ │ │ │ ├── cyan.json
│ │ │ │ │ │ │ └── brown.json
│ │ │ │ │ │ ├── chest_right_base.json
│ │ │ │ │ │ ├── trapped_chest_left.json
│ │ │ │ │ │ ├── bell_ceiling.json
│ │ │ │ │ │ ├── blue_shulker_box.json
│ │ │ │ │ │ ├── chest_right.json
│ │ │ │ │ │ ├── chest.json
│ │ │ │ │ │ ├── gray_shulker_box.json
│ │ │ │ │ │ ├── wall_banner.json
│ │ │ │ │ │ ├── structure_void.json
│ │ │ │ │ │ ├── conduit.json
│ │ │ │ │ │ ├── orange_shulker_box.json
│ │ │ │ │ │ ├── yellow_shulker_box.json
│ │ │ │ │ │ ├── shulker_box.json
│ │ │ │ │ │ ├── light_blue_shulker_box.json
│ │ │ │ │ │ ├── bell_between_walls.json
│ │ │ │ │ │ ├── ender_chest.json
│ │ │ │ │ │ ├── bell_wall.json
│ │ │ │ │ │ ├── moving_piston.json
│ │ │ │ │ │ ├── trapped_chest.json
│ │ │ │ │ │ ├── lava.json
│ │ │ │ │ │ ├── light_gray_shulker_box.json
│ │ │ │ │ │ ├── bed_head.json
│ │ │ │ │ │ ├── end_portal.json
│ │ │ │ │ │ ├── grass.json
│ │ │ │ │ │ ├── banner
│ │ │ │ │ │ │ ├── lime_0.json
│ │ │ │ │ │ │ ├── magenta_0.json
│ │ │ │ │ │ │ ├── brown_3.json
│ │ │ │ │ │ │ ├── magenta_3.json
│ │ │ │ │ │ │ ├── cyan_1.json
│ │ │ │ │ │ │ ├── black_1.json
│ │ │ │ │ │ │ ├── brown_1.json
│ │ │ │ │ │ │ ├── light_gray_0.json
│ │ │ │ │ │ │ ├── red_3.json
│ │ │ │ │ │ │ ├── banner_3.json
│ │ │ │ │ │ │ ├── green_3.json
│ │ │ │ │ │ │ ├── black_2.json
│ │ │ │ │ │ │ ├── banner_2.json
│ │ │ │ │ │ │ ├── blue_3.json
│ │ │ │ │ │ │ ├── blue_0.json
│ │ │ │ │ │ │ ├── purple_3.json
│ │ │ │ │ │ │ ├── pink_0.json
│ │ │ │ │ │ │ ├── light_blue_0.json
│ │ │ │ │ │ │ ├── white_0.json
│ │ │ │ │ │ │ ├── orange_0.json
│ │ │ │ │ │ │ ├── lime_1.json
│ │ │ │ │ │ │ ├── yellow_0.json
│ │ │ │ │ │ │ ├── magenta_2.json
│ │ │ │ │ │ │ ├── pink_3.json
│ │ │ │ │ │ │ ├── brown_2.json
│ │ │ │ │ │ │ ├── gray_0.json
│ │ │ │ │ │ │ ├── gray_2.json
│ │ │ │ │ │ │ ├── purple_0.json
│ │ │ │ │ │ │ ├── cyan_2.json
│ │ │ │ │ │ │ ├── gray_3.json
│ │ │ │ │ │ │ ├── red_1.json
│ │ │ │ │ │ │ ├── orange_1.json
│ │ │ │ │ │ │ ├── green_2.json
│ │ │ │ │ │ │ ├── purple_1.json
│ │ │ │ │ │ │ ├── blue_2.json
│ │ │ │ │ │ │ ├── green_1.json
│ │ │ │ │ │ │ ├── light_blue_3.json
│ │ │ │ │ │ │ ├── pink_1.json
│ │ │ │ │ │ │ ├── light_gray_1.json
│ │ │ │ │ │ │ ├── cyan_3.json
│ │ │ │ │ │ │ ├── purple_2.json
│ │ │ │ │ │ │ ├── red_0.json
│ │ │ │ │ │ │ ├── pink_2.json
│ │ │ │ │ │ │ ├── white_3.json
│ │ │ │ │ │ │ ├── blue_1.json
│ │ │ │ │ │ │ ├── red_2.json
│ │ │ │ │ │ │ ├── lime_2.json
│ │ │ │ │ │ │ ├── light_gray_3.json
│ │ │ │ │ │ │ ├── black_3.json
│ │ │ │ │ │ │ ├── black_0.json
│ │ │ │ │ │ │ ├── light_gray_2.json
│ │ │ │ │ │ │ ├── yellow_3.json
│ │ │ │ │ │ │ ├── lime_3.json
│ │ │ │ │ │ │ ├── cyan_0.json
│ │ │ │ │ │ │ ├── light_blue_2.json
│ │ │ │ │ │ │ ├── white_2.json
│ │ │ │ │ │ │ ├── banner_1.json
│ │ │ │ │ │ │ ├── white_1.json
│ │ │ │ │ │ │ ├── magenta_1.json
│ │ │ │ │ │ │ ├── yellow_1.json
│ │ │ │ │ │ │ ├── yellow_2.json
│ │ │ │ │ │ │ ├── brown_0.json
│ │ │ │ │ │ │ ├── green_0.json
│ │ │ │ │ │ │ ├── banner_0.json
│ │ │ │ │ │ │ ├── orange_2.json
│ │ │ │ │ │ │ ├── light_blue_1.json
│ │ │ │ │ │ │ ├── gray_1.json
│ │ │ │ │ │ │ └── orange_3.json
│ │ │ │ │ │ ├── wall_sign
│ │ │ │ │ │ │ ├── dark_oak.json
│ │ │ │ │ │ │ ├── warped.json
│ │ │ │ │ │ │ ├── oak.json
│ │ │ │ │ │ │ ├── birch.json
│ │ │ │ │ │ │ ├── spruce.json
│ │ │ │ │ │ │ ├── wall_sign.json
│ │ │ │ │ │ │ ├── crimson.json
│ │ │ │ │ │ │ ├── acacia.json
│ │ │ │ │ │ │ ├── jungle.json
│ │ │ │ │ │ │ └── mangrove.json
│ │ │ │ │ │ ├── trapped_chest_right.json
│ │ │ │ │ │ ├── head
│ │ │ │ │ │ │ ├── floor
│ │ │ │ │ │ │ │ ├── wither_skeleton_2.json
│ │ │ │ │ │ │ │ ├── player_2.json
│ │ │ │ │ │ │ │ ├── dragon_0.json
│ │ │ │ │ │ │ │ ├── skeleton_3.json
│ │ │ │ │ │ │ │ ├── skeleton_2.json
│ │ │ │ │ │ │ │ ├── dragon_3.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_3.json
│ │ │ │ │ │ │ │ ├── creeper_3.json
│ │ │ │ │ │ │ │ ├── head2_2.json
│ │ │ │ │ │ │ │ ├── skeleton_1.json
│ │ │ │ │ │ │ │ ├── creeper_1.json
│ │ │ │ │ │ │ │ ├── creeper_2.json
│ │ │ │ │ │ │ │ ├── dragon_1.json
│ │ │ │ │ │ │ │ ├── skeleton_0.json
│ │ │ │ │ │ │ │ ├── head_0.json
│ │ │ │ │ │ │ │ ├── zombie_0.json
│ │ │ │ │ │ │ │ ├── head_3.json
│ │ │ │ │ │ │ │ ├── zombie_2.json
│ │ │ │ │ │ │ │ ├── player_0.json
│ │ │ │ │ │ │ │ ├── head2_0.json
│ │ │ │ │ │ │ │ ├── player_3.json
│ │ │ │ │ │ │ │ ├── head_1.json
│ │ │ │ │ │ │ │ ├── zombie_1.json
│ │ │ │ │ │ │ │ ├── zombie_3.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_0.json
│ │ │ │ │ │ │ │ ├── head_2.json
│ │ │ │ │ │ │ │ ├── creeper_0.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_1.json
│ │ │ │ │ │ │ │ ├── player_1.json
│ │ │ │ │ │ │ │ ├── head2_1.json
│ │ │ │ │ │ │ │ ├── dragon_2.json
│ │ │ │ │ │ │ │ └── head2_3.json
│ │ │ │ │ │ │ └── wall
│ │ │ │ │ │ │ ├── dragon.json
│ │ │ │ │ │ │ ├── head2.json
│ │ │ │ │ │ │ ├── wither_skeleton.json
│ │ │ │ │ │ │ ├── zombie.json
│ │ │ │ │ │ │ ├── skeleton.json
│ │ │ │ │ │ │ ├── head.json
│ │ │ │ │ │ │ ├── creeper.json
│ │ │ │ │ │ │ └── player.json
│ │ │ │ │ │ ├── chest_base.json
│ │ │ │ │ │ ├── chest_left_base.json
│ │ │ │ │ │ ├── barrier.json
│ │ │ │ │ │ ├── black_shulker_box.json
│ │ │ │ │ │ ├── bed
│ │ │ │ │ │ │ ├── red_head.json
│ │ │ │ │ │ │ ├── green_foot.json
│ │ │ │ │ │ │ ├── orange_head.json
│ │ │ │ │ │ │ ├── cyan_foot.json
│ │ │ │ │ │ │ ├── orange_foot.json
│ │ │ │ │ │ │ ├── lime_head.json
│ │ │ │ │ │ │ ├── light_blue_foot.json
│ │ │ │ │ │ │ ├── black_foot.json
│ │ │ │ │ │ │ ├── light_blue_head.json
│ │ │ │ │ │ │ ├── light_gray_head.json
│ │ │ │ │ │ │ ├── magenta_head.json
│ │ │ │ │ │ │ ├── gray_foot.json
│ │ │ │ │ │ │ ├── pink_foot.json
│ │ │ │ │ │ │ ├── yellow_foot.json
│ │ │ │ │ │ │ ├── purple_foot.json
│ │ │ │ │ │ │ ├── yellow_head.json
│ │ │ │ │ │ │ ├── lime_foot.json
│ │ │ │ │ │ │ ├── pink_head.json
│ │ │ │ │ │ │ ├── green_head.json
│ │ │ │ │ │ │ ├── gray_head.json
│ │ │ │ │ │ │ ├── white_head.json
│ │ │ │ │ │ │ ├── brown_foot.json
│ │ │ │ │ │ │ ├── white_foot.json
│ │ │ │ │ │ │ ├── blue_head.json
│ │ │ │ │ │ │ ├── magenta_foot.json
│ │ │ │ │ │ │ ├── purple_head.json
│ │ │ │ │ │ │ ├── light_gray_foot.json
│ │ │ │ │ │ │ ├── cyan_head.json
│ │ │ │ │ │ │ ├── brown_head.json
│ │ │ │ │ │ │ ├── red_foot.json
│ │ │ │ │ │ │ ├── blue_foot.json
│ │ │ │ │ │ │ └── black_head.json
│ │ │ │ │ │ ├── lime_shulker_box.json
│ │ │ │ │ │ ├── light
│ │ │ │ │ │ │ ├── level_0.json
│ │ │ │ │ │ │ ├── level_3.json
│ │ │ │ │ │ │ ├── level_14.json
│ │ │ │ │ │ │ ├── level_12.json
│ │ │ │ │ │ │ ├── level_5.json
│ │ │ │ │ │ │ ├── level_9.json
│ │ │ │ │ │ │ ├── level_8.json
│ │ │ │ │ │ │ ├── level_4.json
│ │ │ │ │ │ │ ├── level_2.json
│ │ │ │ │ │ │ ├── level_7.json
│ │ │ │ │ │ │ ├── level_13.json
│ │ │ │ │ │ │ ├── level_11.json
│ │ │ │ │ │ │ ├── level_6.json
│ │ │ │ │ │ │ ├── level_10.json
│ │ │ │ │ │ │ ├── level_15.json
│ │ │ │ │ │ │ └── level_1.json
│ │ │ │ │ │ ├── pink_shulker_box.json
│ │ │ │ │ │ ├── bed_foot.json
│ │ │ │ │ │ ├── water.json
│ │ │ │ │ │ ├── magenta_shulker_box.json
│ │ │ │ │ │ └── chest_left.json
│ │ │ │ │ ├── pack.png
│ │ │ │ │ ├── pack.mcmeta
│ │ │ │ │ └── water_still.png.mcmeta
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ ├── download_resources.py
│ │ │ │ └── __init__.py
│ │ │ ├── base
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ └── __init__.py
│ │ │ ├── bedrock
│ │ │ │ ├── sort_blockshapes.py
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ ├── download_resources.py
│ │ │ │ ├── bedrock_vanilla_fix
│ │ │ │ │ ├── textures
│ │ │ │ │ │ ├── blocks
│ │ │ │ │ │ │ ├── water.png
│ │ │ │ │ │ │ ├── grass_carried.png
│ │ │ │ │ │ │ └── grass_side_carried.png
│ │ │ │ │ │ └── terrain_texture.json
│ │ │ │ │ ├── pack_icon.png
│ │ │ │ │ ├── blocks.json
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── block_palette.json
│ │ │ │ ├── __init__.py
│ │ │ │ ├── blockshapes.json
│ │ │ │ └── blockshapes
│ │ │ │ ├── pumpkin_lit.py
│ │ │ │ ├── red_dust.py
│ │ │ │ ├── partial_block.py
│ │ │ │ ├── slab.py
│ │ │ │ ├── pumpkin.py
│ │ │ │ ├── door.py
│ │ │ │ ├── bubble_column.py
│ │ │ │ ├── air.py
│ │ │ │ ├── door6.py
│ │ │ │ ├── door2.py
│ │ │ │ ├── fence.py
│ │ │ │ ├── furnace_lit.py
│ │ │ │ ├── cake.py
│ │ │ │ ├── piston_arm.py
│ │ │ │ ├── furnace.py
│ │ │ │ ├── green_cube.py
│ │ │ │ ├── cross_texture.py
│ │ │ │ ├── double_plant.py
│ │ │ │ ├── flat_wall.py
│ │ │ │ ├── wall.py
│ │ │ │ ├── portal_frame.py
│ │ │ │ ├── door3.py
│ │ │ │ ├── turtle_egg.py
│ │ │ │ ├── chest.py
│ │ │ │ ├── lilypad.py
│ │ │ │ ├── default.py
│ │ │ │ ├── comparator.py
│ │ │ │ ├── door4.py
│ │ │ │ ├── door1.py
│ │ │ │ ├── flat.py
│ │ │ │ ├── water.py
│ │ │ │ ├── tree.py
│ │ │ │ ├── pressure_plate.py
│ │ │ │ ├── ladder.py
│ │ │ │ ├── cross_texture0.py
│ │ │ │ ├── pumpkin_carved.py
│ │ │ │ ├── vine.py
│ │ │ │ ├── cross_texture_green.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── farmland.py
│ │ │ │ ├── piston.py
│ │ │ │ ├── repeater.py
│ │ │ │ ├── enchanting_table.py
│ │ │ │ ├── base_blockshape.py
│ │ │ │ ├── cube.py
│ │ │ │ ├── door5.py
│ │ │ │ └── slab_double.py
│ │ │ ├── unknown_resource_pack.py
│ │ │ └── __init__.py
│ │ ├── mesh
│ │ │ ├── block
│ │ │ │ ├── missing_block.py
│ │ │ │ ├── block_mesh.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── cube.py
│ │ │ ├── util.py
│ │ │ └── __init__.py
│ │ ├── comment_json.py
│ │ └── __init__.py
│ ├── __pyinstaller
│ │ ├── hook-minecraft_model_reader.py
│ │ └── __init__.py
│ ├── py.typed
│ └── __init__.py
├── PKG-INFO
├── .gitattributes
├── setup.cfg
├── tests
│ ├── java_resource_pack_test.py
│ └── bedrock_resource_pack_test.py
├── pyproject.toml
├── mypy.ini
├── .github
│ └── workflows
│ ├── python-unittests.yml
│ ├── python-build.yml
│ └── python-stylecheck.yml
├── .git
│ ├── FETCH_HEAD
│ ├── objects
│ │ ├── 06
│ │ │ └── 45f48c6224d94c9c299da2550a5b34016719fb
│ │ ├── 57
│ │ │ └── 545cc91a27bb708a3f4f84bde6efe033faf579
│ │ ├── b9
│ │ │ └── 33461a25bdb05d2e716e2437c917f77c0f51c5
│ │ ├── 14
│ │ │ └── a60c97da89cf75fe240e86851f5bf2f1932a16
│ │ ├── a4
│ │ │ └── d00e737babd961f19eb19c3b5849c5705a4ed1
│ │ ├── a8
│ │ │ └── b93211586c0c7f620288b74001d2e90bd10f39
│ │ ├── af
│ │ │ └── e5381b23cdd8d9da59e2412886cf5bb6ce6242
│ │ ├── 6b
│ │ │ └── cb8ebea9b62c5417621999a42019d329d1b129
│ │ ├── 21
│ │ │ └── 0b9f9a79f95406856272d22ed4e938ffbd901b
│ │ ├── 8b
│ │ │ └── 41eceb113fda75b2d443905be71d99cab097d8
│ │ ├── 16
│ │ │ └── c58a3d92ba21842a0b5a14e3b4dbe6d8d56807
│ │ ├── bb
│ │ │ └── 1e0a238b22b0fdfe03c990038ec7560b9e0514
│ │ ├── f3
│ │ │ └── fc612fe4ec74c1db75a54668f139c964781f08
│ │ ├── 01
│ │ │ └── 8c9278dd8266395e6fe77d983a88578d2f8b65
│ │ ├── c6
│ │ │ └── 7f4eaf341f44d4c3cadace3f991a8f5e9622a2
│ │ ├── b4
│ │ │ └── 5baf3be13a9119618506a7eb7856e22c9ee2a1
│ │ ├── 84
│ │ │ └── 4078d8ebe996111b431e6d36012ad08527d90c
│ │ ├── a6
│ │ │ └── e6013bb8518d9b933e023ad266ef09f7030213
│ │ ├── pack
│ │ │ ├── pack-12f0677c168b8b34cd549ecc99688ec6d47f8628.idx
│ │ │ ├── pack-12f0677c168b8b34cd549ecc99688ec6d47f8628.rev
│ │ │ └── pack-12f0677c168b8b34cd549ecc99688ec6d47f8628.pack
│ │ ├── 43
│ │ │ └── e8aefaab3a7ca09c044f82b36eb3341f2e1439
│ │ ├── e0
│ │ │ └── e0c29801f283f25ce0b808faac3724115ecc32
│ │ ├── 9b
│ │ │ └── 168f898a18fcfae21292a14cbf345bd15fab1b
│ │ ├── 63
│ │ │ └── f0e4c562c6b493156c58d45f15c29d3eca6f62
│ │ ├── info
│ │ ├── 04
│ │ │ └── cf275878f00f8cceb60a5f73832117d4b88765
│ │ └── 42
│ │ └── 0ee7f760de528911d6d04e80a2d3984dc06d79
│ ├── packed-refs
│ ├── index
│ ├── hooks
│ │ ├── prepare-commit-msg.sample
│ │ ├── pre-receive.sample
│ │ ├── commit-msg.sample
│ │ ├── pre-rebase.sample
│ │ ├── applypatch-msg.sample
│ │ ├── sendemail-validate.sample
│ │ ├── pre-merge-commit.sample
│ │ ├── update.sample
│ │ ├── push-to-checkout.sample
│ │ ├── fsmonitor-watchman.sample
│ │ ├── pre-push.sample
│ │ ├── post-update.sample
│ │ ├── pre-applypatch.sample
│ │ └── pre-commit.sample
│ ├── logs
│ │ ├── refs
│ │ │ ├── heads
│ │ │ │ └── master
│ │ │ └── remotes
│ │ │ ├── upstream
│ │ │ │ ├── master
│ │ │ │ └── HEAD
│ │ │ └── origin
│ │ │ ├── master
│ │ │ └── HEAD
│ │ └── HEAD
│ ├── config
│ ├── refs
│ │ ├── tags
│ │ ├── heads
│ │ │ └── master
│ │ └── remotes
│ │ ├── upstream
│ │ │ ├── master
│ │ │ └── HEAD
│ │ └── origin
│ │ ├── master
│ │ └── HEAD
│ ├── HEAD
│ ├── branches
│ ├── info
│ │ └── exclude
│ ├── description
│ └── COMMIT_EDITMSG
├── build
│ ├── bdist.linux-x86_64
│ └── lib
│ └── minecraft_model_reader
│ ├── _version.py
│ ├── api
│ │ ├── image
│ │ │ ├── missing_no.png
│ │ │ ├── __init__.py
│ │ │ └── missing_pack_java.png
│ │ ├── amulet
│ │ │ ├── block.py
│ │ │ └── __init__.py
│ │ ├── resource_pack
│ │ │ ├── java
│ │ │ │ ├── java_vanilla_fix
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── minecraft
│ │ │ │ │ │ ├── blockstates
│ │ │ │ │ │ │ ├── blue_banner.json
│ │ │ │ │ │ │ ├── white_wall_banner.json
│ │ │ │ │ │ │ ├── light_gray_bed.json
│ │ │ │ │ │ │ ├── purple_wall_banner.json
│ │ │ │ │ │ │ ├── birch_wall_sign.json
│ │ │ │ │ │ │ ├── brown_wall_banner.json
│ │ │ │ │ │ │ ├── skeleton_skull.json
│ │ │ │ │ │ │ ├── black_banner.json
│ │ │ │ │ │ │ ├── light_gray_banner.json
│ │ │ │ │ │ │ ├── pink_banner.json
│ │ │ │ │ │ │ ├── zombie_wall_head.json
│ │ │ │ │ │ │ ├── jungle_wall_sign.json
│ │ │ │ │ │ │ ├── dragon_head.json
│ │ │ │ │ │ │ ├── jungle_sign.json
│ │ │ │ │ │ │ ├── cyan_bed.json
│ │ │ │ │ │ │ ├── green_banner.json
│ │ │ │ │ │ │ ├── skeleton_wall_skull.json
│ │ │ │ │ │ │ ├── black_bed.json
│ │ │ │ │ │ │ ├── green_wall_banner.json
│ │ │ │ │ │ │ ├── light_blue_banner.json
│ │ │ │ │ │ │ ├── wither_skeleton_skull.json
│ │ │ │ │ │ │ ├── lime_banner.json
│ │ │ │ │ │ │ ├── mangrove_wall_sign.json
│ │ │ │ │ │ │ ├── blue_bed.json
│ │ │ │ │ │ │ ├── cyan_wall_banner.json
│ │ │ │ │ │ │ ├── chest.json
│ │ │ │ │ │ │ ├── cyan_banner.json
│ │ │ │ │ │ │ ├── light.json
│ │ │ │ │ │ │ ├── orange_banner.json
│ │ │ │ │ │ │ ├── white_banner.json
│ │ │ │ │ │ │ ├── creeper_head.json
│ │ │ │ │ │ │ ├── yellow_banner.json
│ │ │ │ │ │ │ ├── black_wall_banner.json
│ │ │ │ │ │ │ ├── lime_bed.json
│ │ │ │ │ │ │ ├── creeper_wall_head.json
│ │ │ │ │ │ │ ├── structure_void.json
│ │ │ │ │ │ │ ├── wither_skeleton_wall_skull.json
│ │ │ │ │ │ │ ├── purple_bed.json
│ │ │ │ │ │ │ ├── spruce_wall_sign.json
│ │ │ │ │ │ │ ├── red_wall_banner.json
│ │ │ │ │ │ │ ├── ender_chest.json
│ │ │ │ │ │ │ ├── oak_wall_sign.json
│ │ │ │ │ │ │ ├── white_bed.json
│ │ │ │ │ │ │ ├── trapped_chest.json
│ │ │ │ │ │ │ ├── pink_wall_banner.json
│ │ │ │ │ │ │ ├── red_bed.json
│ │ │ │ │ │ │ ├── dark_oak_wall_sign.json
│ │ │ │ │ │ │ ├── red_banner.json
│ │ │ │ │ │ │ ├── crimson_sign.json
│ │ │ │ │ │ │ ├── grass.json
│ │ │ │ │ │ │ ├── birch_sign.json
│ │ │ │ │ │ │ ├── light_gray_wall_banner.json
│ │ │ │ │ │ │ ├── purple_banner.json
│ │ │ │ │ │ │ ├── player_wall_head.json
│ │ │ │ │ │ │ ├── spruce_sign.json
│ │ │ │ │ │ │ ├── warped_sign.json
│ │ │ │ │ │ │ ├── crimson_wall_sign.json
│ │ │ │ │ │ │ ├── warped_wall_sign.json
│ │ │ │ │ │ │ ├── dark_oak_sign.json
│ │ │ │ │ │ │ ├── yellow_wall_banner.json
│ │ │ │ │ │ │ ├── blue_wall_banner.json
│ │ │ │ │ │ │ ├── gray_wall_banner.json
│ │ │ │ │ │ │ ├── green_bed.json
│ │ │ │ │ │ │ ├── oak_sign.json
│ │ │ │ │ │ │ ├── magenta_bed.json
│ │ │ │ │ │ │ ├── orange_bed.json
│ │ │ │ │ │ │ ├── gray_bed.json
│ │ │ │ │ │ │ ├── acacia_sign.json
│ │ │ │ │ │ │ ├── magenta_wall_banner.json
│ │ │ │ │ │ │ ├── dragon_wall_head.json
│ │ │ │ │ │ │ ├── yellow_bed.json
│ │ │ │ │ │ │ ├── lime_wall_banner.json
│ │ │ │ │ │ │ ├── brown_banner.json
│ │ │ │ │ │ │ ├── player_head.json
│ │ │ │ │ │ │ ├── light_blue_wall_banner.json
│ │ │ │ │ │ │ ├── pink_bed.json
│ │ │ │ │ │ │ ├── magenta_banner.json
│ │ │ │ │ │ │ ├── orange_wall_banner.json
│ │ │ │ │ │ │ ├── acacia_wall_sign.json
│ │ │ │ │ │ │ ├── mangrove_sign.json
│ │ │ │ │ │ │ ├── zombie_head.json
│ │ │ │ │ │ │ ├── gray_banner.json
│ │ │ │ │ │ │ ├── light_blue_bed.json
│ │ │ │ │ │ │ └── brown_bed.json
│ │ │ │ │ │ ├── textures
│ │ │ │ │ │ │ └── block
│ │ │ │ │ │ │ ├── water_still.png
│ │ │ │ │ │ │ ├── lava.png
│ │ │ │ │ │ │ ├── water.png
│ │ │ │ │ │ │ ├── lava_flow.png
│ │ │ │ │ │ │ ├── structure_void.png
│ │ │ │ │ │ │ ├── grass.png
│ │ │ │ │ │ │ ├── barrier.png
│ │ │ │ │ │ │ ├── lava_still.png
│ │ │ │ │ │ │ ├── end_portal.png
│ │ │ │ │ │ │ ├── banner
│ │ │ │ │ │ │ │ ├── banner_blue.png
│ │ │ │ │ │ │ │ ├── banner_gray.png
│ │ │ │ │ │ │ │ ├── banner_red.png
│ │ │ │ │ │ │ │ ├── banner_pink.png
│ │ │ │ │ │ │ │ ├── banner_orange.png
│ │ │ │ │ │ │ │ ├── banner_purple.png
│ │ │ │ │ │ │ │ ├── banner_cyan.png
│ │ │ │ │ │ │ │ ├── banner_brown.png
│ │ │ │ │ │ │ │ ├── banner_light_blue.png
│ │ │ │ │ │ │ │ ├── banner_magenta.png
│ │ │ │ │ │ │ │ ├── banner_lime.png
│ │ │ │ │ │ │ │ ├── banner_green.png
│ │ │ │ │ │ │ │ ├── banner_light_gray.png
│ │ │ │ │ │ │ │ ├── banner_white.png
│ │ │ │ │ │ │ │ ├── banner_black.png
│ │ │ │ │ │ │ │ └── banner_yellow.png
│ │ │ │ │ │ │ └── water_flow.png
│ │ │ │ │ │ └── models
│ │ │ │ │ │ └── block
│ │ │ │ │ │ ├── brown_shulker_box.json
│ │ │ │ │ │ ├── green_shulker_box.json
│ │ │ │ │ │ ├── red_shulker_box.json
│ │ │ │ │ │ ├── sign
│ │ │ │ │ │ │ ├── oak_1.json
│ │ │ │ │ │ │ ├── mangrove_1.json
│ │ │ │ │ │ │ ├── sign_0.json
│ │ │ │ │ │ │ ├── jungle_0.json
│ │ │ │ │ │ │ ├── acacia_2.json
│ │ │ │ │ │ │ ├── birch_1.json
│ │ │ │ │ │ │ ├── crimson_3.json
│ │ │ │ │ │ │ ├── crimson_2.json
│ │ │ │ │ │ │ ├── acacia_0.json
│ │ │ │ │ │ │ ├── sign_1.json
│ │ │ │ │ │ │ ├── mangrove_0.json
│ │ │ │ │ │ │ ├── oak_3.json
│ │ │ │ │ │ │ ├── spruce_3.json
│ │ │ │ │ │ │ ├── mangrove_2.json
│ │ │ │ │ │ │ ├── jungle_1.json
│ │ │ │ │ │ │ ├── sign_3.json
│ │ │ │ │ │ │ ├── birch_2.json
│ │ │ │ │ │ │ ├── warped_2.json
│ │ │ │ │ │ │ ├── oak_0.json
│ │ │ │ │ │ │ ├── dark_oak_2.json
│ │ │ │ │ │ │ ├── spruce_1.json
│ │ │ │ │ │ │ ├── birch_3.json
│ │ │ │ │ │ │ ├── jungle_2.json
│ │ │ │ │ │ │ ├── crimson_0.json
│ │ │ │ │ │ │ ├── spruce_0.json
│ │ │ │ │ │ │ ├── warped_3.json
│ │ │ │ │ │ │ ├── acacia_1.json
│ │ │ │ │ │ │ ├── jungle_3.json
│ │ │ │ │ │ │ ├── birch_0.json
│ │ │ │ │ │ │ ├── warped_0.json
│ │ │ │ │ │ │ ├── crimson_1.json
│ │ │ │ │ │ │ ├── dark_oak_1.json
│ │ │ │ │ │ │ ├── warped_1.json
│ │ │ │ │ │ │ ├── sign_2.json
│ │ │ │ │ │ │ ├── dark_oak_0.json
│ │ │ │ │ │ │ ├── spruce_2.json
│ │ │ │ │ │ │ ├── dark_oak_3.json
│ │ │ │ │ │ │ ├── acacia_3.json
│ │ │ │ │ │ │ ├── oak_2.json
│ │ │ │ │ │ │ └── mangrove_3.json
│ │ │ │ │ │ ├── bell_floor.json
│ │ │ │ │ │ ├── cyan_shulker_box.json
│ │ │ │ │ │ ├── purple_shulker_box.json
│ │ │ │ │ │ ├── white_shulker_box.json
│ │ │ │ │ │ ├── wall_banner
│ │ │ │ │ │ │ ├── black.json
│ │ │ │ │ │ │ ├── light_gray.json
│ │ │ │ │ │ │ ├── blue.json
│ │ │ │ │ │ │ ├── light_blue.json
│ │ │ │ │ │ │ ├── yellow.json
│ │ │ │ │ │ │ ├── gray.json
│ │ │ │ │ │ │ ├── green.json
│ │ │ │ │ │ │ ├── red.json
│ │ │ │ │ │ │ ├── orange.json
│ │ │ │ │ │ │ ├── purple.json
│ │ │ │ │ │ │ ├── magenta.json
│ │ │ │ │ │ │ ├── white.json
│ │ │ │ │ │ │ ├── lime.json
│ │ │ │ │ │ │ ├── pink.json
│ │ │ │ │ │ │ ├── cyan.json
│ │ │ │ │ │ │ └── brown.json
│ │ │ │ │ │ ├── chest_right_base.json
│ │ │ │ │ │ ├── trapped_chest_left.json
│ │ │ │ │ │ ├── bell_ceiling.json
│ │ │ │ │ │ ├── blue_shulker_box.json
│ │ │ │ │ │ ├── chest_right.json
│ │ │ │ │ │ ├── chest.json
│ │ │ │ │ │ ├── gray_shulker_box.json
│ │ │ │ │ │ ├── wall_banner.json
│ │ │ │ │ │ ├── structure_void.json
│ │ │ │ │ │ ├── conduit.json
│ │ │ │ │ │ ├── orange_shulker_box.json
│ │ │ │ │ │ ├── yellow_shulker_box.json
│ │ │ │ │ │ ├── shulker_box.json
│ │ │ │ │ │ ├── light_blue_shulker_box.json
│ │ │ │ │ │ ├── bell_between_walls.json
│ │ │ │ │ │ ├── ender_chest.json
│ │ │ │ │ │ ├── bell_wall.json
│ │ │ │ │ │ ├── moving_piston.json
│ │ │ │ │ │ ├── trapped_chest.json
│ │ │ │ │ │ ├── lava.json
│ │ │ │ │ │ ├── light_gray_shulker_box.json
│ │ │ │ │ │ ├── bed_head.json
│ │ │ │ │ │ ├── end_portal.json
│ │ │ │ │ │ ├── grass.json
│ │ │ │ │ │ ├── banner
│ │ │ │ │ │ │ ├── lime_0.json
│ │ │ │ │ │ │ ├── magenta_0.json
│ │ │ │ │ │ │ ├── brown_3.json
│ │ │ │ │ │ │ ├── magenta_3.json
│ │ │ │ │ │ │ ├── cyan_1.json
│ │ │ │ │ │ │ ├── black_1.json
│ │ │ │ │ │ │ ├── brown_1.json
│ │ │ │ │ │ │ ├── light_gray_0.json
│ │ │ │ │ │ │ ├── red_3.json
│ │ │ │ │ │ │ ├── banner_3.json
│ │ │ │ │ │ │ ├── green_3.json
│ │ │ │ │ │ │ ├── black_2.json
│ │ │ │ │ │ │ ├── banner_2.json
│ │ │ │ │ │ │ ├── blue_3.json
│ │ │ │ │ │ │ ├── blue_0.json
│ │ │ │ │ │ │ ├── purple_3.json
│ │ │ │ │ │ │ ├── pink_0.json
│ │ │ │ │ │ │ ├── light_blue_0.json
│ │ │ │ │ │ │ ├── white_0.json
│ │ │ │ │ │ │ ├── orange_0.json
│ │ │ │ │ │ │ ├── lime_1.json
│ │ │ │ │ │ │ ├── yellow_0.json
│ │ │ │ │ │ │ ├── magenta_2.json
│ │ │ │ │ │ │ ├── pink_3.json
│ │ │ │ │ │ │ ├── brown_2.json
│ │ │ │ │ │ │ ├── gray_0.json
│ │ │ │ │ │ │ ├── gray_2.json
│ │ │ │ │ │ │ ├── purple_0.json
│ │ │ │ │ │ │ ├── cyan_2.json
│ │ │ │ │ │ │ ├── gray_3.json
│ │ │ │ │ │ │ ├── red_1.json
│ │ │ │ │ │ │ ├── orange_1.json
│ │ │ │ │ │ │ ├── green_2.json
│ │ │ │ │ │ │ ├── purple_1.json
│ │ │ │ │ │ │ ├── blue_2.json
│ │ │ │ │ │ │ ├── green_1.json
│ │ │ │ │ │ │ ├── light_blue_3.json
│ │ │ │ │ │ │ ├── pink_1.json
│ │ │ │ │ │ │ ├── light_gray_1.json
│ │ │ │ │ │ │ ├── cyan_3.json
│ │ │ │ │ │ │ ├── purple_2.json
│ │ │ │ │ │ │ ├── red_0.json
│ │ │ │ │ │ │ ├── pink_2.json
│ │ │ │ │ │ │ ├── white_3.json
│ │ │ │ │ │ │ ├── blue_1.json
│ │ │ │ │ │ │ ├── red_2.json
│ │ │ │ │ │ │ ├── lime_2.json
│ │ │ │ │ │ │ ├── light_gray_3.json
│ │ │ │ │ │ │ ├── black_3.json
│ │ │ │ │ │ │ ├── black_0.json
│ │ │ │ │ │ │ ├── light_gray_2.json
│ │ │ │ │ │ │ ├── yellow_3.json
│ │ │ │ │ │ │ ├── lime_3.json
│ │ │ │ │ │ │ ├── cyan_0.json
│ │ │ │ │ │ │ ├── light_blue_2.json
│ │ │ │ │ │ │ ├── white_2.json
│ │ │ │ │ │ │ ├── banner_1.json
│ │ │ │ │ │ │ ├── white_1.json
│ │ │ │ │ │ │ ├── magenta_1.json
│ │ │ │ │ │ │ ├── yellow_1.json
│ │ │ │ │ │ │ ├── yellow_2.json
│ │ │ │ │ │ │ ├── brown_0.json
│ │ │ │ │ │ │ ├── green_0.json
│ │ │ │ │ │ │ ├── banner_0.json
│ │ │ │ │ │ │ ├── orange_2.json
│ │ │ │ │ │ │ ├── light_blue_1.json
│ │ │ │ │ │ │ ├── gray_1.json
│ │ │ │ │ │ │ └── orange_3.json
│ │ │ │ │ │ ├── wall_sign
│ │ │ │ │ │ │ ├── dark_oak.json
│ │ │ │ │ │ │ ├── warped.json
│ │ │ │ │ │ │ ├── oak.json
│ │ │ │ │ │ │ ├── birch.json
│ │ │ │ │ │ │ ├── spruce.json
│ │ │ │ │ │ │ ├── wall_sign.json
│ │ │ │ │ │ │ ├── crimson.json
│ │ │ │ │ │ │ ├── acacia.json
│ │ │ │ │ │ │ ├── jungle.json
│ │ │ │ │ │ │ └── mangrove.json
│ │ │ │ │ │ ├── trapped_chest_right.json
│ │ │ │ │ │ ├── head
│ │ │ │ │ │ │ ├── floor
│ │ │ │ │ │ │ │ ├── wither_skeleton_2.json
│ │ │ │ │ │ │ │ ├── player_2.json
│ │ │ │ │ │ │ │ ├── dragon_0.json
│ │ │ │ │ │ │ │ ├── skeleton_3.json
│ │ │ │ │ │ │ │ ├── skeleton_2.json
│ │ │ │ │ │ │ │ ├── dragon_3.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_3.json
│ │ │ │ │ │ │ │ ├── creeper_3.json
│ │ │ │ │ │ │ │ ├── head2_2.json
│ │ │ │ │ │ │ │ ├── skeleton_1.json
│ │ │ │ │ │ │ │ ├── creeper_1.json
│ │ │ │ │ │ │ │ ├── creeper_2.json
│ │ │ │ │ │ │ │ ├── dragon_1.json
│ │ │ │ │ │ │ │ ├── skeleton_0.json
│ │ │ │ │ │ │ │ ├── head_0.json
│ │ │ │ │ │ │ │ ├── zombie_0.json
│ │ │ │ │ │ │ │ ├── head_3.json
│ │ │ │ │ │ │ │ ├── zombie_2.json
│ │ │ │ │ │ │ │ ├── player_0.json
│ │ │ │ │ │ │ │ ├── head2_0.json
│ │ │ │ │ │ │ │ ├── player_3.json
│ │ │ │ │ │ │ │ ├── head_1.json
│ │ │ │ │ │ │ │ ├── zombie_1.json
│ │ │ │ │ │ │ │ ├── zombie_3.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_0.json
│ │ │ │ │ │ │ │ ├── head_2.json
│ │ │ │ │ │ │ │ ├── creeper_0.json
│ │ │ │ │ │ │ │ ├── wither_skeleton_1.json
│ │ │ │ │ │ │ │ ├── player_1.json
│ │ │ │ │ │ │ │ ├── head2_1.json
│ │ │ │ │ │ │ │ ├── dragon_2.json
│ │ │ │ │ │ │ │ └── head2_3.json
│ │ │ │ │ │ │ └── wall
│ │ │ │ │ │ │ ├── dragon.json
│ │ │ │ │ │ │ ├── head2.json
│ │ │ │ │ │ │ ├── wither_skeleton.json
│ │ │ │ │ │ │ ├── zombie.json
│ │ │ │ │ │ │ ├── skeleton.json
│ │ │ │ │ │ │ ├── head.json
│ │ │ │ │ │ │ ├── creeper.json
│ │ │ │ │ │ │ └── player.json
│ │ │ │ │ │ ├── chest_base.json
│ │ │ │ │ │ ├── chest_left_base.json
│ │ │ │ │ │ ├── barrier.json
│ │ │ │ │ │ ├── black_shulker_box.json
│ │ │ │ │ │ ├── bed
│ │ │ │ │ │ │ ├── red_head.json
│ │ │ │ │ │ │ ├── green_foot.json
│ │ │ │ │ │ │ ├── orange_head.json
│ │ │ │ │ │ │ ├── cyan_foot.json
│ │ │ │ │ │ │ ├── orange_foot.json
│ │ │ │ │ │ │ ├── lime_head.json
│ │ │ │ │ │ │ ├── light_blue_foot.json
│ │ │ │ │ │ │ ├── black_foot.json
│ │ │ │ │ │ │ ├── light_blue_head.json
│ │ │ │ │ │ │ ├── light_gray_head.json
│ │ │ │ │ │ │ ├── magenta_head.json
│ │ │ │ │ │ │ ├── gray_foot.json
│ │ │ │ │ │ │ ├── pink_foot.json
│ │ │ │ │ │ │ ├── yellow_foot.json
│ │ │ │ │ │ │ ├── purple_foot.json
│ │ │ │ │ │ │ ├── yellow_head.json
│ │ │ │ │ │ │ ├── lime_foot.json
│ │ │ │ │ │ │ ├── pink_head.json
│ │ │ │ │ │ │ ├── green_head.json
│ │ │ │ │ │ │ ├── gray_head.json
│ │ │ │ │ │ │ ├── white_head.json
│ │ │ │ │ │ │ ├── brown_foot.json
│ │ │ │ │ │ │ ├── white_foot.json
│ │ │ │ │ │ │ ├── blue_head.json
│ │ │ │ │ │ │ ├── magenta_foot.json
│ │ │ │ │ │ │ ├── purple_head.json
│ │ │ │ │ │ │ ├── light_gray_foot.json
│ │ │ │ │ │ │ ├── cyan_head.json
│ │ │ │ │ │ │ ├── brown_head.json
│ │ │ │ │ │ │ ├── red_foot.json
│ │ │ │ │ │ │ ├── blue_foot.json
│ │ │ │ │ │ │ └── black_head.json
│ │ │ │ │ │ ├── lime_shulker_box.json
│ │ │ │ │ │ ├── light
│ │ │ │ │ │ │ ├── level_0.json
│ │ │ │ │ │ │ ├── level_3.json
│ │ │ │ │ │ │ ├── level_14.json
│ │ │ │ │ │ │ ├── level_12.json
│ │ │ │ │ │ │ ├── level_5.json
│ │ │ │ │ │ │ ├── level_9.json
│ │ │ │ │ │ │ ├── level_8.json
│ │ │ │ │ │ │ ├── level_4.json
│ │ │ │ │ │ │ ├── level_2.json
│ │ │ │ │ │ │ ├── level_7.json
│ │ │ │ │ │ │ ├── level_13.json
│ │ │ │ │ │ │ ├── level_11.json
│ │ │ │ │ │ │ ├── level_6.json
│ │ │ │ │ │ │ ├── level_10.json
│ │ │ │ │ │ │ ├── level_15.json
│ │ │ │ │ │ │ └── level_1.json
│ │ │ │ │ │ ├── pink_shulker_box.json
│ │ │ │ │ │ ├── bed_foot.json
│ │ │ │ │ │ ├── water.json
│ │ │ │ │ │ ├── magenta_shulker_box.json
│ │ │ │ │ │ └── chest_left.json
│ │ │ │ │ ├── pack.png
│ │ │ │ │ ├── pack.mcmeta
│ │ │ │ │ └── water_still.png.mcmeta
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ ├── download_resources.py
│ │ │ │ └── __init__.py
│ │ │ ├── base
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ └── __init__.py
│ │ │ ├── bedrock
│ │ │ │ ├── sort_blockshapes.py
│ │ │ │ ├── resource_pack.py
│ │ │ │ ├── resource_pack_manager.py
│ │ │ │ ├── download_resources.py
│ │ │ │ ├── bedrock_vanilla_fix
│ │ │ │ │ ├── textures
│ │ │ │ │ │ ├── blocks
│ │ │ │ │ │ │ ├── water.png
│ │ │ │ │ │ │ ├── grass_carried.png
│ │ │ │ │ │ │ └── grass_side_carried.png
│ │ │ │ │ │ └── terrain_texture.json
│ │ │ │ │ ├── pack_icon.png
│ │ │ │ │ ├── blocks.json
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── block_palette.json
│ │ │ │ ├── __init__.py
│ │ │ │ ├── blockshapes.json
│ │ │ │ └── blockshapes
│ │ │ │ ├── pumpkin_lit.py
│ │ │ │ ├── red_dust.py
│ │ │ │ ├── partial_block.py
│ │ │ │ ├── slab.py
│ │ │ │ ├── pumpkin.py
│ │ │ │ ├── door.py
│ │ │ │ ├── bubble_column.py
│ │ │ │ ├── air.py
│ │ │ │ ├── door6.py
│ │ │ │ ├── door2.py
│ │ │ │ ├── fence.py
│ │ │ │ ├── furnace_lit.py
│ │ │ │ ├── cake.py
│ │ │ │ ├── piston_arm.py
│ │ │ │ ├── furnace.py
│ │ │ │ ├── green_cube.py
│ │ │ │ ├── cross_texture.py
│ │ │ │ ├── double_plant.py
│ │ │ │ ├── flat_wall.py
│ │ │ │ ├── wall.py
│ │ │ │ ├── portal_frame.py
│ │ │ │ ├── door3.py
│ │ │ │ ├── turtle_egg.py
│ │ │ │ ├── chest.py
│ │ │ │ ├── lilypad.py
│ │ │ │ ├── default.py
│ │ │ │ ├── comparator.py
│ │ │ │ ├── door4.py
│ │ │ │ ├── door1.py
│ │ │ │ ├── flat.py
│ │ │ │ ├── water.py
│ │ │ │ ├── tree.py
│ │ │ │ ├── pressure_plate.py
│ │ │ │ ├── ladder.py
│ │ │ │ ├── cross_texture0.py
│ │ │ │ ├── pumpkin_carved.py
│ │ │ │ ├── vine.py
│ │ │ │ ├── cross_texture_green.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── farmland.py
│ │ │ │ ├── piston.py
│ │ │ │ ├── repeater.py
│ │ │ │ ├── enchanting_table.py
│ │ │ │ ├── base_blockshape.py
│ │ │ │ ├── cube.py
│ │ │ │ ├── door5.py
│ │ │ │ └── slab_double.py
│ │ │ ├── unknown_resource_pack.py
│ │ │ └── __init__.py
│ │ ├── mesh
│ │ │ ├── block
│ │ │ │ ├── missing_block.py
│ │ │ │ ├── block_mesh.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── cube.py
│ │ │ ├── util.py
│ │ │ └── __init__.py
│ │ ├── comment_json.py
│ │ └── __init__.py
│ ├── __pyinstaller
│ │ ├── hook-minecraft_model_reader.py
│ │ └── __init__.py
│ ├── py.typed
│ └── __init__.py
├── LICENSE
└── setup.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment