Skip to content

Instantly share code, notes, and snippets.

@TheLukeGuy
Last active February 7, 2023 03:08
Show Gist options
  • Save TheLukeGuy/70a5dbd5c48cfcfbf0538ad2db92b482 to your computer and use it in GitHub Desktop.
Save TheLukeGuy/70a5dbd5c48cfcfbf0538ad2db92b482 to your computer and use it in GitHub Desktop.
A script to determine which Minecraft materials have item or block textures.
import json
from pathlib import Path
import requests
VERSION = '1.19.3'
URL = f'https://mcassets.matdoes.dev/versions/{VERSION}/downloads/client/assets/minecraft/textures/%s/%s.png'
TRY = ['item', 'block']
RESULT_FILE = 'results.json'
MISSING_FILE = 'missing.json'
JSON_INDENTS = 2
ITEMS = ['air', 'stone', 'granite', 'polished_granite', 'diorite', 'polished_diorite', 'andesite', 'polished_andesite', 'deepslate', 'cobbled_deepslate', 'polished_deepslate', 'calcite', 'tuff', 'dripstone_block', 'grass_block', 'dirt', 'coarse_dirt', 'podzol', 'rooted_dirt', 'mud', 'crimson_nylium', 'warped_nylium', 'cobblestone', 'oak_planks', 'spruce_planks', 'birch_planks', 'jungle_planks', 'acacia_planks', 'dark_oak_planks', 'mangrove_planks', 'bamboo_planks', 'crimson_planks', 'warped_planks', 'bamboo_mosaic', 'oak_sapling', 'spruce_sapling', 'birch_sapling', 'jungle_sapling', 'acacia_sapling', 'dark_oak_sapling', 'mangrove_propagule', 'bedrock', 'sand', 'red_sand', 'gravel', 'coal_ore', 'deepslate_coal_ore', 'iron_ore', 'deepslate_iron_ore', 'copper_ore', 'deepslate_copper_ore', 'gold_ore', 'deepslate_gold_ore', 'redstone_ore', 'deepslate_redstone_ore', 'emerald_ore', 'deepslate_emerald_ore', 'lapis_ore', 'deepslate_lapis_ore', 'diamond_ore', 'deepslate_diamond_ore', 'nether_gold_ore', 'nether_quartz_ore', 'ancient_debris', 'coal_block', 'raw_iron_block', 'raw_copper_block', 'raw_gold_block', 'amethyst_block', 'budding_amethyst', 'iron_block', 'copper_block', 'gold_block', 'diamond_block', 'netherite_block', 'exposed_copper', 'weathered_copper', 'oxidized_copper', 'cut_copper', 'exposed_cut_copper', 'weathered_cut_copper', 'oxidized_cut_copper', 'cut_copper_stairs', 'exposed_cut_copper_stairs', 'weathered_cut_copper_stairs', 'oxidized_cut_copper_stairs', 'cut_copper_slab', 'exposed_cut_copper_slab', 'weathered_cut_copper_slab', 'oxidized_cut_copper_slab', 'waxed_copper_block', 'waxed_exposed_copper', 'waxed_weathered_copper', 'waxed_oxidized_copper', 'waxed_cut_copper', 'waxed_exposed_cut_copper', 'waxed_weathered_cut_copper', 'waxed_oxidized_cut_copper', 'waxed_cut_copper_stairs', 'waxed_exposed_cut_copper_stairs', 'waxed_weathered_cut_copper_stairs', 'waxed_oxidized_cut_copper_stairs', 'waxed_cut_copper_slab', 'waxed_exposed_cut_copper_slab', 'waxed_weathered_cut_copper_slab', 'waxed_oxidized_cut_copper_slab', 'oak_log', 'spruce_log', 'birch_log', 'jungle_log', 'acacia_log', 'dark_oak_log', 'mangrove_log', 'mangrove_roots', 'muddy_mangrove_roots', 'crimson_stem', 'warped_stem', 'bamboo_block', 'stripped_oak_log', 'stripped_spruce_log', 'stripped_birch_log', 'stripped_jungle_log', 'stripped_acacia_log', 'stripped_dark_oak_log', 'stripped_mangrove_log', 'stripped_crimson_stem', 'stripped_warped_stem', 'stripped_oak_wood', 'stripped_spruce_wood', 'stripped_birch_wood', 'stripped_jungle_wood', 'stripped_acacia_wood', 'stripped_dark_oak_wood', 'stripped_mangrove_wood', 'stripped_crimson_hyphae', 'stripped_warped_hyphae', 'stripped_bamboo_block', 'oak_wood', 'spruce_wood', 'birch_wood', 'jungle_wood', 'acacia_wood', 'dark_oak_wood', 'mangrove_wood', 'crimson_hyphae', 'warped_hyphae', 'oak_leaves', 'spruce_leaves', 'birch_leaves', 'jungle_leaves', 'acacia_leaves', 'dark_oak_leaves', 'mangrove_leaves', 'azalea_leaves', 'flowering_azalea_leaves', 'sponge', 'wet_sponge', 'glass', 'tinted_glass', 'lapis_block', 'sandstone', 'chiseled_sandstone', 'cut_sandstone', 'cobweb', 'grass', 'fern', 'azalea', 'flowering_azalea', 'dead_bush', 'seagrass', 'sea_pickle', 'white_wool', 'orange_wool', 'magenta_wool', 'light_blue_wool', 'yellow_wool', 'lime_wool', 'pink_wool', 'gray_wool', 'light_gray_wool', 'cyan_wool', 'purple_wool', 'blue_wool', 'brown_wool', 'green_wool', 'red_wool', 'black_wool', 'dandelion', 'poppy', 'blue_orchid', 'allium', 'azure_bluet', 'red_tulip', 'orange_tulip', 'white_tulip', 'pink_tulip', 'oxeye_daisy', 'cornflower', 'lily_of_the_valley', 'wither_rose', 'spore_blossom', 'brown_mushroom', 'red_mushroom', 'crimson_fungus', 'warped_fungus', 'crimson_roots', 'warped_roots', 'nether_sprouts', 'weeping_vines', 'twisting_vines', 'sugar_cane', 'kelp', 'moss_carpet', 'moss_block', 'hanging_roots', 'big_dripleaf', 'small_dripleaf', 'bamboo', 'oak_slab', 'spruce_slab', 'birch_slab', 'jungle_slab', 'acacia_slab', 'dark_oak_slab', 'mangrove_slab', 'bamboo_slab', 'bamboo_mosaic_slab', 'crimson_slab', 'warped_slab', 'stone_slab', 'smooth_stone_slab', 'sandstone_slab', 'cut_sandstone_slab', 'petrified_oak_slab', 'cobblestone_slab', 'brick_slab', 'stone_brick_slab', 'mud_brick_slab', 'nether_brick_slab', 'quartz_slab', 'red_sandstone_slab', 'cut_red_sandstone_slab', 'purpur_slab', 'prismarine_slab', 'prismarine_brick_slab', 'dark_prismarine_slab', 'smooth_quartz', 'smooth_red_sandstone', 'smooth_sandstone', 'smooth_stone', 'bricks', 'bookshelf', 'chiseled_bookshelf', 'mossy_cobblestone', 'obsidian', 'torch', 'end_rod', 'chorus_plant', 'chorus_flower', 'purpur_block', 'purpur_pillar', 'purpur_stairs', 'spawner', 'chest', 'crafting_table', 'farmland', 'furnace', 'ladder', 'cobblestone_stairs', 'snow', 'ice', 'snow_block', 'cactus', 'clay', 'jukebox', 'oak_fence', 'spruce_fence', 'birch_fence', 'jungle_fence', 'acacia_fence', 'dark_oak_fence', 'mangrove_fence', 'bamboo_fence', 'crimson_fence', 'warped_fence', 'pumpkin', 'carved_pumpkin', 'jack_o_lantern', 'netherrack', 'soul_sand', 'soul_soil', 'basalt', 'polished_basalt', 'smooth_basalt', 'soul_torch', 'glowstone', 'infested_stone', 'infested_cobblestone', 'infested_stone_bricks', 'infested_mossy_stone_bricks', 'infested_cracked_stone_bricks', 'infested_chiseled_stone_bricks', 'infested_deepslate', 'stone_bricks', 'mossy_stone_bricks', 'cracked_stone_bricks', 'chiseled_stone_bricks', 'packed_mud', 'mud_bricks', 'deepslate_bricks', 'cracked_deepslate_bricks', 'deepslate_tiles', 'cracked_deepslate_tiles', 'chiseled_deepslate', 'reinforced_deepslate', 'brown_mushroom_block', 'red_mushroom_block', 'mushroom_stem', 'iron_bars', 'chain', 'glass_pane', 'melon', 'vine', 'glow_lichen', 'brick_stairs', 'stone_brick_stairs', 'mud_brick_stairs', 'mycelium', 'lily_pad', 'nether_bricks', 'cracked_nether_bricks', 'chiseled_nether_bricks', 'nether_brick_fence', 'nether_brick_stairs', 'sculk', 'sculk_vein', 'sculk_catalyst', 'sculk_shrieker', 'enchanting_table', 'end_portal_frame', 'end_stone', 'end_stone_bricks', 'dragon_egg', 'sandstone_stairs', 'ender_chest', 'emerald_block', 'oak_stairs', 'spruce_stairs', 'birch_stairs', 'jungle_stairs', 'acacia_stairs', 'dark_oak_stairs', 'mangrove_stairs', 'bamboo_stairs', 'bamboo_mosaic_stairs', 'crimson_stairs', 'warped_stairs', 'command_block', 'beacon', 'cobblestone_wall', 'mossy_cobblestone_wall', 'brick_wall', 'prismarine_wall', 'red_sandstone_wall', 'mossy_stone_brick_wall', 'granite_wall', 'stone_brick_wall', 'mud_brick_wall', 'nether_brick_wall', 'andesite_wall', 'red_nether_brick_wall', 'sandstone_wall', 'end_stone_brick_wall', 'diorite_wall', 'blackstone_wall', 'polished_blackstone_wall', 'polished_blackstone_brick_wall', 'cobbled_deepslate_wall', 'polished_deepslate_wall', 'deepslate_brick_wall', 'deepslate_tile_wall', 'anvil', 'chipped_anvil', 'damaged_anvil', 'chiseled_quartz_block', 'quartz_block', 'quartz_bricks', 'quartz_pillar', 'quartz_stairs', 'white_terracotta', 'orange_terracotta', 'magenta_terracotta', 'light_blue_terracotta', 'yellow_terracotta', 'lime_terracotta', 'pink_terracotta', 'gray_terracotta', 'light_gray_terracotta', 'cyan_terracotta', 'purple_terracotta', 'blue_terracotta', 'brown_terracotta', 'green_terracotta', 'red_terracotta', 'black_terracotta', 'barrier', 'light', 'hay_block', 'white_carpet', 'orange_carpet', 'magenta_carpet', 'light_blue_carpet', 'yellow_carpet', 'lime_carpet', 'pink_carpet', 'gray_carpet', 'light_gray_carpet', 'cyan_carpet', 'purple_carpet', 'blue_carpet', 'brown_carpet', 'green_carpet', 'red_carpet', 'black_carpet', 'terracotta', 'packed_ice', 'dirt_path', 'sunflower', 'lilac', 'rose_bush', 'peony', 'tall_grass', 'large_fern', 'white_stained_glass', 'orange_stained_glass', 'magenta_stained_glass', 'light_blue_stained_glass', 'yellow_stained_glass', 'lime_stained_glass', 'pink_stained_glass', 'gray_stained_glass', 'light_gray_stained_glass', 'cyan_stained_glass', 'purple_stained_glass', 'blue_stained_glass', 'brown_stained_glass', 'green_stained_glass', 'red_stained_glass', 'black_stained_glass', 'white_stained_glass_pane', 'orange_stained_glass_pane', 'magenta_stained_glass_pane', 'light_blue_stained_glass_pane', 'yellow_stained_glass_pane', 'lime_stained_glass_pane', 'pink_stained_glass_pane', 'gray_stained_glass_pane', 'light_gray_stained_glass_pane', 'cyan_stained_glass_pane', 'purple_stained_glass_pane', 'blue_stained_glass_pane', 'brown_stained_glass_pane', 'green_stained_glass_pane', 'red_stained_glass_pane', 'black_stained_glass_pane', 'prismarine', 'prismarine_bricks', 'dark_prismarine', 'prismarine_stairs', 'prismarine_brick_stairs', 'dark_prismarine_stairs', 'sea_lantern', 'red_sandstone', 'chiseled_red_sandstone', 'cut_red_sandstone', 'red_sandstone_stairs', 'repeating_command_block', 'chain_command_block', 'magma_block', 'nether_wart_block', 'warped_wart_block', 'red_nether_bricks', 'bone_block', 'structure_void', 'shulker_box', 'white_shulker_box', 'orange_shulker_box', 'magenta_shulker_box', 'light_blue_shulker_box', 'yellow_shulker_box', 'lime_shulker_box', 'pink_shulker_box', 'gray_shulker_box', 'light_gray_shulker_box', 'cyan_shulker_box', 'purple_shulker_box', 'blue_shulker_box', 'brown_shulker_box', 'green_shulker_box', 'red_shulker_box', 'black_shulker_box', 'white_glazed_terracotta', 'orange_glazed_terracotta', 'magenta_glazed_terracotta', 'light_blue_glazed_terracotta', 'yellow_glazed_terracotta', 'lime_glazed_terracotta', 'pink_glazed_terracotta', 'gray_glazed_terracotta', 'light_gray_glazed_terracotta', 'cyan_glazed_terracotta', 'purple_glazed_terracotta', 'blue_glazed_terracotta', 'brown_glazed_terracotta', 'green_glazed_terracotta', 'red_glazed_terracotta', 'black_glazed_terracotta', 'white_concrete', 'orange_concrete', 'magenta_concrete', 'light_blue_concrete', 'yellow_concrete', 'lime_concrete', 'pink_concrete', 'gray_concrete', 'light_gray_concrete', 'cyan_concrete', 'purple_concrete', 'blue_concrete', 'brown_concrete', 'green_concrete', 'red_concrete', 'black_concrete', 'white_concrete_powder', 'orange_concrete_powder', 'magenta_concrete_powder', 'light_blue_concrete_powder', 'yellow_concrete_powder', 'lime_concrete_powder', 'pink_concrete_powder', 'gray_concrete_powder', 'light_gray_concrete_powder', 'cyan_concrete_powder', 'purple_concrete_powder', 'blue_concrete_powder', 'brown_concrete_powder', 'green_concrete_powder', 'red_concrete_powder', 'black_concrete_powder', 'turtle_egg', 'dead_tube_coral_block', 'dead_brain_coral_block', 'dead_bubble_coral_block', 'dead_fire_coral_block', 'dead_horn_coral_block', 'tube_coral_block', 'brain_coral_block', 'bubble_coral_block', 'fire_coral_block', 'horn_coral_block', 'tube_coral', 'brain_coral', 'bubble_coral', 'fire_coral', 'horn_coral', 'dead_brain_coral', 'dead_bubble_coral', 'dead_fire_coral', 'dead_horn_coral', 'dead_tube_coral', 'tube_coral_fan', 'brain_coral_fan', 'bubble_coral_fan', 'fire_coral_fan', 'horn_coral_fan', 'dead_tube_coral_fan', 'dead_brain_coral_fan', 'dead_bubble_coral_fan', 'dead_fire_coral_fan', 'dead_horn_coral_fan', 'blue_ice', 'conduit', 'polished_granite_stairs', 'smooth_red_sandstone_stairs', 'mossy_stone_brick_stairs', 'polished_diorite_stairs', 'mossy_cobblestone_stairs', 'end_stone_brick_stairs', 'stone_stairs', 'smooth_sandstone_stairs', 'smooth_quartz_stairs', 'granite_stairs', 'andesite_stairs', 'red_nether_brick_stairs', 'polished_andesite_stairs', 'diorite_stairs', 'cobbled_deepslate_stairs', 'polished_deepslate_stairs', 'deepslate_brick_stairs', 'deepslate_tile_stairs', 'polished_granite_slab', 'smooth_red_sandstone_slab', 'mossy_stone_brick_slab', 'polished_diorite_slab', 'mossy_cobblestone_slab', 'end_stone_brick_slab', 'smooth_sandstone_slab', 'smooth_quartz_slab', 'granite_slab', 'andesite_slab', 'red_nether_brick_slab', 'polished_andesite_slab', 'diorite_slab', 'cobbled_deepslate_slab', 'polished_deepslate_slab', 'deepslate_brick_slab', 'deepslate_tile_slab', 'scaffolding', 'redstone', 'redstone_torch', 'redstone_block', 'repeater', 'comparator', 'piston', 'sticky_piston', 'slime_block', 'honey_block', 'observer', 'hopper', 'dispenser', 'dropper', 'lectern', 'target', 'lever', 'lightning_rod', 'daylight_detector', 'sculk_sensor', 'tripwire_hook', 'trapped_chest', 'tnt', 'redstone_lamp', 'note_block', 'stone_button', 'polished_blackstone_button', 'oak_button', 'spruce_button', 'birch_button', 'jungle_button', 'acacia_button', 'dark_oak_button', 'mangrove_button', 'bamboo_button', 'crimson_button', 'warped_button', 'stone_pressure_plate', 'polished_blackstone_pressure_plate', 'light_weighted_pressure_plate', 'heavy_weighted_pressure_plate', 'oak_pressure_plate', 'spruce_pressure_plate', 'birch_pressure_plate', 'jungle_pressure_plate', 'acacia_pressure_plate', 'dark_oak_pressure_plate', 'mangrove_pressure_plate', 'bamboo_pressure_plate', 'crimson_pressure_plate', 'warped_pressure_plate', 'iron_door', 'oak_door', 'spruce_door', 'birch_door', 'jungle_door', 'acacia_door', 'dark_oak_door', 'mangrove_door', 'bamboo_door', 'crimson_door', 'warped_door', 'iron_trapdoor', 'oak_trapdoor', 'spruce_trapdoor', 'birch_trapdoor', 'jungle_trapdoor', 'acacia_trapdoor', 'dark_oak_trapdoor', 'mangrove_trapdoor', 'bamboo_trapdoor', 'crimson_trapdoor', 'warped_trapdoor', 'oak_fence_gate', 'spruce_fence_gate', 'birch_fence_gate', 'jungle_fence_gate', 'acacia_fence_gate', 'dark_oak_fence_gate', 'mangrove_fence_gate', 'bamboo_fence_gate', 'crimson_fence_gate', 'warped_fence_gate', 'powered_rail', 'detector_rail', 'rail', 'activator_rail', 'saddle', 'minecart', 'chest_minecart', 'furnace_minecart', 'tnt_minecart', 'hopper_minecart', 'carrot_on_a_stick', 'warped_fungus_on_a_stick', 'elytra', 'oak_boat', 'oak_chest_boat', 'spruce_boat', 'spruce_chest_boat', 'birch_boat', 'birch_chest_boat', 'jungle_boat', 'jungle_chest_boat', 'acacia_boat', 'acacia_chest_boat', 'dark_oak_boat', 'dark_oak_chest_boat', 'mangrove_boat', 'mangrove_chest_boat', 'bamboo_raft', 'bamboo_chest_raft', 'structure_block', 'jigsaw', 'turtle_helmet', 'scute', 'flint_and_steel', 'apple', 'bow', 'arrow', 'coal', 'charcoal', 'diamond', 'emerald', 'lapis_lazuli', 'quartz', 'amethyst_shard', 'raw_iron', 'iron_ingot', 'raw_copper', 'copper_ingot', 'raw_gold', 'gold_ingot', 'netherite_ingot', 'netherite_scrap', 'wooden_sword', 'wooden_shovel', 'wooden_pickaxe', 'wooden_axe', 'wooden_hoe', 'stone_sword', 'stone_shovel', 'stone_pickaxe', 'stone_axe', 'stone_hoe', 'golden_sword', 'golden_shovel', 'golden_pickaxe', 'golden_axe', 'golden_hoe', 'iron_sword', 'iron_shovel', 'iron_pickaxe', 'iron_axe', 'iron_hoe', 'diamond_sword', 'diamond_shovel', 'diamond_pickaxe', 'diamond_axe', 'diamond_hoe', 'netherite_sword', 'netherite_shovel', 'netherite_pickaxe', 'netherite_axe', 'netherite_hoe', 'stick', 'bowl', 'mushroom_stew', 'string', 'feather', 'gunpowder', 'wheat_seeds', 'wheat', 'bread', 'leather_helmet', 'leather_chestplate', 'leather_leggings', 'leather_boots', 'chainmail_helmet', 'chainmail_chestplate', 'chainmail_leggings', 'chainmail_boots', 'iron_helmet', 'iron_chestplate', 'iron_leggings', 'iron_boots', 'diamond_helmet', 'diamond_chestplate', 'diamond_leggings', 'diamond_boots', 'golden_helmet', 'golden_chestplate', 'golden_leggings', 'golden_boots', 'netherite_helmet', 'netherite_chestplate', 'netherite_leggings', 'netherite_boots', 'flint', 'porkchop', 'cooked_porkchop', 'painting', 'golden_apple', 'enchanted_golden_apple', 'oak_sign', 'spruce_sign', 'birch_sign', 'jungle_sign', 'acacia_sign', 'dark_oak_sign', 'mangrove_sign', 'bamboo_sign', 'crimson_sign', 'warped_sign', 'oak_hanging_sign', 'spruce_hanging_sign', 'birch_hanging_sign', 'jungle_hanging_sign', 'acacia_hanging_sign', 'dark_oak_hanging_sign', 'mangrove_hanging_sign', 'bamboo_hanging_sign', 'crimson_hanging_sign', 'warped_hanging_sign', 'bucket', 'water_bucket', 'lava_bucket', 'powder_snow_bucket', 'snowball', 'leather', 'milk_bucket', 'pufferfish_bucket', 'salmon_bucket', 'cod_bucket', 'tropical_fish_bucket', 'axolotl_bucket', 'tadpole_bucket', 'brick', 'clay_ball', 'dried_kelp_block', 'paper', 'book', 'slime_ball', 'egg', 'compass', 'recovery_compass', 'bundle', 'fishing_rod', 'clock', 'spyglass', 'glowstone_dust', 'cod', 'salmon', 'tropical_fish', 'pufferfish', 'cooked_cod', 'cooked_salmon', 'ink_sac', 'glow_ink_sac', 'cocoa_beans', 'white_dye', 'orange_dye', 'magenta_dye', 'light_blue_dye', 'yellow_dye', 'lime_dye', 'pink_dye', 'gray_dye', 'light_gray_dye', 'cyan_dye', 'purple_dye', 'blue_dye', 'brown_dye', 'green_dye', 'red_dye', 'black_dye', 'bone_meal', 'bone', 'sugar', 'cake', 'white_bed', 'orange_bed', 'magenta_bed', 'light_blue_bed', 'yellow_bed', 'lime_bed', 'pink_bed', 'gray_bed', 'light_gray_bed', 'cyan_bed', 'purple_bed', 'blue_bed', 'brown_bed', 'green_bed', 'red_bed', 'black_bed', 'cookie', 'filled_map', 'shears', 'melon_slice', 'dried_kelp', 'pumpkin_seeds', 'melon_seeds', 'beef', 'cooked_beef', 'chicken', 'cooked_chicken', 'rotten_flesh', 'ender_pearl', 'blaze_rod', 'ghast_tear', 'gold_nugget', 'nether_wart', 'potion', 'glass_bottle', 'spider_eye', 'fermented_spider_eye', 'blaze_powder', 'magma_cream', 'brewing_stand', 'cauldron', 'ender_eye', 'glistering_melon_slice', 'allay_spawn_egg', 'axolotl_spawn_egg', 'bat_spawn_egg', 'bee_spawn_egg', 'blaze_spawn_egg', 'cat_spawn_egg', 'camel_spawn_egg', 'cave_spider_spawn_egg', 'chicken_spawn_egg', 'cod_spawn_egg', 'cow_spawn_egg', 'creeper_spawn_egg', 'dolphin_spawn_egg', 'donkey_spawn_egg', 'drowned_spawn_egg', 'elder_guardian_spawn_egg', 'ender_dragon_spawn_egg', 'enderman_spawn_egg', 'endermite_spawn_egg', 'evoker_spawn_egg', 'fox_spawn_egg', 'frog_spawn_egg', 'ghast_spawn_egg', 'glow_squid_spawn_egg', 'goat_spawn_egg', 'guardian_spawn_egg', 'hoglin_spawn_egg', 'horse_spawn_egg', 'husk_spawn_egg', 'iron_golem_spawn_egg', 'llama_spawn_egg', 'magma_cube_spawn_egg', 'mooshroom_spawn_egg', 'mule_spawn_egg', 'ocelot_spawn_egg', 'panda_spawn_egg', 'parrot_spawn_egg', 'phantom_spawn_egg', 'pig_spawn_egg', 'piglin_spawn_egg', 'piglin_brute_spawn_egg', 'pillager_spawn_egg', 'polar_bear_spawn_egg', 'pufferfish_spawn_egg', 'rabbit_spawn_egg', 'ravager_spawn_egg', 'salmon_spawn_egg', 'sheep_spawn_egg', 'shulker_spawn_egg', 'silverfish_spawn_egg', 'skeleton_spawn_egg', 'skeleton_horse_spawn_egg', 'slime_spawn_egg', 'snow_golem_spawn_egg', 'spider_spawn_egg', 'squid_spawn_egg', 'stray_spawn_egg', 'strider_spawn_egg', 'tadpole_spawn_egg', 'trader_llama_spawn_egg', 'tropical_fish_spawn_egg', 'turtle_spawn_egg', 'vex_spawn_egg', 'villager_spawn_egg', 'vindicator_spawn_egg', 'wandering_trader_spawn_egg', 'warden_spawn_egg', 'witch_spawn_egg', 'wither_spawn_egg', 'wither_skeleton_spawn_egg', 'wolf_spawn_egg', 'zoglin_spawn_egg', 'zombie_spawn_egg', 'zombie_horse_spawn_egg', 'zombie_villager_spawn_egg', 'zombified_piglin_spawn_egg', 'experience_bottle', 'fire_charge', 'writable_book', 'written_book', 'item_frame', 'glow_item_frame', 'flower_pot', 'carrot', 'potato', 'baked_potato', 'poisonous_potato', 'map', 'golden_carrot', 'skeleton_skull', 'wither_skeleton_skull', 'player_head', 'zombie_head', 'creeper_head', 'dragon_head', 'piglin_head', 'nether_star', 'pumpkin_pie', 'firework_rocket', 'firework_star', 'enchanted_book', 'nether_brick', 'prismarine_shard', 'prismarine_crystals', 'rabbit', 'cooked_rabbit', 'rabbit_stew', 'rabbit_foot', 'rabbit_hide', 'armor_stand', 'iron_horse_armor', 'golden_horse_armor', 'diamond_horse_armor', 'leather_horse_armor', 'lead', 'name_tag', 'command_block_minecart', 'mutton', 'cooked_mutton', 'white_banner', 'orange_banner', 'magenta_banner', 'light_blue_banner', 'yellow_banner', 'lime_banner', 'pink_banner', 'gray_banner', 'light_gray_banner', 'cyan_banner', 'purple_banner', 'blue_banner', 'brown_banner', 'green_banner', 'red_banner', 'black_banner', 'end_crystal', 'chorus_fruit', 'popped_chorus_fruit', 'beetroot', 'beetroot_seeds', 'beetroot_soup', 'dragon_breath', 'splash_potion', 'spectral_arrow', 'tipped_arrow', 'lingering_potion', 'shield', 'totem_of_undying', 'shulker_shell', 'iron_nugget', 'knowledge_book', 'debug_stick', 'music_disc_13', 'music_disc_cat', 'music_disc_blocks', 'music_disc_chirp', 'music_disc_far', 'music_disc_mall', 'music_disc_mellohi', 'music_disc_stal', 'music_disc_strad', 'music_disc_ward', 'music_disc_11', 'music_disc_wait', 'music_disc_otherside', 'music_disc_5', 'music_disc_pigstep', 'disc_fragment_5', 'trident', 'phantom_membrane', 'nautilus_shell', 'heart_of_the_sea', 'crossbow', 'suspicious_stew', 'loom', 'flower_banner_pattern', 'creeper_banner_pattern', 'skull_banner_pattern', 'mojang_banner_pattern', 'globe_banner_pattern', 'piglin_banner_pattern', 'goat_horn', 'composter', 'barrel', 'smoker', 'blast_furnace', 'cartography_table', 'fletching_table', 'grindstone', 'smithing_table', 'stonecutter', 'bell', 'lantern', 'soul_lantern', 'sweet_berries', 'glow_berries', 'campfire', 'soul_campfire', 'shroomlight', 'honeycomb', 'bee_nest', 'beehive', 'honey_bottle', 'honeycomb_block', 'lodestone', 'crying_obsidian', 'blackstone', 'blackstone_slab', 'blackstone_stairs', 'gilded_blackstone', 'polished_blackstone', 'polished_blackstone_slab', 'polished_blackstone_stairs', 'chiseled_polished_blackstone', 'polished_blackstone_bricks', 'polished_blackstone_brick_slab', 'polished_blackstone_brick_stairs', 'cracked_polished_blackstone_bricks', 'respawn_anchor', 'candle', 'white_candle', 'orange_candle', 'magenta_candle', 'light_blue_candle', 'yellow_candle', 'lime_candle', 'pink_candle', 'gray_candle', 'light_gray_candle', 'cyan_candle', 'purple_candle', 'blue_candle', 'brown_candle', 'green_candle', 'red_candle', 'black_candle', 'small_amethyst_bud', 'medium_amethyst_bud', 'large_amethyst_bud', 'amethyst_cluster', 'pointed_dripstone', 'ochre_froglight', 'verdant_froglight', 'pearlescent_froglight', 'frogspawn', 'echo_shard', 'water', 'lava', 'tall_seagrass', 'piston_head', 'moving_piston', 'wall_torch', 'fire', 'soul_fire', 'redstone_wire', 'oak_wall_sign', 'spruce_wall_sign', 'birch_wall_sign', 'acacia_wall_sign', 'jungle_wall_sign', 'dark_oak_wall_sign', 'mangrove_wall_sign', 'bamboo_wall_sign', 'oak_wall_hanging_sign', 'spruce_wall_hanging_sign', 'birch_wall_hanging_sign', 'acacia_wall_hanging_sign', 'jungle_wall_hanging_sign', 'dark_oak_wall_hanging_sign', 'mangrove_wall_hanging_sign', 'crimson_wall_hanging_sign', 'warped_wall_hanging_sign', 'bamboo_wall_hanging_sign', 'redstone_wall_torch', 'soul_wall_torch', 'nether_portal', 'attached_pumpkin_stem', 'attached_melon_stem', 'pumpkin_stem', 'melon_stem', 'water_cauldron', 'lava_cauldron', 'powder_snow_cauldron', 'end_portal', 'cocoa', 'tripwire', 'potted_oak_sapling', 'potted_spruce_sapling', 'potted_birch_sapling', 'potted_jungle_sapling', 'potted_acacia_sapling', 'potted_dark_oak_sapling', 'potted_mangrove_propagule', 'potted_fern', 'potted_dandelion', 'potted_poppy', 'potted_blue_orchid', 'potted_allium', 'potted_azure_bluet', 'potted_red_tulip', 'potted_orange_tulip', 'potted_white_tulip', 'potted_pink_tulip', 'potted_oxeye_daisy', 'potted_cornflower', 'potted_lily_of_the_valley', 'potted_wither_rose', 'potted_red_mushroom', 'potted_brown_mushroom', 'potted_dead_bush', 'potted_cactus', 'carrots', 'potatoes', 'skeleton_wall_skull', 'wither_skeleton_wall_skull', 'zombie_wall_head', 'player_wall_head', 'creeper_wall_head', 'dragon_wall_head', 'piglin_wall_head', 'white_wall_banner', 'orange_wall_banner', 'magenta_wall_banner', 'light_blue_wall_banner', 'yellow_wall_banner', 'lime_wall_banner', 'pink_wall_banner', 'gray_wall_banner', 'light_gray_wall_banner', 'cyan_wall_banner', 'purple_wall_banner', 'blue_wall_banner', 'brown_wall_banner', 'green_wall_banner', 'red_wall_banner', 'black_wall_banner', 'beetroots', 'end_gateway', 'frosted_ice', 'kelp_plant', 'dead_tube_coral_wall_fan', 'dead_brain_coral_wall_fan', 'dead_bubble_coral_wall_fan', 'dead_fire_coral_wall_fan', 'dead_horn_coral_wall_fan', 'tube_coral_wall_fan', 'brain_coral_wall_fan', 'bubble_coral_wall_fan', 'fire_coral_wall_fan', 'horn_coral_wall_fan', 'bamboo_sapling', 'potted_bamboo', 'void_air', 'cave_air', 'bubble_column', 'sweet_berry_bush', 'weeping_vines_plant', 'twisting_vines_plant', 'crimson_wall_sign', 'warped_wall_sign', 'potted_crimson_fungus', 'potted_warped_fungus', 'potted_crimson_roots', 'potted_warped_roots', 'candle_cake', 'white_candle_cake', 'orange_candle_cake', 'magenta_candle_cake', 'light_blue_candle_cake', 'yellow_candle_cake', 'lime_candle_cake', 'pink_candle_cake', 'gray_candle_cake', 'light_gray_candle_cake', 'cyan_candle_cake', 'purple_candle_cake', 'blue_candle_cake', 'brown_candle_cake', 'green_candle_cake', 'red_candle_cake', 'black_candle_cake', 'powder_snow', 'cave_vines', 'cave_vines_plant', 'big_dripleaf_stem', 'potted_azalea_bush', 'potted_flowering_azalea_bush']
results = {}
missing = []
for item in ITEMS:
print(f'Testing {item}')
is_missing = True
for type in TRY:
url = URL % (type, item)
if requests.get(url).ok:
results[item] = type
is_missing = False
break
if is_missing:
missing.append(item)
result_word = 'result' if len(results) == 1 else 'results'
missing_word = 'item' if len(missing) == 1 else 'items'
print(f'Writing {len(results)} {result_word} and {len(missing)} missing {missing_word} to the disk')
Path(RESULT_FILE).write_text(json.dumps(results, indent=JSON_INDENTS))
Path(MISSING_FILE).write_text(json.dumps(missing, indent=JSON_INDENTS))
print('Done!')
[
"air",
"grass_block",
"podzol",
"ancient_debris",
"cut_copper_stairs",
"exposed_cut_copper_stairs",
"weathered_cut_copper_stairs",
"oxidized_cut_copper_stairs",
"cut_copper_slab",
"exposed_cut_copper_slab",
"weathered_cut_copper_slab",
"oxidized_cut_copper_slab",
"waxed_copper_block",
"waxed_exposed_copper",
"waxed_weathered_copper",
"waxed_oxidized_copper",
"waxed_cut_copper",
"waxed_exposed_cut_copper",
"waxed_weathered_cut_copper",
"waxed_oxidized_cut_copper",
"waxed_cut_copper_stairs",
"waxed_exposed_cut_copper_stairs",
"waxed_weathered_cut_copper_stairs",
"waxed_oxidized_cut_copper_stairs",
"waxed_cut_copper_slab",
"waxed_exposed_cut_copper_slab",
"waxed_weathered_cut_copper_slab",
"waxed_oxidized_cut_copper_slab",
"mangrove_roots",
"muddy_mangrove_roots",
"stripped_oak_wood",
"stripped_spruce_wood",
"stripped_birch_wood",
"stripped_jungle_wood",
"stripped_acacia_wood",
"stripped_dark_oak_wood",
"stripped_mangrove_wood",
"stripped_crimson_hyphae",
"stripped_warped_hyphae",
"oak_wood",
"spruce_wood",
"birch_wood",
"jungle_wood",
"acacia_wood",
"dark_oak_wood",
"mangrove_wood",
"crimson_hyphae",
"warped_hyphae",
"azalea",
"flowering_azalea",
"moss_carpet",
"big_dripleaf",
"small_dripleaf",
"oak_slab",
"spruce_slab",
"birch_slab",
"jungle_slab",
"acacia_slab",
"dark_oak_slab",
"mangrove_slab",
"bamboo_slab",
"bamboo_mosaic_slab",
"crimson_slab",
"warped_slab",
"stone_slab",
"smooth_stone_slab",
"sandstone_slab",
"cut_sandstone_slab",
"petrified_oak_slab",
"cobblestone_slab",
"brick_slab",
"stone_brick_slab",
"mud_brick_slab",
"nether_brick_slab",
"quartz_slab",
"red_sandstone_slab",
"cut_red_sandstone_slab",
"purpur_slab",
"prismarine_slab",
"prismarine_brick_slab",
"dark_prismarine_slab",
"smooth_quartz",
"smooth_red_sandstone",
"smooth_sandstone",
"chiseled_bookshelf",
"purpur_stairs",
"chest",
"crafting_table",
"furnace",
"cobblestone_stairs",
"snow_block",
"cactus",
"jukebox",
"oak_fence",
"spruce_fence",
"birch_fence",
"jungle_fence",
"acacia_fence",
"dark_oak_fence",
"mangrove_fence",
"crimson_fence",
"warped_fence",
"pumpkin",
"basalt",
"polished_basalt",
"infested_stone",
"infested_cobblestone",
"infested_stone_bricks",
"infested_mossy_stone_bricks",
"infested_cracked_stone_bricks",
"infested_chiseled_stone_bricks",
"infested_deepslate",
"reinforced_deepslate",
"glass_pane",
"melon",
"brick_stairs",
"stone_brick_stairs",
"mud_brick_stairs",
"mycelium",
"nether_brick_fence",
"nether_brick_stairs",
"sculk_catalyst",
"sculk_shrieker",
"enchanting_table",
"end_portal_frame",
"sandstone_stairs",
"ender_chest",
"oak_stairs",
"spruce_stairs",
"birch_stairs",
"jungle_stairs",
"acacia_stairs",
"dark_oak_stairs",
"mangrove_stairs",
"bamboo_stairs",
"bamboo_mosaic_stairs",
"crimson_stairs",
"warped_stairs",
"command_block",
"cobblestone_wall",
"mossy_cobblestone_wall",
"brick_wall",
"prismarine_wall",
"red_sandstone_wall",
"mossy_stone_brick_wall",
"granite_wall",
"stone_brick_wall",
"mud_brick_wall",
"nether_brick_wall",
"andesite_wall",
"red_nether_brick_wall",
"sandstone_wall",
"end_stone_brick_wall",
"diorite_wall",
"blackstone_wall",
"polished_blackstone_wall",
"polished_blackstone_brick_wall",
"cobbled_deepslate_wall",
"polished_deepslate_wall",
"deepslate_brick_wall",
"deepslate_tile_wall",
"chipped_anvil",
"damaged_anvil",
"quartz_block",
"quartz_stairs",
"hay_block",
"white_carpet",
"orange_carpet",
"magenta_carpet",
"light_blue_carpet",
"yellow_carpet",
"lime_carpet",
"pink_carpet",
"gray_carpet",
"light_gray_carpet",
"cyan_carpet",
"purple_carpet",
"blue_carpet",
"brown_carpet",
"green_carpet",
"red_carpet",
"black_carpet",
"dirt_path",
"sunflower",
"lilac",
"rose_bush",
"peony",
"tall_grass",
"large_fern",
"white_stained_glass_pane",
"orange_stained_glass_pane",
"magenta_stained_glass_pane",
"light_blue_stained_glass_pane",
"yellow_stained_glass_pane",
"lime_stained_glass_pane",
"pink_stained_glass_pane",
"gray_stained_glass_pane",
"light_gray_stained_glass_pane",
"cyan_stained_glass_pane",
"purple_stained_glass_pane",
"blue_stained_glass_pane",
"brown_stained_glass_pane",
"green_stained_glass_pane",
"red_stained_glass_pane",
"black_stained_glass_pane",
"prismarine_stairs",
"prismarine_brick_stairs",
"dark_prismarine_stairs",
"red_sandstone_stairs",
"repeating_command_block",
"chain_command_block",
"magma_block",
"bone_block",
"polished_granite_stairs",
"smooth_red_sandstone_stairs",
"mossy_stone_brick_stairs",
"polished_diorite_stairs",
"mossy_cobblestone_stairs",
"end_stone_brick_stairs",
"stone_stairs",
"smooth_sandstone_stairs",
"smooth_quartz_stairs",
"granite_stairs",
"andesite_stairs",
"red_nether_brick_stairs",
"polished_andesite_stairs",
"diorite_stairs",
"cobbled_deepslate_stairs",
"polished_deepslate_stairs",
"deepslate_brick_stairs",
"deepslate_tile_stairs",
"polished_granite_slab",
"smooth_red_sandstone_slab",
"mossy_stone_brick_slab",
"polished_diorite_slab",
"mossy_cobblestone_slab",
"end_stone_brick_slab",
"smooth_sandstone_slab",
"smooth_quartz_slab",
"granite_slab",
"andesite_slab",
"red_nether_brick_slab",
"polished_andesite_slab",
"diorite_slab",
"cobbled_deepslate_slab",
"polished_deepslate_slab",
"deepslate_brick_slab",
"deepslate_tile_slab",
"scaffolding",
"piston",
"sticky_piston",
"honey_block",
"observer",
"dispenser",
"dropper",
"lectern",
"target",
"daylight_detector",
"sculk_sensor",
"trapped_chest",
"tnt",
"stone_button",
"polished_blackstone_button",
"oak_button",
"spruce_button",
"birch_button",
"jungle_button",
"acacia_button",
"dark_oak_button",
"mangrove_button",
"bamboo_button",
"crimson_button",
"warped_button",
"stone_pressure_plate",
"polished_blackstone_pressure_plate",
"light_weighted_pressure_plate",
"heavy_weighted_pressure_plate",
"oak_pressure_plate",
"spruce_pressure_plate",
"birch_pressure_plate",
"jungle_pressure_plate",
"acacia_pressure_plate",
"dark_oak_pressure_plate",
"mangrove_pressure_plate",
"bamboo_pressure_plate",
"crimson_pressure_plate",
"warped_pressure_plate",
"oak_fence_gate",
"spruce_fence_gate",
"birch_fence_gate",
"jungle_fence_gate",
"acacia_fence_gate",
"dark_oak_fence_gate",
"mangrove_fence_gate",
"crimson_fence_gate",
"warped_fence_gate",
"jigsaw",
"enchanted_golden_apple",
"dried_kelp_block",
"compass",
"recovery_compass",
"clock",
"white_bed",
"orange_bed",
"magenta_bed",
"light_blue_bed",
"yellow_bed",
"lime_bed",
"pink_bed",
"gray_bed",
"light_gray_bed",
"cyan_bed",
"purple_bed",
"blue_bed",
"brown_bed",
"green_bed",
"red_bed",
"black_bed",
"allay_spawn_egg",
"axolotl_spawn_egg",
"bat_spawn_egg",
"bee_spawn_egg",
"blaze_spawn_egg",
"cat_spawn_egg",
"camel_spawn_egg",
"cave_spider_spawn_egg",
"chicken_spawn_egg",
"cod_spawn_egg",
"cow_spawn_egg",
"creeper_spawn_egg",
"dolphin_spawn_egg",
"donkey_spawn_egg",
"drowned_spawn_egg",
"elder_guardian_spawn_egg",
"ender_dragon_spawn_egg",
"enderman_spawn_egg",
"endermite_spawn_egg",
"evoker_spawn_egg",
"fox_spawn_egg",
"frog_spawn_egg",
"ghast_spawn_egg",
"glow_squid_spawn_egg",
"goat_spawn_egg",
"guardian_spawn_egg",
"hoglin_spawn_egg",
"horse_spawn_egg",
"husk_spawn_egg",
"iron_golem_spawn_egg",
"llama_spawn_egg",
"magma_cube_spawn_egg",
"mooshroom_spawn_egg",
"mule_spawn_egg",
"ocelot_spawn_egg",
"panda_spawn_egg",
"parrot_spawn_egg",
"phantom_spawn_egg",
"pig_spawn_egg",
"piglin_spawn_egg",
"piglin_brute_spawn_egg",
"pillager_spawn_egg",
"polar_bear_spawn_egg",
"pufferfish_spawn_egg",
"rabbit_spawn_egg",
"ravager_spawn_egg",
"salmon_spawn_egg",
"sheep_spawn_egg",
"shulker_spawn_egg",
"silverfish_spawn_egg",
"skeleton_spawn_egg",
"skeleton_horse_spawn_egg",
"slime_spawn_egg",
"snow_golem_spawn_egg",
"spider_spawn_egg",
"squid_spawn_egg",
"stray_spawn_egg",
"strider_spawn_egg",
"tadpole_spawn_egg",
"trader_llama_spawn_egg",
"tropical_fish_spawn_egg",
"turtle_spawn_egg",
"vex_spawn_egg",
"villager_spawn_egg",
"vindicator_spawn_egg",
"wandering_trader_spawn_egg",
"warden_spawn_egg",
"witch_spawn_egg",
"wither_spawn_egg",
"wither_skeleton_spawn_egg",
"wolf_spawn_egg",
"zoglin_spawn_egg",
"zombie_spawn_egg",
"zombie_horse_spawn_egg",
"zombie_villager_spawn_egg",
"zombified_piglin_spawn_egg",
"skeleton_skull",
"wither_skeleton_skull",
"player_head",
"zombie_head",
"creeper_head",
"dragon_head",
"piglin_head",
"white_banner",
"orange_banner",
"magenta_banner",
"light_blue_banner",
"yellow_banner",
"lime_banner",
"pink_banner",
"gray_banner",
"light_gray_banner",
"cyan_banner",
"purple_banner",
"blue_banner",
"brown_banner",
"green_banner",
"red_banner",
"black_banner",
"tipped_arrow",
"shield",
"debug_stick",
"crossbow",
"loom",
"composter",
"barrel",
"smoker",
"blast_furnace",
"cartography_table",
"fletching_table",
"grindstone",
"smithing_table",
"stonecutter",
"bee_nest",
"beehive",
"lodestone",
"blackstone_slab",
"blackstone_stairs",
"polished_blackstone_slab",
"polished_blackstone_stairs",
"polished_blackstone_brick_slab",
"polished_blackstone_brick_stairs",
"respawn_anchor",
"ochre_froglight",
"verdant_froglight",
"pearlescent_froglight",
"water",
"lava",
"tall_seagrass",
"piston_head",
"moving_piston",
"wall_torch",
"fire",
"soul_fire",
"redstone_wire",
"oak_wall_sign",
"spruce_wall_sign",
"birch_wall_sign",
"acacia_wall_sign",
"jungle_wall_sign",
"dark_oak_wall_sign",
"mangrove_wall_sign",
"bamboo_wall_sign",
"oak_wall_hanging_sign",
"spruce_wall_hanging_sign",
"birch_wall_hanging_sign",
"acacia_wall_hanging_sign",
"jungle_wall_hanging_sign",
"dark_oak_wall_hanging_sign",
"mangrove_wall_hanging_sign",
"crimson_wall_hanging_sign",
"warped_wall_hanging_sign",
"bamboo_wall_hanging_sign",
"redstone_wall_torch",
"soul_wall_torch",
"water_cauldron",
"lava_cauldron",
"powder_snow_cauldron",
"end_portal",
"cocoa",
"potted_oak_sapling",
"potted_spruce_sapling",
"potted_birch_sapling",
"potted_jungle_sapling",
"potted_acacia_sapling",
"potted_dark_oak_sapling",
"potted_mangrove_propagule",
"potted_fern",
"potted_dandelion",
"potted_poppy",
"potted_blue_orchid",
"potted_allium",
"potted_azure_bluet",
"potted_red_tulip",
"potted_orange_tulip",
"potted_white_tulip",
"potted_pink_tulip",
"potted_oxeye_daisy",
"potted_cornflower",
"potted_lily_of_the_valley",
"potted_wither_rose",
"potted_red_mushroom",
"potted_brown_mushroom",
"potted_dead_bush",
"potted_cactus",
"carrots",
"potatoes",
"skeleton_wall_skull",
"wither_skeleton_wall_skull",
"zombie_wall_head",
"player_wall_head",
"creeper_wall_head",
"dragon_wall_head",
"piglin_wall_head",
"white_wall_banner",
"orange_wall_banner",
"magenta_wall_banner",
"light_blue_wall_banner",
"yellow_wall_banner",
"lime_wall_banner",
"pink_wall_banner",
"gray_wall_banner",
"light_gray_wall_banner",
"cyan_wall_banner",
"purple_wall_banner",
"blue_wall_banner",
"brown_wall_banner",
"green_wall_banner",
"red_wall_banner",
"black_wall_banner",
"beetroots",
"end_gateway",
"frosted_ice",
"dead_tube_coral_wall_fan",
"dead_brain_coral_wall_fan",
"dead_bubble_coral_wall_fan",
"dead_fire_coral_wall_fan",
"dead_horn_coral_wall_fan",
"tube_coral_wall_fan",
"brain_coral_wall_fan",
"bubble_coral_wall_fan",
"fire_coral_wall_fan",
"horn_coral_wall_fan",
"bamboo_sapling",
"potted_bamboo",
"void_air",
"cave_air",
"bubble_column",
"sweet_berry_bush",
"crimson_wall_sign",
"warped_wall_sign",
"potted_crimson_fungus",
"potted_warped_fungus",
"potted_crimson_roots",
"potted_warped_roots",
"candle_cake",
"white_candle_cake",
"orange_candle_cake",
"magenta_candle_cake",
"light_blue_candle_cake",
"yellow_candle_cake",
"lime_candle_cake",
"pink_candle_cake",
"gray_candle_cake",
"light_gray_candle_cake",
"cyan_candle_cake",
"purple_candle_cake",
"blue_candle_cake",
"brown_candle_cake",
"green_candle_cake",
"red_candle_cake",
"black_candle_cake",
"potted_azalea_bush",
"potted_flowering_azalea_bush"
]
{
"stone": "block",
"granite": "block",
"polished_granite": "block",
"diorite": "block",
"polished_diorite": "block",
"andesite": "block",
"polished_andesite": "block",
"deepslate": "block",
"cobbled_deepslate": "block",
"polished_deepslate": "block",
"calcite": "block",
"tuff": "block",
"dripstone_block": "block",
"dirt": "block",
"coarse_dirt": "block",
"rooted_dirt": "block",
"mud": "block",
"crimson_nylium": "block",
"warped_nylium": "block",
"cobblestone": "block",
"oak_planks": "block",
"spruce_planks": "block",
"birch_planks": "block",
"jungle_planks": "block",
"acacia_planks": "block",
"dark_oak_planks": "block",
"mangrove_planks": "block",
"bamboo_planks": "block",
"crimson_planks": "block",
"warped_planks": "block",
"bamboo_mosaic": "block",
"oak_sapling": "block",
"spruce_sapling": "block",
"birch_sapling": "block",
"jungle_sapling": "block",
"acacia_sapling": "block",
"dark_oak_sapling": "block",
"mangrove_propagule": "item",
"bedrock": "block",
"sand": "block",
"red_sand": "block",
"gravel": "block",
"coal_ore": "block",
"deepslate_coal_ore": "block",
"iron_ore": "block",
"deepslate_iron_ore": "block",
"copper_ore": "block",
"deepslate_copper_ore": "block",
"gold_ore": "block",
"deepslate_gold_ore": "block",
"redstone_ore": "block",
"deepslate_redstone_ore": "block",
"emerald_ore": "block",
"deepslate_emerald_ore": "block",
"lapis_ore": "block",
"deepslate_lapis_ore": "block",
"diamond_ore": "block",
"deepslate_diamond_ore": "block",
"nether_gold_ore": "block",
"nether_quartz_ore": "block",
"coal_block": "block",
"raw_iron_block": "block",
"raw_copper_block": "block",
"raw_gold_block": "block",
"amethyst_block": "block",
"budding_amethyst": "block",
"iron_block": "block",
"copper_block": "block",
"gold_block": "block",
"diamond_block": "block",
"netherite_block": "block",
"exposed_copper": "block",
"weathered_copper": "block",
"oxidized_copper": "block",
"cut_copper": "block",
"exposed_cut_copper": "block",
"weathered_cut_copper": "block",
"oxidized_cut_copper": "block",
"oak_log": "block",
"spruce_log": "block",
"birch_log": "block",
"jungle_log": "block",
"acacia_log": "block",
"dark_oak_log": "block",
"mangrove_log": "block",
"crimson_stem": "block",
"warped_stem": "block",
"bamboo_block": "block",
"stripped_oak_log": "block",
"stripped_spruce_log": "block",
"stripped_birch_log": "block",
"stripped_jungle_log": "block",
"stripped_acacia_log": "block",
"stripped_dark_oak_log": "block",
"stripped_mangrove_log": "block",
"stripped_crimson_stem": "block",
"stripped_warped_stem": "block",
"stripped_bamboo_block": "block",
"oak_leaves": "block",
"spruce_leaves": "block",
"birch_leaves": "block",
"jungle_leaves": "block",
"acacia_leaves": "block",
"dark_oak_leaves": "block",
"mangrove_leaves": "block",
"azalea_leaves": "block",
"flowering_azalea_leaves": "block",
"sponge": "block",
"wet_sponge": "block",
"glass": "block",
"tinted_glass": "block",
"lapis_block": "block",
"sandstone": "block",
"chiseled_sandstone": "block",
"cut_sandstone": "block",
"cobweb": "block",
"grass": "block",
"fern": "block",
"dead_bush": "block",
"seagrass": "item",
"sea_pickle": "item",
"white_wool": "block",
"orange_wool": "block",
"magenta_wool": "block",
"light_blue_wool": "block",
"yellow_wool": "block",
"lime_wool": "block",
"pink_wool": "block",
"gray_wool": "block",
"light_gray_wool": "block",
"cyan_wool": "block",
"purple_wool": "block",
"blue_wool": "block",
"brown_wool": "block",
"green_wool": "block",
"red_wool": "block",
"black_wool": "block",
"dandelion": "block",
"poppy": "block",
"blue_orchid": "block",
"allium": "block",
"azure_bluet": "block",
"red_tulip": "block",
"orange_tulip": "block",
"white_tulip": "block",
"pink_tulip": "block",
"oxeye_daisy": "block",
"cornflower": "block",
"lily_of_the_valley": "block",
"wither_rose": "block",
"spore_blossom": "block",
"brown_mushroom": "block",
"red_mushroom": "block",
"crimson_fungus": "block",
"warped_fungus": "block",
"crimson_roots": "block",
"warped_roots": "block",
"nether_sprouts": "item",
"weeping_vines": "block",
"twisting_vines": "block",
"sugar_cane": "item",
"kelp": "item",
"moss_block": "block",
"hanging_roots": "block",
"bamboo": "item",
"smooth_stone": "block",
"bricks": "block",
"bookshelf": "block",
"mossy_cobblestone": "block",
"obsidian": "block",
"torch": "block",
"end_rod": "block",
"chorus_plant": "block",
"chorus_flower": "block",
"purpur_block": "block",
"purpur_pillar": "block",
"spawner": "block",
"farmland": "block",
"ladder": "block",
"snow": "block",
"ice": "block",
"clay": "block",
"bamboo_fence": "block",
"carved_pumpkin": "block",
"jack_o_lantern": "block",
"netherrack": "block",
"soul_sand": "block",
"soul_soil": "block",
"smooth_basalt": "block",
"soul_torch": "block",
"glowstone": "block",
"stone_bricks": "block",
"mossy_stone_bricks": "block",
"cracked_stone_bricks": "block",
"chiseled_stone_bricks": "block",
"packed_mud": "block",
"mud_bricks": "block",
"deepslate_bricks": "block",
"cracked_deepslate_bricks": "block",
"deepslate_tiles": "block",
"cracked_deepslate_tiles": "block",
"chiseled_deepslate": "block",
"brown_mushroom_block": "block",
"red_mushroom_block": "block",
"mushroom_stem": "block",
"iron_bars": "block",
"chain": "item",
"vine": "block",
"glow_lichen": "block",
"lily_pad": "block",
"nether_bricks": "block",
"cracked_nether_bricks": "block",
"chiseled_nether_bricks": "block",
"sculk": "block",
"sculk_vein": "block",
"end_stone": "block",
"end_stone_bricks": "block",
"dragon_egg": "block",
"emerald_block": "block",
"beacon": "block",
"anvil": "block",
"chiseled_quartz_block": "block",
"quartz_bricks": "block",
"quartz_pillar": "block",
"white_terracotta": "block",
"orange_terracotta": "block",
"magenta_terracotta": "block",
"light_blue_terracotta": "block",
"yellow_terracotta": "block",
"lime_terracotta": "block",
"pink_terracotta": "block",
"gray_terracotta": "block",
"light_gray_terracotta": "block",
"cyan_terracotta": "block",
"purple_terracotta": "block",
"blue_terracotta": "block",
"brown_terracotta": "block",
"green_terracotta": "block",
"red_terracotta": "block",
"black_terracotta": "block",
"barrier": "item",
"light": "item",
"terracotta": "block",
"packed_ice": "block",
"white_stained_glass": "block",
"orange_stained_glass": "block",
"magenta_stained_glass": "block",
"light_blue_stained_glass": "block",
"yellow_stained_glass": "block",
"lime_stained_glass": "block",
"pink_stained_glass": "block",
"gray_stained_glass": "block",
"light_gray_stained_glass": "block",
"cyan_stained_glass": "block",
"purple_stained_glass": "block",
"blue_stained_glass": "block",
"brown_stained_glass": "block",
"green_stained_glass": "block",
"red_stained_glass": "block",
"black_stained_glass": "block",
"prismarine": "block",
"prismarine_bricks": "block",
"dark_prismarine": "block",
"sea_lantern": "block",
"red_sandstone": "block",
"chiseled_red_sandstone": "block",
"cut_red_sandstone": "block",
"nether_wart_block": "block",
"warped_wart_block": "block",
"red_nether_bricks": "block",
"structure_void": "item",
"shulker_box": "block",
"white_shulker_box": "block",
"orange_shulker_box": "block",
"magenta_shulker_box": "block",
"light_blue_shulker_box": "block",
"yellow_shulker_box": "block",
"lime_shulker_box": "block",
"pink_shulker_box": "block",
"gray_shulker_box": "block",
"light_gray_shulker_box": "block",
"cyan_shulker_box": "block",
"purple_shulker_box": "block",
"blue_shulker_box": "block",
"brown_shulker_box": "block",
"green_shulker_box": "block",
"red_shulker_box": "block",
"black_shulker_box": "block",
"white_glazed_terracotta": "block",
"orange_glazed_terracotta": "block",
"magenta_glazed_terracotta": "block",
"light_blue_glazed_terracotta": "block",
"yellow_glazed_terracotta": "block",
"lime_glazed_terracotta": "block",
"pink_glazed_terracotta": "block",
"gray_glazed_terracotta": "block",
"light_gray_glazed_terracotta": "block",
"cyan_glazed_terracotta": "block",
"purple_glazed_terracotta": "block",
"blue_glazed_terracotta": "block",
"brown_glazed_terracotta": "block",
"green_glazed_terracotta": "block",
"red_glazed_terracotta": "block",
"black_glazed_terracotta": "block",
"white_concrete": "block",
"orange_concrete": "block",
"magenta_concrete": "block",
"light_blue_concrete": "block",
"yellow_concrete": "block",
"lime_concrete": "block",
"pink_concrete": "block",
"gray_concrete": "block",
"light_gray_concrete": "block",
"cyan_concrete": "block",
"purple_concrete": "block",
"blue_concrete": "block",
"brown_concrete": "block",
"green_concrete": "block",
"red_concrete": "block",
"black_concrete": "block",
"white_concrete_powder": "block",
"orange_concrete_powder": "block",
"magenta_concrete_powder": "block",
"light_blue_concrete_powder": "block",
"yellow_concrete_powder": "block",
"lime_concrete_powder": "block",
"pink_concrete_powder": "block",
"gray_concrete_powder": "block",
"light_gray_concrete_powder": "block",
"cyan_concrete_powder": "block",
"purple_concrete_powder": "block",
"blue_concrete_powder": "block",
"brown_concrete_powder": "block",
"green_concrete_powder": "block",
"red_concrete_powder": "block",
"black_concrete_powder": "block",
"turtle_egg": "item",
"dead_tube_coral_block": "block",
"dead_brain_coral_block": "block",
"dead_bubble_coral_block": "block",
"dead_fire_coral_block": "block",
"dead_horn_coral_block": "block",
"tube_coral_block": "block",
"brain_coral_block": "block",
"bubble_coral_block": "block",
"fire_coral_block": "block",
"horn_coral_block": "block",
"tube_coral": "block",
"brain_coral": "block",
"bubble_coral": "block",
"fire_coral": "block",
"horn_coral": "block",
"dead_brain_coral": "block",
"dead_bubble_coral": "block",
"dead_fire_coral": "block",
"dead_horn_coral": "block",
"dead_tube_coral": "block",
"tube_coral_fan": "block",
"brain_coral_fan": "block",
"bubble_coral_fan": "block",
"fire_coral_fan": "block",
"horn_coral_fan": "block",
"dead_tube_coral_fan": "block",
"dead_brain_coral_fan": "block",
"dead_bubble_coral_fan": "block",
"dead_fire_coral_fan": "block",
"dead_horn_coral_fan": "block",
"blue_ice": "block",
"conduit": "block",
"redstone": "item",
"redstone_torch": "block",
"redstone_block": "block",
"repeater": "item",
"comparator": "item",
"slime_block": "block",
"hopper": "item",
"lever": "block",
"lightning_rod": "block",
"tripwire_hook": "block",
"redstone_lamp": "block",
"note_block": "block",
"iron_door": "item",
"oak_door": "item",
"spruce_door": "item",
"birch_door": "item",
"jungle_door": "item",
"acacia_door": "item",
"dark_oak_door": "item",
"mangrove_door": "item",
"bamboo_door": "item",
"crimson_door": "item",
"warped_door": "item",
"iron_trapdoor": "block",
"oak_trapdoor": "block",
"spruce_trapdoor": "block",
"birch_trapdoor": "block",
"jungle_trapdoor": "block",
"acacia_trapdoor": "block",
"dark_oak_trapdoor": "block",
"mangrove_trapdoor": "block",
"bamboo_trapdoor": "block",
"crimson_trapdoor": "block",
"warped_trapdoor": "block",
"bamboo_fence_gate": "block",
"powered_rail": "block",
"detector_rail": "block",
"rail": "block",
"activator_rail": "block",
"saddle": "item",
"minecart": "item",
"chest_minecart": "item",
"furnace_minecart": "item",
"tnt_minecart": "item",
"hopper_minecart": "item",
"carrot_on_a_stick": "item",
"warped_fungus_on_a_stick": "item",
"elytra": "item",
"oak_boat": "item",
"oak_chest_boat": "item",
"spruce_boat": "item",
"spruce_chest_boat": "item",
"birch_boat": "item",
"birch_chest_boat": "item",
"jungle_boat": "item",
"jungle_chest_boat": "item",
"acacia_boat": "item",
"acacia_chest_boat": "item",
"dark_oak_boat": "item",
"dark_oak_chest_boat": "item",
"mangrove_boat": "item",
"mangrove_chest_boat": "item",
"bamboo_raft": "item",
"bamboo_chest_raft": "item",
"structure_block": "block",
"turtle_helmet": "item",
"scute": "item",
"flint_and_steel": "item",
"apple": "item",
"bow": "item",
"arrow": "item",
"coal": "item",
"charcoal": "item",
"diamond": "item",
"emerald": "item",
"lapis_lazuli": "item",
"quartz": "item",
"amethyst_shard": "item",
"raw_iron": "item",
"iron_ingot": "item",
"raw_copper": "item",
"copper_ingot": "item",
"raw_gold": "item",
"gold_ingot": "item",
"netherite_ingot": "item",
"netherite_scrap": "item",
"wooden_sword": "item",
"wooden_shovel": "item",
"wooden_pickaxe": "item",
"wooden_axe": "item",
"wooden_hoe": "item",
"stone_sword": "item",
"stone_shovel": "item",
"stone_pickaxe": "item",
"stone_axe": "item",
"stone_hoe": "item",
"golden_sword": "item",
"golden_shovel": "item",
"golden_pickaxe": "item",
"golden_axe": "item",
"golden_hoe": "item",
"iron_sword": "item",
"iron_shovel": "item",
"iron_pickaxe": "item",
"iron_axe": "item",
"iron_hoe": "item",
"diamond_sword": "item",
"diamond_shovel": "item",
"diamond_pickaxe": "item",
"diamond_axe": "item",
"diamond_hoe": "item",
"netherite_sword": "item",
"netherite_shovel": "item",
"netherite_pickaxe": "item",
"netherite_axe": "item",
"netherite_hoe": "item",
"stick": "item",
"bowl": "item",
"mushroom_stew": "item",
"string": "item",
"feather": "item",
"gunpowder": "item",
"wheat_seeds": "item",
"wheat": "item",
"bread": "item",
"leather_helmet": "item",
"leather_chestplate": "item",
"leather_leggings": "item",
"leather_boots": "item",
"chainmail_helmet": "item",
"chainmail_chestplate": "item",
"chainmail_leggings": "item",
"chainmail_boots": "item",
"iron_helmet": "item",
"iron_chestplate": "item",
"iron_leggings": "item",
"iron_boots": "item",
"diamond_helmet": "item",
"diamond_chestplate": "item",
"diamond_leggings": "item",
"diamond_boots": "item",
"golden_helmet": "item",
"golden_chestplate": "item",
"golden_leggings": "item",
"golden_boots": "item",
"netherite_helmet": "item",
"netherite_chestplate": "item",
"netherite_leggings": "item",
"netherite_boots": "item",
"flint": "item",
"porkchop": "item",
"cooked_porkchop": "item",
"painting": "item",
"golden_apple": "item",
"oak_sign": "item",
"spruce_sign": "item",
"birch_sign": "item",
"jungle_sign": "item",
"acacia_sign": "item",
"dark_oak_sign": "item",
"mangrove_sign": "item",
"bamboo_sign": "item",
"crimson_sign": "item",
"warped_sign": "item",
"oak_hanging_sign": "item",
"spruce_hanging_sign": "item",
"birch_hanging_sign": "item",
"jungle_hanging_sign": "item",
"acacia_hanging_sign": "item",
"dark_oak_hanging_sign": "item",
"mangrove_hanging_sign": "item",
"bamboo_hanging_sign": "item",
"crimson_hanging_sign": "item",
"warped_hanging_sign": "item",
"bucket": "item",
"water_bucket": "item",
"lava_bucket": "item",
"powder_snow_bucket": "item",
"snowball": "item",
"leather": "item",
"milk_bucket": "item",
"pufferfish_bucket": "item",
"salmon_bucket": "item",
"cod_bucket": "item",
"tropical_fish_bucket": "item",
"axolotl_bucket": "item",
"tadpole_bucket": "item",
"brick": "item",
"clay_ball": "item",
"paper": "item",
"book": "item",
"slime_ball": "item",
"egg": "item",
"bundle": "item",
"fishing_rod": "item",
"spyglass": "item",
"glowstone_dust": "item",
"cod": "item",
"salmon": "item",
"tropical_fish": "item",
"pufferfish": "item",
"cooked_cod": "item",
"cooked_salmon": "item",
"ink_sac": "item",
"glow_ink_sac": "item",
"cocoa_beans": "item",
"white_dye": "item",
"orange_dye": "item",
"magenta_dye": "item",
"light_blue_dye": "item",
"yellow_dye": "item",
"lime_dye": "item",
"pink_dye": "item",
"gray_dye": "item",
"light_gray_dye": "item",
"cyan_dye": "item",
"purple_dye": "item",
"blue_dye": "item",
"brown_dye": "item",
"green_dye": "item",
"red_dye": "item",
"black_dye": "item",
"bone_meal": "item",
"bone": "item",
"sugar": "item",
"cake": "item",
"cookie": "item",
"filled_map": "item",
"shears": "item",
"melon_slice": "item",
"dried_kelp": "item",
"pumpkin_seeds": "item",
"melon_seeds": "item",
"beef": "item",
"cooked_beef": "item",
"chicken": "item",
"cooked_chicken": "item",
"rotten_flesh": "item",
"ender_pearl": "item",
"blaze_rod": "item",
"ghast_tear": "item",
"gold_nugget": "item",
"nether_wart": "item",
"potion": "item",
"glass_bottle": "item",
"spider_eye": "item",
"fermented_spider_eye": "item",
"blaze_powder": "item",
"magma_cream": "item",
"brewing_stand": "item",
"cauldron": "item",
"ender_eye": "item",
"glistering_melon_slice": "item",
"experience_bottle": "item",
"fire_charge": "item",
"writable_book": "item",
"written_book": "item",
"item_frame": "item",
"glow_item_frame": "item",
"flower_pot": "item",
"carrot": "item",
"potato": "item",
"baked_potato": "item",
"poisonous_potato": "item",
"map": "item",
"golden_carrot": "item",
"nether_star": "item",
"pumpkin_pie": "item",
"firework_rocket": "item",
"firework_star": "item",
"enchanted_book": "item",
"nether_brick": "item",
"prismarine_shard": "item",
"prismarine_crystals": "item",
"rabbit": "item",
"cooked_rabbit": "item",
"rabbit_stew": "item",
"rabbit_foot": "item",
"rabbit_hide": "item",
"armor_stand": "item",
"iron_horse_armor": "item",
"golden_horse_armor": "item",
"diamond_horse_armor": "item",
"leather_horse_armor": "item",
"lead": "item",
"name_tag": "item",
"command_block_minecart": "item",
"mutton": "item",
"cooked_mutton": "item",
"end_crystal": "item",
"chorus_fruit": "item",
"popped_chorus_fruit": "item",
"beetroot": "item",
"beetroot_seeds": "item",
"beetroot_soup": "item",
"dragon_breath": "item",
"splash_potion": "item",
"spectral_arrow": "item",
"lingering_potion": "item",
"totem_of_undying": "item",
"shulker_shell": "item",
"iron_nugget": "item",
"knowledge_book": "item",
"music_disc_13": "item",
"music_disc_cat": "item",
"music_disc_blocks": "item",
"music_disc_chirp": "item",
"music_disc_far": "item",
"music_disc_mall": "item",
"music_disc_mellohi": "item",
"music_disc_stal": "item",
"music_disc_strad": "item",
"music_disc_ward": "item",
"music_disc_11": "item",
"music_disc_wait": "item",
"music_disc_otherside": "item",
"music_disc_5": "item",
"music_disc_pigstep": "item",
"disc_fragment_5": "item",
"trident": "item",
"phantom_membrane": "item",
"nautilus_shell": "item",
"heart_of_the_sea": "item",
"suspicious_stew": "item",
"flower_banner_pattern": "item",
"creeper_banner_pattern": "item",
"skull_banner_pattern": "item",
"mojang_banner_pattern": "item",
"globe_banner_pattern": "item",
"piglin_banner_pattern": "item",
"goat_horn": "item",
"bell": "item",
"lantern": "item",
"soul_lantern": "item",
"sweet_berries": "item",
"glow_berries": "item",
"campfire": "item",
"soul_campfire": "item",
"shroomlight": "block",
"honeycomb": "item",
"honey_bottle": "item",
"honeycomb_block": "block",
"crying_obsidian": "block",
"blackstone": "block",
"gilded_blackstone": "block",
"polished_blackstone": "block",
"chiseled_polished_blackstone": "block",
"polished_blackstone_bricks": "block",
"cracked_polished_blackstone_bricks": "block",
"candle": "item",
"white_candle": "item",
"orange_candle": "item",
"magenta_candle": "item",
"light_blue_candle": "item",
"yellow_candle": "item",
"lime_candle": "item",
"pink_candle": "item",
"gray_candle": "item",
"light_gray_candle": "item",
"cyan_candle": "item",
"purple_candle": "item",
"blue_candle": "item",
"brown_candle": "item",
"green_candle": "item",
"red_candle": "item",
"black_candle": "item",
"small_amethyst_bud": "block",
"medium_amethyst_bud": "block",
"large_amethyst_bud": "block",
"amethyst_cluster": "block",
"pointed_dripstone": "item",
"frogspawn": "block",
"echo_shard": "item",
"nether_portal": "block",
"attached_pumpkin_stem": "block",
"attached_melon_stem": "block",
"pumpkin_stem": "block",
"melon_stem": "block",
"tripwire": "block",
"kelp_plant": "block",
"weeping_vines_plant": "block",
"twisting_vines_plant": "block",
"powder_snow": "block",
"cave_vines": "block",
"cave_vines_plant": "block",
"big_dripleaf_stem": "block"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment