开启辅助访问     
收藏本站

站内搜索

搜索

Minecraft(我的世界)苦力怕论坛

[BE教程] [教程]一切都写对了但是纹理(材质)就是错误怎么办

 发表于 2024-6-9 14:13:53 来自手机|显示全部楼层|阅读模式 IP:贵州省
本教程基本上是给大型addons的作者看的,因为问题往往只会发生在大addons里面

首先我们需要知道一个冷知识,渲染龙它有材质限制的,这就是原因之一

于是乎,我们就出现了一个情况:item_texture写对了terrain_texture写对了entity写对了,进游戏:未知物品未知方块未知生物

让人头疼不已

这时候,我们就需要学会怎么解决了

首先,就是多面方块,实际上不知道你有没有发现,你玩的一些addons,多面方块是用3d模型以让6个面整合在一个贴图里的,是作者不会写block.json?当然不是,因为这样可以减少包内材质数量,以不会出现什么都写对材质就是错误的问题,因此如果你的大型addons还在开发初期快把工作方块木头一类搞成3d模型(就是一个方块的3d模型,没什么出奇的)并且把纹理的6个面整合,这样的话就可以减少包内材质数量了

那么还有第二个,废弃贴图,废弃贴图我们也必须移除,如果只是暂时没做进来一类的,可以先放到别的文件夹,但就是不能放到资源包!铭记这一点,同时大后期懒得慢慢搞的也可以这样做,因此,现在开始,不要遗留任何未使用贴图到你的包里!

那么接下来,最终办法,这个办法既可以是救星也可以是噩梦

在与item_texture.json和terrain_texture.json同层下创建一个json文件叫做textures_list,然后把材质的路径填进去,你可以翻原版包看,什么?你不想?,好吧,给你惯的,也就我一个人会惯着你们了
  1. [
  2.   "textures/blocks/acacia_trapdoor",
  3.   "textures/blocks/anvil_base",
  4.   "textures/blocks/anvil_top_damaged_0",
  5.   "textures/blocks/anvil_top_damaged_1",
  6.   "textures/blocks/anvil_top_damaged_2",
  7.   "textures/blocks/bamboo_leaf",
  8.   "textures/blocks/bamboo_sapling",
  9.   "textures/blocks/bamboo_singleleaf",
  10.   "textures/blocks/bamboo_small_leaf",
  11.   "textures/blocks/bamboo_stem",
  12.   "textures/blocks/barrier",
  13.   "textures/blocks/beacon",
  14.   "textures/blocks/bedrock",
  15.   "textures/blocks/bed_feet_end",
  16.   "textures/blocks/bed_feet_side",
  17.   "textures/blocks/bed_feet_top",
  18.   "textures/blocks/bed_head_end",
  19.   "textures/blocks/bed_head_side",
  20.   "textures/blocks/bed_head_top",
  21.   "textures/blocks/beetroots_stage_0",
  22.   "textures/blocks/beetroots_stage_1",
  23.   "textures/blocks/beetroots_stage_2",
  24.   "textures/blocks/beetroots_stage_3",
  25.   "textures/blocks/bell_bottom",
  26.   "textures/blocks/bell_side",
  27.   "textures/blocks/bell_top",
  28.   "textures/blocks/birch_trapdoor",
  29.   "textures/blocks/blast_furnace_front_off",
  30.   "textures/blocks/blast_furnace_front_on",
  31.   "textures/blocks/blast_furnace_side",
  32.   "textures/blocks/blast_furnace_top",
  33.   "textures/blocks/blue_ice",
  34.   "textures/blocks/bone_block_side",
  35.   "textures/blocks/bone_block_top",
  36.   "textures/blocks/bookshelf",
  37.   "textures/blocks/border",
  38.   "textures/blocks/brewing_stand",
  39.   "textures/blocks/brewing_stand_base",
  40.   "textures/blocks/brick",
  41.   "textures/blocks/build_allow",
  42.   "textures/blocks/build_deny",
  43.   "textures/blocks/cactus_bottom",
  44.   "textures/blocks/cactus_side",
  45.   "textures/blocks/cactus_top",
  46.   "textures/blocks/cake_bottom",
  47.   "textures/blocks/cake_inner",
  48.   "textures/blocks/cake_side",
  49.   "textures/blocks/cake_top",
  50.   "textures/blocks/camera_back",
  51.   "textures/blocks/camera_front",
  52.   "textures/blocks/camera_side",
  53.   "textures/blocks/camera_top",
  54.   "textures/blocks/campfire",
  55.   "textures/blocks/campfire_log",
  56.   "textures/blocks/campfire_log_lit",
  57.   "textures/blocks/carried_waterlily",
  58.   "textures/blocks/carrots_stage_0",
  59.   "textures/blocks/carrots_stage_1",
  60.   "textures/blocks/carrots_stage_2",
  61.   "textures/blocks/carrots_stage_3",
  62.   "textures/blocks/cartography_table_side1",
  63.   "textures/blocks/cartography_table_side2",
  64.   "textures/blocks/cartography_table_side3",
  65.   "textures/blocks/cartography_table_top",
  66.   "textures/blocks/cauldron_bottom",
  67.   "textures/blocks/cauldron_inner",
  68.   "textures/blocks/cauldron_side",
  69.   "textures/blocks/cauldron_top",
  70.   "textures/blocks/cauldron_water",
  71.   "textures/blocks/cauldron_water_placeholder",
  72.   "textures/blocks/chain_command_block_back",
  73.   "textures/blocks/chain_command_block_back_mipmap",
  74.   "textures/blocks/chain_command_block_conditional",
  75.   "textures/blocks/chain_command_block_conditional_mipmap",
  76.   "textures/blocks/chain_command_block_front",
  77.   "textures/blocks/chain_command_block_front_mipmap",
  78.   "textures/blocks/chain_command_block_side",
  79.   "textures/blocks/chain_command_block_side_mipmap",
  80.   "textures/blocks/chest_front",
  81.   "textures/blocks/chest_side",
  82.   "textures/blocks/chest_top",
  83.   "textures/blocks/chorus_flower",
  84.   "textures/blocks/chorus_flower_dead",
  85.   "textures/blocks/chorus_plant",
  86.   "textures/blocks/clay",
  87.   "textures/blocks/coarse_dirt",
  88.   "textures/blocks/coal_block",
  89.   "textures/blocks/coal_ore",
  90.   "textures/blocks/cobblestone",
  91.   "textures/blocks/cobblestone_mossy",
  92.   "textures/blocks/cocoa_stage_0",
  93.   "textures/blocks/cocoa_stage_1",
  94.   "textures/blocks/cocoa_stage_2",
  95.   "textures/blocks/command_block",
  96.   "textures/blocks/command_block_back",
  97.   "textures/blocks/command_block_back_mipmap",
  98.   "textures/blocks/command_block_conditional",
  99.   "textures/blocks/command_block_conditional_mipmap",
  100.   "textures/blocks/command_block_front",
  101.   "textures/blocks/command_block_front_mipmap",
  102.   "textures/blocks/command_block_side",
  103.   "textures/blocks/command_block_side_mipmap",
  104.   "textures/blocks/comparator_off",
  105.   "textures/blocks/comparator_on",
  106.   "textures/blocks/concrete_black",
  107.   "textures/blocks/concrete_blue",
  108.   "textures/blocks/concrete_brown",
  109.   "textures/blocks/concrete_cyan",
  110.   "textures/blocks/concrete_gray",
  111.   "textures/blocks/concrete_green",
  112.   "textures/blocks/concrete_light_blue",
  113.   "textures/blocks/concrete_lime",
  114.   "textures/blocks/concrete_magenta",
  115.   "textures/blocks/concrete_orange",
  116.   "textures/blocks/concrete_pink",
  117.   "textures/blocks/concrete_powder_black",
  118.   "textures/blocks/concrete_powder_blue",
  119.   "textures/blocks/concrete_powder_brown",
  120.   "textures/blocks/concrete_powder_cyan",
  121.   "textures/blocks/concrete_powder_gray",
  122.   "textures/blocks/concrete_powder_green",
  123.   "textures/blocks/concrete_powder_light_blue",
  124.   "textures/blocks/concrete_powder_lime",
  125.   "textures/blocks/concrete_powder_magenta",
  126.   "textures/blocks/concrete_powder_orange",
  127.   "textures/blocks/concrete_powder_pink",
  128.   "textures/blocks/concrete_powder_purple",
  129.   "textures/blocks/concrete_powder_red",
  130.   "textures/blocks/concrete_powder_silver",
  131.   "textures/blocks/concrete_powder_white",
  132.   "textures/blocks/concrete_powder_yellow",
  133.   "textures/blocks/concrete_purple",
  134.   "textures/blocks/concrete_red",
  135.   "textures/blocks/concrete_silver",
  136.   "textures/blocks/concrete_white",
  137.   "textures/blocks/concrete_yellow",
  138.   "textures/blocks/conduit_base",
  139.   "textures/blocks/conduit_cage",
  140.   "textures/blocks/conduit_wind_horizontal",
  141.   "textures/blocks/conduit_wind_vertical",
  142.   "textures/blocks/conduit_open",
  143.   "textures/blocks/conduit_closed",
  144.   "textures/blocks/composter_top",
  145.   "textures/blocks/compost",
  146.   "textures/blocks/compost_ready",
  147.   "textures/blocks/composter_side",
  148.   "textures/blocks/composter_bottom",
  149.   "textures/blocks/coral_plant_blue",
  150.   "textures/blocks/coral_plant_pink",
  151.   "textures/blocks/coral_plant_purple",
  152.   "textures/blocks/coral_plant_red",
  153.   "textures/blocks/coral_plant_yellow",
  154.   "textures/blocks/coral_plant_blue_dead",
  155.   "textures/blocks/coral_plant_pink_dead",
  156.   "textures/blocks/coral_plant_purple_dead",
  157.   "textures/blocks/coral_plant_red_dead",
  158.   "textures/blocks/coral_plant_yellow_dead",
  159.   "textures/blocks/coral_fan_blue",
  160.   "textures/blocks/coral_fan_red",
  161.   "textures/blocks/coral_fan_pink",
  162.   "textures/blocks/coral_fan_purple",
  163.   "textures/blocks/coral_fan_yellow",
  164.   "textures/blocks/coral_fan_blue_dead",
  165.   "textures/blocks/coral_fan_red_dead",
  166.   "textures/blocks/coral_fan_pink_dead",
  167.   "textures/blocks/coral_fan_purple_dead",
  168.   "textures/blocks/coral_fan_yellow_dead",
  169.   "textures/blocks/coral_blue",
  170.   "textures/blocks/coral_blue_dead",
  171.   "textures/blocks/coral_pink",
  172.   "textures/blocks/coral_pink_dead",
  173.   "textures/blocks/coral_purple",
  174.   "textures/blocks/coral_purple_dead",
  175.   "textures/blocks/coral_red",
  176.   "textures/blocks/coral_red_dead",
  177.   "textures/blocks/coral_yellow",
  178.   "textures/blocks/coral_yellow_dead",
  179.   "textures/blocks/crafting_table_front",
  180.   "textures/blocks/crafting_table_side",
  181.   "textures/blocks/crafting_table_top",
  182.   "textures/blocks/dark_oak_trapdoor",
  183.   "textures/blocks/daylight_detector_inverted_top",
  184.   "textures/blocks/daylight_detector_side",
  185.   "textures/blocks/daylight_detector_top",
  186.   "textures/blocks/deadbush",
  187.   "textures/blocks/diamond_block",
  188.   "textures/blocks/diamond_ore",
  189.   "textures/blocks/dirt",
  190.   "textures/blocks/dirt_podzol_side",
  191.   "textures/blocks/dirt_podzol_top",
  192.   "textures/blocks/dispenser_front_horizontal",
  193.   "textures/blocks/dispenser_front_vertical",
  194.   "textures/blocks/door_acacia_lower",
  195.   "textures/blocks/door_acacia_upper",
  196.   "textures/blocks/door_birch_lower",
  197.   "textures/blocks/door_birch_upper",
  198.   "textures/blocks/door_dark_oak_lower",
  199.   "textures/blocks/door_dark_oak_upper",
  200.   "textures/blocks/door_iron_lower",
  201.   "textures/blocks/door_iron_upper",
  202.   "textures/blocks/door_jungle_lower",
  203.   "textures/blocks/door_jungle_upper",
  204.   "textures/blocks/door_spruce_lower",
  205.   "textures/blocks/door_spruce_upper",
  206.   "textures/blocks/door_wood_lower",
  207.   "textures/blocks/door_wood_upper",
  208.   "textures/blocks/double_plant_fern_bottom",
  209.   "textures/blocks/double_plant_fern_carried",
  210.   "textures/blocks/double_plant_fern_top",
  211.   "textures/blocks/double_plant_grass_bottom",
  212.   "textures/blocks/double_plant_grass_carried",
  213.   "textures/blocks/double_plant_grass_top",
  214.   "textures/blocks/double_plant_paeonia_bottom",
  215.   "textures/blocks/double_plant_paeonia_top",
  216.   "textures/blocks/double_plant_rose_bottom",
  217.   "textures/blocks/double_plant_rose_top",
  218.   "textures/blocks/double_plant_sunflower_back",
  219.   "textures/blocks/double_plant_sunflower_bottom",
  220.   "textures/blocks/double_plant_sunflower_front",
  221.   "textures/blocks/double_plant_sunflower_top",
  222.   "textures/blocks/double_plant_syringa_bottom",
  223.   "textures/blocks/double_plant_syringa_top",
  224.   "textures/blocks/dragon_egg",
  225.   "textures/blocks/dropper_front_horizontal",
  226.   "textures/blocks/dropper_front_vertical",
  227.   "textures/blocks/emerald_block",
  228.   "textures/blocks/emerald_ore",
  229.   "textures/blocks/enchanting_table_bottom",
  230.   "textures/blocks/enchanting_table_side",
  231.   "textures/blocks/enchanting_table_top",
  232.   "textures/blocks/ender_chest_front",
  233.   "textures/blocks/ender_chest_side",
  234.   "textures/blocks/ender_chest_top",
  235.   "textures/blocks/endframe_eye",
  236.   "textures/blocks/endframe_side",
  237.   "textures/blocks/endframe_top",
  238.   "textures/blocks/end_bricks",
  239.   "textures/blocks/end_gateway",
  240.   "textures/blocks/end_portal",
  241.   "textures/blocks/end_rod",
  242.   "textures/blocks/end_stone",
  243.   "textures/blocks/farmland_dry",
  244.   "textures/blocks/farmland_wet",
  245.   "textures/blocks/fern",
  246.   "textures/blocks/fern_carried",
  247.   "textures/blocks/fire_0",
  248.   "textures/blocks/fire_0_placeholder",
  249.   "textures/blocks/fire_1",
  250.   "textures/blocks/fire_1_placeholder",
  251.   "textures/blocks/fletcher_table_side1",
  252.   "textures/blocks/fletcher_table_side2",
  253.   "textures/blocks/fletcher_table_top",
  254.   "textures/blocks/barrel_bottom",
  255.   "textures/blocks/barrel_side",
  256.   "textures/blocks/barrel_top",
  257.   "textures/blocks/barrel_top_open",
  258.   "textures/blocks/flower_allium",
  259.   "textures/blocks/flower_blue_orchid",
  260.   "textures/blocks/flower_cornflower",
  261.   "textures/blocks/flower_dandelion",
  262.   "textures/blocks/flower_houstonia",
  263.   "textures/blocks/flower_lily_of_the_valley",
  264.   "textures/blocks/flower_oxeye_daisy",
  265.   "textures/blocks/flower_paeonia",
  266.   "textures/blocks/flower_pot",
  267.   "textures/blocks/flower_rose",
  268.   "textures/blocks/flower_rose_blue",
  269.   "textures/blocks/flower_tulip_orange",
  270.   "textures/blocks/flower_tulip_pink",
  271.   "textures/blocks/flower_tulip_red",
  272.   "textures/blocks/flower_tulip_white",
  273.   "textures/blocks/flower_wither_rose",
  274.   "textures/blocks/frosted_ice_0",
  275.   "textures/blocks/frosted_ice_1",
  276.   "textures/blocks/frosted_ice_2",
  277.   "textures/blocks/frosted_ice_3",
  278.   "textures/blocks/furnace_front_off",
  279.   "textures/blocks/furnace_front_on",
  280.   "textures/blocks/furnace_side",
  281.   "textures/blocks/furnace_top",
  282.   "textures/blocks/glass",
  283.   "textures/blocks/glass_white",
  284.   "textures/blocks/glass_orange",
  285.   "textures/blocks/glass_magenta",
  286.   "textures/blocks/glass_light_blue",
  287.   "textures/blocks/glass_yellow",
  288.   "textures/blocks/glass_lime",
  289.   "textures/blocks/glass_pink",
  290.   "textures/blocks/glass_gray",
  291.   "textures/blocks/glass_silver",
  292.   "textures/blocks/glass_cyan",
  293.   "textures/blocks/glass_purple",
  294.   "textures/blocks/glass_blue",
  295.   "textures/blocks/glass_brown",
  296.   "textures/blocks/glass_green",
  297.   "textures/blocks/glass_red",
  298.   "textures/blocks/glass_black",
  299.   "textures/blocks/glass_pane_top",
  300.   "textures/blocks/glass_pane_top_white",
  301.   "textures/blocks/glass_pane_top_orange",
  302.   "textures/blocks/glass_pane_top_magenta",
  303.   "textures/blocks/glass_pane_top_light_blue",
  304.   "textures/blocks/glass_pane_top_yellow",
  305.   "textures/blocks/glass_pane_top_lime",
  306.   "textures/blocks/glass_pane_top_pink",
  307.   "textures/blocks/glass_pane_top_gray",
  308.   "textures/blocks/glass_pane_top_silver",
  309.   "textures/blocks/glass_pane_top_cyan",
  310.   "textures/blocks/glass_pane_top_purple",
  311.   "textures/blocks/glass_pane_top_blue",
  312.   "textures/blocks/glass_pane_top_brown",
  313.   "textures/blocks/glass_pane_top_green",
  314.   "textures/blocks/glass_pane_top_red",
  315.   "textures/blocks/glass_pane_top_black",
  316.   "textures/blocks/glazed_terracotta_black",
  317.   "textures/blocks/glazed_terracotta_blue",
  318.   "textures/blocks/glazed_terracotta_brown",
  319.   "textures/blocks/glazed_terracotta_cyan",
  320.   "textures/blocks/glazed_terracotta_gray",
  321.   "textures/blocks/glazed_terracotta_green",
  322.   "textures/blocks/glazed_terracotta_light_blue",
  323.   "textures/blocks/glazed_terracotta_lime",
  324.   "textures/blocks/glazed_terracotta_magenta",
  325.   "textures/blocks/glazed_terracotta_orange",
  326.   "textures/blocks/glazed_terracotta_pink",
  327.   "textures/blocks/glazed_terracotta_purple",
  328.   "textures/blocks/glazed_terracotta_red",
  329.   "textures/blocks/glazed_terracotta_silver",
  330.   "textures/blocks/glazed_terracotta_white",
  331.   "textures/blocks/glazed_terracotta_yellow",
  332.   "textures/blocks/glowing_obsidian",
  333.   "textures/blocks/glowstone",
  334.   "textures/blocks/gold_block",
  335.   "textures/blocks/gold_ore",
  336.   "textures/blocks/grass_carried",
  337.   "textures/blocks/grass_path_side",
  338.   "textures/blocks/grass_path_top",
  339.   "textures/blocks/grass_side",
  340.   "textures/blocks/grass_side_carried",
  341.   "textures/blocks/grass_side_snowed",
  342.   "textures/blocks/grass_side_snowed",
  343.   "textures/blocks/grass_top",
  344.   "textures/blocks/gravel",
  345.   "textures/blocks/grindstone_pivot",
  346.   "textures/blocks/grindstone_round",
  347.   "textures/blocks/grindstone_side",
  348.   "textures/blocks/hardened_clay",
  349.   "textures/blocks/hardened_clay_stained_black",
  350.   "textures/blocks/hardened_clay_stained_blue",
  351.   "textures/blocks/hardened_clay_stained_brown",
  352.   "textures/blocks/hardened_clay_stained_cyan",
  353.   "textures/blocks/hardened_clay_stained_gray",
  354.   "textures/blocks/hardened_clay_stained_green",
  355.   "textures/blocks/hardened_clay_stained_light_blue",
  356.   "textures/blocks/hardened_clay_stained_lime",
  357.   "textures/blocks/hardened_clay_stained_magenta",
  358.   "textures/blocks/hardened_clay_stained_orange",
  359.   "textures/blocks/hardened_clay_stained_pink",
  360.   "textures/blocks/hardened_clay_stained_purple",
  361.   "textures/blocks/hardened_clay_stained_red",
  362.   "textures/blocks/hardened_clay_stained_silver",
  363.   "textures/blocks/hardened_clay_stained_white",
  364.   "textures/blocks/hardened_clay_stained_yellow",
  365.   "textures/blocks/hay_block_side",
  366.   "textures/blocks/hay_block_top",
  367.   "textures/blocks/hopper_inside",
  368.   "textures/blocks/hopper_outside",
  369.   "textures/blocks/hopper_top",
  370.   "textures/blocks/ice",
  371.   "textures/blocks/ice_packed",
  372.   "textures/blocks/iron_bars",
  373.   "textures/blocks/iron_block",
  374.   "textures/blocks/iron_ore",
  375.   "textures/blocks/iron_trapdoor",
  376.   "textures/blocks/itemframe_background",
  377.   "textures/blocks/jigsaw_back",
  378.   "textures/blocks/jigsaw_front",
  379.   "textures/blocks/jigsaw_lock",
  380.   "textures/blocks/jigsaw_side",
  381.   "textures/blocks/jukebox_side",
  382.   "textures/blocks/jukebox_top",
  383.   "textures/blocks/jungle_trapdoor",
  384.   "textures/blocks/kelp_a",
  385.   "textures/blocks/kelp_b",
  386.   "textures/blocks/kelp_c",
  387.   "textures/blocks/kelp_d",
  388.   "textures/blocks/kelp_top",
  389.   "textures/blocks/kelp_top_bulb",
  390.   "textures/blocks/dried_kelp_top",
  391.   "textures/blocks/dried_kelp_side_a",
  392.   "textures/blocks/dried_kelp_side_b",
  393.   "textures/blocks/ladder",
  394.   "textures/blocks/lantern",
  395.   "textures/blocks/lapis_block",
  396.   "textures/blocks/lapis_ore",
  397.   "textures/blocks/lava_flow",
  398.   "textures/blocks/lava_placeholder",
  399.   "textures/blocks/lava_still",
  400.   "textures/blocks/leaves_acacia",
  401.   "textures/blocks/leaves_acacia_carried",
  402.   "textures/blocks/leaves_acacia_opaque",
  403.   "textures/blocks/leaves_big_oak",
  404.   "textures/blocks/leaves_big_oak_carried",
  405.   "textures/blocks/leaves_big_oak_opaque",
  406.   "textures/blocks/leaves_birch",
  407.   "textures/blocks/leaves_birch_carried",
  408.   "textures/blocks/leaves_birch_opaque",
  409.   "textures/blocks/leaves_jungle",
  410.   "textures/blocks/leaves_jungle_carried",
  411.   "textures/blocks/leaves_jungle_opaque",
  412.   "textures/blocks/leaves_oak",
  413.   "textures/blocks/leaves_oak_carried",
  414.   "textures/blocks/leaves_oak_opaque",
  415.   "textures/blocks/leaves_spruce",
  416.   "textures/blocks/leaves_spruce_carried",
  417.   "textures/blocks/leaves_spruce_opaque",
  418.   "textures/blocks/lectern_base",
  419.   "textures/blocks/lectern_front",
  420.   "textures/blocks/lectern_sides",
  421.   "textures/blocks/lectern_top",
  422.   "textures/blocks/lever",
  423.   "textures/blocks/log_acacia",
  424.   "textures/blocks/log_acacia_top",
  425.   "textures/blocks/log_big_oak",
  426.   "textures/blocks/log_big_oak_top",
  427.   "textures/blocks/log_birch",
  428.   "textures/blocks/log_birch_top",
  429.   "textures/blocks/log_jungle",
  430.   "textures/blocks/log_jungle_top",
  431.   "textures/blocks/log_oak",
  432.   "textures/blocks/log_oak_top",
  433.   "textures/blocks/log_spruce",
  434.   "textures/blocks/log_spruce_top",
  435.   "textures/blocks/loom_bottom",
  436.   "textures/blocks/loom_front",
  437.   "textures/blocks/loom_side",
  438.   "textures/blocks/loom_top",
  439.   "textures/blocks/magma",
  440.   "textures/blocks/bubble_column_outer_a",
  441.   "textures/blocks/bubble_column_outer_b",
  442.   "textures/blocks/bubble_column_outer_c",
  443.   "textures/blocks/bubble_column_outer_d",
  444.   "textures/blocks/bubble_column_outer_e",
  445.   "textures/blocks/bubble_column_outer_f",
  446.   "textures/blocks/bubble_column_outer_g",
  447.   "textures/blocks/bubble_column_outer_h",
  448.   "textures/blocks/bubble_column_inner_a",
  449.   "textures/blocks/bubble_column_inner_b",
  450.   "textures/blocks/bubble_column_up_top_a",
  451.   "textures/blocks/bubble_column_up_top_b",
  452.   "textures/blocks/bubble_column_up_top_c",
  453.   "textures/blocks/bubble_column_up_top_d",
  454.   "textures/blocks/bubble_column_down_top_a",
  455.   "textures/blocks/bubble_column_down_top_b",
  456.   "textures/blocks/bubble_column_down_top_c",
  457.   "textures/blocks/bubble_column_down_top_d",
  458.   "textures/blocks/melon_side",
  459.   "textures/blocks/melon_stem_connected",
  460.   "textures/blocks/melon_stem_disconnected",
  461.   "textures/blocks/melon_top",
  462.   "textures/blocks/missing_tile",
  463.   "textures/blocks/mob_spawner",
  464.   "textures/blocks/mushroom_block_inside",
  465.   "textures/blocks/mushroom_block_skin_brown",
  466.   "textures/blocks/mushroom_block_skin_red",
  467.   "textures/blocks/mushroom_block_skin_stem",
  468.   "textures/blocks/mushroom_brown",
  469.   "textures/blocks/mushroom_red",
  470.   "textures/blocks/mycelium_side",
  471.   "textures/blocks/mycelium_top",
  472.   "textures/blocks/netherrack",
  473.   "textures/blocks/nether_brick",
  474.   "textures/blocks/nether_wart_block",
  475.   "textures/blocks/nether_wart_stage_0",
  476.   "textures/blocks/nether_wart_stage_1",
  477.   "textures/blocks/nether_wart_stage_2",
  478.   "textures/blocks/noteblock",
  479.   "textures/blocks/observer_back",
  480.   "textures/blocks/observer_back_lit",
  481.   "textures/blocks/observer_front",
  482.   "textures/blocks/observer_side",
  483.   "textures/blocks/observer_top",
  484.   "textures/blocks/obsidian",
  485.   "textures/blocks/piston_bottom",
  486.   "textures/blocks/piston_inner",
  487.   "textures/blocks/piston_side",
  488.   "textures/blocks/piston_top_normal",
  489.   "textures/blocks/piston_top_sticky",
  490.   "textures/blocks/planks_acacia",
  491.   "textures/blocks/planks_big_oak",
  492.   "textures/blocks/planks_birch",
  493.   "textures/blocks/planks_jungle",
  494.   "textures/blocks/planks_oak",
  495.   "textures/blocks/planks_spruce",
  496.   "textures/blocks/portal",
  497.   "textures/blocks/portal_placeholder",
  498.   "textures/blocks/potatoes_stage_0",
  499.   "textures/blocks/potatoes_stage_1",
  500.   "textures/blocks/potatoes_stage_2",
  501.   "textures/blocks/potatoes_stage_3",
  502.   "textures/blocks/prismarine_bricks",
  503.   "textures/blocks/prismarine_dark",
  504.   "textures/blocks/prismarine_rough",
  505.   "textures/blocks/pumpkin_face_off",
  506.   "textures/blocks/pumpkin_face_on",
  507.   "textures/blocks/pumpkin_side",
  508.   "textures/blocks/pumpkin_stem_connected",
  509.   "textures/blocks/pumpkin_stem_disconnected",
  510.   "textures/blocks/pumpkin_top",
  511.   "textures/blocks/purpur_block",
  512.   "textures/blocks/purpur_pillar",
  513.   "textures/blocks/purpur_pillar_top",
  514.   "textures/blocks/quartz_block_bottom",
  515.   "textures/blocks/quartz_block_chiseled",
  516.   "textures/blocks/quartz_block_chiseled_top",
  517.   "textures/blocks/quartz_block_lines",
  518.   "textures/blocks/quartz_block_lines_top",
  519.   "textures/blocks/quartz_block_side",
  520.   "textures/blocks/quartz_block_top",
  521.   "textures/blocks/quartz_ore",
  522.   "textures/blocks/rail_activator",
  523.   "textures/blocks/rail_activator_powered",
  524.   "textures/blocks/rail_detector",
  525.   "textures/blocks/rail_detector_powered",
  526.   "textures/blocks/rail_golden",
  527.   "textures/blocks/rail_golden_powered",
  528.   "textures/blocks/rail_normal",
  529.   "textures/blocks/rail_normal_turned",
  530.   "textures/blocks/reactor_core_stage_0",
  531.   "textures/blocks/reactor_core_stage_1",
  532.   "textures/blocks/reactor_core_stage_2",
  533.   "textures/blocks/redstone_block",
  534.   "textures/blocks/redstone_dust_cross",
  535.   "textures/blocks/redstone_dust_line",
  536.   "textures/blocks/redstone_lamp_off",
  537.   "textures/blocks/redstone_lamp_on",
  538.   "textures/blocks/redstone_ore",
  539.   "textures/blocks/redstone_torch_off",
  540.   "textures/blocks/redstone_torch_on",
  541.   "textures/blocks/red_nether_brick",
  542.   "textures/blocks/red_sand",
  543.   "textures/blocks/red_sandstone_bottom",
  544.   "textures/blocks/red_sandstone_carved",
  545.   "textures/blocks/red_sandstone_normal",
  546.   "textures/blocks/red_sandstone_smooth",
  547.   "textures/blocks/red_sandstone_top",
  548.   "textures/blocks/reeds",
  549.   "textures/blocks/repeater_off",
  550.   "textures/blocks/repeater_on",
  551.   "textures/blocks/repeating_command_block_back",
  552.   "textures/blocks/repeating_command_block_back_mipmap",
  553.   "textures/blocks/repeating_command_block_conditional",
  554.   "textures/blocks/repeating_command_block_conditional_mipmap",
  555.   "textures/blocks/repeating_command_block_front",
  556.   "textures/blocks/repeating_command_block_front_mipmap",
  557.   "textures/blocks/repeating_command_block_side",
  558.   "textures/blocks/repeating_command_block_side_mipmap",
  559.   "textures/blocks/sand",
  560.   "textures/blocks/sandstone_bottom",
  561.   "textures/blocks/sandstone_carved",
  562.   "textures/blocks/sandstone_normal",
  563.   "textures/blocks/sandstone_smooth",
  564.   "textures/blocks/sandstone_top",
  565.   "textures/blocks/sapling_acacia",
  566.   "textures/blocks/sapling_birch",
  567.   "textures/blocks/sapling_jungle",
  568.   "textures/blocks/sapling_oak",
  569.   "textures/blocks/sapling_roofed_oak",
  570.   "textures/blocks/sapling_spruce",
  571.   "textures/blocks/scaffolding_top",
  572.   "textures/blocks/scaffolding_bottom",
  573.   "textures/blocks/scaffolding_side",
  574.   "textures/blocks/sea_lantern",
  575.   "textures/blocks/seagrass_carried",
  576.   "textures/blocks/seagrass",
  577.   "textures/blocks/seagrass_doubletall_bottom_a",
  578.   "textures/blocks/seagrass_doubletall_bottom_b",
  579.   "textures/blocks/seagrass_doubletall_top_a",
  580.   "textures/blocks/seagrass_doubletall_top_b",
  581.   "textures/blocks/sea_pickle",
  582.   "textures/blocks/shulker_top_black",
  583.   "textures/blocks/shulker_top_blue",
  584.   "textures/blocks/shulker_top_brown",
  585.   "textures/blocks/shulker_top_cyan",
  586.   "textures/blocks/shulker_top_gray",
  587.   "textures/blocks/shulker_top_green",
  588.   "textures/blocks/shulker_top_light_blue",
  589.   "textures/blocks/shulker_top_lime",
  590.   "textures/blocks/shulker_top_magenta",
  591.   "textures/blocks/shulker_top_orange",
  592.   "textures/blocks/shulker_top_pink",
  593.   "textures/blocks/shulker_top_purple",
  594.   "textures/blocks/shulker_top_red",
  595.   "textures/blocks/shulker_top_silver",
  596.   "textures/blocks/shulker_top_undyed",
  597.   "textures/blocks/shulker_top_white",
  598.   "textures/blocks/shulker_top_yellow",
  599.   "textures/blocks/smithing_table_bottom",
  600.   "textures/blocks/smithing_table_front",
  601.   "textures/blocks/smithing_table_side",
  602.   "textures/blocks/smithing_table_top",
  603.   "textures/blocks/slime",
  604.   "textures/blocks/smoker_bottom",
  605.   "textures/blocks/smoker_front_off",
  606.   "textures/blocks/smoker_front_on",
  607.   "textures/blocks/smoker_side",
  608.   "textures/blocks/smoker_top",
  609.   "textures/blocks/snow",
  610.   "textures/blocks/soul_sand",
  611.   "textures/blocks/sponge",
  612.   "textures/blocks/sponge_wet",
  613.   "textures/blocks/spruce_trapdoor",
  614.   "textures/blocks/stone",
  615.   "textures/blocks/stonebrick",
  616.   "textures/blocks/stonebrick_carved",
  617.   "textures/blocks/stonebrick_cracked",
  618.   "textures/blocks/stonebrick_mossy",
  619.   "textures/blocks/stonecutter_bottom",
  620.   "textures/blocks/stonecutter_other_side",
  621.   "textures/blocks/stonecutter_side",
  622.   "textures/blocks/stonecutter_top",
  623.   "textures/blocks/stonecutter2_bottom",
  624.   "textures/blocks/stonecutter2_saw",
  625.   "textures/blocks/stonecutter2_side",
  626.   "textures/blocks/stonecutter2_top",
  627.   "textures/blocks/stone_andesite",
  628.   "textures/blocks/stone_andesite_smooth",
  629.   "textures/blocks/stone_diorite",
  630.   "textures/blocks/stone_diorite_smooth",
  631.   "textures/blocks/stone_granite",
  632.   "textures/blocks/stone_granite_smooth",
  633.   "textures/blocks/stone_slab_side",
  634.   "textures/blocks/stone_slab_top",
  635.   "textures/blocks/stripped_acacia_log",
  636.   "textures/blocks/stripped_acacia_log_top",
  637.   "textures/blocks/stripped_birch_log",
  638.   "textures/blocks/stripped_birch_log_top",
  639.   "textures/blocks/stripped_dark_oak_log",
  640.   "textures/blocks/stripped_dark_oak_log_top",
  641.   "textures/blocks/stripped_jungle_log",
  642.   "textures/blocks/stripped_jungle_log_top",
  643.   "textures/blocks/stripped_oak_log",
  644.   "textures/blocks/stripped_oak_log_top",
  645.   "textures/blocks/stripped_spruce_log",
  646.   "textures/blocks/stripped_spruce_log_top",
  647.   "textures/blocks/structure_air",
  648.   "textures/blocks/structure_block",
  649.   "textures/blocks/structure_block_corner",
  650.   "textures/blocks/structure_block_data",
  651.   "textures/blocks/structure_block_export",
  652.   "textures/blocks/structure_block_load",
  653.   "textures/blocks/structure_block_save",
  654.   "textures/blocks/structure_void",
  655.   "textures/blocks/sweet_berry_bush_stage0",
  656.   "textures/blocks/sweet_berry_bush_stage1",
  657.   "textures/blocks/sweet_berry_bush_stage2",
  658.   "textures/blocks/sweet_berry_bush_stage3",
  659.   "textures/blocks/tallgrass",
  660.   "textures/blocks/tallgrass",
  661.   "textures/blocks/tallgrass_carried",
  662.   "textures/blocks/tnt_bottom",
  663.   "textures/blocks/tnt_side",
  664.   "textures/blocks/tnt_top",
  665.   "textures/blocks/torch_on",
  666.   "textures/blocks/trapdoor",
  667.   "textures/blocks/trapped_chest_front",
  668.   "textures/blocks/trip_wire",
  669.   "textures/blocks/trip_wire_source",
  670.   "textures/blocks/turtle_egg_not_cracked",
  671.   "textures/blocks/turtle_egg_slightly_cracked",
  672.   "textures/blocks/turtle_egg_very_cracked",
  673.   "textures/blocks/vine",
  674.   "textures/blocks/vine_carried",
  675.   "textures/blocks/waterlily",
  676.   "textures/blocks/water_flow",
  677.   "textures/blocks/water_flow_grey",
  678.   "textures/blocks/water_placeholder",
  679.   "textures/blocks/water_still",
  680.   "textures/blocks/water_still_grey",
  681.   "textures/blocks/web",
  682.   "textures/blocks/wheat_stage_0",
  683.   "textures/blocks/wheat_stage_1",
  684.   "textures/blocks/wheat_stage_2",
  685.   "textures/blocks/wheat_stage_3",
  686.   "textures/blocks/wheat_stage_4",
  687.   "textures/blocks/wheat_stage_5",
  688.   "textures/blocks/wheat_stage_6",
  689.   "textures/blocks/wheat_stage_7",
  690.   "textures/blocks/wool_colored_black",
  691.   "textures/blocks/wool_colored_blue",
  692.   "textures/blocks/wool_colored_brown",
  693.   "textures/blocks/wool_colored_cyan",
  694.   "textures/blocks/wool_colored_gray",
  695.   "textures/blocks/wool_colored_green",
  696.   "textures/blocks/wool_colored_light_blue",
  697.   "textures/blocks/wool_colored_lime",
  698.   "textures/blocks/wool_colored_magenta",
  699.   "textures/blocks/wool_colored_orange",
  700.   "textures/blocks/wool_colored_pink",
  701.   "textures/blocks/wool_colored_purple",
  702.   "textures/blocks/wool_colored_red",
  703.   "textures/blocks/wool_colored_silver",
  704.   "textures/blocks/wool_colored_white",
  705.   "textures/blocks/wool_colored_yellow",
  706.   "textures/colormap/birch",
  707.   "textures/colormap/evergreen",
  708.   "textures/colormap/foliage",
  709.   "textures/colormap/grass",
  710.   "textures/colormap/swamp_foliage",
  711.   "textures/colormap/swamp_grass",
  712.   "textures/entity/agent",
  713.   "textures/entity/alex",
  714.   "textures/entity/arrows",
  715.   "textures/entity/banner/banner",
  716.   "textures/entity/banner/banner_pattern_illager",
  717.   "textures/entity/bat",
  718.   "textures/entity/beacon_beam",
  719.   "textures/entity/bed/black",
  720.   "textures/entity/bed/blue",
  721.   "textures/entity/bed/brown",
  722.   "textures/entity/bed/cyan",
  723.   "textures/entity/bed/gray",
  724.   "textures/entity/bed/green",
  725.   "textures/entity/bed/light_blue",
  726.   "textures/entity/bed/lime",
  727.   "textures/entity/bed/magenta",
  728.   "textures/entity/bed/orange",
  729.   "textures/entity/bed/pink",
  730.   "textures/entity/bed/purple",
  731.   "textures/entity/bed/red",
  732.   "textures/entity/bed/silver",
  733.   "textures/entity/bed/white",
  734.   "textures/entity/bed/yellow",
  735.   "textures/entity/blaze",
  736.   "textures/entity/boat/boat_acacia",
  737.   "textures/entity/boat/boat_birch",
  738.   "textures/entity/boat/boat_darkoak",
  739.   "textures/entity/boat/boat_jungle",
  740.   "textures/entity/boat/boat_oak",
  741.   "textures/entity/boat/boat_spruce",
  742.   "textures/entity/camera_tripod",
  743.   "textures/entity/cat/allblackcat",
  744.   "textures/entity/cat/allblackcat_tame",
  745.   "textures/entity/cat/blackcat",
  746.   "textures/entity/cat/britishshorthair",
  747.   "textures/entity/cat/britishshorthair_tame",
  748.   "textures/entity/cat/calico",
  749.   "textures/entity/cat/calico_tame",
  750.   "textures/entity/cat/jellie",
  751.   "textures/entity/cat/jellie_tame",
  752.   "textures/entity/cat/ocelot",
  753.   "textures/entity/cat/persian",
  754.   "textures/entity/cat/persian_tame",
  755.   "textures/entity/cat/ragdoll",
  756.   "textures/entity/cat/ragdoll_tame",
  757.   "textures/entity/cat/red",
  758.   "textures/entity/cat/redtabby",
  759.   "textures/entity/cat/redtabby_tame",
  760.   "textures/entity/cat/siamese",
  761.   "textures/entity/cat/siamesecat",
  762.   "textures/entity/cat/siamesecat_tame",
  763.   "textures/entity/cat/tabby",
  764.   "textures/entity/cat/tabby_tame",
  765.   "textures/entity/cat/tuxedo",
  766.   "textures/entity/cat/tuxedo_tame",
  767.   "textures/entity/cat/white",
  768.   "textures/entity/cat/white_tame",
  769.   "textures/entity/char",
  770.   "textures/entity/chest/double_normal",
  771.   "textures/entity/chest/ender",
  772.   "textures/entity/chest/normal",
  773.   "textures/entity/chest/trapped",
  774.   "textures/entity/chest/trapped_double",
  775.   "textures/entity/chicken",
  776.   "textures/entity/cow/brown_mooshroom",
  777.   "textures/entity/cow/cow",
  778.   "textures/entity/cow/mooshroom",
  779.   "textures/entity/creeper/creeper",
  780.   "textures/entity/creeper/creeper_armor",
  781.   "textures/entity/dolphin",
  782.   "textures/entity/dragon/dragon",
  783.   "textures/entity/dragon/dragon_exploding",
  784.   "textures/entity/dragon/dragon_eyes",
  785.   "textures/entity/dummy",
  786.   "textures/entity/enchanting_table_book",
  787.   "textures/entity/enchanting_table_book_shadow",
  788.   "textures/entity/endercrystal/endercrystal",
  789.   "textures/entity/endercrystal/endercrystal_beam",
  790.   "textures/entity/enderman/enderman",
  791.   "textures/entity/endermite",
  792.   "textures/entity/end_portal",
  793.   "textures/entity/experience_orb",
  794.   "textures/entity/fireworks",
  795.   "textures/entity/fish/clownfish",
  796.   "textures/entity/fish/cod",
  797.   "textures/entity/fish/pufferfish",
  798.   "textures/entity/fish/salmon",
  799.   "textures/entity/panda/panda",
  800.   "textures/entity/panda/panda_aggressive",
  801.   "textures/entity/panda/panda_brown",
  802.   "textures/entity/panda/panda_lazy",
  803.   "textures/entity/panda/panda_playful",
  804.   "textures/entity/panda/panda_sneezy",
  805.   "textures/entity/panda/panda_worried",
  806.   "textures/entity/fishhook",
  807.   "textures/entity/ghast/ghast",
  808.   "textures/entity/ghast/ghast_shooting",
  809.   "textures/entity/guardian",
  810.   "textures/entity/guardian_beam",
  811.   "textures/entity/guardian_elder",
  812.   "textures/entity/horse/armor/horse_armor_diamond",
  813.   "textures/entity/horse/armor/horse_armor_gold",
  814.   "textures/entity/horse/armor/horse_armor_iron",
  815.   "textures/entity/horse/armor/horse_armor_leather",
  816.   "textures/entity/horse/armor/horse_armor_none",
  817.   "textures/entity/horse/donkey",
  818.   "textures/entity/horse/horse_black",
  819.   "textures/entity/horse/horse_brown",
  820.   "textures/entity/horse/horse_chestnut",
  821.   "textures/entity/horse/horse_creamy",
  822.   "textures/entity/horse/horse_darkbrown",
  823.   "textures/entity/horse/horse_gray",
  824.   "textures/entity/horse/horse_markings_blackdots",
  825.   "textures/entity/horse/horse_markings_none",
  826.   "textures/entity/horse/horse_markings_white",
  827.   "textures/entity/horse/horse_markings_whitedots",
  828.   "textures/entity/horse/horse_markings_whitefield",
  829.   "textures/entity/horse/horse_skeleton",
  830.   "textures/entity/horse/horse_white",
  831.   "textures/entity/horse/horse_zombie",
  832.   "textures/entity/horse/mule",
  833.   "textures/entity/horse2/armor/horse_armor_diamond",
  834.   "textures/entity/horse2/armor/horse_armor_gold",
  835.   "textures/entity/horse2/armor/horse_armor_iron",
  836.   "textures/entity/horse2/armor/horse_armor_leather",
  837.   "textures/entity/horse2/armor/horse_armor_none",
  838.   "textures/entity/horse2/donkey",
  839.   "textures/entity/horse2/horse_black",
  840.   "textures/entity/horse2/horse_brown",
  841.   "textures/entity/horse2/horse_chestnut",
  842.   "textures/entity/horse2/horse_creamy",
  843.   "textures/entity/horse2/horse_darkbrown",
  844.   "textures/entity/horse2/horse_gray",
  845.   "textures/entity/horse2/horse_markings_blackdots",
  846.   "textures/entity/horse2/horse_markings_none",
  847.   "textures/entity/horse2/horse_markings_white",
  848.   "textures/entity/horse2/horse_markings_whitedots",
  849.   "textures/entity/horse2/horse_markings_whitefield",
  850.   "textures/entity/horse2/horse_skeleton",
  851.   "textures/entity/horse2/horse_white",
  852.   "textures/entity/horse2/horse_zombie",
  853.   "textures/entity/horse2/mule",
  854.   "textures/entity/illager/evoker",
  855.   "textures/entity/illager/fangs",
  856.   "textures/entity/illager/ravager",
  857.   "textures/entity/iron_golem",
  858.   "textures/entity/lead_knot",
  859.   "textures/entity/lead_rope",
  860.   "textures/entity/llama/decor/decor_black",
  861.   "textures/entity/llama/decor/decor_blue",
  862.   "textures/entity/llama/decor/decor_brown",
  863.   "textures/entity/llama/decor/decor_cyan",
  864.   "textures/entity/llama/decor/decor_gray",
  865.   "textures/entity/llama/decor/decor_green",
  866.   "textures/entity/llama/decor/decor_light_blue",
  867.   "textures/entity/llama/decor/decor_lime",
  868.   "textures/entity/llama/decor/decor_magenta",
  869.   "textures/entity/llama/decor/decor_none",
  870.   "textures/entity/llama/decor/decor_orange",
  871.   "textures/entity/llama/decor/decor_pink",
  872.   "textures/entity/llama/decor/decor_purple",
  873.   "textures/entity/llama/decor/decor_red",
  874.   "textures/entity/llama/decor/decor_silver",
  875.   "textures/entity/llama/decor/decor_white",
  876.   "textures/entity/llama/decor/decor_yellow",
  877.   "textures/entity/llama/decor/trader_llama_decor",
  878.   "textures/entity/llama/llama",
  879.   "textures/entity/llama/llama_brown",
  880.   "textures/entity/llama/llama_creamy",
  881.   "textures/entity/llama/llama_gray",
  882.   "textures/entity/llama/llama_white",
  883.   "textures/entity/llama/spit",
  884.   "textures/entity/minecart",
  885.   "textures/entity/npc/npc_1",
  886.   "textures/entity/npc/npc_2",
  887.   "textures/entity/npc/npc_3",
  888.   "textures/entity/npc/npc_4",
  889.   "textures/entity/npc/npc_5",
  890.   "textures/entity/npc/npc_6",
  891.   "textures/entity/npc/npc_7",
  892.   "textures/entity/npc/npc_8",
  893.   "textures/entity/npc/npc_9",
  894.   "textures/entity/npc/npc_10",
  895.   "textures/entity/npc/npc_teacher_1",
  896.   "textures/entity/npc/npc_teacher_2",
  897.   "textures/entity/npc/npc_teacher_3",
  898.   "textures/entity/npc/npc_teacher_4",
  899.   "textures/entity/npc/npc_teacher_5",
  900.   "textures/entity/npc/npc_construction_1",
  901.   "textures/entity/npc/npc_construction_2",
  902.   "textures/entity/npc/npc_construction_3",
  903.   "textures/entity/npc/npc_construction_4",
  904.   "textures/entity/npc/npc_construction_5",
  905.   "textures/entity/npc/npc_apiary_1",
  906.   "textures/entity/npc/npc_apiary_2",
  907.   "textures/entity/npc/npc_apiary_3",
  908.   "textures/entity/npc/npc_apiary_4",
  909.   "textures/entity/npc/npc_apiary_5",
  910.   "textures/entity/npc/npc_scientist_1",
  911.   "textures/entity/npc/npc_scientist_2",
  912.   "textures/entity/npc/npc_scientist_3",
  913.   "textures/entity/npc/npc_scientist_4",
  914.   "textures/entity/npc/npc_scientist_5",
  915.   "textures/entity/npc/npc_scientist_6",
  916.   "textures/entity/npc/npc_scientist_7",
  917.   "textures/entity/npc/npc_scientist_8",
  918.   "textures/entity/npc/npc_scientist_9",
  919.   "textures/entity/npc/npc_scientist_10",
  920.   "textures/entity/npc/npc_Agriculture_1",
  921.   "textures/entity/npc/npc_Agriculture_2",
  922.   "textures/entity/npc/npc_Agriculture_3",
  923.   "textures/entity/npc/npc_Agriculture_4",
  924.   "textures/entity/npc/npc_Agriculture_5",
  925.   "textures/entity/npc/npc_Agriculture_6",
  926.   "textures/entity/npc/npc_Agriculture_7",
  927.   "textures/entity/npc/npc_Agriculture_8",
  928.   "textures/entity/npc/npc_Agriculture_9",
  929.   "textures/entity/npc/npc_Agriculture_10",
  930.   "textures/entity/npc/npc_BusinessMobs_1",
  931.   "textures/entity/npc/npc_BusinessMobs_2",
  932.   "textures/entity/npc/npc_BusinessMobs_3",
  933.   "textures/entity/npc/npc_BusinessMobs_4",
  934.   "textures/entity/npc/npc_BusinessMobs_5",
  935.   "textures/entity/npc/npc_EverydayBusiness_1",
  936.   "textures/entity/npc/npc_EverydayBusiness_2",
  937.   "textures/entity/npc/npc_EverydayBusiness_3",
  938.   "textures/entity/npc/npc_EverydayBusiness_4",
  939.   "textures/entity/npc/npc_EverydayBusiness_5",
  940.   "textures/entity/npc/npc_Kiosk_1",
  941.   "textures/entity/npc/npc_Kiosk_2",
  942.   "textures/entity/npc/npc_Kiosk_3",
  943.   "textures/entity/npc/npc_Kiosk_4",
  944.   "textures/entity/npc/npc_Kiosk_5",
  945.   "textures/entity/loyalty_rope",
  946.   "textures/entity/phantom",
  947.   "textures/entity/pillager",
  948.   "textures/entity/pig/pig",
  949.   "textures/entity/pig/pigzombie",
  950.   "textures/entity/pig/pig_saddle",
  951.   "textures/entity/pistonarm/pistonArm",
  952.   "textures/entity/pistonarm/pistonArmSticky",
  953.   "textures/entity/polarbear",
  954.   "textures/entity/rabbit/blackrabbit",
  955.   "textures/entity/rabbit/brown",
  956.   "textures/entity/rabbit/gold",
  957.   "textures/entity/rabbit/salt",
  958.   "textures/entity/rabbit/toast",
  959.   "textures/entity/rabbit/white",
  960.   "textures/entity/rabbit/white_splotched",
  961.   "textures/entity/saddle",
  962.   "textures/entity/sheep/sheep",
  963.   "textures/entity/shield",
  964.   "textures/entity/shulker/shulker_black",
  965.   "textures/entity/shulker/shulker_blue",
  966.   "textures/entity/shulker/shulker_brown",
  967.   "textures/entity/shulker/shulker_cyan",
  968.   "textures/entity/shulker/shulker_gray",
  969.   "textures/entity/shulker/shulker_green",
  970.   "textures/entity/shulker/shulker_light_blue",
  971.   "textures/entity/shulker/shulker_lime",
  972.   "textures/entity/shulker/shulker_magenta",
  973.   "textures/entity/shulker/shulker_orange",
  974.   "textures/entity/shulker/shulker_pink",
  975.   "textures/entity/shulker/shulker_purple",
  976.   "textures/entity/shulker/shulker_red",
  977.   "textures/entity/shulker/shulker_silver",
  978.   "textures/entity/shulker/shulker_undyed",
  979.   "textures/entity/shulker/shulker_white",
  980.   "textures/entity/shulker/shulker_yellow",
  981.   "textures/entity/shulker/spark",
  982.   "textures/entity/sign",
  983.   "textures/entity/silverfish",
  984.   "textures/entity/skeleton/skeleton",
  985.   "textures/entity/skeleton/stray",
  986.   "textures/entity/skeleton/stray_overlay",
  987.   "textures/entity/skeleton/wither_skeleton",
  988.   "textures/entity/skulls/creeper",
  989.   "textures/entity/skulls/skeleton",
  990.   "textures/entity/skulls/wither_skeleton",
  991.   "textures/entity/skulls/zombie",
  992.   "textures/entity/slime/magmacube",
  993.   "textures/entity/slime/slime",
  994.   "textures/entity/snow_golem",
  995.   "textures/entity/spider/cave_spider",
  996.   "textures/entity/spider/spider",
  997.   "textures/entity/squid",
  998.   "textures/entity/steve",
  999.   "textures/entity/trident",
  1000.   "textures/entity/sea_turtle",
  1001.   "textures/entity/vex/vex",
  1002.   "textures/entity/vex/vex_charging",
  1003.   "textures/entity/villager/butcher",
  1004.   "textures/entity/villager/farmer",
  1005.   "textures/entity/villager/librarian",
  1006.   "textures/entity/villager/priest",
  1007.   "textures/entity/villager/smith",
  1008.   "textures/entity/villager/villager",
  1009.   "textures/entity/villager2/villager",
  1010.   "textures/entity/villager2/biomes/biome_desert",
  1011.   "textures/entity/villager2/biomes/biome_jungle",
  1012.   "textures/entity/villager2/biomes/biome_plains",
  1013.   "textures/entity/villager2/biomes/biome_savanna",
  1014.   "textures/entity/villager2/biomes/biome_snow",
  1015.   "textures/entity/villager2/biomes/biome_swamp",
  1016.   "textures/entity/villager2/biomes/biome_taiga",
  1017.   "textures/entity/villager2/levels/level_diamond",
  1018.   "textures/entity/villager2/levels/level_emerald",
  1019.   "textures/entity/villager2/levels/level_gold",
  1020.   "textures/entity/villager2/levels/level_iron",
  1021.   "textures/entity/villager2/levels/level_stone",
  1022.   "textures/entity/villager2/professions/armorer",
  1023.   "textures/entity/villager2/professions/butcher",
  1024.   "textures/entity/villager2/professions/cartographer",
  1025.   "textures/entity/villager2/professions/cleric",
  1026.   "textures/entity/villager2/professions/farmer",
  1027.   "textures/entity/villager2/professions/fisherman",
  1028.   "textures/entity/villager2/professions/fletcher",
  1029.   "textures/entity/villager2/professions/leatherworker",
  1030.   "textures/entity/villager2/professions/librarian",
  1031.   "textures/entity/villager2/professions/nitwit",
  1032.   "textures/entity/villager2/professions/shepherd",
  1033.   "textures/entity/villager2/professions/stonemason",
  1034.   "textures/entity/villager2/professions/toolsmith",
  1035.   "textures/entity/villager2/professions/weaponsmith",
  1036.   "textures/entity/vindicator",
  1037.   "textures/entity/wandering_trader",
  1038.   "textures/entity/witch",
  1039.   "textures/entity/wither_boss/wither",
  1040.   "textures/entity/wither_boss/wither_armor_white",
  1041.   "textures/entity/wither_boss/wither_armor_blue",
  1042.   "textures/entity/wither_boss/wither_invulnerable",
  1043.   "textures/entity/wolf/wolf",
  1044.   "textures/entity/wolf/wolf_angry",
  1045.   "textures/entity/wolf/wolf_tame",
  1046.   "textures/entity/zombie/drowned",
  1047.   "textures/entity/zombie/husk",
  1048.   "textures/entity/zombie/zombie",
  1049.   "textures/entity/zombie_villager/zombie_butcher",
  1050.   "textures/entity/zombie_villager/zombie_farmer",
  1051.   "textures/entity/zombie_villager/zombie_librarian",
  1052.   "textures/entity/zombie_villager/zombie_priest",
  1053.   "textures/entity/zombie_villager/zombie_smith",
  1054.   "textures/entity/zombie_villager/zombie_villager",
  1055.   "textures/entity/zombie_villager2/zombie-villager",
  1056.   "textures/entity/zombie_villager2/biomes/biome-desert-zombie",
  1057.   "textures/entity/zombie_villager2/biomes/biome-jungle-zombie",
  1058.   "textures/entity/zombie_villager2/biomes/biome-plains-zombie",
  1059.   "textures/entity/zombie_villager2/biomes/biome-savanna-zombie",
  1060.   "textures/entity/zombie_villager2/biomes/biome-snow-zombie",
  1061.   "textures/entity/zombie_villager2/biomes/biome-swamp-zombie",
  1062.   "textures/entity/zombie_villager2/biomes/biome-taiga-zombie",
  1063.   "textures/entity/zombie_villager2/professions/armorer",
  1064.   "textures/entity/zombie_villager2/professions/butcher",
  1065.   "textures/entity/zombie_villager2/professions/cartographer",
  1066.   "textures/entity/zombie_villager2/professions/cleric",
  1067.   "textures/entity/zombie_villager2/professions/farmer",
  1068.   "textures/entity/zombie_villager2/professions/fisherman",
  1069.   "textures/entity/zombie_villager2/professions/fletcher",
  1070.   "textures/entity/zombie_villager2/professions/leatherworker",
  1071.   "textures/entity/zombie_villager2/professions/librarian",
  1072.   "textures/entity/zombie_villager2/professions/nitwit",
  1073.   "textures/entity/zombie_villager2/professions/shepherd",
  1074.   "textures/entity/zombie_villager2/professions/stonemason",
  1075.   "textures/entity/zombie_villager2/professions/toolsmith",
  1076.   "textures/entity/zombie_villager2/professions/weaponsmith",
  1077.   "textures/environment/clouds",
  1078.   "textures/environment/destroy_stage_0",
  1079.   "textures/environment/destroy_stage_1",
  1080.   "textures/environment/destroy_stage_2",
  1081.   "textures/environment/destroy_stage_3",
  1082.   "textures/environment/destroy_stage_4",
  1083.   "textures/environment/destroy_stage_5",
  1084.   "textures/environment/destroy_stage_6",
  1085.   "textures/environment/destroy_stage_7",
  1086.   "textures/environment/destroy_stage_8",
  1087.   "textures/environment/destroy_stage_9",
  1088.   "textures/environment/end_portal_colors",
  1089.   "textures/environment/end_sky",
  1090.   "textures/environment/moon_phases",
  1091.   "textures/environment/sun",
  1092.   "textures/environment/weather",
  1093.   "textures/flame_atlas",
  1094.   "textures/forcefield_atlas",
  1095.   "textures/gui/gui",
  1096.   "textures/item/chalkboard/chalkboard_large",
  1097.   "textures/item/chalkboard/chalkboard_medium",
  1098.   "textures/item/chalkboard/chalkboard_small",
  1099.   "textures/items/apple",
  1100.   "textures/items/apple_golden",
  1101.   "textures/items/armor_stand",
  1102.   "textures/items/arrow",
  1103.   "textures/items/bamboo",
  1104.   "textures/items/banner_pattern",
  1105.   "textures/items/bed_black",
  1106.   "textures/items/bed_blue",
  1107.   "textures/items/bed_brown",
  1108.   "textures/items/bed_cyan",
  1109.   "textures/items/bed_gray",
  1110.   "textures/items/bed_green",
  1111.   "textures/items/bed_light_blue",
  1112.   "textures/items/bed_lime",
  1113.   "textures/items/bed_magenta",
  1114.   "textures/items/bed_orange",
  1115.   "textures/items/bed_pink",
  1116.   "textures/items/bed_purple",
  1117.   "textures/items/bed_red",
  1118.   "textures/items/bed_silver",
  1119.   "textures/items/bed_white",
  1120.   "textures/items/bed_yellow",
  1121.   "textures/items/beef_cooked",
  1122.   "textures/items/beef_raw",
  1123.   "textures/items/beetroot",
  1124.   "textures/items/beetroot_soup",
  1125.   "textures/items/villagebell",
  1126.   "textures/items/blaze_powder",
  1127.   "textures/items/blaze_rod",
  1128.   "textures/items/boat",
  1129.   "textures/items/boat_acacia",
  1130.   "textures/items/boat_birch",
  1131.   "textures/items/boat_darkoak",
  1132.   "textures/items/boat_jungle",
  1133.   "textures/items/boat_oak",
  1134.   "textures/items/boat_spruce",
  1135.   "textures/items/bone",
  1136.   "textures/items/book_enchanted",
  1137.   "textures/items/book_normal",
  1138.   "textures/items/book_portfolio",
  1139.   "textures/items/book_writable",
  1140.   "textures/items/book_written",
  1141.   "textures/items/bowl",
  1142.   "textures/items/bow_pulling_0",
  1143.   "textures/items/bow_pulling_1",
  1144.   "textures/items/bow_pulling_2",
  1145.   "textures/items/bow_standby",
  1146.   "textures/items/bread",
  1147.   "textures/items/brewing_stand",
  1148.   "textures/items/brick",
  1149.   "textures/items/broken_elytra",
  1150.   "textures/items/bucket_empty",
  1151.   "textures/items/bucket_lava",
  1152.   "textures/items/bucket_milk",
  1153.   "textures/items/bucket_water",
  1154.   "textures/items/bucket_cod",
  1155.   "textures/items/bucket_salmon",
  1156.   "textures/items/bucket_tropical",
  1157.   "textures/items/bucket_pufferfish",
  1158.   "textures/items/cake",
  1159.   "textures/items/camera",
  1160.   "textures/items/campfire",
  1161.   "textures/items/carrot",
  1162.   "textures/items/carrot_golden",
  1163.   "textures/items/carrot_on_a_stick",
  1164.   "textures/items/cauldron",
  1165.   "textures/items/chainmail_boots",
  1166.   "textures/items/chainmail_chestplate",
  1167.   "textures/items/chainmail_helmet",
  1168.   "textures/items/chainmail_leggings",
  1169.   "textures/items/chalkboard_large",
  1170.   "textures/items/chalkboard_medium",
  1171.   "textures/items/chalkboard_small",
  1172.   "textures/items/charcoal",
  1173.   "textures/items/chicken_cooked",
  1174.   "textures/items/chicken_raw",
  1175.   "textures/items/chorus_fruit",
  1176.   "textures/items/chorus_fruit_popped",
  1177.   "textures/items/clay_ball",
  1178.   "textures/items/clock_item",
  1179.   "textures/items/coal",
  1180.   "textures/items/comparator",
  1181.   "textures/items/compass_atlas",
  1182.   "textures/items/compass_item",
  1183.   "textures/items/cookie",
  1184.   "textures/items/crossbow_firework",
  1185.   "textures/items/crossbow_standby",
  1186.   "textures/items/crossbow_pulling_0",
  1187.   "textures/items/crossbow_pulling_1",
  1188.   "textures/items/crossbow_pulling_2",
  1189.   "textures/items/crossbow_arrow",
  1190.   "textures/items/diamond",
  1191.   "textures/items/diamond_axe",
  1192.   "textures/items/diamond_boots",
  1193.   "textures/items/diamond_chestplate",
  1194.   "textures/items/diamond_helmet",
  1195.   "textures/items/diamond_hoe",
  1196.   "textures/items/diamond_horse_armor",
  1197.   "textures/items/diamond_leggings",
  1198.   "textures/items/diamond_pickaxe",
  1199.   "textures/items/diamond_shovel",
  1200.   "textures/items/diamond_sword",
  1201.   "textures/items/door_acacia",
  1202.   "textures/items/door_birch",
  1203.   "textures/items/door_dark_oak",
  1204.   "textures/items/door_iron",
  1205.   "textures/items/door_jungle",
  1206.   "textures/items/door_spruce",
  1207.   "textures/items/door_wood",
  1208.   "textures/items/dragons_breath",
  1209.   "textures/items/dragon_fireball",
  1210.   "textures/items/dried_kelp",
  1211.   "textures/items/dye_powder_black",
  1212.   "textures/items/dye_powder_black_new",
  1213.   "textures/items/dye_powder_blue",
  1214.   "textures/items/dye_powder_blue_new",
  1215.   "textures/items/dye_powder_brown",
  1216.   "textures/items/dye_powder_brown_new",
  1217.   "textures/items/dye_powder_cyan",
  1218.   "textures/items/dye_powder_gray",
  1219.   "textures/items/dye_powder_green",
  1220.   "textures/items/dye_powder_light_blue",
  1221.   "textures/items/dye_powder_lime",
  1222.   "textures/items/dye_powder_magenta",
  1223.   "textures/items/dye_powder_orange",
  1224.   "textures/items/dye_powder_pink",
  1225.   "textures/items/dye_powder_purple",
  1226.   "textures/items/dye_powder_red",
  1227.   "textures/items/dye_powder_silver",
  1228.   "textures/items/dye_powder_white",
  1229.   "textures/items/dye_powder_white_new",
  1230.   "textures/items/dye_powder_yellow",
  1231.   "textures/items/egg",
  1232.   "textures/items/egg_agent",
  1233.   "textures/items/egg_bat",
  1234.   "textures/items/egg_blaze",
  1235.   "textures/items/egg_cat",
  1236.   "textures/items/egg_cave_spider",
  1237.   "textures/items/egg_chicken",
  1238.   "textures/items/egg_clownfish",
  1239.   "textures/items/egg_cod",
  1240.   "textures/items/egg_cow",
  1241.   "textures/items/egg_creeper",
  1242.   "textures/items/egg_dolphin",
  1243.   "textures/items/egg_donkey",
  1244.   "textures/items/egg_drowned",
  1245.   "textures/items/egg_elderguardian",
  1246.   "textures/items/egg_enderman",
  1247.   "textures/items/egg_endermite",
  1248.   "textures/items/egg_evoker",
  1249.   "textures/items/egg_fox",
  1250.   "textures/items/egg_ghast",
  1251.   "textures/items/egg_guardian",
  1252.   "textures/items/egg_horse",
  1253.   "textures/items/egg_husk",
  1254.   "textures/items/egg_lava_slime",
  1255.   "textures/items/egg_llama",
  1256.   "textures/items/egg_mask",
  1257.   "textures/items/egg_mule",
  1258.   "textures/items/egg_mushroomcow",
  1259.   "textures/items/egg_npc",
  1260.   "textures/items/egg_null",
  1261.   "textures/items/egg_ocelot",
  1262.   "textures/items/egg_panda",
  1263.   "textures/items/egg_parrot",
  1264.   "textures/items/egg_phantom",
  1265.   "textures/items/egg_pig",
  1266.   "textures/items/egg_pigzombie",
  1267.   "textures/items/egg_pillager",
  1268.   "textures/items/egg_polarbear",
  1269.   "textures/items/egg_pufferfish",
  1270.   "textures/items/egg_rabbit",
  1271.   "textures/items/egg_ravager",
  1272.   "textures/items/egg_salmon",
  1273.   "textures/items/egg_sheep",
  1274.   "textures/items/egg_shulker",
  1275.   "textures/items/egg_silverfish",
  1276.   "textures/items/egg_skeleton",
  1277.   "textures/items/egg_skeletonhorse",
  1278.   "textures/items/egg_slime",
  1279.   "textures/items/egg_spider",
  1280.   "textures/items/egg_squid",
  1281.   "textures/items/egg_stray",
  1282.   "textures/items/egg_turtle",
  1283.   "textures/items/egg_vex",
  1284.   "textures/items/egg_villager",
  1285.   "textures/items/egg_vindicator",
  1286.   "textures/items/egg_wanderingtrader",
  1287.   "textures/items/egg_witch",
  1288.   "textures/items/egg_wither",
  1289.   "textures/items/egg_wolf",
  1290.   "textures/items/egg_zombie",
  1291.   "textures/items/egg_zombiehorse",
  1292.   "textures/items/egg_zombievillager",
  1293.   "textures/items/elytra",
  1294.   "textures/items/emerald",
  1295.   "textures/items/empty_armor_slot_boots",
  1296.   "textures/items/empty_armor_slot_chestplate",
  1297.   "textures/items/empty_armor_slot_helmet",
  1298.   "textures/items/empty_armor_slot_leggings",
  1299.   "textures/items/empty_armor_slot_shield",
  1300.   "textures/items/ender_eye",
  1301.   "textures/items/ender_pearl",
  1302.   "textures/items/end_crystal",
  1303.   "textures/items/experience_bottle",
  1304.   "textures/items/feather",
  1305.   "textures/items/fireball",
  1306.   "textures/items/fireworks",
  1307.   "textures/items/fireworks_charge",
  1308.   "textures/items/fishing_rod_cast",
  1309.   "textures/items/fishing_rod_uncast",
  1310.   "textures/items/fish_clownfish_raw",
  1311.   "textures/items/fish_cooked",
  1312.   "textures/items/fish_pufferfish_raw",
  1313.   "textures/items/fish_raw",
  1314.   "textures/items/fish_salmon_cooked",
  1315.   "textures/items/fish_salmon_raw",
  1316.   "textures/items/flint",
  1317.   "textures/items/flint_and_steel",
  1318.   "textures/items/flower_pot",
  1319.   "textures/items/ghast_tear",
  1320.   "textures/items/glowstone_dust",
  1321.   "textures/items/gold_axe",
  1322.   "textures/items/gold_boots",
  1323.   "textures/items/gold_chestplate",
  1324.   "textures/items/gold_helmet",
  1325.   "textures/items/gold_hoe",
  1326.   "textures/items/gold_horse_armor",
  1327.   "textures/items/gold_ingot",
  1328.   "textures/items/gold_leggings",
  1329.   "textures/items/gold_nugget",
  1330.   "textures/items/gold_pickaxe",
  1331.   "textures/items/gold_shovel",
  1332.   "textures/items/gold_sword",
  1333.   "textures/items/gunpowder",
  1334.   "textures/items/hopper",
  1335.   "textures/items/iron_axe",
  1336.   "textures/items/iron_boots",
  1337.   "textures/items/iron_chestplate",
  1338.   "textures/items/iron_helmet",
  1339.   "textures/items/iron_hoe",
  1340.   "textures/items/iron_horse_armor",
  1341.   "textures/items/iron_ingot",
  1342.   "textures/items/iron_leggings",
  1343.   "textures/items/iron_nugget",
  1344.   "textures/items/iron_pickaxe",
  1345.   "textures/items/iron_shovel",
  1346.   "textures/items/iron_sword",
  1347.   "textures/items/item_frame",
  1348.   "textures/items/kelp",
  1349.   "textures/items/lantern",
  1350.   "textures/items/lead",
  1351.   "textures/items/leather",
  1352.   "textures/items/leather_boots",
  1353.   "textures/items/leather_chestplate",
  1354.   "textures/items/leather_helmet",
  1355.   "textures/items/leather_horse_armor",
  1356.   "textures/items/leather_leggings",
  1357.   "textures/items/lever",
  1358.   "textures/items/light_block_0",
  1359.   "textures/items/light_block_1",
  1360.   "textures/items/light_block_2",
  1361.   "textures/items/light_block_3",
  1362.   "textures/items/light_block_4",
  1363.   "textures/items/light_block_5",
  1364.   "textures/items/light_block_6",
  1365.   "textures/items/light_block_7",
  1366.   "textures/items/light_block_8",
  1367.   "textures/items/light_block_9",
  1368.   "textures/items/light_block_10",
  1369.   "textures/items/light_block_11",
  1370.   "textures/items/light_block_12",
  1371.   "textures/items/light_block_13",
  1372.   "textures/items/light_block_14",
  1373.   "textures/items/light_block_15",
  1374.   "textures/items/magma_cream",
  1375.   "textures/items/map_empty",
  1376.   "textures/items/map_filled",
  1377.   "textures/items/map_locked",
  1378.   "textures/items/map_mansion",
  1379.   "textures/items/map_monument",
  1380.   "textures/items/map_nautilus",
  1381.   "textures/items/melon",
  1382.   "textures/items/melon_speckled",
  1383.   "textures/items/minecart_chest",
  1384.   "textures/items/minecart_command_block",
  1385.   "textures/items/minecart_furnace",
  1386.   "textures/items/minecart_hopper",
  1387.   "textures/items/minecart_normal",
  1388.   "textures/items/minecart_tnt",
  1389.   "textures/items/mushroom_stew",
  1390.   "textures/items/mutton_cooked",
  1391.   "textures/items/mutton_raw",
  1392.   "textures/items/name_tag",
  1393.   "textures/items/nautilus",
  1394.   "textures/items/heartofthesea_closed",
  1395.   "textures/items/netherbrick",
  1396.   "textures/items/nether_star",
  1397.   "textures/items/nether_wart",
  1398.   "textures/items/painting",
  1399.   "textures/items/paper",
  1400.   "textures/items/phantom_membrane",
  1401.   "textures/items/porkchop_cooked",
  1402.   "textures/items/porkchop_raw",
  1403.   "textures/items/potato",
  1404.   "textures/items/potato_baked",
  1405.   "textures/items/potato_poisonous",
  1406.   "textures/items/potion_bottle_absorption",
  1407.   "textures/items/potion_bottle_blindness",
  1408.   "textures/items/potion_bottle_confusion",
  1409.   "textures/items/potion_bottle_damageBoost",
  1410.   "textures/items/potion_bottle_digSlowdown",
  1411.   "textures/items/potion_bottle_digSpeed",
  1412.   "textures/items/potion_bottle_drinkable",
  1413.   "textures/items/potion_bottle_empty",
  1414.   "textures/items/potion_bottle_fireResistance",
  1415.   "textures/items/potion_bottle_harm",
  1416.   "textures/items/potion_bottle_heal",
  1417.   "textures/items/potion_bottle_healthBoost",
  1418.   "textures/items/potion_bottle_hunger",
  1419.   "textures/items/potion_bottle_invisibility",
  1420.   "textures/items/potion_bottle_jump",
  1421.   "textures/items/potion_bottle_levitation",
  1422.   "textures/items/potion_bottle_lingering",
  1423.   "textures/items/potion_bottle_lingering_damageBoost",
  1424.   "textures/items/potion_bottle_lingering_empty",
  1425.   "textures/items/potion_bottle_lingering_fireResistance",
  1426.   "textures/items/potion_bottle_lingering_harm",
  1427.   "textures/items/potion_bottle_lingering_heal",
  1428.   "textures/items/potion_bottle_lingering_invisibility",
  1429.   "textures/items/potion_bottle_lingering_jump",
  1430.   "textures/items/potion_bottle_lingering_luck",
  1431.   "textures/items/potion_bottle_lingering_moveSlowdown",
  1432.   "textures/items/potion_bottle_lingering_moveSpeed",
  1433.   "textures/items/potion_bottle_lingering_nightVision",
  1434.   "textures/items/potion_bottle_lingering_poison",
  1435.   "textures/items/potion_bottle_lingering_regeneration",
  1436.   "textures/items/potion_bottle_lingering_slowFall",
  1437.   "textures/items/potion_bottle_lingering_turtleMaster",
  1438.   "textures/items/potion_bottle_lingering_waterBreathing",
  1439.   "textures/items/potion_bottle_lingering_weakness",
  1440.   "textures/items/potion_bottle_lingering_wither",
  1441.   "textures/items/potion_bottle_moveSlowdown",
  1442.   "textures/items/potion_bottle_moveSpeed",
  1443.   "textures/items/potion_bottle_nightVision",
  1444.   "textures/items/potion_bottle_poison",
  1445.   "textures/items/potion_bottle_regeneration",
  1446.   "textures/items/potion_bottle_resistance",
  1447.   "textures/items/potion_bottle_saturation",
  1448.   "textures/items/potion_bottle_slowFall",
  1449.   "textures/items/potion_bottle_splash",
  1450.   "textures/items/potion_bottle_splash_absorption",
  1451.   "textures/items/potion_bottle_splash_blindness",
  1452.   "textures/items/potion_bottle_splash_confusion",
  1453.   "textures/items/potion_bottle_splash_damageBoost",
  1454.   "textures/items/potion_bottle_splash_digSlowdown",
  1455.   "textures/items/potion_bottle_splash_digSpeed",
  1456.   "textures/items/potion_bottle_splash_fireResistance",
  1457.   "textures/items/potion_bottle_splash_harm",
  1458.   "textures/items/potion_bottle_splash_heal",
  1459.   "textures/items/potion_bottle_splash_healthBoost",
  1460.   "textures/items/potion_bottle_splash_hunger",
  1461.   "textures/items/potion_bottle_splash_invisibility",
  1462.   "textures/items/potion_bottle_splash_jump",
  1463.   "textures/items/potion_bottle_splash_levitation",
  1464.   "textures/items/potion_bottle_splash_moveSlowdown",
  1465.   "textures/items/potion_bottle_splash_moveSpeed",
  1466.   "textures/items/potion_bottle_splash_nightVision",
  1467.   "textures/items/potion_bottle_splash_poison",
  1468.   "textures/items/potion_bottle_splash_regeneration",
  1469.   "textures/items/potion_bottle_splash_resistance",
  1470.   "textures/items/potion_bottle_splash_saturation",
  1471.   "textures/items/potion_bottle_splash_slowFall",
  1472.   "textures/items/potion_bottle_splash_turtleMaster",
  1473.   "textures/items/potion_bottle_splash_waterBreathing",
  1474.   "textures/items/potion_bottle_splash_weakness",
  1475.   "textures/items/potion_bottle_splash_wither",
  1476.   "textures/items/potion_bottle_turtleMaster",
  1477.   "textures/items/potion_bottle_waterBreathing",
  1478.   "textures/items/potion_bottle_weakness",
  1479.   "textures/items/potion_bottle_wither",
  1480.   "textures/items/potion_overlay",
  1481.   "textures/items/prismarine_crystals",
  1482.   "textures/items/prismarine_shard",
  1483.   "textures/items/pumpkin_pie",
  1484.   "textures/items/quartz",
  1485.   "textures/items/quiver",
  1486.   "textures/items/rabbit_cooked",
  1487.   "textures/items/rabbit_foot",
  1488.   "textures/items/rabbit_hide",
  1489.   "textures/items/rabbit_raw",
  1490.   "textures/items/rabbit_stew",
  1491.   "textures/items/record_11",
  1492.   "textures/items/record_13",
  1493.   "textures/items/record_blocks",
  1494.   "textures/items/record_cat",
  1495.   "textures/items/record_chirp",
  1496.   "textures/items/record_far",
  1497.   "textures/items/record_mall",
  1498.   "textures/items/record_mellohi",
  1499.   "textures/items/record_stal",
  1500.   "textures/items/record_strad",
  1501.   "textures/items/record_wait",
  1502.   "textures/items/record_ward",
  1503.   "textures/items/redstone_dust",
  1504.   "textures/items/reeds",
  1505.   "textures/items/repeater",
  1506.   "textures/items/rotten_flesh",
  1507.   "textures/items/ruby",
  1508.   "textures/items/saddle",
  1509.   "textures/items/sea_pickle",
  1510.   "textures/items/seeds_beetroot",
  1511.   "textures/items/seeds_melon",
  1512.   "textures/items/seeds_pumpkin",
  1513.   "textures/items/seeds_wheat",
  1514.   "textures/items/shears",
  1515.   "textures/items/shulker_shell",
  1516.   "textures/items/sign",
  1517.   "textures/items/sign_acacia",
  1518.   "textures/items/sign_birch",
  1519.   "textures/items/sign_darkoak",
  1520.   "textures/items/sign_jungle",
  1521.   "textures/items/sign_spruce",
  1522.   "textures/items/slimeball",
  1523.   "textures/items/snowball",
  1524.   "textures/items/spawn_egg",
  1525.   "textures/items/spawn_egg_overlay",
  1526.   "textures/items/spider_eye",
  1527.   "textures/items/spider_eye_fermented",
  1528.   "textures/items/stick",
  1529.   "textures/items/stone_axe",
  1530.   "textures/items/stone_hoe",
  1531.   "textures/items/stone_pickaxe",
  1532.   "textures/items/stone_shovel",
  1533.   "textures/items/stone_sword",
  1534.   "textures/items/string",
  1535.   "textures/items/sugar",
  1536.   "textures/items/suspicious_stew",
  1537.   "textures/items/sweet_berries",
  1538.   "textures/items/tipped_arrow",
  1539.   "textures/items/tipped_arrow_base",
  1540.   "textures/items/tipped_arrow_fireres",
  1541.   "textures/items/tipped_arrow_harm",
  1542.   "textures/items/tipped_arrow_head",
  1543.   "textures/items/tipped_arrow_healing",
  1544.   "textures/items/tipped_arrow_invisibility",
  1545.   "textures/items/tipped_arrow_leaping",
  1546.   "textures/items/tipped_arrow_luck",
  1547.   "textures/items/tipped_arrow_nightvision",
  1548.   "textures/items/tipped_arrow_poison",
  1549.   "textures/items/tipped_arrow_regen",
  1550.   "textures/items/tipped_arrow_slow",
  1551.   "textures/items/tipped_arrow_strength",
  1552.   "textures/items/tipped_arrow_swift",
  1553.   "textures/items/tipped_arrow_slowfalling",
  1554.   "textures/items/tipped_arrow_turtlemaster",
  1555.   "textures/items/tipped_arrow_waterbreathing",
  1556.   "textures/items/tipped_arrow_weakness",
  1557.   "textures/items/tipped_arrow_wither",
  1558.   "textures/items/trident",
  1559.   "textures/items/turtle_egg",
  1560.   "textures/items/turtle_shell_piece",
  1561.   "textures/items/turtle_helmet",
  1562.   "textures/items/totem",
  1563.   "textures/items/watch_atlas",
  1564.   "textures/items/wheat",
  1565.   "textures/items/wood_axe",
  1566.   "textures/items/wood_hoe",
  1567.   "textures/items/wood_pickaxe",
  1568.   "textures/items/wood_shovel",
  1569.   "textures/items/wood_sword",
  1570.   "textures/map/map_background",
  1571.   "textures/map/map_icons",
  1572.   "textures/map/player_icon_background",
  1573.   "textures/misc/enchanted_item_glint",
  1574.   "textures/misc/missing_texture",
  1575.   "textures/misc/pumpkinblur",
  1576.   "textures/models/armor/chain_1",
  1577.   "textures/models/armor/chain_2",
  1578.   "textures/models/armor/cloth_1",
  1579.   "textures/models/armor/cloth_2",
  1580.   "textures/models/armor/diamond_1",
  1581.   "textures/models/armor/diamond_2",
  1582.   "textures/models/armor/elytra",
  1583.   "textures/models/armor/gold_1",
  1584.   "textures/models/armor/gold_2",
  1585.   "textures/models/armor/iron_1",
  1586.   "textures/models/armor/iron_2",
  1587.   "textures/models/armor/leather_1",
  1588.   "textures/models/armor/leather_2",
  1589.   "textures/models/armor/turtle_1",
  1590.   "textures/painting/kz",
  1591.   "textures/particle/campfire_smoke",
  1592.   "textures/persona_thumbnails/70s_hair_Thumbnail_0.png",
  1593.   "textures/persona_thumbnails/70s_pants_Thumbnail_0.png",
  1594.   "textures/persona_thumbnails/70s_Shirt_Thumbnail_0.png",
  1595.   "textures/persona_thumbnails/70s_shoes_Thumbnail_0.png",
  1596.   "textures/persona_thumbnails/70s_skin_Thumbnail_0.png",
  1597.   "textures/persona_thumbnails/alex_hair_Thumbnail_0.png",
  1598.   "textures/persona_thumbnails/alex_hair_thumbnail_OLD.png",
  1599.   "textures/persona_thumbnails/alex_pants_Thumbnail_0.png",
  1600.   "textures/persona_thumbnails/alex_pants_thumbnail_OLD.png",
  1601.   "textures/persona_thumbnails/alex_shirt_Thumbnail_0.png",
  1602.   "textures/persona_thumbnails/alex_shirt_thumbnail_OLD.png",
  1603.   "textures/persona_thumbnails/alex_shoes_Thumbnail_0.png",
  1604.   "textures/persona_thumbnails/alex_shoes_thumbnail_OLD.png",
  1605.   "textures/persona_thumbnails/alex_skin_Thumbnail_0.png",
  1606.   "textures/persona_thumbnails/business_blouse_Thumbnail_0.png",
  1607.   "textures/persona_thumbnails/business_boots_Thumbnail_0.png",
  1608.   "textures/persona_thumbnails/business_cardigan_Thumbnail_0.png",
  1609.   "textures/persona_thumbnails/business_earring_Thumbnail_0.png",
  1610.   "textures/persona_thumbnails/business_hair_Thumbnail_0.png",
  1611.   "textures/persona_thumbnails/business_jewelry_Thumbnail_0.png",
  1612.   "textures/persona_thumbnails/business_skin_Thumbnail_0.png",
  1613.   "textures/persona_thumbnails/business_skirt_Thumbnail_0.png",
  1614.   "textures/persona_thumbnails/citykid_dress_Thumbnail_0.png",
  1615.   "textures/persona_thumbnails/citykid_jacket_Thumbnail_0.png",
  1616.   "textures/persona_thumbnails/citykid_shoes_Thumbnail_0.png",
  1617.   "textures/persona_thumbnails/city_kid_hair_Thumbnail_0.png",
  1618.   "textures/persona_thumbnails/city_kid_skin_Thumbnail_0.png",
  1619.   "textures/persona_thumbnails/fall_hair_Thumbnail_0.png",
  1620.   "textures/persona_thumbnails/fall_pants_Thumbnail_0.png",
  1621.   "textures/persona_thumbnails/fall_shirt_Thumbnail_0.png",
  1622.   "textures/persona_thumbnails/fall_shoes_Thumbnail_0.png",
  1623.   "textures/persona_thumbnails/fall_skin_Thumbnail_0.png",
  1624.   "textures/persona_thumbnails/farmer_hair_Thumbnail_0.png",
  1625.   "textures/persona_thumbnails/farmer_pants_Thumbnail_0.png",
  1626.   "textures/persona_thumbnails/farmer_shirt_Thumbnail_0.png",
  1627.   "textures/persona_thumbnails/farmer_shoes_Thumbnail_0.png",
  1628.   "textures/persona_thumbnails/farmer_skin_Thumbnail_0.png",
  1629.   "textures/persona_thumbnails/plain_eyes_thumbnail_OLD.png",
  1630.   "textures/persona_thumbnails/plain_mouth_thumbnail_OLD.png",
  1631.   "textures/persona_thumbnails/ranger_hair_Thumbnail_0.png",
  1632.   "textures/persona_thumbnails/ranger_jacket_Thumbnail_0.png",
  1633.   "textures/persona_thumbnails/ranger_pants_Thumbnail_0.png",
  1634.   "textures/persona_thumbnails/ranger_shirt_Thumbnail_0.png",
  1635.   "textures/persona_thumbnails/ranger_shoes_Thumbnail_0.png",
  1636.   "textures/persona_thumbnails/ranger_skin_Thumbnail_0.png",
  1637.   "textures/persona_thumbnails/rural_flannel_Thumbnail_0.png",
  1638.   "textures/persona_thumbnails/rural_hair_Thumbnail_0.png",
  1639.   "textures/persona_thumbnails/rural_pants_Thumbnail_0.png",
  1640.   "textures/persona_thumbnails/rural_shoes_Thumbnail_0.png",
  1641.   "textures/persona_thumbnails/rural_skin_Thumbnail_0.png",
  1642.   "textures/persona_thumbnails/skin_alex_thumbnail_OLD.png",
  1643.   "textures/persona_thumbnails/skin_steve_thumbnail_OLD.png",
  1644.   "textures/persona_thumbnails/standard_eyes_thumbnail_0.png",
  1645.   "textures/persona_thumbnails/standard_mouth_thumbnail_0.png",
  1646.   "textures/persona_thumbnails/steve_beard_Thumbnail_0.png",
  1647.   "textures/persona_thumbnails/steve_hair_thumbnail_0.png",
  1648.   "textures/persona_thumbnails/steve_hair_thumbnail_OLD.png",
  1649.   "textures/persona_thumbnails/steve_mouth_Thumbnail_0.png",
  1650.   "textures/persona_thumbnails/steve_pants_Thumbnail_0.png",
  1651.   "textures/persona_thumbnails/steve_pants_thumbnail_OLD.png",
  1652.   "textures/persona_thumbnails/steve_shirt_Thumbnail_0.png",
  1653.   "textures/persona_thumbnails/steve_shirt_thumbnail_OLD.png",
  1654.   "textures/persona_thumbnails/steve_shoes_Thumbnail_0.png",
  1655.   "textures/persona_thumbnails/steve_shoes_thumbnail_OLD.png",
  1656.   "textures/persona_thumbnails/steve_skin_Thumbnail_0.png",
  1657.   "textures/persona_thumbnails/straight_thumbnail_0.png",
  1658.   "textures/ui/5stars_empty",
  1659.   "textures/ui/5stars_full",
  1660.   "textures/ui/absorption_effect",
  1661.   "textures/ui/absorption_heart",
  1662.   "textures/ui/absorption_heart_half",
  1663.   "textures/ui/achievements",
  1664.   "textures/ui/achievements_g",
  1665.   "textures/ui/achievement_locked_icon",
  1666.   "textures/ui/addServer",
  1667.   "textures/ui/anvil-plus",
  1668.   "textures/ui/anvil_icon",
  1669.   "textures/ui/armor_empty",
  1670.   "textures/ui/armor_full",
  1671.   "textures/ui/armor_half",
  1672.   "textures/ui/arrow",
  1673.   "textures/ui/arrow_down",
  1674.   "textures/ui/arrow_down_small",
  1675.   "textures/ui/arrowDown",
  1676.   "textures/ui/arrowRight",
  1677.   "textures/ui/arrow_active",
  1678.   "textures/ui/arrow_icon",
  1679.   "textures/ui/arrow_inactive",
  1680.   "textures/ui/arrow_large",
  1681.   "textures/ui/arrow_l_default",
  1682.   "textures/ui/arrow_l_hover",
  1683.   "textures/ui/arrow_l_pressed",
  1684.   "textures/ui/arrow_left_white",
  1685.   "textures/ui/arrow_r_default",
  1686.   "textures/ui/arrow_r_hover",
  1687.   "textures/ui/arrow_r_pressed",
  1688.   "textures/ui/arrow_right_white",
  1689.   "textures/ui/back_button_default",
  1690.   "textures/ui/back_button_hover",
  1691.   "textures/ui/back_button_pressed",
  1692.   "textures/ui/background",
  1693.   "textures/ui/background_image",
  1694.   "textures/ui/background_indent_no_top",
  1695.   "textures/ui/background_panel",
  1696.   "textures/ui/background_with_border",
  1697.   "textures/ui/bad_omen_effect",
  1698.   "textures/ui/Banners",
  1699.   "textures/ui/BannersLight",
  1700.   "textures/ui/banners_dark",
  1701.   "textures/gui/newgui/beacon/beacon_background_pocket",
  1702.   "textures/ui/banners_no_border",
  1703.   "textures/ui/banners_no_border_dark_hover",
  1704.   "textures/ui/BannersTransparent",
  1705.   "textures/ui/beacon_button_default",
  1706.   "textures/ui/beacon_button_hover",
  1707.   "textures/ui/beacon_button_locked",
  1708.   "textures/ui/beacon_button_pressed",
  1709.   "textures/ui/beacon_default_button_pocket",
  1710.   "textures/ui/beacon_item_seperator_pocket",
  1711.   "textures/ui/beacon_selected_button_pocket",
  1712.   "textures/ui/bg32",
  1713.   "textures/ui/Black",
  1714.   "textures/ui/blackline",
  1715.   "textures/ui/black-arrow",
  1716.   "textures/ui/black_border",
  1717.   "textures/ui/blindness_effect",
  1718.   "textures/ui/book_binding",
  1719.   "textures/ui/book_frame",
  1720.   "textures/ui/book_spine",
  1721.   "textures/ui/bookshelf_flat",
  1722.   "textures/ui/bookshelf_flat_border",
  1723.   "textures/ui/bottle_empty",
  1724.   "textures/ui/bottle_empty_pocket",
  1725.   "textures/ui/box_number_grey",
  1726.   "textures/ui/break",
  1727.   "textures/ui/brewing_arrow_empty",
  1728.   "textures/ui/brewing_arrow_full",
  1729.   "textures/ui/brewing_arrow_large_empty",
  1730.   "textures/ui/brewing_arrow_large_full",
  1731.   "textures/ui/brewing_fuel_bar_empty",
  1732.   "textures/ui/brewing_fuel_bar_full",
  1733.   "textures/ui/brewing_fuel_empty",
  1734.   "textures/ui/brewing_fuel_pipes",
  1735.   "textures/ui/brewing_fuel_pipes_pocket",
  1736.   "textures/ui/brewing_pipes",
  1737.   "textures/ui/brewing_pipes_large",
  1738.   "textures/ui/bubble",
  1739.   "textures/ui/bubbles_empty",
  1740.   "textures/ui/bubbles_empty_pocket",
  1741.   "textures/ui/bubbles_full",
  1742.   "textures/ui/bubbles_full_pocket",
  1743.   "textures/ui/bubble_pop",
  1744.   "textures/ui/button_borderless_dark",
  1745.   "textures/ui/button_borderless_darkhover",
  1746.   "textures/ui/button_borderless_darkpressed",
  1747.   "textures/ui/button_borderless_darkpressednohover",
  1748.   "textures/ui/button_borderless_imagelesshoverbg",
  1749.   "textures/ui/button_borderless_light",
  1750.   "textures/ui/button_borderless_lighthover",
  1751.   "textures/ui/button_borderless_lightpressed",
  1752.   "textures/ui/button_borderless_lightpressednohover",
  1753.   "textures/ui/button_border_dark",
  1754.   "textures/ui/button_border_light",
  1755.   "textures/ui/button_border_light_bottom_right",
  1756.   "textures/ui/button_inside_dark",
  1757.   "textures/ui/button_purple",
  1758.   "textures/ui/button_red",
  1759.   "textures/ui/button_red_pressed",
  1760.   "textures/ui/button_trade_red",
  1761.   "textures/ui/button_trade_red_pressed",
  1762.   "textures/ui/buy_now_hover",
  1763.   "textures/ui/buy_now_normal",
  1764.   "textures/ui/buy_now_pressed",
  1765.   "textures/ui/camera-yo",
  1766.   "textures/ui/cancel",
  1767.   "textures/ui/Caution",
  1768.   "textures/ui/cell_image",
  1769.   "textures/ui/cell_image_lock",
  1770.   "textures/ui/comment",
  1771.   "textures/ui/ChainSquare",
  1772.   "textures/ui/chat_down_arrow",
  1773.   "textures/ui/chat_keyboard",
  1774.   "textures/ui/chat_keyboard_hover",
  1775.   "textures/ui/chat_send",
  1776.   "textures/ui/checkboxFilledYellow",
  1777.   "textures/ui/checkboxUnFilled",
  1778.   "textures/ui/checkbox_check",
  1779.   "textures/ui/checkbox_checkDisabled",
  1780.   "textures/ui/checkbox_checkHover",
  1781.   "textures/ui/checkbox_check_locked",
  1782.   "textures/ui/checkbox_filled",
  1783.   "textures/ui/checkbox_filled_disabled",
  1784.   "textures/ui/checkbox_filled_hover",
  1785.   "textures/ui/checkbox_space",
  1786.   "textures/ui/checkbox_spaceDisabled",
  1787.   "textures/ui/checkbox_spaceHover",
  1788.   "textures/ui/checkbox_space_locked",
  1789.   "textures/ui/chevron_left",
  1790.   "textures/ui/chevron_grey_left",
  1791.   "textures/ui/chevron_grey_right",
  1792.   "textures/ui/chevron_new_grey_right",
  1793.   "textures/ui/chevron_new_white_right",
  1794.   "textures/ui/chevron_right",
  1795.   "textures/ui/chevron_white_down",
  1796.   "textures/ui/chevron_white_up",
  1797.   "textures/ui/classic-button-hover",
  1798.   "textures/ui/classic-button-pressed",
  1799.   "textures/ui/classic_skin_comp",
  1800.   "textures/ui/classic-button",
  1801.   "textures/ui/classrooms_icon",
  1802.   "textures/ui/clickable_overlay",
  1803.   "textures/ui/clickable_overlay_inverse",
  1804.   "textures/ui/clock",
  1805.   "textures/ui/close_button_default",
  1806.   "textures/ui/close_button_default_compact",
  1807.   "textures/ui/close_button_hover",
  1808.   "textures/ui/close_button_hover_compact",
  1809.   "textures/ui/close_button_pressed",
  1810.   "textures/ui/close_button_pressed_compact",
  1811.   "textures/ui/cloud_only_storage",
  1812.   "textures/ui/color_plus",
  1813.   "textures/ui/common-classic_hover",
  1814.   "textures/ui/common-classic_hover_1",
  1815.   "textures/ui/common-classic_toggle_checked_state",
  1816.   "textures/ui/common-classic_toggle_unchecked_state",
  1817.   "textures/ui/confirm",
  1818.   "textures/ui/control",
  1819.   "textures/ui/control_gray",
  1820.   "textures/ui/control_white",
  1821.   "textures/ui/controller_glyph",
  1822.   "textures/ui/controller_glyph_color",
  1823.   "textures/ui/controller_glyph_switch",
  1824.   "textures/ui/controller_glyph_color_switch",
  1825.   "textures/ui/copy",
  1826.   "textures/ui/craft_toggle_off",
  1827.   "textures/ui/craft_toggle_on",
  1828.   "textures/ui/craft_toggle_off_hover",
  1829.   "textures/ui/craft_toggle_on_hover",
  1830.   "textures/ui/CreateNewProject",
  1831.   "textures/ui/CreateNewWorld",
  1832.   "textures/ui/CreateNewProject",
  1833.   "textures/ui/crossout",
  1834.   "textures/ui/cross_hair",
  1835.   "textures/ui/csb_purchase_error",
  1836.   "textures/ui/csb_purchase_amazondevicewarning",
  1837.   "textures/ui/csb_purchase_warning",
  1838.   "textures/ui/csb_subscribe_banner",
  1839.   "textures/ui/csb_welcome",
  1840.   "textures/ui/cursor",
  1841.   "textures/ui/cursor_gamecore",
  1842.   "textures/ui/cursor_pc",
  1843.   "textures/ui/DarkBannerNoBorder",
  1844.   "textures/ui/dark_bg",
  1845.   "textures/ui/dark_minus",
  1846.   "textures/ui/dark_plus",
  1847.   "textures/ui/debug_glyph",
  1848.   "textures/ui/debug_glyph_color",
  1849.   "textures/ui/default_indent",
  1850.   "textures/ui/default_world",
  1851.   "textures/ui/deop",
  1852.   "textures/ui/dev_glyph",
  1853.   "textures/ui/dev_glyph_color",
  1854.   "textures/ui/dialog_background_hollow_1",
  1855.   "textures/ui/dialog_background_hollow_2",
  1856.   "textures/ui/dialog_background_hollow_3",
  1857.   "textures/ui/dialog_background_hollow_4",
  1858.   "textures/ui/dialog_background_hollow_4_thin",
  1859.   "textures/ui/dialog_background_hollow_5",
  1860.   "textures/ui/dialog_background_hollow_6",
  1861.   "textures/ui/dialog_background_hollow_7",
  1862.   "textures/ui/dialog_background_hollow_8",
  1863.   "textures/ui/dialog_background_opaque",
  1864.   "textures/ui/dialog_bubble",
  1865.   "textures/ui/dialog_bubble_point",
  1866.   "textures/ui/dialog_divider",
  1867.   "textures/ui/disabledButton",
  1868.   "textures/ui/divider",
  1869.   "textures/ui/divider2",
  1870.   "textures/ui/disabledButtonNoBorder",
  1871.   "textures/ui/down_arrow",
  1872.   "textures/ui/dressing_room_banner",
  1873.   "textures/ui/dressing_room_customization",
  1874.   "textures/ui/dressing_room_skins",
  1875.   "textures/ui/dropdown_background",
  1876.   "textures/ui/dropdown_chevron",
  1877.   "textures/ui/dropDownHoverBG",
  1878.   "textures/ui/dropDownSelectBG",
  1879.   "textures/ui/dust_selectable_1",
  1880.   "textures/ui/dust_selectable_2",
  1881.   "textures/ui/dust_selectable_3",
  1882.   "textures/ui/dust_unselectable_1",
  1883.   "textures/ui/dust_unselectable_2",
  1884.   "textures/ui/dust_unselectable_3",
  1885.   "textures/ui/editIcon",
  1886.   "textures/ui/edit_box_indent",
  1887.   "textures/ui/edit_box_indent_hover",
  1888.   "textures/ui/effect_background",
  1889.   "textures/ui/elipses",
  1890.   "textures/ui/emote_empty_0",
  1891.   "textures/ui/emote_empty_1",
  1892.   "textures/ui/emote_empty_2",
  1893.   "textures/ui/emote_empty_3",
  1894.   "textures/ui/emote_empty_4",
  1895.   "textures/ui/emote_empty_5",
  1896.   "textures/ui/emote_wheel_updated_base",
  1897.   "textures/ui/emote_wheel_updated_select_0",
  1898.   "textures/ui/emote_wheel_updated_select_1",
  1899.   "textures/ui/emote_wheel_updated_select_2",
  1900.   "textures/ui/emote_wheel_updated_select_3",
  1901.   "textures/ui/emote_wheel_base",
  1902.   "textures/ui/emote_wheel_select_0",
  1903.   "textures/ui/emote_wheel_select_1",
  1904.   "textures/ui/emote_wheel_select_2",
  1905.   "textures/ui/emote_wheel_select_3",
  1906.   "textures/ui/emote_wheel_select_4",
  1907.   "textures/ui/emote_wheel_select_5",
  1908.   "textures/ui/empty_armor_slot_boots",
  1909.   "textures/ui/empty_armor_slot_chestplate",
  1910.   "textures/ui/empty_armor_slot_helmet",
  1911.   "textures/ui/empty_armor_slot_leggings",
  1912.   "textures/ui/empty_armor_slot_shield",
  1913.   "textures/ui/empty_horse_slot_armor",
  1914.   "textures/ui/empty_horse_slot_saddle",
  1915.   "textures/ui/empty_llama_slot_carpet",
  1916.   "textures/ui/empty_progress_bar",
  1917.   "textures/ui/enchanting_active_background",
  1918.   "textures/ui/enchanting_active_background_with_hover_text",
  1919.   "textures/ui/enchanting_dark_background",
  1920.   "textures/ui/equipped_item_border",
  1921.   "textures/ui/ErrorGlyph",
  1922.   "textures/ui/ErrorGlyph_small_hover",
  1923.   "textures/ui/experience_bar_empty_blue",
  1924.   "textures/ui/experience_bar_full_blue",
  1925.   "textures/ui/experience_bar_full_white",
  1926.   "textures/ui/experience_bar_nub_blue",
  1927.   "textures/ui/experiencebarempty",
  1928.   "textures/ui/experiencebarfull",
  1929.   "textures/ui/experiencenub",
  1930.   "textures/ui/Feedback",
  1931.   "textures/ui/feed_background",
  1932.   "textures/ui/filled_progress_bar",
  1933.   "textures/ui/fire_resistance_effect",
  1934.   "textures/ui/first_of_three",
  1935.   "textures/ui/second_of_three",
  1936.   "textures/ui/third_of_three",
  1937.   "textures/ui/first_of_two",
  1938.   "textures/ui/second_of_two",
  1939.   "textures/ui/subcategory_icons/arms",
  1940.   "textures/ui/subcategory_icons/back_accessory",
  1941.   "textures/ui/subcategory_icons/body_size",
  1942.   "textures/ui/subcategory_icons/bottoms",
  1943.   "textures/ui/subcategory_icons/capes",
  1944.   "textures/ui/subcategory_icons/emotes",
  1945.   "textures/ui/subcategory_icons/eyes",
  1946.   "textures/ui/subcategory_icons/face_accessory",
  1947.   "textures/ui/subcategory_icons/facial_hair",
  1948.   "textures/ui/subcategory_icons/feet",
  1949.   "textures/ui/subcategory_icons/hair",
  1950.   "textures/ui/subcategory_icons/hands",
  1951.   "textures/ui/subcategory_icons/head",
  1952.   "textures/ui/subcategory_icons/legs",
  1953.   "textures/ui/subcategory_icons/mouth",
  1954.   "textures/ui/subcategory_icons/outerwear",
  1955.   "textures/ui/subcategory_icons/skin_texture",
  1956.   "textures/ui/subcategory_icons/tops",
  1957.   "textures/ui/flame_empty_image",
  1958.   "textures/ui/flame_full_image",
  1959.   "textures/ui/focus_border_white",
  1960.   "textures/ui/focus_border_selected",
  1961.   "textures/ui/free_download_symbol",
  1962.   "textures/ui/Friend1",
  1963.   "textures/ui/friend1_black_outline",
  1964.   "textures/ui/friend1_black_outline_2x",
  1965.   "textures/ui/Friend2",
  1966.   "textures/ui/FriendsDiversity",
  1967.   "textures/ui/friend_glyph",
  1968.   "textures/ui/friend_glyph_desaturated",
  1969.   "textures/ui/FriendsIcon",
  1970.   "textures/ui/gamepad_icon_button",
  1971.   "textures/ui/gamepad_icon_dpad",
  1972.   "textures/ui/gamepad_icon_left_bumper",
  1973.   "textures/ui/gamepad_icon_left_trigger",
  1974.   "textures/ui/gamepad_icon_right_bumper",
  1975.   "textures/ui/gamepad_icon_right_trigger",
  1976.   "textures/ui/gamepad_icon_thumbstick",
  1977.   "textures/ui/gamerpic",
  1978.   "textures/ui/gamerscore",
  1979.   "textures/ui/Gray",
  1980.   "textures/ui/Grey",
  1981.   "textures/ui/greyBorder",
  1982.   "textures/ui/hammer_l",
  1983.   "textures/ui/hammer_l_disabled",
  1984.   "textures/ui/hammer_r",
  1985.   "textures/ui/hammer_r_disabled",
  1986.   "textures/ui/horizontal_divider",
  1987.   "textures/ui/horizontalbreak",
  1988.   "textures/ui/gamerpic_bevel",
  1989.   "textures/ui/gear",
  1990.   "textures/ui/generic_bumper_left",
  1991.   "textures/ui/generic_bumper_right",
  1992.   "textures/ui/generic_dpad",
  1993.   "textures/ui/generic_dpad_down",
  1994.   "textures/ui/generic_dpad_left",
  1995.   "textures/ui/generic_dpad_right",
  1996.   "textures/ui/generic_dpad_up",
  1997.   "textures/ui/generic_face_button_down",
  1998.   "textures/ui/generic_face_button_left",
  1999.   "textures/ui/generic_face_button_right",
  2000.   "textures/ui/generic_face_button_up",
  2001.   "textures/ui/generic_left_trigger",
  2002.   "textures/ui/generic_right_trigger",
  2003.   "textures/ui/generic_select_button",
  2004.   "textures/ui/generic_start_button",
  2005.   "textures/ui/generic_stick_left",
  2006.   "textures/ui/generic_stick_right",
  2007.   "textures/ui/generic_touchpad",
  2008.   "textures/ui/glyph_addon_pack_small",
  2009.   "textures/ui/glyph_mashup_pack_small",
  2010.   "textures/ui/glyph_persona_pack_small",
  2011.   "textures/ui/glyph_resource_pack_small",
  2012.   "textures/ui/glyph_skin_pack_small",
  2013.   "textures/ui/glyph_skin_world_small",
  2014.   "textures/ui/glyph_all_pack_small",
  2015.   "textures/ui/grey_gamepad_icon_button",
  2016.   "textures/ui/hangar",
  2017.   "textures/ui/haste_effect",
  2018.   "textures/ui/header_bar",
  2019.   "textures/ui/header_bar_2",
  2020.   "textures/ui/health_boost_effect",
  2021.   "textures/ui/heart",
  2022.   "textures/ui/heart_background",
  2023.   "textures/ui/heart_blink",
  2024.   "textures/ui/heart_flash",
  2025.   "textures/ui/heart_flash_half",
  2026.   "textures/ui/heart_half",
  2027.   "textures/ui/heart_new",
  2028.   "textures/ui/highlight_slot",
  2029.   "textures/ui/hollowbanner",
  2030.   "textures/ui/horse_heart",
  2031.   "textures/ui/horse_heart_flash",
  2032.   "textures/ui/horse_heart_flash_half",
  2033.   "textures/ui/horse_heart_half",
  2034.   "textures/ui/horse_jump_empty",
  2035.   "textures/ui/horse_jump_full",
  2036.   "textures/ui/hotbar_0",
  2037.   "textures/ui/hotbar_1",
  2038.   "textures/ui/hotbar_2",
  2039.   "textures/ui/hotbar_3",
  2040.   "textures/ui/hotbar_4",
  2041.   "textures/ui/hotbar_5",
  2042.   "textures/ui/hotbar_6",
  2043.   "textures/ui/hotbar_7",
  2044.   "textures/ui/hotbar_8",
  2045.   "textures/ui/hotbar_end_cap",
  2046.   "textures/ui/hotbar_start_cap",
  2047.   "textures/ui/HowToPlayDivider",
  2048.   "textures/ui/how_to_play_button_default",
  2049.   "textures/ui/how_to_play_button_hover",
  2050.   "textures/ui/how_to_play_button_pressed",
  2051.   "textures/ui/hud_mob_effect_background",
  2052.   "textures/ui/hunger_background",
  2053.   "textures/ui/hunger_blink",
  2054.   "textures/ui/hunger_effect",
  2055.   "textures/ui/hunger_effect_background",
  2056.   "textures/ui/hunger_effect_flash_full",
  2057.   "textures/ui/hunger_effect_flash_half",
  2058.   "textures/ui/hunger_effect_full",
  2059.   "textures/ui/hunger_effect_half",
  2060.   "textures/ui/hunger_flash_full",
  2061.   "textures/ui/hunger_flash_half",
  2062.   "textures/ui/hunger_full",
  2063.   "textures/ui/hunger_half",
  2064.   "textures/ui/icon_best3",
  2065.   "textures/ui/icon_bookshelf",
  2066.   "textures/ui/icon_blackfriday",
  2067.   "textures/ui/icon_deals",
  2068.   "textures/ui/icon_fall",
  2069.   "textures/ui/icon_hangar",
  2070.   "textures/ui/icon_import",
  2071.   "textures/ui/icon_lock",
  2072.   "textures/ui/icon_minecoin_9x9",
  2073.   "textures/ui/icon_multiplayer",
  2074.   "textures/ui/icon_new",
  2075.   "textures/ui/icon_none",
  2076.   "textures/ui/icon_overlay_bg",
  2077.   "textures/ui/icon_recipe_construction",
  2078.   "textures/ui/icon_recipe_equipment",
  2079.   "textures/ui/icon_recipe_item",
  2080.   "textures/ui/icon_recipe_nature",
  2081.   "textures/ui/icon_saleribbon",
  2082.   "textures/ui/icon_spring",
  2083.   "textures/ui/icon_staffpicks",
  2084.   "textures/ui/icon_summer",
  2085.   "textures/ui/icon_random",
  2086.   "textures/ui/icon_setting",
  2087.   "textures/ui/icon_timer",
  2088.   "textures/ui/icon_trailer",
  2089.   "textures/ui/icon_trash",
  2090.   "textures/ui/icon_trending",
  2091.   "textures/ui/icon_winter",
  2092.   "textures/ui/icon_agent",
  2093.   "textures/ui/icon_alex",
  2094.   "textures/ui/icon_apple",
  2095.   "textures/ui/icon_balloon",
  2096.   "textures/ui/icon_book_writable",
  2097.   "textures/ui/icon_cake",
  2098.   "textures/ui/icon_carrot",
  2099.   "textures/ui/icon_cookie",
  2100.   "textures/ui/icon_fish_clownfish_raw",
  2101.   "textures/ui/icon_iron_pickaxe",
  2102.   "textures/ui/icon_llama",
  2103.   "textures/ui/icon_map",
  2104.   "textures/ui/icon_panda",
  2105.   "textures/ui/icon_potion",
  2106.   "textures/ui/icon_rail_normal",
  2107.   "textures/ui/icon_sign",
  2108.   "textures/ui/icon_steve",
  2109.   "textures/ui/icon_water_bucket",
  2110.   "textures/ui/imagetaggedcorner",
  2111.   "textures/ui/imagetaggedcornerborder",
  2112.   "textures/ui/imagetaggedcornergreen",
  2113.   "textures/ui/imagetaggedcornergreenhover",
  2114.   "textures/ui/imagetaggedcornergreenpressed",
  2115.   "textures/ui/import",
  2116.   "textures/ui/immersive_reader",
  2117.   "textures/ui/ImpulseSquare",
  2118.   "textures/ui/infobulb",
  2119.   "textures/ui/infobulb_darkborder_small",
  2120.   "textures/ui/ingot_image",
  2121.   "textures/ui/InvalidWorldDemoScreen",
  2122.   "textures/ui/inventory_warning_xbox",
  2123.   "textures/ui/invertedmultiselecticon",
  2124.   "textures/ui/invisibility_effect",
  2125.   "textures/ui/invite_base",
  2126.   "textures/ui/invite_number_background",
  2127.   "textures/ui/item_cell",
  2128.   "textures/ui/item_lock_red",
  2129.   "textures/ui/item_lock_yellow",
  2130.   "textures/ui/item_seperator",
  2131.   "textures/ui/joincode_button_background",
  2132.   "textures/ui/jump_boost_effect",
  2133.   "textures/ui/keyboard_and_mouse_glyph",
  2134.   "textures/ui/keyboard_and_mouse_glyph_color",
  2135.   "textures/ui/keyboard_tooltip_background",
  2136.   "textures/ui/keyboard_tooltip_icon",
  2137.   "textures/ui/language_glyph",
  2138.   "textures/ui/language_glyph_color",
  2139.   "textures/ui/lan_icon",
  2140.   "textures/ui/lapis",
  2141.   "textures/ui/lapis_image",
  2142.   "textures/ui/large_fish_bevel",
  2143.   "textures/ui/lava",
  2144.   "textures/ui/legacybanner",
  2145.   "textures/ui/legacy_pocket_close_button_default",
  2146.   "textures/ui/legacy_pocket_close_button_pressed",
  2147.   "textures/ui/levitation_effect",
  2148.   "textures/ui/lightgreybars",
  2149.   "textures/ui/like_default",
  2150.   "textures/ui/listcheck",
  2151.   "textures/ui/listcheck_smaller",
  2152.   "textures/ui/list_item_divider_line_light",
  2153.   "textures/ui/listx",
  2154.   "textures/ui/LoadingWorldDemoScreen",
  2155.   "textures/ui/loading_bar",
  2156.   "textures/ui/loading_spin",
  2157.   "textures/ui/local_and_cloud_storage",
  2158.   "textures/ui/local_only_storage",
  2159.   "textures/ui/lock",
  2160.   "textures/ui/loom_banner_empty",
  2161.   "textures/ui/loom_dye_empty",
  2162.   "textures/ui/loom_pattern_item_empty",
  2163.   "textures/ui/magnifyingGlass",
  2164.   "textures/ui/mail_icon",
  2165.   "textures/ui/mainbanners",
  2166.   "textures/ui/mainbanners_transparency",
  2167.   "textures/ui/MainBannersHover",
  2168.   "textures/ui/MashupIcon",
  2169.   "textures/ui/mashup_hangar",
  2170.   "textures/ui/mashup_PaintBrush",
  2171.   "textures/ui/mashup_world",
  2172.   "textures/ui/massive_servers",
  2173.   "textures/ui/MCoin",
  2174.   "textures/ui/menubackground",
  2175.   "textures/ui/message",
  2176.   "textures/ui/middle_strip",
  2177.   "textures/ui/minimize",
  2178.   "textures/ui/minimizeHover",
  2179.   "textures/ui/minimizePress",
  2180.   "textures/ui/mining_fatigue_effect",
  2181.   "textures/ui/minus",
  2182.   "textures/ui/missing_pack_icon",
  2183.   "textures/ui/mob_effect_background",
  2184.   "textures/ui/mobile_data_icon_android",
  2185.   "textures/ui/mobile_data_icon_ios",
  2186.   "textures/ui/more_dots",
  2187.   "textures/ui/move",
  2188.   "textures/ui/multiplayer_glyph",
  2189.   "textures/ui/multiplayer_glyph_color",
  2190.   "textures/ui/multiselection",
  2191.   "textures/ui/mute_off",
  2192.   "textures/ui/mute_on",
  2193.   "textures/ui/nausea_effect",
  2194.   "textures/ui/navy_blue",
  2195.   "textures/ui/newOffersIcon",
  2196.   "textures/ui/New_confirm_Hover",
  2197.   "textures/ui/new_offer_symbol",
  2198.   "textures/ui/newTouchScrollBox",
  2199.   "textures/ui/night_vision_effect",
  2200.   "textures/ui/normal_hover",
  2201.   "textures/ui/normal_normal",
  2202.   "textures/ui/normal_pressed",
  2203.   "textures/ui/NormalButtonNoStroke",
  2204.   "textures/ui/NormalButtonStroke",
  2205.   "textures/ui/NormalButtonThin",
  2206.   "textures/ui/NormalButtonThinStroke",
  2207.   "textures/ui/normal_stroke_button",
  2208.   "textures/ui/numberBGBack",
  2209.   "textures/ui/numberBGFront",
  2210.   "textures/ui/offline",
  2211.   "textures/ui/online",
  2212.   "textures/ui/onlineLight",
  2213.   "textures/ui/op",
  2214.   "textures/ui/packs_border",
  2215.   "textures/ui/packs_middle",
  2216.   "textures/ui/panel_outline",
  2217.   "textures/ui/panorama_0",
  2218.   "textures/ui/panorama_1",
  2219.   "textures/ui/panorama_2",
  2220.   "textures/ui/panorama_3",
  2221.   "textures/ui/panorama_4",
  2222.   "textures/ui/panorama_5",
  2223.   "textures/ui/panorama_overlay",
  2224.   "textures/ui/particles",
  2225.   "textures/ui/particles2",
  2226.   "textures/ui/paste",
  2227.   "textures/ui/pause_screen_border",
  2228.   "textures/ui/pencil_edit_icon",
  2229.   "textures/ui/permissions_player_fade_overlay",
  2230.   "textures/ui/photo_corner_bl",
  2231.   "textures/ui/photo_corner_br",
  2232.   "textures/ui/photo_corner_tl",
  2233.   "textures/ui/photo_corner_tr",
  2234.   "textures/ui/realms_button_borderless_default",
  2235.   "textures/ui/realms_button_borderless_hover",
  2236.   "textures/ui/realms_button_borderless_hover_pressed",
  2237.   "textures/ui/realms_button_borderless_lighthoverflag",
  2238.   "textures/ui/realms_button_borderless_lightpressedflag",
  2239.   "textures/ui/realms_button_borderless_no_hover_pressed",
  2240.   "textures/ui/pinksquare",
  2241.   "textures/ui/pinktriangle",
  2242.   "textures/ui/PlaceholderStore",
  2243.   "textures/ui/player_offline_icon",
  2244.   "textures/ui/player_online_icon",
  2245.   "textures/ui/player_preview_border",
  2246.   "textures/ui/plus",
  2247.   "textures/ui/pocket_button_default",
  2248.   "textures/ui/pocket_button_hover",
  2249.   "textures/ui/pocket_button_pressed",
  2250.   "textures/ui/pocket_tab_left_side",
  2251.   "textures/ui/pocket_tab_right_side",
  2252.   "textures/ui/pocket_ui_highlight_selected_slot",
  2253.   "textures/ui/pocket_ui_highlight_slot",
  2254.   "textures/ui/pointer",
  2255.   "textures/ui/poison_effect",
  2256.   "textures/ui/poison_heart",
  2257.   "textures/ui/poison_heart_flash",
  2258.   "textures/ui/poison_heart_flash_half",
  2259.   "textures/ui/poison_heart_half",
  2260.   "textures/ui/postGradientSolid",
  2261.   "textures/ui/portalBg",
  2262.   "textures/ui/profile_bg",
  2263.   "textures/ui/profile_glyph",
  2264.   "textures/ui/profile_glyph_color",
  2265.   "textures/ui/profile_new_look",
  2266.   "textures/ui/profile_new_look_small",
  2267.   "textures/ui/promo_corner_left",
  2268.   "textures/ui/promo_corner_right",
  2269.   "textures/ui/promo_gift_big",
  2270.   "textures/ui/promo_gift_small_yellow",
  2271.   "textures/ui/promo_gift_small_pink",
  2272.   "textures/ui/promo_gift_small_green",
  2273.   "textures/ui/promo_gift_small_blue",
  2274.   "textures/ui/progress_bar_simple",
  2275.   "textures/ui/promotion_slot",
  2276.   "textures/ui/ps4_bumper_left",
  2277.   "textures/ui/ps4_bumper_right",
  2278.   "textures/ui/ps4_dpad_down",
  2279.   "textures/ui/ps4_dpad_left",
  2280.   "textures/ui/ps4_dpad_right",
  2281.   "textures/ui/ps4_dpad_up",
  2282.   "textures/ui/ps4_face_button_down",
  2283.   "textures/ui/ps4_face_button_left",
  2284.   "textures/ui/ps4_face_button_right",
  2285.   "textures/ui/ps4_face_button_up",
  2286.   "textures/ui/ps4_left_trigger",
  2287.   "textures/ui/ps4_right_trigger",
  2288.   "textures/ui/ps4_stick_left",
  2289.   "textures/ui/ps4_stick_right",
  2290.   "textures/ui/ps4_touchpad",
  2291.   "textures/ui/purpleBorder",
  2292.   "textures/ui/purtle",
  2293.   "textures/ui/pyramid_level_1",
  2294.   "textures/ui/pyramid_level_2",
  2295.   "textures/ui/pyramid_level_3",
  2296.   "textures/ui/pyramid_level_4",
  2297.   "textures/ui/radio_checked",
  2298.   "textures/ui/qr_code_bees",
  2299.   "textures/ui/radio_checked_hover",
  2300.   "textures/ui/radio_off",
  2301.   "textures/ui/radio_off_hover",
  2302.   "textures/ui/radio_on",
  2303.   "textures/ui/radio_on_hover",
  2304.   "textures/ui/radiobox_filled",
  2305.   "textures/ui/radiobox_unfilled",
  2306.   "textures/ui/rarity_common",
  2307.   "textures/ui/rarity_epic",
  2308.   "textures/ui/rarity_legendary",
  2309.   "textures/ui/rarity_rare",
  2310.   "textures/ui/rarity_uncommon",
  2311.   "textures/ui/ratings_fullstar",
  2312.   "textures/ui/ratings_nostar",
  2313.   "textures/ui/RealmDemoScreen",
  2314.   "textures/ui/realmflagSmooth",
  2315.   "textures/ui/realmflagtriangleSmooth",
  2316.   "textures/ui/realmPortalSmall",
  2317.   "textures/ui/realmsparkle1",
  2318.   "textures/ui/realmsIcon",
  2319.   "textures/ui/realms_art_icon",
  2320.   "textures/ui/realms_gradient_top",
  2321.   "textures/ui/realms_green_check",
  2322.   "textures/ui/realms_header_art",
  2323.   "textures/ui/realms_poster_art_with_logo",
  2324.   "textures/ui/realms_purchase_warning",
  2325.   "textures/ui/realms_red_x",
  2326.   "textures/ui/realms_text_background",
  2327.   "textures/ui/realms_title",
  2328.   "textures/ui/recap_glyph_2x",
  2329.   "textures/ui/recap_glyph_color_2x",
  2330.   "textures/ui/recap_glyph_desaturated",
  2331.   "textures/ui/recipe_back_panel",
  2332.   "textures/ui/recipe_book_collapse_icon",
  2333.   "textures/ui/recipe_book_expand_icon",
  2334.   "textures/ui/recipe_book_group_bg",
  2335.   "textures/ui/recipe_book_group_collapsed",
  2336.   "textures/ui/recipe_book_group_expanded",
  2337.   "textures/ui/recipe_book_item_bg",
  2338.   "textures/ui/recipe_book_pane_bg",
  2339.   "textures/ui/recipe_book_red",
  2340.   "textures/ui/recipe_book_touch_cell_selected",
  2341.   "textures/ui/recipe_book_dark_button",
  2342.   "textures/ui/recipe_book_dark_button_pressed",
  2343.   "textures/ui/recipe_book_expand_dots_in",
  2344.   "textures/ui/recipe_book_expand_dots_out",
  2345.   "textures/ui/recipe_book_expand_dots_in_hover",
  2346.   "textures/ui/recipe_book_expand_dots_out_hover",
  2347.   "textures/ui/recipe_book_light_button",
  2348.   "textures/ui/recipe_book_light_button_pressed",
  2349.   "textures/ui/recipe_book_red_button",
  2350.   "textures/ui/recipe_book_red_button_pressed",
  2351.   "textures/ui/recipe_book_side_toggle_dark",
  2352.   "textures/ui/recipe_book_side_toggle_dark_hover",
  2353.   "textures/ui/recolorable_background",
  2354.   "textures/ui/red_slash",
  2355.   "textures/ui/redX1",
  2356.   "textures/ui/refresh",
  2357.   "textures/ui/refresh_hover",
  2358.   "textures/ui/refresh_light",
  2359.   "textures/ui/regeneration_effect",
  2360.   "textures/ui/RepeatSquare",
  2361.   "textures/ui/resistance_effect",
  2362.   "textures/ui/Rotate",
  2363.   "textures/ui/RTX_Label.png",
  2364.   "textures/ui/RTX_Sparkle.png",
  2365.   "textures/ui/saleflag",
  2366.   "textures/ui/saleflagtriangle",
  2367.   "textures/ui/saleflagtrianglebeveldefault",
  2368.   "textures/ui/saleflagtrianglebeveldefault_large",
  2369.   "textures/ui/saleflagtrianglebevelpress",
  2370.   "textures/ui/saleflagtrianglebevelpress_large",
  2371.   "textures/ui/saleribbon",
  2372.   "textures/ui/sale_button_borderless_lighthover",
  2373.   "textures/ui/sale_button_borderless_lighthoverflag",
  2374.   "textures/ui/sale_button_borderless_lightpressed",
  2375.   "textures/ui/sale_button_borderless_lightpressedflag",
  2376.   "textures/ui/screenshot_frame",
  2377.   "textures/ui/screen_background",
  2378.   "textures/ui/screen_realms_plus_background",
  2379.   "textures/ui/ScrollBox",
  2380.   "textures/ui/ScrollGutterWithBG",
  2381.   "textures/ui/ScrollHandle",
  2382.   "textures/ui/ScrollRail",
  2383.   "textures/ui/seeds",
  2384.   "textures/ui/selected_hotbar_slot",
  2385.   "textures/ui/send_icon",
  2386.   "textures/ui/settings_glyph_2x",
  2387.   "textures/ui/settings_glyph_color_2x",
  2388.   "textures/ui/share_apple",
  2389.   "textures/ui/share_google",
  2390.   "textures/ui/share_google_glyph",
  2391.   "textures/ui/share_google_glyph_color",
  2392.   "textures/ui/share_microsoft",
  2393.   "textures/ui/sidebar_icons/AdventureTime_packicon",
  2394.   "textures/ui/sidebar_icons/Ben10_packicon_0",
  2395.   "textures/ui/sidebar_icons/blueheart",
  2396.   "textures/ui/sidebar_icons/bookmark",
  2397.   "textures/ui/sidebar_icons/button_panel",
  2398.   "textures/ui/sidebar_icons/capes",
  2399.   "textures/ui/sidebar_icons/categories",
  2400.   "textures/ui/sidebar_icons/character_creator",
  2401.   "textures/ui/sidebar_icons/classic_skins",
  2402.   "textures/ui/sidebar_icons/csb_sidebar_icon",
  2403.   "textures/ui/sidebar_icons/dressing_room_animation",
  2404.   "textures/ui/sidebar_icons/dressing_room_capes",
  2405.   "textures/ui/sidebar_icons/dressing_room_customization",
  2406.   "textures/ui/sidebar_icons/dressing_room_skins",
  2407.   "textures/ui/sidebar_icons/emotes",
  2408.   "textures/ui/sidebar_icons/featured",
  2409.   "textures/ui/sidebar_icons/genre",
  2410.   "textures/ui/sidebar_icons/Jurassic_packicon_0",
  2411.   "textures/ui/sidebar_icons/Lightyear_packicon_0",
  2412.   "textures/ui/sidebar_icons/marketplace",
  2413.   "textures/ui/sidebar_icons/menu_threebars",
  2414.   "textures/ui/sidebar_icons/Minions_packicon_0",
  2415.   "textures/ui/sidebar_icons/my_characters",
  2416.   "textures/ui/sidebar_icons/my_content",
  2417.   "textures/ui/sidebar_icons/owned_skins_icon",
  2418.   "textures/ui/sidebar_icons/profile_screen_icon",
  2419.   "textures/ui/sidebar_icons/promotag",
  2420.   "textures/ui/sidebar_icons/realms",
  2421.   "textures/ui/sidebar_icons/realms_plus_skins_icon",
  2422.   "textures/ui/sidebar_icons/redheart",
  2423.   "textures/ui/sidebar_icons/rounddonut",
  2424.   "textures/ui/sidebar_icons/side_drawer_button_hover_focused",
  2425.   "textures/ui/sidebar_icons/side_drawer_button_selected",
  2426.   "textures/ui/sidebar_icons/side_drawer_left_panel",
  2427.   "textures/ui/sidebar_icons/side_panel_button_hover_focused",
  2428.   "textures/ui/sidebar_icons/side_panel_button_selected",
  2429.   "textures/ui/sidebar_icons/side_panel_divider",
  2430.   "textures/ui/sidebar_icons/Sonic_packicon",
  2431.   "textures/ui/sidebar_icons/squaredonut",
  2432.   "textures/ui/sidebar_icons/star",
  2433.   "textures/ui/sidebar_icons/Star_Wars_packicon_0",
  2434.   "textures/ui/sidebar_icons/unowned_skins_icon",
  2435.   "textures/ui/sidebar_icons/WDW-Magic-Kingdom-Adventure_packicon_0",
  2436.   "textures/ui/sidebar_icons/wish_list",
  2437.   "textures/ui/sign",
  2438.   "textures/ui/sign_acacia",
  2439.   "textures/ui/sign_birch",
  2440.   "textures/ui/sign_darkoak",
  2441.   "textures/ui/sign_jungle",
  2442.   "textures/ui/sign_spruce",
  2443.   "textures/ui/slider_background",
  2444.   "textures/ui/slider_background_hover",
  2445.   "textures/ui/slider_border",
  2446.   "textures/ui/slider_button_default",
  2447.   "textures/ui/slider_button_hover",
  2448.   "textures/ui/slider_button_locked",
  2449.   "textures/ui/slider_button_indent",
  2450.   "textures/ui/slider_locked_transparent_fade",
  2451.   "textures/ui/slider_progress",
  2452.   "textures/ui/slider_progress_hover",
  2453.   "textures/ui/slider_step_background",
  2454.   "textures/ui/slider_step_background_hover",
  2455.   "textures/ui/slider_step_progress",
  2456.   "textures/ui/slider_step_progress_hover",
  2457.   "textures/ui/slots_bg",
  2458.   "textures/ui/slot_sale",
  2459.   "textures/ui/slow_falling_effect",
  2460.   "textures/ui/slowness_effect",
  2461.   "textures/ui/small_fish_bevel",
  2462.   "textures/ui/smithing_icon",
  2463.   "textures/ui/snowy",
  2464.   "textures/ui/sound_glyph",
  2465.   "textures/ui/sound_glyph_color",
  2466.   "textures/ui/sound_glyph_2x",
  2467.   "textures/ui/sound_glyph_color_2x",
  2468.   "textures/ui/speed_effect",
  2469.   "textures/ui/spyglass_flat",
  2470.   "textures/ui/square_image_border_white",
  2471.   "textures/ui/stack_progress_bar_down_arrow",
  2472.   "textures/ui/stack_progress_bar_up_arrow",
  2473.   "textures/ui/stack_progress_bar_fill",
  2474.   "textures/ui/stack_progress_bar_left_side_arrow",
  2475.   "textures/ui/stack_progress_bar_right_side_arrow",
  2476.   "textures/ui/storageIcon",
  2477.   "textures/ui/storageIconColor",
  2478.   "textures/ui/store_banner_no_border",
  2479.   "textures/ui/store_background",
  2480.   "textures/ui/store_filter_icon",
  2481.   "textures/ui/store_home_icon",
  2482.   "textures/ui/store_play_button",
  2483.   "textures/ui/store_play_button_mask",
  2484.   "textures/ui/store_sort_icon",
  2485.   "textures/ui/StoreTopBar",
  2486.   "textures/ui/StoreTopBarFiller",
  2487.   "textures/ui/storexblsignin",
  2488.   "textures/ui/strength_effect",
  2489.   "textures/ui/structure_block",
  2490.   "textures/ui/structure_block_corner",
  2491.   "textures/ui/structure_block_data",
  2492.   "textures/ui/structure_block_export",
  2493.   "textures/ui/structure_block_load",
  2494.   "textures/ui/structure_block_save",
  2495.   "textures/ui/subscription_glyph",
  2496.   "textures/ui/subscription_glyph_color",
  2497.   "textures/ui/sunset_keyart",
  2498.   "textures/ui/sunset_pending_keyart",
  2499.   "textures/ui/conduit_power_effect",
  2500.   "textures/ui/switch_accounts",
  2501.   "textures/ui/switch_bumper_left",
  2502.   "textures/ui/switch_bumper_right",
  2503.   "textures/ui/switch_circle_button",
  2504.   "textures/ui/switch_dpad_down",
  2505.   "textures/ui/switch_dpad_left",
  2506.   "textures/ui/switch_dpad_right",
  2507.   "textures/ui/switch_dpad_up",
  2508.   "textures/ui/switch_face_button_down",
  2509.   "textures/ui/switch_face_button_left",
  2510.   "textures/ui/switch_face_button_right",
  2511.   "textures/ui/switch_face_button_up",
  2512.   "textures/ui/switch_home_button",
  2513.   "textures/ui/switch_left_trigger",
  2514.   "textures/ui/switch_select_button",
  2515.   "textures/ui/switch_start_button",
  2516.   "textures/ui/switch_right_trigger",
  2517.   "textures/ui/switch_sl_button",
  2518.   "textures/ui/switch_sr_button",
  2519.   "textures/ui/switch_stick_left",
  2520.   "textures/ui/switch_stick_right",
  2521.   "textures/ui/switch_touchpad",
  2522.   "textures/ui/sword",
  2523.   "textures/ui/TabTopBack",
  2524.   "textures/ui/TabTopBackLeftMost",
  2525.   "textures/ui/TabTopBackRightMost",
  2526.   "textures/ui/TabTopBackRightMostDark",
  2527.   "textures/ui/TabTopFront",
  2528.   "textures/ui/TabTopFrontLeftMost",
  2529.   "textures/ui/TabTopFrontRightMost",
  2530.   "textures/ui/TabLeftBack",
  2531.   "textures/ui/TabLeftBackBottomMost",
  2532.   "textures/ui/TabLeftBackTopMost",
  2533.   "textures/ui/TabLeftFront",
  2534.   "textures/ui/TabLeftFrontBottomMost",
  2535.   "textures/ui/TabLeftFrontTopMost",
  2536.   "textures/ui/TabRightBack",
  2537.   "textures/ui/TabRightBackBottomMost",
  2538.   "textures/ui/TabRightBackTopMost",
  2539.   "textures/ui/TabRightFront",
  2540.   "textures/ui/TabRightFrontBottomMost",
  2541.   "textures/ui/TabRightFrontTopMost",
  2542.   "textures/ui/TabTopBackHover",
  2543.   "textures/ui/TabTopBackLeftMostHover",
  2544.   "textures/ui/TabTopBackRightMostHover",
  2545.   "textures/ui/TabTopBackRightMostDarkHover",
  2546.   "textures/ui/TabTopFrontHover",
  2547.   "textures/ui/TabTopFrontLeftMostHover",
  2548.   "textures/ui/TabTopFrontRightMostHover",
  2549.   "textures/ui/TabLeftBackHover",
  2550.   "textures/ui/TabLeftBackBottomMostHover",
  2551.   "textures/ui/TabLeftBackTopMostHover",
  2552.   "textures/ui/TabLeftFrontHover",
  2553.   "textures/ui/TabLeftFrontBottomMostHover",
  2554.   "textures/ui/TabLeftFrontTopMostHover",
  2555.   "textures/ui/TabRightBackHover",
  2556.   "textures/ui/TabRightBackBottomMostHover",
  2557.   "textures/ui/TabRightBackTopMostHover",
  2558.   "textures/ui/TabRightFrontHover",
  2559.   "textures/ui/TabRightFrontBottomMostHover",
  2560.   "textures/ui/TabRightFrontTopMostHover",
  2561.   "textures/ui/teams_icon",
  2562.   "textures/ui/text_edit_base",
  2563.   "textures/ui/text_edit_hover",
  2564.   "textures/ui/text_color_paintbrush",
  2565.   "textures/ui/text_color_paintbrush_overlay",
  2566.   "textures/ui/text_label_box",
  2567.   "textures/ui/ThinPlus",
  2568.   "textures/ui/time_1sunrise",
  2569.   "textures/ui/title",
  2570.   "textures/ui/time_2day",
  2571.   "textures/ui/time_3noon",
  2572.   "textures/ui/time_4sunset",
  2573.   "textures/ui/time_5night",
  2574.   "textures/ui/time_6midnight",
  2575.   "textures/ui/tip_arrows_left",
  2576.   "textures/ui/tip_arrows_right",
  2577.   "textures/ui/tip_panel",
  2578.   "textures/ui/toggle_off",
  2579.   "textures/ui/toggle_off_hover",
  2580.   "textures/ui/toggle_on",
  2581.   "textures/ui/toggle_on_hover",
  2582.   "textures/ui/toolbar_background",
  2583.   "textures/ui/tooltip_default_chevron",
  2584.   "textures/ui/tooltip_inverted_chevron",
  2585.   "textures/ui/tooltip_default_background",
  2586.   "textures/ui/tooltip_notification_default_background",
  2587.   "textures/ui/topbar_off_point",
  2588.   "textures/ui/topbar_on_point",
  2589.   "textures/ui/touchScrollBox",
  2590.   "textures/ui/touch_glyph",
  2591.   "textures/ui/touch_glyph_color",
  2592.   "textures/ui/train",
  2593.   "textures/ui/trash",
  2594.   "textures/ui/trash_default",
  2595.   "textures/ui/trash_hover",
  2596.   "textures/ui/trash_light",
  2597.   "textures/ui/trash_pressed",
  2598.   "textures/ui/trophy",
  2599.   "textures/ui/ui_debug_glyph",
  2600.   "textures/ui/ui_debug_glyph_color",
  2601.   "textures/ui/undoArrow",
  2602.   "textures/ui/unLock",
  2603.   "textures/ui/update",
  2604.   "textures/ui/UpdateGlyph",
  2605.   "textures/ui/up_arrow",
  2606.   "textures/ui/up_chevron",
  2607.   "textures/ui/user_icon",
  2608.   "textures/ui/vertical_divider",
  2609.   "textures/ui/verticalgradient",
  2610.   "textures/ui/video_glyph",
  2611.   "textures/ui/video_glyph_color",
  2612.   "textures/ui/video_glyph_2x",
  2613.   "textures/ui/video_glyph_color_2x",
  2614.   "textures/ui/village_hero_effect",
  2615.   "textures/ui/vr_glyph",
  2616.   "textures/ui/vr_glyph_color",
  2617.   "textures/ui/warning_alex",
  2618.   "textures/ui/WarningGlyph",
  2619.   "textures/ui/WarningGlyph_small_hover",
  2620.   "textures/ui/water_breathing_effect",
  2621.   "textures/ui/weakness_effect",
  2622.   "textures/ui/weather_clear",
  2623.   "textures/ui/weather_rain",
  2624.   "textures/ui/weather_thunderstorm",
  2625.   "textures/ui/White",
  2626.   "textures/ui/white_background",
  2627.   "textures/ui/whiteline",
  2628.   "textures/ui/white_pixel_chevron_down",
  2629.   "textures/ui/white_pixel_chevron_right",
  2630.   "textures/ui/wither_effect",
  2631.   "textures/ui/wither_heart",
  2632.   "textures/ui/wither_heart_flash",
  2633.   "textures/ui/wither_heart_flash_half",
  2634.   "textures/ui/wither_heart_half",
  2635.   "textures/ui/World",
  2636.   "textures/ui/WorldDemoScreen",
  2637.   "textures/ui/WorldDemoScreen_Big",
  2638.   "textures/ui/WorldDemoScreen_Big_Grayscale",
  2639.   "textures/ui/worldsIcon",
  2640.   "textures/ui/world_download",
  2641.   "textures/ui/world_download_default",
  2642.   "textures/ui/world_download_hover",
  2643.   "textures/ui/world_download_pressed",
  2644.   "textures/ui/world_glyph",
  2645.   "textures/ui/world_glyph_desaturated",
  2646.   "textures/ui/world_glyph_color",
  2647.   "textures/ui/world_glyph_color_2x",
  2648.   "textures/ui/world_glyph_color_2x_black_outline",
  2649.   "textures/ui/world_screenshot_focus_border",
  2650.   "textures/ui/Wrenches1",
  2651.   "textures/ui/xbox4",
  2652.   "textures/ui/xboxconversionkeyart",
  2653.   "textures/ui/xbox_bumper_left",
  2654.   "textures/ui/xbox_bumper_right",
  2655.   "textures/ui/xbox_dpad",
  2656.   "textures/ui/xbox_dpad_down",
  2657.   "textures/ui/xbox_dpad_left",
  2658.   "textures/ui/xbox_dpad_right",
  2659.   "textures/ui/xbox_dpad_up",
  2660.   "textures/ui/xbox_face_button_down",
  2661.   "textures/ui/xbox_face_button_left",
  2662.   "textures/ui/xbox_face_button_right",
  2663.   "textures/ui/xbox_face_button_up",
  2664.   "textures/ui/xbox_left_trigger",
  2665.   "textures/ui/xbox_right_trigger",
  2666.   "textures/ui/xbox_select_button",
  2667.   "textures/ui/xbox_start_button",
  2668.   "textures/ui/xbox_stick_left",
  2669.   "textures/ui/xbox_stick_right",
  2670.   "textures/ui/xbox_touchpad",
  2671.   "textures/ui/XTab",
  2672.   "textures/ui/xyz_axis",
  2673.   "textures/ui/x_default",
  2674.   "textures/ui/x_hover",
  2675.   "textures/ui/x_pressed",
  2676.   "textures/ui/x_dropdown_default",
  2677.   "textures/ui/x_dropdown_hover",
  2678.   "textures/ui/yellow_banner"
  2679. ]
复制代码

注意的是,为什么说可能是你的噩梦呢,因为不管材质错不错误,你都要填进去,甚至夸张一点说,包里面任何图片的路径都要填进去,所以是大后期的噩梦(包括我)
苦力怕论坛,感谢有您~
 发表于 2024-6-9 18:50:23 来自手机|显示全部楼层 IP:江苏省
为什么我的出现了手持正常显示,但是在物品栏中无法正常显示?
2#2024-6-9 18:50:23回复收起回复
苦力怕论坛,感谢有您~
回复支持

使用道具举报

 发表于 2024-6-23 06:24:09|显示全部楼层 IP:广东省
第二点和第三点我有点看法。我自己写的 Addon 也好,改出来的 oCd 也好,都不需要移除废弃的贴图,也不需要搞什么“textures_list.json”然后把里面的材质文件路径写上去。虽然原版包确实有那么的“textures_list.json”文件,但是似乎删掉了也没什么影响,可以正常运行(至少在我用过的3台不同设备上)。当然,不排除设备和客户端版本差异导致的差异。
3#2024-6-23 06:24:09回复收起回复
苦力怕论坛,感谢有您~
回复支持

使用道具举报

 楼主|  发表于 2024-6-24 02:07:50 来自手机|显示全部楼层 IP:贵州省
Sakarwei 发表于 2024-6-23 06:24
第二点和第三点我有点看法。我自己写的 Addon 也好,改出来的 oCd 也好,都不需要移除废弃的贴图,也不需要 ...

你需要了解更多,渲染龙下实际上材质数量有限制,你如果一次性添加几千个物品你会赞同我的
4#2024-6-24 02:07:50回复收起回复
苦力怕论坛,感谢有您~
回复支持

使用道具举报

 发表于 2024-6-24 03:37:30|显示全部楼层 IP:广东省
呼啸泰坦 发表于 2024-6-24 02:07
你需要了解更多,渲染龙下实际上材质数量有限制,你如果一次性添加几千个物品你会赞同我的 ...

不清楚。自测 3000 物品(实际3002物品贴图含1无关,1改原版,另加1方块贴图)且不带 textures_list.json 、不删减无关贴图。未见异常。

(这些贴图看起来一样,实际上是3000份不同的贴图文件,每一文件末尾被写入不同内容,排除 MC 根据文件摘要值判断为同一贴图的可能)
cb98d47df6abdba36851f907b4dcf791.jpg
5#2024-6-24 03:37:30收起回复
Sakarwei2024-6-24 03:58IP:广东省
回复举报
管ta呢,能用就行。
苦力怕论坛,感谢有您~
回复支持

使用道具举报

本版积分规则

本站
关于我们
联系我们
坛史纲要
官方
哔哩哔哩
技术博客
下载
网易版
安卓版
JAVA
反馈
意见建议
教程中心
更多
捐助本站
QQ群
QQ群

QQ群

访问手机版

访问手机版

手机版|小黑屋|系统状态|klpbbs.com

粤公网安备 44200002445329号 | 由 木韩网络 提供支持 | GMT+8, 2024-11-24 11:30

声明:本站与Mojang以及微软公司没有从属关系

Powered by Discuz! X3.4 粤ICP备2023071842号-3