minecraft-clone / src /engine /constants.ts
TomatitoToho's picture
Upload src/engine/constants.ts with huggingface_hub
c7dcae8 verified
Raw
History Blame Contribute Delete
148 kB
// =============================================================
// MINECRAFT COMPLETE BLOCK REGISTRY
// Total blocks: 604
// Auto-generated from texture atlas mapping
// =============================================================
// World dimensions
export const CHUNK_WIDTH = 16;
export const CHUNK_HEIGHT = 384;
export const CHUNK_DEPTH = 16;
export const SUB_CHUNK_HEIGHT = 16;
export const NUM_SUB_CHUNKS = 24;
export const MIN_BUILD_HEIGHT = -64;
export const MAX_BUILD_HEIGHT = 319;
export const SEA_LEVEL = 63;
// Tick timing
export const TICKS_PER_SECOND = 20;
export const TICK_DURATION_MS = 50;
export const DAY_LENGTH_TICKS = 24000;
// Player physics
export const PLAYER_HEIGHT = 1.8;
export const PLAYER_WIDTH = 0.6;
export const PLAYER_EYE_HEIGHT = 1.62;
export const SNEAK_HEIGHT = 1.5;
export const WALK_SPEED = 4.317;
export const SPRINT_SPEED = 5.612;
export const SNEAK_SPEED = 1.3;
export const FLY_SPEED = 10.89;
export const SWIM_SPEED = 2.2;
export const GRAVITY = 32.0;
export const JUMP_VELOCITY = 8.4;
export const FALL_DAMAGE_THRESHOLD = 3;
export const REACH_DISTANCE = 5;
// Inventory
export const INVENTORY_SIZE = 36;
export const HOTBAR_SIZE = 9;
export const MAX_STACK_SIZE = 64;
// Rendering
export const RENDER_DISTANCE_DEFAULT = 8;
export const FOG_START_CHUNKS = 4;
export const TEXTURE_SIZE = 16;
export const ATLAS_SIZE = 1024;
export const TILES_PER_ROW = 64;
// Lighting
export const MAX_LIGHT_LEVEL = 15;
export const SKY_LIGHT = 15;
// Mob spawning
export const MOB_CAP_HOSTILE = 70;
export const MOB_CAP_PASSIVE = 10;
export const SPAWN_RADIUS_MIN = 24;
export const SPAWN_RADIUS_MAX = 128;
// Block face data
export const BLOCK_FACES = {
top: { dir: [0, 1, 0], corners: [[0,1,1],[1,1,1],[1,1,0],[0,1,0]] },
bottom: { dir: [0,-1, 0], corners: [[0,0,0],[1,0,0],[1,0,1],[0,0,1]] },
north: { dir: [0, 0,-1], corners: [[1,1,0],[0,1,0],[0,0,0],[1,0,0]] },
south: { dir: [0, 0, 1], corners: [[0,1,1],[1,1,1],[1,0,1],[0,0,1]] },
east: { dir: [1, 0, 0], corners: [[1,1,1],[1,1,0],[1,0,0],[1,0,1]] },
west: { dir: [-1,0, 0], corners: [[0,1,0],[0,1,1],[0,0,1],[0,0,0]] },
} as const;
// Block IDs
export const BLOCK_AIR = 0;
export const BLOCK_STONE = 1;
export const BLOCK_GRANITE = 2;
export const BLOCK_POLISHED_GRANITE = 3;
export const BLOCK_DIORITE = 4;
export const BLOCK_POLISHED_DIORITE = 5;
export const BLOCK_ANDESITE = 6;
export const BLOCK_POLISHED_ANDESITE = 7;
export const BLOCK_DEEPSLATE = 8;
export const BLOCK_POLISHED_DEEPSLATE = 9;
export const BLOCK_COBBLED_DEEPSLATE = 10;
export const BLOCK_CALCITE = 11;
export const BLOCK_TUFF = 12;
export const BLOCK_POLISHED_TUFF = 13;
export const BLOCK_TUFF_BRICKS = 14;
export const BLOCK_CHISELED_TUFF = 15;
export const BLOCK_DRIPSTONE_BLOCK = 16;
export const BLOCK_GRANITE_BRICKS = 17;
export const BLOCK_DIRT = 18;
export const BLOCK_GRASS_BLOCK = 19;
export const BLOCK_COARSE_DIRT = 20;
export const BLOCK_ROOTED_DIRT = 21;
export const BLOCK_DIRT_PATH = 22;
export const BLOCK_FARMLAND = 23;
export const BLOCK_MUD = 24;
export const BLOCK_MUDDY_MANGROVE_ROOTS = 25;
export const BLOCK_PODZOL = 26;
export const BLOCK_MYCELIUM = 27;
export const BLOCK_MOSS_BLOCK = 28;
export const BLOCK_SAND = 29;
export const BLOCK_RED_SAND = 30;
export const BLOCK_GRAVEL = 31;
export const BLOCK_CLAY = 32;
export const BLOCK_SANDSTONE = 33;
export const BLOCK_RED_SANDSTONE = 34;
export const BLOCK_CUT_SANDSTONE = 35;
export const BLOCK_CUT_RED_SANDSTONE = 36;
export const BLOCK_CHISELED_SANDSTONE = 37;
export const BLOCK_CHISELED_RED_SANDSTONE = 38;
export const BLOCK_SMOOTH_SANDSTONE = 39;
export const BLOCK_SMOOTH_RED_SANDSTONE = 40;
export const BLOCK_SNOW = 41;
export const BLOCK_SNOW_GRASS = 42;
export const BLOCK_ICE = 43;
export const BLOCK_PACKED_ICE = 44;
export const BLOCK_BLUE_ICE = 45;
export const BLOCK_FROSTED_ICE = 46;
export const BLOCK_BEDROCK = 47;
export const BLOCK_COAL_ORE = 48;
export const BLOCK_IRON_ORE = 49;
export const BLOCK_GOLD_ORE = 50;
export const BLOCK_DIAMOND_ORE = 51;
export const BLOCK_EMERALD_ORE = 52;
export const BLOCK_LAPIS_ORE = 53;
export const BLOCK_REDSTONE_ORE = 54;
export const BLOCK_COPPER_ORE = 55;
export const BLOCK_NETHER_GOLD_ORE = 56;
export const BLOCK_NETHER_QUARTZ_ORE = 57;
export const BLOCK_GILDED_BLACKSTONE = 58;
export const BLOCK_DEEPSLATE_COAL_ORE = 59;
export const BLOCK_DEEPSLATE_IRON_ORE = 60;
export const BLOCK_DEEPSLATE_GOLD_ORE = 61;
export const BLOCK_DEEPSLATE_DIAMOND_ORE = 62;
export const BLOCK_DEEPSLATE_EMERALD_ORE = 63;
export const BLOCK_DEEPSLATE_LAPIS_ORE = 64;
export const BLOCK_DEEPSLATE_REDSTONE_ORE = 65;
export const BLOCK_DEEPSLATE_COPPER_ORE = 66;
export const BLOCK_COAL_BLOCK = 67;
export const BLOCK_IRON_BLOCK = 68;
export const BLOCK_GOLD_BLOCK = 69;
export const BLOCK_DIAMOND_BLOCK = 70;
export const BLOCK_EMERALD_BLOCK = 71;
export const BLOCK_LAPIS_BLOCK = 72;
export const BLOCK_REDSTONE_BLOCK = 73;
export const BLOCK_COPPER_BLOCK = 74;
export const BLOCK_NETHERITE_BLOCK = 75;
export const BLOCK_AMETHYST_BLOCK = 76;
export const BLOCK_RAW_IRON_BLOCK = 77;
export const BLOCK_RAW_GOLD_BLOCK = 78;
export const BLOCK_RAW_COPPER_BLOCK = 79;
export const BLOCK_OBSIDIAN = 80;
export const BLOCK_CRYING_OBSIDIAN = 81;
export const BLOCK_OAK_LOG = 82;
export const BLOCK_OAK_PLANKS = 83;
export const BLOCK_SPRUCE_LOG = 84;
export const BLOCK_SPRUCE_PLANKS = 85;
export const BLOCK_BIRCH_LOG = 86;
export const BLOCK_BIRCH_PLANKS = 87;
export const BLOCK_JUNGLE_LOG = 88;
export const BLOCK_JUNGLE_PLANKS = 89;
export const BLOCK_DARK_OAK_LOG = 90;
export const BLOCK_DARK_OAK_PLANKS = 91;
export const BLOCK_ACACIA_LOG = 92;
export const BLOCK_ACACIA_PLANKS = 93;
export const BLOCK_MANGROVE_LOG = 94;
export const BLOCK_MANGROVE_PLANKS = 95;
export const BLOCK_CHERRY_LOG = 96;
export const BLOCK_CHERRY_PLANKS = 97;
export const BLOCK_PALE_OAK_LOG = 98;
export const BLOCK_PALE_OAK_PLANKS = 99;
export const BLOCK_STRIPPED_OAK_LOG = 100;
export const BLOCK_STRIPPED_SPRUCE_LOG = 101;
export const BLOCK_STRIPPED_BIRCH_LOG = 102;
export const BLOCK_STRIPPED_JUNGLE_LOG = 103;
export const BLOCK_STRIPPED_DARK_OAK_LOG = 104;
export const BLOCK_STRIPPED_ACACIA_LOG = 105;
export const BLOCK_STRIPPED_MANGROVE_LOG = 106;
export const BLOCK_STRIPPED_CHERRY_LOG = 107;
export const BLOCK_STRIPPED_PALE_OAK_LOG = 108;
export const BLOCK_OAK_LEAVES = 109;
export const BLOCK_SPRUCE_LEAVES = 110;
export const BLOCK_BIRCH_LEAVES = 111;
export const BLOCK_JUNGLE_LEAVES = 112;
export const BLOCK_DARK_OAK_LEAVES = 113;
export const BLOCK_ACACIA_LEAVES = 114;
export const BLOCK_MANGROVE_LEAVES = 115;
export const BLOCK_CHERRY_LEAVES = 116;
export const BLOCK_AZALEA_LEAVES = 117;
export const BLOCK_FLOWERING_AZALEA_LEAVES = 118;
export const BLOCK_PALE_OAK_LEAVES = 119;
export const BLOCK_WHITE_WOOL = 120;
export const BLOCK_ORANGE_WOOL = 121;
export const BLOCK_MAGENTA_WOOL = 122;
export const BLOCK_LIGHT_BLUE_WOOL = 123;
export const BLOCK_YELLOW_WOOL = 124;
export const BLOCK_LIME_WOOL = 125;
export const BLOCK_PINK_WOOL = 126;
export const BLOCK_GRAY_WOOL = 127;
export const BLOCK_LIGHT_GRAY_WOOL = 128;
export const BLOCK_CYAN_WOOL = 129;
export const BLOCK_PURPLE_WOOL = 130;
export const BLOCK_BLUE_WOOL = 131;
export const BLOCK_BROWN_WOOL = 132;
export const BLOCK_GREEN_WOOL = 133;
export const BLOCK_RED_WOOL = 134;
export const BLOCK_BLACK_WOOL = 135;
export const BLOCK_WHITE_CONCRETE = 136;
export const BLOCK_ORANGE_CONCRETE = 137;
export const BLOCK_MAGENTA_CONCRETE = 138;
export const BLOCK_LIGHT_BLUE_CONCRETE = 139;
export const BLOCK_YELLOW_CONCRETE = 140;
export const BLOCK_LIME_CONCRETE = 141;
export const BLOCK_PINK_CONCRETE = 142;
export const BLOCK_GRAY_CONCRETE = 143;
export const BLOCK_LIGHT_GRAY_CONCRETE = 144;
export const BLOCK_CYAN_CONCRETE = 145;
export const BLOCK_PURPLE_CONCRETE = 146;
export const BLOCK_BLUE_CONCRETE = 147;
export const BLOCK_BROWN_CONCRETE = 148;
export const BLOCK_GREEN_CONCRETE = 149;
export const BLOCK_RED_CONCRETE = 150;
export const BLOCK_BLACK_CONCRETE = 151;
export const BLOCK_WHITE_CONCRETE_POWDER = 152;
export const BLOCK_ORANGE_CONCRETE_POWDER = 153;
export const BLOCK_MAGENTA_CONCRETE_POWDER = 154;
export const BLOCK_LIGHT_BLUE_CONCRETE_POWDER = 155;
export const BLOCK_YELLOW_CONCRETE_POWDER = 156;
export const BLOCK_LIME_CONCRETE_POWDER = 157;
export const BLOCK_PINK_CONCRETE_POWDER = 158;
export const BLOCK_GRAY_CONCRETE_POWDER = 159;
export const BLOCK_LIGHT_GRAY_CONCRETE_POWDER = 160;
export const BLOCK_CYAN_CONCRETE_POWDER = 161;
export const BLOCK_PURPLE_CONCRETE_POWDER = 162;
export const BLOCK_BLUE_CONCRETE_POWDER = 163;
export const BLOCK_BROWN_CONCRETE_POWDER = 164;
export const BLOCK_GREEN_CONCRETE_POWDER = 165;
export const BLOCK_RED_CONCRETE_POWDER = 166;
export const BLOCK_BLACK_CONCRETE_POWDER = 167;
export const BLOCK_TERRACOTTA = 168;
export const BLOCK_WHITE_TERRACOTTA = 169;
export const BLOCK_ORANGE_TERRACOTTA = 170;
export const BLOCK_MAGENTA_TERRACOTTA = 171;
export const BLOCK_LIGHT_BLUE_TERRACOTTA = 172;
export const BLOCK_YELLOW_TERRACOTTA = 173;
export const BLOCK_LIME_TERRACOTTA = 174;
export const BLOCK_PINK_TERRACOTTA = 175;
export const BLOCK_GRAY_TERRACOTTA = 176;
export const BLOCK_LIGHT_GRAY_TERRACOTTA = 177;
export const BLOCK_CYAN_TERRACOTTA = 178;
export const BLOCK_PURPLE_TERRACOTTA = 179;
export const BLOCK_BLUE_TERRACOTTA = 180;
export const BLOCK_BROWN_TERRACOTTA = 181;
export const BLOCK_GREEN_TERRACOTTA = 182;
export const BLOCK_RED_TERRACOTTA = 183;
export const BLOCK_BLACK_TERRACOTTA = 184;
export const BLOCK_WHITE_GLAZED_TERRACOTTA = 185;
export const BLOCK_ORANGE_GLAZED_TERRACOTTA = 186;
export const BLOCK_MAGENTA_GLAZED_TERRACOTTA = 187;
export const BLOCK_LIGHT_BLUE_GLAZED_TERRACOTTA = 188;
export const BLOCK_YELLOW_GLAZED_TERRACOTTA = 189;
export const BLOCK_LIME_GLAZED_TERRACOTTA = 190;
export const BLOCK_PINK_GLAZED_TERRACOTTA = 191;
export const BLOCK_GRAY_GLAZED_TERRACOTTA = 192;
export const BLOCK_LIGHT_GRAY_GLAZED_TERRACOTTA = 193;
export const BLOCK_CYAN_GLAZED_TERRACOTTA = 194;
export const BLOCK_PURPLE_GLAZED_TERRACOTTA = 195;
export const BLOCK_BLUE_GLAZED_TERRACOTTA = 196;
export const BLOCK_BROWN_GLAZED_TERRACOTTA = 197;
export const BLOCK_GREEN_GLAZED_TERRACOTTA = 198;
export const BLOCK_RED_GLAZED_TERRACOTTA = 199;
export const BLOCK_BLACK_GLAZED_TERRACOTTA = 200;
export const BLOCK_WHITE_STAINED_GLASS = 201;
export const BLOCK_ORANGE_STAINED_GLASS = 202;
export const BLOCK_MAGENTA_STAINED_GLASS = 203;
export const BLOCK_LIGHT_BLUE_STAINED_GLASS = 204;
export const BLOCK_YELLOW_STAINED_GLASS = 205;
export const BLOCK_LIME_STAINED_GLASS = 206;
export const BLOCK_PINK_STAINED_GLASS = 207;
export const BLOCK_GRAY_STAINED_GLASS = 208;
export const BLOCK_LIGHT_GRAY_STAINED_GLASS = 209;
export const BLOCK_CYAN_STAINED_GLASS = 210;
export const BLOCK_PURPLE_STAINED_GLASS = 211;
export const BLOCK_BLUE_STAINED_GLASS = 212;
export const BLOCK_BROWN_STAINED_GLASS = 213;
export const BLOCK_GREEN_STAINED_GLASS = 214;
export const BLOCK_RED_STAINED_GLASS = 215;
export const BLOCK_BLACK_STAINED_GLASS = 216;
export const BLOCK_GLASS = 217;
export const BLOCK_TINTED_GLASS = 218;
export const BLOCK_WATER = 219;
export const BLOCK_LAVA = 220;
export const BLOCK_BRICKS = 221;
export const BLOCK_STONE_BRICKS = 222;
export const BLOCK_MOSSY_STONE_BRICKS = 223;
export const BLOCK_CRACKED_STONE_BRICKS = 224;
export const BLOCK_CHISELED_STONE_BRICKS = 225;
export const BLOCK_COBBLESTONE = 226;
export const BLOCK_MOSSY_COBBLESTONE = 227;
export const BLOCK_DEEPSLATE_BRICKS = 228;
export const BLOCK_DEEPSLATE_TILES = 229;
export const BLOCK_CRACKED_DEEPSLATE_BRICKS = 230;
export const BLOCK_CRACKED_DEEPSLATE_TILES = 231;
export const BLOCK_CHISELED_DEEPSLATE = 232;
export const BLOCK_POLISHED_BLACKSTONE = 233;
export const BLOCK_POLISHED_BLACKSTONE_BRICKS = 234;
export const BLOCK_CRACKED_POLISHED_BLACKSTONE_BRICKS = 235;
export const BLOCK_CHISELED_POLISHED_BLACKSTONE = 236;
export const BLOCK_BLACKSTONE = 237;
export const BLOCK_POLISHED_BASALT = 238;
export const BLOCK_BASALT = 239;
export const BLOCK_SMOOTH_BASALT = 240;
export const BLOCK_CRAFTING_TABLE = 241;
export const BLOCK_FURNACE = 242;
export const BLOCK_BLAST_FURNACE = 243;
export const BLOCK_SMOKER = 244;
export const BLOCK_ANVIL = 245;
export const BLOCK_CHIPPED_ANVIL = 246;
export const BLOCK_DAMAGED_ANVIL = 247;
export const BLOCK_ENCHANTING_TABLE = 248;
export const BLOCK_BREWING_STAND = 249;
export const BLOCK_CAULDRON = 250;
export const BLOCK_COMPOSTER = 251;
export const BLOCK_BARREL = 252;
export const BLOCK_LOOM = 253;
export const BLOCK_STONECUTTER = 254;
export const BLOCK_GRINDSTONE = 255;
export const BLOCK_FLETCHING_TABLE = 256;
export const BLOCK_SMITHING_TABLE = 257;
export const BLOCK_LECTERN = 258;
export const BLOCK_NOTE_BLOCK = 259;
export const BLOCK_JUKEBOX = 260;
export const BLOCK_BOOKSHELF = 261;
export const BLOCK_CHISELED_BOOKSHELF = 262;
export const BLOCK_REDSTONE_LAMP = 263;
export const BLOCK_REDSTONE_LAMP_ON = 264;
export const BLOCK_REDSTONE_TORCH = 265;
export const BLOCK_REDSTONE_TORCH_OFF = 266;
export const BLOCK_TNT = 267;
export const BLOCK_LEVER = 268;
export const BLOCK_REPEATER = 269;
export const BLOCK_COMPARATOR = 270;
export const BLOCK_OBSERVER = 271;
export const BLOCK_PISTON = 272;
export const BLOCK_STICKY_PISTON = 273;
export const BLOCK_DISPENSER = 274;
export const BLOCK_DROPPER = 275;
export const BLOCK_HOPPER = 276;
export const BLOCK_DAYLIGHT_DETECTOR = 277;
export const BLOCK_TARGET = 278;
export const BLOCK_POWERED_RAIL = 279;
export const BLOCK_DETECTOR_RAIL = 280;
export const BLOCK_RAIL = 281;
export const BLOCK_ACTIVATOR_RAIL = 282;
export const BLOCK_GLOWSTONE = 283;
export const BLOCK_SEA_LANTERN = 284;
export const BLOCK_JACK_O_LANTERN = 285;
export const BLOCK_LANTERN = 286;
export const BLOCK_TORCH = 287;
export const BLOCK_SOUL_TORCH = 288;
export const BLOCK_SOUL_LANTERN = 289;
export const BLOCK_CAMPFIRE = 290;
export const BLOCK_SOUL_CAMPFIRE = 291;
export const BLOCK_SHROOMLIGHT = 292;
export const BLOCK_MAGMA = 293;
export const BLOCK_BEACON = 294;
export const BLOCK_CONDUIT = 295;
export const BLOCK_OCHRE_FROGLIGHT = 296;
export const BLOCK_VERDANT_FROGLIGHT = 297;
export const BLOCK_PEARLESCENT_FROGLIGHT = 298;
export const BLOCK_COPPER_TORCH = 299;
export const BLOCK_CANDLE = 300;
export const BLOCK_WHITE_CANDLE = 301;
export const BLOCK_ORANGE_CANDLE = 302;
export const BLOCK_MAGENTA_CANDLE = 303;
export const BLOCK_LIGHT_BLUE_CANDLE = 304;
export const BLOCK_YELLOW_CANDLE = 305;
export const BLOCK_LIME_CANDLE = 306;
export const BLOCK_PINK_CANDLE = 307;
export const BLOCK_GRAY_CANDLE = 308;
export const BLOCK_LIGHT_GRAY_CANDLE = 309;
export const BLOCK_CYAN_CANDLE = 310;
export const BLOCK_PURPLE_CANDLE = 311;
export const BLOCK_BLUE_CANDLE = 312;
export const BLOCK_BROWN_CANDLE = 313;
export const BLOCK_GREEN_CANDLE = 314;
export const BLOCK_RED_CANDLE = 315;
export const BLOCK_BLACK_CANDLE = 316;
export const BLOCK_NETHERRACK = 317;
export const BLOCK_SOUL_SAND = 318;
export const BLOCK_SOUL_SOIL = 319;
export const BLOCK_NETHER_BRICKS = 320;
export const BLOCK_RED_NETHER_BRICKS = 321;
export const BLOCK_CHISELED_NETHER_BRICKS = 322;
export const BLOCK_CRACKED_NETHER_BRICKS = 323;
export const BLOCK_QUARTZ_BLOCK = 324;
export const BLOCK_QUARTZ_BRICKS = 325;
export const BLOCK_QUARTZ_PILLAR = 326;
export const BLOCK_CHISELED_QUARTZ_BLOCK = 327;
export const BLOCK_MAGMA_BLOCK = 328;
export const BLOCK_NETHER_WART_BLOCK = 329;
export const BLOCK_WARPED_WART_BLOCK = 330;
export const BLOCK_BONE_BLOCK = 331;
export const BLOCK_ANCIENT_DEBRIS = 332;
export const BLOCK_CRYING_OBSIDIAN_B = 333;
export const BLOCK_RESPAWN_ANCHOR = 334;
export const BLOCK_LODESTONE = 335;
export const BLOCK_PIGLIN_HEAD = 336;
export const BLOCK_CRIMSON_PLANKS = 337;
export const BLOCK_CRIMSON_STEM = 338;
export const BLOCK_STRIPPED_CRIMSON_STEM = 339;
export const BLOCK_WARPED_PLANKS = 340;
export const BLOCK_WARPED_STEM = 341;
export const BLOCK_STRIPPED_WARPED_STEM = 342;
export const BLOCK_CRIMSON_NYLIUM = 343;
export const BLOCK_WARPED_NYLIUM = 344;
export const BLOCK_CRIMSON_FUNGUS = 345;
export const BLOCK_WARPED_FUNGUS = 346;
export const BLOCK_END_STONE = 347;
export const BLOCK_END_STONE_BRICKS = 348;
export const BLOCK_PURPUR_BLOCK = 349;
export const BLOCK_PURPUR_PILLAR = 350;
export const BLOCK_END_ROD = 351;
export const BLOCK_END_PORTAL_FRAME = 352;
export const BLOCK_DRAGON_EGG = 353;
export const BLOCK_PUMPKIN = 354;
export const BLOCK_CARVED_PUMPKIN = 355;
export const BLOCK_MELON = 356;
export const BLOCK_HAY_BLOCK = 357;
export const BLOCK_HONEYCOMB_BLOCK = 358;
export const BLOCK_HONEY_BLOCK = 359;
export const BLOCK_SLIME_BLOCK = 360;
export const BLOCK_SPONGE = 361;
export const BLOCK_WET_SPONGE = 362;
export const BLOCK_IRON_BARS = 363;
export const BLOCK_CHAIN = 364;
export const BLOCK_LADDER = 365;
export const BLOCK_SCAFFOLDING = 366;
export const BLOCK_COBWEB = 367;
export const BLOCK_TUBE_CORAL = 368;
export const BLOCK_TUBE_CORAL_BLOCK = 369;
export const BLOCK_TUBE_CORAL_FAN = 370;
export const BLOCK_DEAD_TUBE_CORAL = 371;
export const BLOCK_DEAD_TUBE_CORAL_BLOCK = 372;
export const BLOCK_DEAD_TUBE_CORAL_FAN = 373;
export const BLOCK_BRAIN_CORAL = 374;
export const BLOCK_BRAIN_CORAL_BLOCK = 375;
export const BLOCK_BRAIN_CORAL_FAN = 376;
export const BLOCK_DEAD_BRAIN_CORAL = 377;
export const BLOCK_DEAD_BRAIN_CORAL_BLOCK = 378;
export const BLOCK_DEAD_BRAIN_CORAL_FAN = 379;
export const BLOCK_BUBBLE_CORAL = 380;
export const BLOCK_BUBBLE_CORAL_BLOCK = 381;
export const BLOCK_BUBBLE_CORAL_FAN = 382;
export const BLOCK_DEAD_BUBBLE_CORAL = 383;
export const BLOCK_DEAD_BUBBLE_CORAL_BLOCK = 384;
export const BLOCK_DEAD_BUBBLE_CORAL_FAN = 385;
export const BLOCK_FIRE_CORAL = 386;
export const BLOCK_FIRE_CORAL_BLOCK = 387;
export const BLOCK_FIRE_CORAL_FAN = 388;
export const BLOCK_DEAD_FIRE_CORAL = 389;
export const BLOCK_DEAD_FIRE_CORAL_BLOCK = 390;
export const BLOCK_DEAD_FIRE_CORAL_FAN = 391;
export const BLOCK_HORN_CORAL = 392;
export const BLOCK_HORN_CORAL_BLOCK = 393;
export const BLOCK_HORN_CORAL_FAN = 394;
export const BLOCK_DEAD_HORN_CORAL = 395;
export const BLOCK_DEAD_HORN_CORAL_BLOCK = 396;
export const BLOCK_DEAD_HORN_CORAL_FAN = 397;
export const BLOCK_PRISMARINE = 398;
export const BLOCK_PRISMARINE_BRICKS = 399;
export const BLOCK_DARK_PRISMARINE = 400;
export const BLOCK_SEA_PICKLE = 401;
export const BLOCK_KELP = 402;
export const BLOCK_SEAGRASS = 403;
export const BLOCK_CACTUS = 404;
export const BLOCK_SUGAR_CANE = 405;
export const BLOCK_BAMBOO = 406;
export const BLOCK_POPPY = 407;
export const BLOCK_DANDELION = 408;
export const BLOCK_BLUE_ORCHID = 409;
export const BLOCK_ALLIUM = 410;
export const BLOCK_AZURE_BLUET = 411;
export const BLOCK_RED_TULIP = 412;
export const BLOCK_ORANGE_TULIP = 413;
export const BLOCK_WHITE_TULIP = 414;
export const BLOCK_PINK_TULIP = 415;
export const BLOCK_OXEYE_DAISY = 416;
export const BLOCK_CORNFLOWER = 417;
export const BLOCK_LILY_OF_THE_VALLEY = 418;
export const BLOCK_WITHER_ROSE = 419;
export const BLOCK_TORCHFLOWER = 420;
export const BLOCK_SUNFLOWER = 421;
export const BLOCK_LILAC = 422;
export const BLOCK_ROSE_BUSH = 423;
export const BLOCK_PEONY = 424;
export const BLOCK_TALL_GRASS = 425;
export const BLOCK_LARGE_FERN = 426;
export const BLOCK_FERN = 427;
export const BLOCK_SHORT_GRASS = 428;
export const BLOCK_RED_MUSHROOM = 429;
export const BLOCK_BROWN_MUSHROOM = 430;
export const BLOCK_RED_MUSHROOM_BLOCK = 431;
export const BLOCK_BROWN_MUSHROOM_BLOCK = 432;
export const BLOCK_MUSHROOM_STEM = 433;
export const BLOCK_WHEAT = 434;
export const BLOCK_CARROTS = 435;
export const BLOCK_POTATOES = 436;
export const BLOCK_BEETROOTS = 437;
export const BLOCK_PUMPKIN_STEM = 438;
export const BLOCK_MELON_STEM = 439;
export const BLOCK_CAKE = 440;
export const BLOCK_IRON_DOOR = 441;
export const BLOCK_OAK_DOOR = 442;
export const BLOCK_SPRUCE_DOOR = 443;
export const BLOCK_BIRCH_DOOR = 444;
export const BLOCK_JUNGLE_DOOR = 445;
export const BLOCK_DARK_OAK_DOOR = 446;
export const BLOCK_ACACIA_DOOR = 447;
export const BLOCK_MANGROVE_DOOR = 448;
export const BLOCK_CHERRY_DOOR = 449;
export const BLOCK_PALE_OAK_DOOR = 450;
export const BLOCK_IRON_TRAPDOOR = 451;
export const BLOCK_OAK_TRAPDOOR = 452;
export const BLOCK_SPRUCE_TRAPDOOR = 453;
export const BLOCK_BIRCH_TRAPDOOR = 454;
export const BLOCK_JUNGLE_TRAPDOOR = 455;
export const BLOCK_DARK_OAK_TRAPDOOR = 456;
export const BLOCK_ACACIA_TRAPDOOR = 457;
export const BLOCK_MANGROVE_TRAPDOOR = 458;
export const BLOCK_CHERRY_TRAPDOOR = 459;
export const BLOCK_PALE_OAK_TRAPDOOR = 460;
export const BLOCK_OAK_FENCE = 461;
export const BLOCK_OAK_FENCE_GATE = 462;
export const BLOCK_SPRUCE_FENCE = 463;
export const BLOCK_SPRUCE_FENCE_GATE = 464;
export const BLOCK_BIRCH_FENCE = 465;
export const BLOCK_BIRCH_FENCE_GATE = 466;
export const BLOCK_JUNGLE_FENCE = 467;
export const BLOCK_JUNGLE_FENCE_GATE = 468;
export const BLOCK_DARK_OAK_FENCE = 469;
export const BLOCK_DARK_OAK_FENCE_GATE = 470;
export const BLOCK_ACACIA_FENCE = 471;
export const BLOCK_ACACIA_FENCE_GATE = 472;
export const BLOCK_MANGROVE_FENCE = 473;
export const BLOCK_MANGROVE_FENCE_GATE = 474;
export const BLOCK_CHERRY_FENCE = 475;
export const BLOCK_CHERRY_FENCE_GATE = 476;
export const BLOCK_PALE_OAK_FENCE = 477;
export const BLOCK_PALE_OAK_FENCE_GATE = 478;
export const BLOCK_OAK_SIGN = 479;
export const BLOCK_SPRUCE_SIGN = 480;
export const BLOCK_BIRCH_SIGN = 481;
export const BLOCK_JUNGLE_SIGN = 482;
export const BLOCK_DARK_OAK_SIGN = 483;
export const BLOCK_ACACIA_SIGN = 484;
export const BLOCK_MANGROVE_SIGN = 485;
export const BLOCK_CHERRY_SIGN = 486;
export const BLOCK_PALE_OAK_SIGN = 487;
export const BLOCK_IRON_BLOCK_B = 488;
export const BLOCK_IRON_TRAPDOOR_B = 489;
export const BLOCK_WHITE_SHULKER_BOX = 490;
export const BLOCK_ORANGE_SHULKER_BOX = 491;
export const BLOCK_MAGENTA_SHULKER_BOX = 492;
export const BLOCK_LIGHT_BLUE_SHULKER_BOX = 493;
export const BLOCK_YELLOW_SHULKER_BOX = 494;
export const BLOCK_LIME_SHULKER_BOX = 495;
export const BLOCK_PINK_SHULKER_BOX = 496;
export const BLOCK_GRAY_SHULKER_BOX = 497;
export const BLOCK_LIGHT_GRAY_SHULKER_BOX = 498;
export const BLOCK_CYAN_SHULKER_BOX = 499;
export const BLOCK_PURPLE_SHULKER_BOX = 500;
export const BLOCK_BLUE_SHULKER_BOX = 501;
export const BLOCK_BROWN_SHULKER_BOX = 502;
export const BLOCK_GREEN_SHULKER_BOX = 503;
export const BLOCK_RED_SHULKER_BOX = 504;
export const BLOCK_BLACK_SHULKER_BOX = 505;
export const BLOCK_SHULKER_BOX = 506;
export const BLOCK_SCULK = 507;
export const BLOCK_SCULK_SENSOR = 508;
export const BLOCK_SCULK_CATALYST = 509;
export const BLOCK_SCULK_SHRIEKER = 510;
export const BLOCK_SCULK_VEIN = 511;
export const BLOCK_POINTED_DRIPSTONE = 512;
export const BLOCK_BUDDING_AMETHYST = 513;
export const BLOCK_SMALL_AMETHYST_BUD = 514;
export const BLOCK_MEDIUM_AMETHYST_BUD = 515;
export const BLOCK_LARGE_AMETHYST_BUD = 516;
export const BLOCK_AMETHYST_CLUSTER = 517;
export const BLOCK_COPPER_BLOCK_C = 518;
export const BLOCK_CUT_COPPER = 519;
export const BLOCK_COPPER_GRATE = 520;
export const BLOCK_COPPER_DOOR = 521;
export const BLOCK_COPPER_TRAPDOOR = 522;
export const BLOCK_COPPER_BULB = 523;
export const BLOCK_COPPER_LANTERN = 524;
export const BLOCK_COPPER_CHAIN = 525;
export const BLOCK_COPPER_BARS = 526;
export const BLOCK_CHISELED_COPPER = 527;
export const BLOCK_LIGHTNING_ROD = 528;
export const BLOCK_EXPOSED_COPPER_BLOCK = 529;
export const BLOCK_EXPOSED_CUT_COPPER = 530;
export const BLOCK_EXPOSED_COPPER_GRATE = 531;
export const BLOCK_EXPOSED_COPPER_DOOR = 532;
export const BLOCK_EXPOSED_COPPER_TRAPDOOR = 533;
export const BLOCK_EXPOSED_COPPER_BULB = 534;
export const BLOCK_EXPOSED_COPPER_LANTERN = 535;
export const BLOCK_EXPOSED_COPPER_CHAIN = 536;
export const BLOCK_EXPOSED_COPPER_BARS = 537;
export const BLOCK_EXPOSED_CHISELED_COPPER = 538;
export const BLOCK_EXPOSED_LIGHTNING_ROD = 539;
export const BLOCK_WEATHERED_COPPER_BLOCK = 540;
export const BLOCK_WEATHERED_CUT_COPPER = 541;
export const BLOCK_WEATHERED_COPPER_GRATE = 542;
export const BLOCK_WEATHERED_COPPER_DOOR = 543;
export const BLOCK_WEATHERED_COPPER_TRAPDOOR = 544;
export const BLOCK_WEATHERED_COPPER_BULB = 545;
export const BLOCK_WEATHERED_COPPER_LANTERN = 546;
export const BLOCK_WEATHERED_COPPER_CHAIN = 547;
export const BLOCK_WEATHERED_COPPER_BARS = 548;
export const BLOCK_WEATHERED_CHISELED_COPPER = 549;
export const BLOCK_WEATHERED_LIGHTNING_ROD = 550;
export const BLOCK_OXIDIZED_COPPER_BLOCK = 551;
export const BLOCK_OXIDIZED_CUT_COPPER = 552;
export const BLOCK_OXIDIZED_COPPER_GRATE = 553;
export const BLOCK_OXIDIZED_COPPER_DOOR = 554;
export const BLOCK_OXIDIZED_COPPER_TRAPDOOR = 555;
export const BLOCK_OXIDIZED_COPPER_BULB = 556;
export const BLOCK_OXIDIZED_COPPER_LANTERN = 557;
export const BLOCK_OXIDIZED_COPPER_CHAIN = 558;
export const BLOCK_OXIDIZED_COPPER_BARS = 559;
export const BLOCK_OXIDIZED_CHISELED_COPPER = 560;
export const BLOCK_OXIDIZED_LIGHTNING_ROD = 561;
export const BLOCK_NETHER_PORTAL = 562;
export const BLOCK_SPAWNER = 563;
export const BLOCK_STRUCTURE_BLOCK = 564;
export const BLOCK_REINFORCED_DEEPSLATE = 565;
export const BLOCK_PALE_MOSS_BLOCK = 566;
export const BLOCK_PALE_HANGING_MOSS = 567;
export const BLOCK_CREAKING_HEART = 568;
export const BLOCK_RESIN_BLOCK = 569;
export const BLOCK_RESIN_BRICKS = 570;
export const BLOCK_CHISELED_RESIN_BRICKS = 571;
export const BLOCK_BAMBOO_BLOCK = 572;
export const BLOCK_BAMBOO_MOSAIC = 573;
export const BLOCK_BAMBOO_PLANKS_B = 574;
export const BLOCK_STRIPPED_BAMBOO_BLOCK = 575;
export const BLOCK_POWDER_SNOW = 576;
export const BLOCK_SPORE_BLOSSOM = 577;
export const BLOCK_AZALEA = 578;
export const BLOCK_FLOWERING_AZALEA = 579;
export const BLOCK_BIG_DRIPLEAF = 580;
export const BLOCK_SMALL_DRIPLEAF = 581;
export const BLOCK_HANGING_ROOTS = 582;
export const BLOCK_GLOW_LICHEN = 583;
export const BLOCK_VINE = 584;
export const BLOCK_LILY_PAD = 585;
export const BLOCK_FROGSPAWN = 586;
export const BLOCK_TURTLE_EGG = 587;
export const BLOCK_SNIFFER_EGG = 588;
export const BLOCK_PINK_PETALS = 589;
export const BLOCK_WILDFLOWERS = 590;
export const BLOCK_CLOSED_EYEBLOSSOM = 591;
export const BLOCK_OPEN_EYEBLOSSOM = 592;
export const BLOCK_FIREFLY_BUSH = 593;
export const BLOCK_LEAF_LITTER = 594;
export const BLOCK_PALE_MOSS_CARPET = 595;
export const BLOCK_TRIAL_SPAWNER = 596;
export const BLOCK_VAULT = 597;
export const BLOCK_CRAFTER = 598;
export const BLOCK_HEAVY_CORE = 599;
export const BLOCK_PACKED_MUD = 600;
export const BLOCK_MUD_BRICKS_B = 601;
export const BLOCK_SUSPICIOUS_SAND = 602;
export const BLOCK_SUSPICIOUS_GRAVEL = 603;
// Full block properties with texture atlas names
export interface BlockDef {
name: string;
solid: boolean;
transparent: boolean;
lightLevel: number;
hardness: number;
texTop: string;
texSide: string;
texBottom: string;
color: string; // fallback color when texture missing
}
export const BLOCK_DEFS: Record<number, BlockDef> = {
[0]: { name:'air', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'', texSide:'', texBottom:'', color:'#000000' },
[1]: { name:'stone', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'stone', texSide:'stone', texBottom:'stone', color:'#828282' },
[2]: { name:'granite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'granite', texSide:'granite', texBottom:'granite', color:'#8A6A54' },
[3]: { name:'polished_granite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'polished_granite', texSide:'polished_granite', texBottom:'polished_granite', color:'#9A7A64' },
[4]: { name:'diorite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'diorite', texSide:'diorite', texBottom:'diorite', color:'#BEBEBE' },
[5]: { name:'polished_diorite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'polished_diorite', texSide:'polished_diorite', texBottom:'polished_diorite', color:'#CECECE' },
[6]: { name:'andesite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'andesite', texSide:'andesite', texBottom:'andesite', color:'#8A8A82' },
[7]: { name:'polished_andesite', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'polished_andesite', texSide:'polished_andesite', texBottom:'polished_andesite', color:'#9A9A92' },
[8]: { name:'deepslate', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'deepslate_top', texSide:'deepslate', texBottom:'deepslate', color:'#4A4A4A' },
[9]: { name:'polished_deepslate', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'polished_deepslate', texSide:'polished_deepslate', texBottom:'polished_deepslate', color:'#5A5A5A' },
[10]: { name:'cobbled_deepslate', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'cobbled_deepslate', texSide:'cobbled_deepslate', texBottom:'cobbled_deepslate', color:'#4A4A50' },
[11]: { name:'calcite', solid:true, transparent:false, lightLevel:0, hardness:0.75, texTop:'calcite', texSide:'calcite', texBottom:'calcite', color:'#D0C8B8' },
[12]: { name:'tuff', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'tuff', texSide:'tuff', texBottom:'tuff', color:'#6A6A60' },
[13]: { name:'polished_tuff', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'polished_tuff', texSide:'polished_tuff', texBottom:'polished_tuff', color:'#7A7A70' },
[14]: { name:'tuff_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'tuff_bricks', texSide:'tuff_bricks', texBottom:'tuff_bricks', color:'#7A7A72' },
[15]: { name:'chiseled_tuff', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'chiseled_tuff_top', texSide:'chiseled_tuff', texBottom:'chiseled_tuff', color:'#6A6A65' },
[16]: { name:'dripstone_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dripstone_block', texSide:'dripstone_block', texBottom:'dripstone_block', color:'#8A7A5A' },
[17]: { name:'granite_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'granite', texSide:'granite', texBottom:'granite', color:'#8A6A54' },
[18]: { name:'dirt', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'dirt', texSide:'dirt', texBottom:'dirt', color:'#8B6B3D' },
[19]: { name:'grass_block', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'grass_block_top', texSide:'grass_block_side', texBottom:'dirt', color:'#5D9B37' },
[20]: { name:'coarse_dirt', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'coarse_dirt', texSide:'coarse_dirt', texBottom:'coarse_dirt', color:'#6B5030' },
[21]: { name:'rooted_dirt', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'rooted_dirt', texSide:'rooted_dirt', texBottom:'rooted_dirt', color:'#7A5A30' },
[22]: { name:'dirt_path', solid:true, transparent:false, lightLevel:0, hardness:0.65, texTop:'dirt_path_top', texSide:'dirt_path_side', texBottom:'dirt', color:'#A08040' },
[23]: { name:'farmland', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'farmland', texSide:'dirt', texBottom:'dirt', color:'#6B5020' },
[24]: { name:'mud', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'mud', texSide:'mud', texBottom:'mud', color:'#4A3828' },
[25]: { name:'muddy_mangrove_roots', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'muddy_mangrove_roots_top', texSide:'muddy_mangrove_roots_side', texBottom:'muddy_mangrove_roots_side', color:'#4A3820' },
[26]: { name:'podzol', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'podzol_top', texSide:'podzol_side', texBottom:'dirt', color:'#5A6A30' },
[27]: { name:'mycelium', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'mycelium_top', texSide:'mycelium_side', texBottom:'dirt', color:'#6A5A70' },
[28]: { name:'moss_block', solid:true, transparent:false, lightLevel:0, hardness:0.1, texTop:'moss_block', texSide:'moss_block', texBottom:'moss_block', color:'#3A6A30' },
[29]: { name:'sand', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'sand', texSide:'sand', texBottom:'sand', color:'#DBD3A0' },
[30]: { name:'red_sand', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'red_sand', texSide:'red_sand', texBottom:'red_sand', color:'#C07030' },
[31]: { name:'gravel', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'gravel', texSide:'gravel', texBottom:'gravel', color:'#867362' },
[32]: { name:'clay', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'clay', texSide:'clay', texBottom:'clay', color:'#9DA4AA' },
[33]: { name:'sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'sandstone_top', texSide:'sandstone', texBottom:'sandstone_bottom', color:'#D4C484' },
[34]: { name:'red_sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'red_sandstone_top', texSide:'red_sandstone', texBottom:'red_sandstone_bottom', color:'#A05030' },
[35]: { name:'cut_sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'sandstone_top', texSide:'cut_sandstone', texBottom:'sandstone_bottom', color:'#D0C080' },
[36]: { name:'cut_red_sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'red_sandstone_top', texSide:'cut_red_sandstone', texBottom:'red_sandstone_bottom', color:'#A05030' },
[37]: { name:'chiseled_sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'sandstone_top', texSide:'chiseled_sandstone', texBottom:'sandstone_bottom', color:'#C8B878' },
[38]: { name:'chiseled_red_sandstone', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'red_sandstone_top', texSide:'chiseled_red_sandstone', texBottom:'red_sandstone_bottom', color:'#984828' },
[39]: { name:'smooth_sandstone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'sandstone_top', texSide:'sandstone', texBottom:'sandstone', color:'#D8C888' },
[40]: { name:'smooth_red_sandstone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'red_sandstone_top', texSide:'red_sandstone', texBottom:'red_sandstone', color:'#A85838' },
[41]: { name:'snow', solid:true, transparent:false, lightLevel:0, hardness:0.2, texTop:'snow', texSide:'snow', texBottom:'snow', color:'#F0F0F0' },
[42]: { name:'snow_grass', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'snow', texSide:'grass_block_snow', texBottom:'dirt', color:'#E8E8E8' },
[43]: { name:'ice', solid:true, transparent:true, lightLevel:0, hardness:0.5, texTop:'ice', texSide:'ice', texBottom:'ice', color:'#A0D8EF' },
[44]: { name:'packed_ice', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'packed_ice', texSide:'packed_ice', texBottom:'packed_ice', color:'#80B8D0' },
[45]: { name:'blue_ice', solid:true, transparent:false, lightLevel:0, hardness:2.8, texTop:'blue_ice', texSide:'blue_ice', texBottom:'blue_ice', color:'#4878C0' },
[46]: { name:'frosted_ice', solid:true, transparent:true, lightLevel:0, hardness:0.5, texTop:'frosted_ice_0', texSide:'frosted_ice_0', texBottom:'frosted_ice_0', color:'#98C8E0' },
[47]: { name:'bedrock', solid:true, transparent:false, lightLevel:0, hardness:-1, texTop:'bedrock', texSide:'bedrock', texBottom:'bedrock', color:'#3C3C3C' },
[48]: { name:'coal_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'coal_ore', texSide:'coal_ore', texBottom:'coal_ore', color:'#5A5A5A' },
[49]: { name:'iron_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'iron_ore', texSide:'iron_ore', texBottom:'iron_ore', color:'#B8A48A' },
[50]: { name:'gold_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'gold_ore', texSide:'gold_ore', texBottom:'gold_ore', color:'#FCEE4B' },
[51]: { name:'diamond_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'diamond_ore', texSide:'diamond_ore', texBottom:'diamond_ore', color:'#4AEDD9' },
[52]: { name:'emerald_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'emerald_ore', texSide:'emerald_ore', texBottom:'emerald_ore', color:'#2DD44A' },
[53]: { name:'lapis_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'lapis_ore', texSide:'lapis_ore', texBottom:'lapis_ore', color:'#2244AA' },
[54]: { name:'redstone_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'redstone_ore', texSide:'redstone_ore', texBottom:'redstone_ore', color:'#AA2222' },
[55]: { name:'copper_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'copper_ore', texSide:'copper_ore', texBottom:'copper_ore', color:'#8A6A50' },
[56]: { name:'nether_gold_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'nether_gold_ore', texSide:'nether_gold_ore', texBottom:'nether_gold_ore', color:'#CCAA44' },
[57]: { name:'nether_quartz_ore', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'nether_quartz_ore', texSide:'nether_quartz_ore', texBottom:'nether_quartz_ore', color:'#C8B8A0' },
[58]: { name:'gilded_blackstone', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'gilded_blackstone', texSide:'gilded_blackstone', texBottom:'gilded_blackstone', color:'#3A3A30' },
[59]: { name:'deepslate_coal_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_coal_ore', texSide:'deepslate_coal_ore', texBottom:'deepslate_coal_ore', color:'#4A4A4A' },
[60]: { name:'deepslate_iron_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_iron_ore', texSide:'deepslate_iron_ore', texBottom:'deepslate_iron_ore', color:'#7A6A5A' },
[61]: { name:'deepslate_gold_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_gold_ore', texSide:'deepslate_gold_ore', texBottom:'deepslate_gold_ore', color:'#C0A830' },
[62]: { name:'deepslate_diamond_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_diamond_ore', texSide:'deepslate_diamond_ore', texBottom:'deepslate_diamond_ore', color:'#30B0A0' },
[63]: { name:'deepslate_emerald_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_emerald_ore', texSide:'deepslate_emerald_ore', texBottom:'deepslate_emerald_ore', color:'#208830' },
[64]: { name:'deepslate_lapis_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_lapis_ore', texSide:'deepslate_lapis_ore', texBottom:'deepslate_lapis_ore', color:'#1A3080' },
[65]: { name:'deepslate_redstone_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_redstone_ore', texSide:'deepslate_redstone_ore', texBottom:'deepslate_redstone_ore', color:'#801818' },
[66]: { name:'deepslate_copper_ore', solid:true, transparent:false, lightLevel:0, hardness:4.5, texTop:'deepslate_copper_ore', texSide:'deepslate_copper_ore', texBottom:'deepslate_copper_ore', color:'#6A4A3A' },
[67]: { name:'coal_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'coal_block', texSide:'coal_block', texBottom:'coal_block', color:'#2A2A2A' },
[68]: { name:'iron_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'iron_block', texSide:'iron_block', texBottom:'iron_block', color:'#D8D8D8' },
[69]: { name:'gold_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'gold_block', texSide:'gold_block', texBottom:'gold_block', color:'#FFD700' },
[70]: { name:'diamond_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'diamond_block', texSide:'diamond_block', texBottom:'diamond_block', color:'#4AEDD9' },
[71]: { name:'emerald_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'emerald_block', texSide:'emerald_block', texBottom:'emerald_block', color:'#18CC38' },
[72]: { name:'lapis_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'lapis_block', texSide:'lapis_block', texBottom:'lapis_block', color:'#1848A0' },
[73]: { name:'redstone_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'redstone_block', texSide:'redstone_block', texBottom:'redstone_block', color:'#CC1111' },
[74]: { name:'copper_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'copper_block', texSide:'copper_block', texBottom:'copper_block', color:'#8A6A48' },
[75]: { name:'netherite_block', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'netherite_block', texSide:'netherite_block', texBottom:'netherite_block', color:'#4A3A30' },
[76]: { name:'amethyst_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'amethyst_block', texSide:'amethyst_block', texBottom:'amethyst_block', color:'#8858A8' },
[77]: { name:'raw_iron_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'raw_iron_block', texSide:'raw_iron_block', texBottom:'raw_iron_block', color:'#C8A878' },
[78]: { name:'raw_gold_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'raw_gold_block', texSide:'raw_gold_block', texBottom:'raw_gold_block', color:'#D0B040' },
[79]: { name:'raw_copper_block', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'raw_copper_block', texSide:'raw_copper_block', texBottom:'raw_copper_block', color:'#907050' },
[80]: { name:'obsidian', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'obsidian', texSide:'obsidian', texBottom:'obsidian', color:'#1A0A2E' },
[81]: { name:'crying_obsidian', solid:true, transparent:false, lightLevel:10, hardness:50, texTop:'crying_obsidian', texSide:'crying_obsidian', texBottom:'crying_obsidian', color:'#1A0A3E' },
[82]: { name:'oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'oak_log_top', texSide:'oak_log', texBottom:'oak_log_top', color:'#6B5130' },
[83]: { name:'oak_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'oak_planks', texSide:'oak_planks', texBottom:'oak_planks', color:'#6B5130' },
[84]: { name:'spruce_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'spruce_log_top', texSide:'spruce_log', texBottom:'spruce_log_top', color:'#4A3320' },
[85]: { name:'spruce_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'spruce_planks', texSide:'spruce_planks', texBottom:'spruce_planks', color:'#4A3320' },
[86]: { name:'birch_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'birch_log_top', texSide:'birch_log', texBottom:'birch_log_top', color:'#D4C4A0' },
[87]: { name:'birch_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'birch_planks', texSide:'birch_planks', texBottom:'birch_planks', color:'#D4C4A0' },
[88]: { name:'jungle_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'jungle_log_top', texSide:'jungle_log', texBottom:'jungle_log_top', color:'#6A4A20' },
[89]: { name:'jungle_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'jungle_planks', texSide:'jungle_planks', texBottom:'jungle_planks', color:'#6A4A20' },
[90]: { name:'dark_oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'dark_oak_log_top', texSide:'dark_oak_log', texBottom:'dark_oak_log_top', color:'#3A2A18' },
[91]: { name:'dark_oak_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'dark_oak_planks', texSide:'dark_oak_planks', texBottom:'dark_oak_planks', color:'#3A2A18' },
[92]: { name:'acacia_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'acacia_log_top', texSide:'acacia_log', texBottom:'acacia_log_top', color:'#8A6040' },
[93]: { name:'acacia_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'acacia_planks', texSide:'acacia_planks', texBottom:'acacia_planks', color:'#8A6040' },
[94]: { name:'mangrove_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'mangrove_log_top', texSide:'mangrove_log', texBottom:'mangrove_log_top', color:'#6A3020' },
[95]: { name:'mangrove_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'mangrove_planks', texSide:'mangrove_planks', texBottom:'mangrove_planks', color:'#6A3020' },
[96]: { name:'cherry_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cherry_log_top', texSide:'cherry_log', texBottom:'cherry_log_top', color:'#C87088' },
[97]: { name:'cherry_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cherry_planks', texSide:'cherry_planks', texBottom:'cherry_planks', color:'#C87088' },
[98]: { name:'pale_oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'pale_oak_log_top', texSide:'pale_oak_log', texBottom:'pale_oak_log_top', color:'#A09080' },
[99]: { name:'pale_oak_planks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'pale_oak_planks', texSide:'pale_oak_planks', texBottom:'pale_oak_planks', color:'#A09080' },
[100]: { name:'stripped_oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_oak_log_top', texSide:'stripped_oak_log', texBottom:'stripped_oak_log_top', color:'#6B5130' },
[101]: { name:'stripped_spruce_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_spruce_log_top', texSide:'stripped_spruce_log', texBottom:'stripped_spruce_log_top', color:'#4A3320' },
[102]: { name:'stripped_birch_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_birch_log_top', texSide:'stripped_birch_log', texBottom:'stripped_birch_log_top', color:'#D4C4A0' },
[103]: { name:'stripped_jungle_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_jungle_log_top', texSide:'stripped_jungle_log', texBottom:'stripped_jungle_log_top', color:'#6A4A20' },
[104]: { name:'stripped_dark_oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_dark_oak_log_top', texSide:'stripped_dark_oak_log', texBottom:'stripped_dark_oak_log_top', color:'#3A2A18' },
[105]: { name:'stripped_acacia_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_acacia_log_top', texSide:'stripped_acacia_log', texBottom:'stripped_acacia_log_top', color:'#8A6040' },
[106]: { name:'stripped_mangrove_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_mangrove_log_top', texSide:'stripped_mangrove_log', texBottom:'stripped_mangrove_log_top', color:'#6A3020' },
[107]: { name:'stripped_cherry_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_cherry_log_top', texSide:'stripped_cherry_log', texBottom:'stripped_cherry_log_top', color:'#C87088' },
[108]: { name:'stripped_pale_oak_log', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_pale_oak_log_top', texSide:'stripped_pale_oak_log', texBottom:'stripped_pale_oak_log_top', color:'#A09080' },
[109]: { name:'oak_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'oak_leaves', texSide:'oak_leaves', texBottom:'oak_leaves', color:'#3B7A1A' },
[110]: { name:'spruce_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'spruce_leaves', texSide:'spruce_leaves', texBottom:'spruce_leaves', color:'#2A5010' },
[111]: { name:'birch_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'birch_leaves', texSide:'birch_leaves', texBottom:'birch_leaves', color:'#5A8A30' },
[112]: { name:'jungle_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'jungle_leaves', texSide:'jungle_leaves', texBottom:'jungle_leaves', color:'#2A6A10' },
[113]: { name:'dark_oak_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'dark_oak_leaves', texSide:'dark_oak_leaves', texBottom:'dark_oak_leaves', color:'#2A4010' },
[114]: { name:'acacia_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'acacia_leaves', texSide:'acacia_leaves', texBottom:'acacia_leaves', color:'#5A7A20' },
[115]: { name:'mangrove_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'mangrove_leaves', texSide:'mangrove_leaves', texBottom:'mangrove_leaves', color:'#3A5A18' },
[116]: { name:'cherry_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'cherry_leaves', texSide:'cherry_leaves', texBottom:'cherry_leaves', color:'#FFB0C0' },
[117]: { name:'azalea_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'azalea_leaves', texSide:'azalea_leaves', texBottom:'azalea_leaves', color:'#4A8A30' },
[118]: { name:'flowering_azalea_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'flowering_azalea_leaves', texSide:'flowering_azalea_leaves', texBottom:'flowering_azalea_leaves', color:'#7A9A40' },
[119]: { name:'pale_oak_leaves', solid:true, transparent:true, lightLevel:0, hardness:0.2, texTop:'pale_oak_leaves', texSide:'pale_oak_leaves', texBottom:'pale_oak_leaves', color:'#8A9A70' },
[120]: { name:'white_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'white_wool', texSide:'white_wool', texBottom:'white_wool', color:'#E8E8E8' },
[121]: { name:'orange_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'orange_wool', texSide:'orange_wool', texBottom:'orange_wool', color:'#E08030' },
[122]: { name:'magenta_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'magenta_wool', texSide:'magenta_wool', texBottom:'magenta_wool', color:'#C050A0' },
[123]: { name:'light_blue_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'light_blue_wool', texSide:'light_blue_wool', texBottom:'light_blue_wool', color:'#5098C0' },
[124]: { name:'yellow_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'yellow_wool', texSide:'yellow_wool', texBottom:'yellow_wool', color:'#E0C830' },
[125]: { name:'lime_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'lime_wool', texSide:'lime_wool', texBottom:'lime_wool', color:'#60C030' },
[126]: { name:'pink_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'pink_wool', texSide:'pink_wool', texBottom:'pink_wool', color:'#E08898' },
[127]: { name:'gray_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'gray_wool', texSide:'gray_wool', texBottom:'gray_wool', color:'#505050' },
[128]: { name:'light_gray_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'light_gray_wool', texSide:'light_gray_wool', texBottom:'light_gray_wool', color:'#A0A0A0' },
[129]: { name:'cyan_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'cyan_wool', texSide:'cyan_wool', texBottom:'cyan_wool', color:'#308890' },
[130]: { name:'purple_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'purple_wool', texSide:'purple_wool', texBottom:'purple_wool', color:'#7030A0' },
[131]: { name:'blue_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'blue_wool', texSide:'blue_wool', texBottom:'blue_wool', color:'#3040A0' },
[132]: { name:'brown_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'brown_wool', texSide:'brown_wool', texBottom:'brown_wool', color:'#604020' },
[133]: { name:'green_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'green_wool', texSide:'green_wool', texBottom:'green_wool', color:'#308020' },
[134]: { name:'red_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'red_wool', texSide:'red_wool', texBottom:'red_wool', color:'#C02020' },
[135]: { name:'black_wool', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'black_wool', texSide:'black_wool', texBottom:'black_wool', color:'#1A1A1A' },
[136]: { name:'white_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'white_concrete', texSide:'white_concrete', texBottom:'white_concrete', color:'#D0D0D0' },
[137]: { name:'orange_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'orange_concrete', texSide:'orange_concrete', texBottom:'orange_concrete', color:'#D06020' },
[138]: { name:'magenta_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'magenta_concrete', texSide:'magenta_concrete', texBottom:'magenta_concrete', color:'#B03080' },
[139]: { name:'light_blue_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'light_blue_concrete', texSide:'light_blue_concrete', texBottom:'light_blue_concrete', color:'#4080B0' },
[140]: { name:'yellow_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'yellow_concrete', texSide:'yellow_concrete', texBottom:'yellow_concrete', color:'#D0B020' },
[141]: { name:'lime_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'lime_concrete', texSide:'lime_concrete', texBottom:'lime_concrete', color:'#50A820' },
[142]: { name:'pink_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'pink_concrete', texSide:'pink_concrete', texBottom:'pink_concrete', color:'#D07080' },
[143]: { name:'gray_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'gray_concrete', texSide:'gray_concrete', texBottom:'gray_concrete', color:'#404040' },
[144]: { name:'light_gray_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'light_gray_concrete', texSide:'light_gray_concrete', texBottom:'light_gray_concrete', color:'#909090' },
[145]: { name:'cyan_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'cyan_concrete', texSide:'cyan_concrete', texBottom:'cyan_concrete', color:'#207880' },
[146]: { name:'purple_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'purple_concrete', texSide:'purple_concrete', texBottom:'purple_concrete', color:'#602090' },
[147]: { name:'blue_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'blue_concrete', texSide:'blue_concrete', texBottom:'blue_concrete', color:'#203090' },
[148]: { name:'brown_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'brown_concrete', texSide:'brown_concrete', texBottom:'brown_concrete', color:'#503018' },
[149]: { name:'green_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'green_concrete', texSide:'green_concrete', texBottom:'green_concrete', color:'#207018' },
[150]: { name:'red_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'red_concrete', texSide:'red_concrete', texBottom:'red_concrete', color:'#A01818' },
[151]: { name:'black_concrete', solid:true, transparent:false, lightLevel:0, hardness:1.8, texTop:'black_concrete', texSide:'black_concrete', texBottom:'black_concrete', color:'#101010' },
[152]: { name:'white_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'white_concrete_powder', texSide:'white_concrete_powder', texBottom:'white_concrete_powder', color:'#D0D0D0' },
[153]: { name:'orange_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'orange_concrete_powder', texSide:'orange_concrete_powder', texBottom:'orange_concrete_powder', color:'#D06020' },
[154]: { name:'magenta_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'magenta_concrete_powder', texSide:'magenta_concrete_powder', texBottom:'magenta_concrete_powder', color:'#B03080' },
[155]: { name:'light_blue_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'light_blue_concrete_powder', texSide:'light_blue_concrete_powder', texBottom:'light_blue_concrete_powder', color:'#4080B0' },
[156]: { name:'yellow_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'yellow_concrete_powder', texSide:'yellow_concrete_powder', texBottom:'yellow_concrete_powder', color:'#D0B020' },
[157]: { name:'lime_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'lime_concrete_powder', texSide:'lime_concrete_powder', texBottom:'lime_concrete_powder', color:'#50A820' },
[158]: { name:'pink_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'pink_concrete_powder', texSide:'pink_concrete_powder', texBottom:'pink_concrete_powder', color:'#D07080' },
[159]: { name:'gray_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'gray_concrete_powder', texSide:'gray_concrete_powder', texBottom:'gray_concrete_powder', color:'#404040' },
[160]: { name:'light_gray_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'light_gray_concrete_powder', texSide:'light_gray_concrete_powder', texBottom:'light_gray_concrete_powder', color:'#909090' },
[161]: { name:'cyan_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'cyan_concrete_powder', texSide:'cyan_concrete_powder', texBottom:'cyan_concrete_powder', color:'#207880' },
[162]: { name:'purple_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'purple_concrete_powder', texSide:'purple_concrete_powder', texBottom:'purple_concrete_powder', color:'#602090' },
[163]: { name:'blue_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'blue_concrete_powder', texSide:'blue_concrete_powder', texBottom:'blue_concrete_powder', color:'#203090' },
[164]: { name:'brown_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'brown_concrete_powder', texSide:'brown_concrete_powder', texBottom:'brown_concrete_powder', color:'#503018' },
[165]: { name:'green_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'green_concrete_powder', texSide:'green_concrete_powder', texBottom:'green_concrete_powder', color:'#207018' },
[166]: { name:'red_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'red_concrete_powder', texSide:'red_concrete_powder', texBottom:'red_concrete_powder', color:'#A01818' },
[167]: { name:'black_concrete_powder', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'black_concrete_powder', texSide:'black_concrete_powder', texBottom:'black_concrete_powder', color:'#101010' },
[168]: { name:'terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.25, texTop:'terracotta', texSide:'terracotta', texBottom:'terracotta', color:'#9E6A4A' },
[169]: { name:'white_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'white_terracotta', texSide:'white_terracotta', texBottom:'white_terracotta', color:'#D0C8C0' },
[170]: { name:'orange_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'orange_terracotta', texSide:'orange_terracotta', texBottom:'orange_terracotta', color:'#A06030' },
[171]: { name:'magenta_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'magenta_terracotta', texSide:'magenta_terracotta', texBottom:'magenta_terracotta', color:'#904070' },
[172]: { name:'light_blue_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'light_blue_terracotta', texSide:'light_blue_terracotta', texBottom:'light_blue_terracotta', color:'#5078A0' },
[173]: { name:'yellow_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'yellow_terracotta', texSide:'yellow_terracotta', texBottom:'yellow_terracotta', color:'#B8A030' },
[174]: { name:'lime_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'lime_terracotta', texSide:'lime_terracotta', texBottom:'lime_terracotta', color:'#608830' },
[175]: { name:'pink_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'pink_terracotta', texSide:'pink_terracotta', texBottom:'pink_terracotta', color:'#A06068' },
[176]: { name:'gray_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'gray_terracotta', texSide:'gray_terracotta', texBottom:'gray_terracotta', color:'#383838' },
[177]: { name:'light_gray_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'light_gray_terracotta', texSide:'light_gray_terracotta', texBottom:'light_gray_terracotta', color:'#808080' },
[178]: { name:'cyan_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'cyan_terracotta', texSide:'cyan_terracotta', texBottom:'cyan_terracotta', color:'#306868' },
[179]: { name:'purple_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'purple_terracotta', texSide:'purple_terracotta', texBottom:'purple_terracotta', color:'#582878' },
[180]: { name:'blue_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'blue_terracotta', texSide:'blue_terracotta', texBottom:'blue_terracotta', color:'#282878' },
[181]: { name:'brown_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'brown_terracotta', texSide:'brown_terracotta', texBottom:'brown_terracotta', color:'#402818' },
[182]: { name:'green_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'green_terracotta', texSide:'green_terracotta', texBottom:'green_terracotta', color:'#285818' },
[183]: { name:'red_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'red_terracotta', texSide:'red_terracotta', texBottom:'red_terracotta', color:'#882020' },
[184]: { name:'black_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'black_terracotta', texSide:'black_terracotta', texBottom:'black_terracotta', color:'#181818' },
[185]: { name:'white_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'white_glazed_terracotta', texSide:'white_glazed_terracotta', texBottom:'white_glazed_terracotta', color:'#D0C8C0' },
[186]: { name:'orange_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'orange_glazed_terracotta', texSide:'orange_glazed_terracotta', texBottom:'orange_glazed_terracotta', color:'#A06030' },
[187]: { name:'magenta_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'magenta_glazed_terracotta', texSide:'magenta_glazed_terracotta', texBottom:'magenta_glazed_terracotta', color:'#904070' },
[188]: { name:'light_blue_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'light_blue_glazed_terracotta', texSide:'light_blue_glazed_terracotta', texBottom:'light_blue_glazed_terracotta', color:'#5078A0' },
[189]: { name:'yellow_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'yellow_glazed_terracotta', texSide:'yellow_glazed_terracotta', texBottom:'yellow_glazed_terracotta', color:'#B8A030' },
[190]: { name:'lime_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'lime_glazed_terracotta', texSide:'lime_glazed_terracotta', texBottom:'lime_glazed_terracotta', color:'#608830' },
[191]: { name:'pink_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'pink_glazed_terracotta', texSide:'pink_glazed_terracotta', texBottom:'pink_glazed_terracotta', color:'#A06068' },
[192]: { name:'gray_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'gray_glazed_terracotta', texSide:'gray_glazed_terracotta', texBottom:'gray_glazed_terracotta', color:'#383838' },
[193]: { name:'light_gray_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'light_gray_glazed_terracotta', texSide:'light_gray_glazed_terracotta', texBottom:'light_gray_glazed_terracotta', color:'#808080' },
[194]: { name:'cyan_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'cyan_glazed_terracotta', texSide:'cyan_glazed_terracotta', texBottom:'cyan_glazed_terracotta', color:'#306868' },
[195]: { name:'purple_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'purple_glazed_terracotta', texSide:'purple_glazed_terracotta', texBottom:'purple_glazed_terracotta', color:'#582878' },
[196]: { name:'blue_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'blue_glazed_terracotta', texSide:'blue_glazed_terracotta', texBottom:'blue_glazed_terracotta', color:'#282878' },
[197]: { name:'brown_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'brown_glazed_terracotta', texSide:'brown_glazed_terracotta', texBottom:'brown_glazed_terracotta', color:'#402818' },
[198]: { name:'green_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'green_glazed_terracotta', texSide:'green_glazed_terracotta', texBottom:'green_glazed_terracotta', color:'#285818' },
[199]: { name:'red_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'red_glazed_terracotta', texSide:'red_glazed_terracotta', texBottom:'red_glazed_terracotta', color:'#882020' },
[200]: { name:'black_glazed_terracotta', solid:true, transparent:false, lightLevel:0, hardness:1.4, texTop:'black_glazed_terracotta', texSide:'black_glazed_terracotta', texBottom:'black_glazed_terracotta', color:'#181818' },
[201]: { name:'white_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'white_stained_glass', texSide:'white_stained_glass', texBottom:'white_stained_glass', color:'#D0C8C0' },
[202]: { name:'orange_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'orange_stained_glass', texSide:'orange_stained_glass', texBottom:'orange_stained_glass', color:'#A06030' },
[203]: { name:'magenta_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'magenta_stained_glass', texSide:'magenta_stained_glass', texBottom:'magenta_stained_glass', color:'#904070' },
[204]: { name:'light_blue_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'light_blue_stained_glass', texSide:'light_blue_stained_glass', texBottom:'light_blue_stained_glass', color:'#5078A0' },
[205]: { name:'yellow_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'yellow_stained_glass', texSide:'yellow_stained_glass', texBottom:'yellow_stained_glass', color:'#B8A030' },
[206]: { name:'lime_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'lime_stained_glass', texSide:'lime_stained_glass', texBottom:'lime_stained_glass', color:'#608830' },
[207]: { name:'pink_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'pink_stained_glass', texSide:'pink_stained_glass', texBottom:'pink_stained_glass', color:'#A06068' },
[208]: { name:'gray_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'gray_stained_glass', texSide:'gray_stained_glass', texBottom:'gray_stained_glass', color:'#383838' },
[209]: { name:'light_gray_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'light_gray_stained_glass', texSide:'light_gray_stained_glass', texBottom:'light_gray_stained_glass', color:'#808080' },
[210]: { name:'cyan_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'cyan_stained_glass', texSide:'cyan_stained_glass', texBottom:'cyan_stained_glass', color:'#306868' },
[211]: { name:'purple_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'purple_stained_glass', texSide:'purple_stained_glass', texBottom:'purple_stained_glass', color:'#582878' },
[212]: { name:'blue_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'blue_stained_glass', texSide:'blue_stained_glass', texBottom:'blue_stained_glass', color:'#282878' },
[213]: { name:'brown_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'brown_stained_glass', texSide:'brown_stained_glass', texBottom:'brown_stained_glass', color:'#402818' },
[214]: { name:'green_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'green_stained_glass', texSide:'green_stained_glass', texBottom:'green_stained_glass', color:'#285818' },
[215]: { name:'red_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'red_stained_glass', texSide:'red_stained_glass', texBottom:'red_stained_glass', color:'#882020' },
[216]: { name:'black_stained_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'black_stained_glass', texSide:'black_stained_glass', texBottom:'black_stained_glass', color:'#181818' },
[217]: { name:'glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'glass', texSide:'glass', texBottom:'glass', color:'#C0DBF5' },
[218]: { name:'tinted_glass', solid:true, transparent:true, lightLevel:0, hardness:0.3, texTop:'tinted_glass', texSide:'tinted_glass', texBottom:'tinted_glass', color:'#282840' },
[219]: { name:'water', solid:false, transparent:true, lightLevel:0, hardness:-1, texTop:'water_still', texSide:'water_still', texBottom:'water_still', color:'#3F76E4' },
[220]: { name:'lava', solid:false, transparent:true, lightLevel:15, hardness:-1, texTop:'lava_still', texSide:'lava_still', texBottom:'lava_still', color:'#CF6200' },
[221]: { name:'bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'bricks', texSide:'bricks', texBottom:'bricks', color:'#8B4B3D' },
[222]: { name:'stone_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'stone_bricks', texSide:'stone_bricks', texBottom:'stone_bricks', color:'#7A7A7A' },
[223]: { name:'mossy_stone_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'mossy_stone_bricks', texSide:'mossy_stone_bricks', texBottom:'mossy_stone_bricks', color:'#6A7A6A' },
[224]: { name:'cracked_stone_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'cracked_stone_bricks', texSide:'cracked_stone_bricks', texBottom:'cracked_stone_bricks', color:'#707070' },
[225]: { name:'chiseled_stone_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'chiseled_stone_bricks', texSide:'chiseled_stone_bricks', texBottom:'chiseled_stone_bricks', color:'#787878' },
[226]: { name:'cobblestone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cobblestone', texSide:'cobblestone', texBottom:'cobblestone', color:'#7A7A7A' },
[227]: { name:'mossy_cobblestone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'mossy_cobblestone', texSide:'mossy_cobblestone', texBottom:'mossy_cobblestone', color:'#6A7A6A' },
[228]: { name:'deepslate_bricks', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'deepslate_bricks', texSide:'deepslate_bricks', texBottom:'deepslate_bricks', color:'#4A4A4A' },
[229]: { name:'deepslate_tiles', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'deepslate_tiles', texSide:'deepslate_tiles', texBottom:'deepslate_tiles', color:'#484848' },
[230]: { name:'cracked_deepslate_bricks', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'cracked_deepslate_bricks', texSide:'cracked_deepslate_bricks', texBottom:'cracked_deepslate_bricks', color:'#464646' },
[231]: { name:'cracked_deepslate_tiles', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'cracked_deepslate_tiles', texSide:'cracked_deepslate_tiles', texBottom:'cracked_deepslate_tiles', color:'#444444' },
[232]: { name:'chiseled_deepslate', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'chiseled_deepslate', texSide:'chiseled_deepslate', texBottom:'chiseled_deepslate', color:'#4A4A4A' },
[233]: { name:'polished_blackstone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'polished_blackstone', texSide:'polished_blackstone', texBottom:'polished_blackstone', color:'#2A2A2A' },
[234]: { name:'polished_blackstone_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'polished_blackstone_bricks', texSide:'polished_blackstone_bricks', texBottom:'polished_blackstone_bricks', color:'#282828' },
[235]: { name:'cracked_polished_blackstone_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cracked_polished_blackstone_bricks', texSide:'cracked_polished_blackstone_bricks', texBottom:'cracked_polished_blackstone_bricks', color:'#262626' },
[236]: { name:'chiseled_polished_blackstone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'chiseled_polished_blackstone', texSide:'chiseled_polished_blackstone', texBottom:'chiseled_polished_blackstone', color:'#2A2A2A' },
[237]: { name:'blackstone', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'blackstone_top', texSide:'blackstone', texBottom:'blackstone', color:'#2A2020' },
[238]: { name:'polished_basalt', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'polished_basalt_top', texSide:'polished_basalt_side', texBottom:'polished_basalt_side', color:'#3A3A3A' },
[239]: { name:'basalt', solid:true, transparent:false, lightLevel:0, hardness:1.25, texTop:'basalt_top', texSide:'basalt_side', texBottom:'basalt_side', color:'#3A3838' },
[240]: { name:'smooth_basalt', solid:true, transparent:false, lightLevel:0, hardness:1.25, texTop:'smooth_basalt', texSide:'smooth_basalt', texBottom:'smooth_basalt', color:'#3A3838' },
[241]: { name:'crafting_table', solid:true, transparent:false, lightLevel:0, hardness:2.5, texTop:'crafting_table_top', texSide:'crafting_table_side', texBottom:'oak_planks', color:'#9C7A4A' },
[242]: { name:'furnace', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'furnace_top', texSide:'furnace_side', texBottom:'furnace_side', color:'#7A7A7A' },
[243]: { name:'blast_furnace', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'blast_furnace_top', texSide:'blast_furnace_side', texBottom:'blast_furnace_side', color:'#6A6A6A' },
[244]: { name:'smoker', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'smoker_top', texSide:'smoker_side', texBottom:'smoker_bottom', color:'#6A5A4A' },
[245]: { name:'anvil', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'anvil_top', texSide:'anvil', texBottom:'anvil', color:'#3A3A3A' },
[246]: { name:'chipped_anvil', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'chipped_anvil_top', texSide:'anvil', texBottom:'anvil', color:'#3A3A3A' },
[247]: { name:'damaged_anvil', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'damaged_anvil_top', texSide:'anvil', texBottom:'anvil', color:'#3A3A3A' },
[248]: { name:'enchanting_table', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'enchanting_table_top', texSide:'enchanting_table_side', texBottom:'enchanting_table_bottom', color:'#6A2A8A' },
[249]: { name:'brewing_stand', solid:false, transparent:false, lightLevel:0, hardness:0.5, texTop:'brewing_stand', texSide:'brewing_stand', texBottom:'brewing_stand', color:'#7A7A7A' },
[250]: { name:'cauldron', solid:false, transparent:false, lightLevel:0, hardness:2.0, texTop:'cauldron_top', texSide:'cauldron_side', texBottom:'cauldron_side', color:'#3A3A3A' },
[251]: { name:'composter', solid:false, transparent:false, lightLevel:0, hardness:0.6, texTop:'composter_top', texSide:'composter_side', texBottom:'composter_bottom', color:'#7A5A3A' },
[252]: { name:'barrel', solid:true, transparent:false, lightLevel:0, hardness:2.5, texTop:'barrel_top', texSide:'barrel_side', texBottom:'barrel_bottom', color:'#7A5A30' },
[253]: { name:'loom', solid:true, transparent:false, lightLevel:0, hardness:2.5, texTop:'loom_top', texSide:'loom_side', texBottom:'loom_bottom', color:'#8A6A40' },
[254]: { name:'stonecutter', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'stonecutter_top', texSide:'stonecutter_side', texBottom:'stonecutter_bottom', color:'#6A6A6A' },
[255]: { name:'grindstone', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'grindstone_side', texSide:'grindstone_side', texBottom:'grindstone_side', color:'#6A6A6A' },
[256]: { name:'fletching_table', solid:true, transparent:false, lightLevel:0, hardness:2.5, texTop:'fletching_table_top', texSide:'fletching_table_side', texBottom:'fletching_table_side', color:'#8A6A40' },
[257]: { name:'smithing_table', solid:true, transparent:false, lightLevel:0, hardness:2.5, texTop:'smithing_table_top', texSide:'smithing_table_side', texBottom:'smithing_table_bottom', color:'#3A3A4A' },
[258]: { name:'lectern', solid:false, transparent:false, lightLevel:0, hardness:2.5, texTop:'lectern_top', texSide:'lectern_sides', texBottom:'lectern_base', color:'#7A5A30' },
[259]: { name:'note_block', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'note_block', texSide:'note_block', texBottom:'note_block', color:'#6A4A2A' },
[260]: { name:'jukebox', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'jukebox_top', texSide:'jukebox_side', texBottom:'jukebox_side', color:'#6A4A2A' },
[261]: { name:'bookshelf', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'oak_planks', texSide:'bookshelf', texBottom:'oak_planks', color:'#6B5130' },
[262]: { name:'chiseled_bookshelf', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'chiseled_bookshelf_top', texSide:'chiseled_bookshelf_side', texBottom:'oak_planks', color:'#6B5130' },
[263]: { name:'redstone_lamp', solid:true, transparent:false, lightLevel:0, hardness:0.3, texTop:'redstone_lamp', texSide:'redstone_lamp', texBottom:'redstone_lamp', color:'#8A6A30' },
[264]: { name:'redstone_lamp_on', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'redstone_lamp_on', texSide:'redstone_lamp_on', texBottom:'redstone_lamp_on', color:'#E0C060' },
[265]: { name:'redstone_torch', solid:false, transparent:false, lightLevel:7, hardness:0, texTop:'redstone_torch', texSide:'redstone_torch', texBottom:'redstone_torch', color:'#CC2020' },
[266]: { name:'redstone_torch_off', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'redstone_torch_off', texSide:'redstone_torch_off', texBottom:'redstone_torch_off', color:'#601010' },
[267]: { name:'tnt', solid:true, transparent:false, lightLevel:0, hardness:0, texTop:'tnt_top', texSide:'tnt_side', texBottom:'tnt_bottom', color:'#CC3333' },
[268]: { name:'lever', solid:false, transparent:false, lightLevel:0, hardness:0.5, texTop:'lever', texSide:'lever', texBottom:'lever', color:'#6A5A40' },
[269]: { name:'repeater', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'repeater', texSide:'repeater', texBottom:'repeater', color:'#8A7A5A' },
[270]: { name:'comparator', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'comparator', texSide:'comparator', texBottom:'comparator', color:'#8A7A5A' },
[271]: { name:'observer', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'observer_top', texSide:'observer_side', texBottom:'observer_back', color:'#6A6A6A' },
[272]: { name:'piston', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'piston_top', texSide:'piston_side', texBottom:'piston_bottom', color:'#8A7A60' },
[273]: { name:'sticky_piston', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'piston_top_sticky', texSide:'piston_side', texBottom:'piston_bottom', color:'#7A6A50' },
[274]: { name:'dispenser', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'furnace_top', texSide:'dispenser_front', texBottom:'furnace_side', color:'#6A6A6A' },
[275]: { name:'dropper', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'furnace_top', texSide:'dropper_front', texBottom:'furnace_side', color:'#6A6A6A' },
[276]: { name:'hopper', solid:false, transparent:false, lightLevel:0, hardness:3.0, texTop:'hopper_top', texSide:'hopper_outside', texBottom:'hopper_outside', color:'#3A3A3A' },
[277]: { name:'daylight_detector', solid:false, transparent:false, lightLevel:0, hardness:0.2, texTop:'daylight_detector_top', texSide:'daylight_detector_side', texBottom:'daylight_detector_side', color:'#8A7A50' },
[278]: { name:'target', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'target_top', texSide:'target_side', texBottom:'target_side', color:'#C83030' },
[279]: { name:'powered_rail', solid:false, transparent:false, lightLevel:0, hardness:0.7, texTop:'powered_rail', texSide:'powered_rail', texBottom:'powered_rail', color:'#8A6A20' },
[280]: { name:'detector_rail', solid:false, transparent:false, lightLevel:0, hardness:0.7, texTop:'detector_rail', texSide:'detector_rail', texBottom:'detector_rail', color:'#8A4020' },
[281]: { name:'rail', solid:false, transparent:false, lightLevel:0, hardness:0.7, texTop:'rail', texSide:'rail', texBottom:'rail', color:'#6A6A6A' },
[282]: { name:'activator_rail', solid:false, transparent:false, lightLevel:0, hardness:0.7, texTop:'activator_rail', texSide:'activator_rail', texBottom:'activator_rail', color:'#8A2020' },
[283]: { name:'glowstone', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'glowstone', texSide:'glowstone', texBottom:'glowstone', color:'#FFE4A0' },
[284]: { name:'sea_lantern', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'sea_lantern', texSide:'sea_lantern', texBottom:'sea_lantern', color:'#B0E0E6' },
[285]: { name:'jack_o_lantern', solid:true, transparent:false, lightLevel:15, hardness:1.0, texTop:'pumpkin_top', texSide:'jack_o_lantern', texBottom:'jack_o_lantern', color:'#CC7722' },
[286]: { name:'lantern', solid:false, transparent:false, lightLevel:15, hardness:3.5, texTop:'lantern', texSide:'lantern', texBottom:'lantern', color:'#D0B060' },
[287]: { name:'torch', solid:false, transparent:false, lightLevel:14, hardness:0, texTop:'torch', texSide:'torch', texBottom:'torch', color:'#FFD030' },
[288]: { name:'soul_torch', solid:false, transparent:false, lightLevel:10, hardness:0, texTop:'soul_torch', texSide:'soul_torch', texBottom:'soul_torch', color:'#4090A0' },
[289]: { name:'soul_lantern', solid:false, transparent:false, lightLevel:10, hardness:3.5, texTop:'soul_lantern', texSide:'soul_lantern', texBottom:'soul_lantern', color:'#307080' },
[290]: { name:'campfire', solid:false, transparent:false, lightLevel:15, hardness:2.0, texTop:'campfire_log', texSide:'campfire_log', texBottom:'campfire_log', color:'#8A5A30' },
[291]: { name:'soul_campfire', solid:false, transparent:false, lightLevel:10, hardness:2.0, texTop:'soul_campfire_log_lit', texSide:'soul_campfire_log_lit', texBottom:'soul_campfire_log_lit', color:'#306070' },
[292]: { name:'shroomlight', solid:true, transparent:false, lightLevel:15, hardness:1.0, texTop:'shroomlight', texSide:'shroomlight', texBottom:'shroomlight', color:'#C86030' },
[293]: { name:'magma', solid:true, transparent:false, lightLevel:3, hardness:0.5, texTop:'magma', texSide:'magma', texBottom:'magma', color:'#CC5500' },
[294]: { name:'beacon', solid:false, transparent:false, lightLevel:15, hardness:3.0, texTop:'beacon', texSide:'beacon', texBottom:'beacon', color:'#80D0E0' },
[295]: { name:'conduit', solid:false, transparent:false, lightLevel:15, hardness:3.0, texTop:'conduit', texSide:'conduit', texBottom:'conduit', color:'#40A0D0' },
[296]: { name:'ochre_froglight', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'ochre_froglight_top', texSide:'ochre_froglight_side', texBottom:'ochre_froglight_side', color:'#C8A030' },
[297]: { name:'verdant_froglight', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'verdant_froglight_top', texSide:'verdant_froglight_side', texBottom:'verdant_froglight_side', color:'#50A030' },
[298]: { name:'pearlescent_froglight', solid:true, transparent:false, lightLevel:15, hardness:0.3, texTop:'pearlescent_froglight_top', texSide:'pearlescent_froglight_side', texBottom:'pearlescent_froglight_side', color:'#C070A0' },
[299]: { name:'copper_torch', solid:false, transparent:false, lightLevel:15, hardness:0, texTop:'copper_torch', texSide:'copper_torch', texBottom:'copper_torch', color:'#C08040' },
[300]: { name:'candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'candle', texSide:'candle', texBottom:'candle', color:'#F0E8D0' },
[301]: { name:'white_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'white_candle', texSide:'white_candle', texBottom:'white_candle', color:'#E8E8E8' },
[302]: { name:'orange_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'orange_candle', texSide:'orange_candle', texBottom:'orange_candle', color:'#E08030' },
[303]: { name:'magenta_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'magenta_candle', texSide:'magenta_candle', texBottom:'magenta_candle', color:'#C050A0' },
[304]: { name:'light_blue_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'light_blue_candle', texSide:'light_blue_candle', texBottom:'light_blue_candle', color:'#5098C0' },
[305]: { name:'yellow_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'yellow_candle', texSide:'yellow_candle', texBottom:'yellow_candle', color:'#E0C830' },
[306]: { name:'lime_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'lime_candle', texSide:'lime_candle', texBottom:'lime_candle', color:'#60C030' },
[307]: { name:'pink_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'pink_candle', texSide:'pink_candle', texBottom:'pink_candle', color:'#E08898' },
[308]: { name:'gray_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'gray_candle', texSide:'gray_candle', texBottom:'gray_candle', color:'#505050' },
[309]: { name:'light_gray_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'light_gray_candle', texSide:'light_gray_candle', texBottom:'light_gray_candle', color:'#A0A0A0' },
[310]: { name:'cyan_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'cyan_candle', texSide:'cyan_candle', texBottom:'cyan_candle', color:'#308890' },
[311]: { name:'purple_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'purple_candle', texSide:'purple_candle', texBottom:'purple_candle', color:'#7030A0' },
[312]: { name:'blue_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'blue_candle', texSide:'blue_candle', texBottom:'blue_candle', color:'#3040A0' },
[313]: { name:'brown_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'brown_candle', texSide:'brown_candle', texBottom:'brown_candle', color:'#604020' },
[314]: { name:'green_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'green_candle', texSide:'green_candle', texBottom:'green_candle', color:'#308020' },
[315]: { name:'red_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'red_candle', texSide:'red_candle', texBottom:'red_candle', color:'#C02020' },
[316]: { name:'black_candle', solid:false, transparent:false, lightLevel:3, hardness:0.1, texTop:'black_candle', texSide:'black_candle', texBottom:'black_candle', color:'#1A1A1A' },
[317]: { name:'netherrack', solid:true, transparent:false, lightLevel:0, hardness:0.4, texTop:'netherrack', texSide:'netherrack', texBottom:'netherrack', color:'#6B2020' },
[318]: { name:'soul_sand', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'soul_sand', texSide:'soul_sand', texBottom:'soul_sand', color:'#5A4A32' },
[319]: { name:'soul_soil', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'soul_soil', texSide:'soul_soil', texBottom:'soul_soil', color:'#4A3828' },
[320]: { name:'nether_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'nether_bricks', texSide:'nether_bricks', texBottom:'nether_bricks', color:'#2A1A1A' },
[321]: { name:'red_nether_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'red_nether_bricks', texSide:'red_nether_bricks', texBottom:'red_nether_bricks', color:'#4A2020' },
[322]: { name:'chiseled_nether_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'chiseled_nether_bricks', texSide:'chiseled_nether_bricks', texBottom:'chiseled_nether_bricks', color:'#2A1A1A' },
[323]: { name:'cracked_nether_bricks', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cracked_nether_bricks', texSide:'cracked_nether_bricks', texBottom:'cracked_nether_bricks', color:'#281818' },
[324]: { name:'quartz_block', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'quartz_block_top', texSide:'quartz_block_side', texBottom:'quartz_block_bottom', color:'#ECE0C8' },
[325]: { name:'quartz_bricks', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'quartz_bricks', texSide:'quartz_bricks', texBottom:'quartz_bricks', color:'#E8D8C0' },
[326]: { name:'quartz_pillar', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'quartz_pillar_top', texSide:'quartz_pillar', texBottom:'quartz_pillar', color:'#ECE0C8' },
[327]: { name:'chiseled_quartz_block', solid:true, transparent:false, lightLevel:0, hardness:0.8, texTop:'chiseled_quartz_block_top', texSide:'chiseled_quartz_block', texBottom:'chiseled_quartz_block', color:'#E0D0B8' },
[328]: { name:'magma_block', solid:true, transparent:false, lightLevel:3, hardness:0.5, texTop:'magma', texSide:'magma', texBottom:'magma', color:'#CC5500' },
[329]: { name:'nether_wart_block', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'nether_wart_block', texSide:'nether_wart_block', texBottom:'nether_wart_block', color:'#5A1020' },
[330]: { name:'warped_wart_block', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'warped_wart_block', texSide:'warped_wart_block', texBottom:'warped_wart_block', color:'#108060' },
[331]: { name:'bone_block', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'bone_block_top', texSide:'bone_block_side', texBottom:'bone_block_side', color:'#D0C8A0' },
[332]: { name:'ancient_debris', solid:true, transparent:false, lightLevel:0, hardness:30, texTop:'ancient_debris_top', texSide:'ancient_debris_side', texBottom:'ancient_debris_side', color:'#3A3030' },
[333]: { name:'crying_obsidian_b', solid:true, transparent:false, lightLevel:10, hardness:50, texTop:'crying_obsidian', texSide:'crying_obsidian', texBottom:'crying_obsidian', color:'#2A1A4E' },
[334]: { name:'respawn_anchor', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'respawn_anchor_top', texSide:'respawn_anchor_side0', texBottom:'respawn_anchor_bottom', color:'#1A1A4A' },
[335]: { name:'lodestone', solid:true, transparent:false, lightLevel:0, hardness:3.5, texTop:'lodestone_top', texSide:'lodestone_side', texBottom:'lodestone_side', color:'#4A4A4A' },
[336]: { name:'piglin_head', solid:false, transparent:false, lightLevel:0, hardness:1.0, texTop:'netherrack', texSide:'netherrack', texBottom:'netherrack', color:'#DAA520' },
[337]: { name:'crimson_planks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'crimson_planks', texSide:'crimson_planks', texBottom:'crimson_planks', color:'#7A2040' },
[338]: { name:'crimson_stem', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'crimson_stem_top', texSide:'crimson_stem', texBottom:'crimson_stem', color:'#6A1830' },
[339]: { name:'stripped_crimson_stem', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'stripped_crimson_stem_top', texSide:'stripped_crimson_stem', texBottom:'stripped_crimson_stem', color:'#8A2848' },
[340]: { name:'warped_planks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'warped_planks', texSide:'warped_planks', texBottom:'warped_planks', color:'#207860' },
[341]: { name:'warped_stem', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'warped_stem_top', texSide:'warped_stem', texBottom:'warped_stem', color:'#185848' },
[342]: { name:'stripped_warped_stem', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'stripped_warped_stem_top', texSide:'stripped_warped_stem', texBottom:'stripped_warped_stem', color:'#288868' },
[343]: { name:'crimson_nylium', solid:true, transparent:false, lightLevel:0, hardness:0.4, texTop:'crimson_nylium', texSide:'crimson_nylium_side', texBottom:'netherrack', color:'#8A2040' },
[344]: { name:'warped_nylium', solid:true, transparent:false, lightLevel:0, hardness:0.4, texTop:'warped_nylium', texSide:'warped_nylium_side', texBottom:'netherrack', color:'#208868' },
[345]: { name:'crimson_fungus', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'crimson_fungus', texSide:'crimson_fungus', texBottom:'crimson_fungus', color:'#8A2050' },
[346]: { name:'warped_fungus', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'warped_fungus', texSide:'warped_fungus', texBottom:'warped_fungus', color:'#208870' },
[347]: { name:'end_stone', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'end_stone', texSide:'end_stone', texBottom:'end_stone', color:'#D0D8A0' },
[348]: { name:'end_stone_bricks', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'end_stone_bricks', texSide:'end_stone_bricks', texBottom:'end_stone_bricks', color:'#C8C898' },
[349]: { name:'purpur_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'purpur_block', texSide:'purpur_block', texBottom:'purpur_block', color:'#9060A0' },
[350]: { name:'purpur_pillar', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'purpur_pillar_top', texSide:'purpur_pillar', texBottom:'purpur_pillar', color:'#9060A0' },
[351]: { name:'end_rod', solid:false, transparent:false, lightLevel:14, hardness:0, texTop:'end_rod', texSide:'end_rod', texBottom:'end_rod', color:'#E0E8F0' },
[352]: { name:'end_portal_frame', solid:true, transparent:false, lightLevel:0, hardness:-1, texTop:'end_portal_frame_top', texSide:'end_portal_frame_side', texBottom:'end_portal_frame_side', color:'#3A8A4A' },
[353]: { name:'dragon_egg', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'dragon_egg', texSide:'dragon_egg', texBottom:'dragon_egg', color:'#1A0A2A' },
[354]: { name:'pumpkin', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'pumpkin_top', texSide:'pumpkin_side', texBottom:'pumpkin_side', color:'#CC7722' },
[355]: { name:'carved_pumpkin', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'pumpkin_top', texSide:'carved_pumpkin', texBottom:'carved_pumpkin', color:'#CC7722' },
[356]: { name:'melon', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'melon_top', texSide:'melon_side', texBottom:'melon_side', color:'#70A030' },
[357]: { name:'hay_block', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'hay_block_top', texSide:'hay_block_side', texBottom:'hay_block_side', color:'#C8A830' },
[358]: { name:'honeycomb_block', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'honeycomb_block', texSide:'honeycomb_block', texBottom:'honeycomb_block', color:'#D0A020' },
[359]: { name:'honey_block', solid:true, transparent:false, lightLevel:0, hardness:0, texTop:'honey_block_top', texSide:'honey_block_side', texBottom:'honey_block_bottom', color:'#E0A020' },
[360]: { name:'slime_block', solid:true, transparent:false, lightLevel:0, hardness:0, texTop:'slime_block', texSide:'slime_block', texBottom:'slime_block', color:'#60D040' },
[361]: { name:'sponge', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'sponge', texSide:'sponge', texBottom:'sponge', color:'#C8C060' },
[362]: { name:'wet_sponge', solid:true, transparent:false, lightLevel:0, hardness:0.6, texTop:'wet_sponge', texSide:'wet_sponge', texBottom:'wet_sponge', color:'#8A8A40' },
[363]: { name:'iron_bars', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'iron_bars', texSide:'iron_bars', texBottom:'iron_bars', color:'#6A6A6A' },
[364]: { name:'chain', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'iron_chain', texSide:'iron_chain', texBottom:'iron_chain', color:'#3A3A3A' },
[365]: { name:'ladder', solid:false, transparent:true, lightLevel:0, hardness:0.4, texTop:'ladder', texSide:'ladder', texBottom:'ladder', color:'#7A5A30' },
[366]: { name:'scaffolding', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'scaffolding_top', texSide:'scaffolding_side', texBottom:'scaffolding_bottom', color:'#A08840' },
[367]: { name:'cobweb', solid:false, transparent:true, lightLevel:0, hardness:4.0, texTop:'cobweb', texSide:'cobweb', texBottom:'cobweb', color:'#D0D0D0' },
[368]: { name:'tube_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'tube_coral', texSide:'tube_coral', texBottom:'tube_coral', color:'#3080A0' },
[369]: { name:'tube_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'tube_coral_block', texSide:'tube_coral_block', texBottom:'tube_coral_block', color:'#3080A0' },
[370]: { name:'tube_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'tube_coral_fan', texSide:'tube_coral_fan', texBottom:'tube_coral_fan', color:'#3080A0' },
[371]: { name:'dead_tube_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_tube_coral', texSide:'dead_tube_coral', texBottom:'dead_tube_coral', color:'#6A6A6A' },
[372]: { name:'dead_tube_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dead_tube_coral_block', texSide:'dead_tube_coral_block', texBottom:'dead_tube_coral_block', color:'#6A6A6A' },
[373]: { name:'dead_tube_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_tube_coral_fan', texSide:'dead_tube_coral_fan', texBottom:'dead_tube_coral_fan', color:'#6A6A6A' },
[374]: { name:'brain_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'brain_coral', texSide:'brain_coral', texBottom:'brain_coral', color:'#D05080' },
[375]: { name:'brain_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'brain_coral_block', texSide:'brain_coral_block', texBottom:'brain_coral_block', color:'#D05080' },
[376]: { name:'brain_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'brain_coral_fan', texSide:'brain_coral_fan', texBottom:'brain_coral_fan', color:'#D05080' },
[377]: { name:'dead_brain_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_brain_coral', texSide:'dead_brain_coral', texBottom:'dead_brain_coral', color:'#6A6A6A' },
[378]: { name:'dead_brain_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dead_brain_coral_block', texSide:'dead_brain_coral_block', texBottom:'dead_brain_coral_block', color:'#6A6A6A' },
[379]: { name:'dead_brain_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_brain_coral_fan', texSide:'dead_brain_coral_fan', texBottom:'dead_brain_coral_fan', color:'#6A6A6A' },
[380]: { name:'bubble_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'bubble_coral', texSide:'bubble_coral', texBottom:'bubble_coral', color:'#8080D0' },
[381]: { name:'bubble_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'bubble_coral_block', texSide:'bubble_coral_block', texBottom:'bubble_coral_block', color:'#8080D0' },
[382]: { name:'bubble_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'bubble_coral_fan', texSide:'bubble_coral_fan', texBottom:'bubble_coral_fan', color:'#8080D0' },
[383]: { name:'dead_bubble_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_bubble_coral', texSide:'dead_bubble_coral', texBottom:'dead_bubble_coral', color:'#6A6A6A' },
[384]: { name:'dead_bubble_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dead_bubble_coral_block', texSide:'dead_bubble_coral_block', texBottom:'dead_bubble_coral_block', color:'#6A6A6A' },
[385]: { name:'dead_bubble_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_bubble_coral_fan', texSide:'dead_bubble_coral_fan', texBottom:'dead_bubble_coral_fan', color:'#6A6A6A' },
[386]: { name:'fire_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'fire_coral', texSide:'fire_coral', texBottom:'fire_coral', color:'#D04040' },
[387]: { name:'fire_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'fire_coral_block', texSide:'fire_coral_block', texBottom:'fire_coral_block', color:'#D04040' },
[388]: { name:'fire_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'fire_coral_fan', texSide:'fire_coral_fan', texBottom:'fire_coral_fan', color:'#D04040' },
[389]: { name:'dead_fire_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_fire_coral', texSide:'dead_fire_coral', texBottom:'dead_fire_coral', color:'#6A6A6A' },
[390]: { name:'dead_fire_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dead_fire_coral_block', texSide:'dead_fire_coral_block', texBottom:'dead_fire_coral_block', color:'#6A6A6A' },
[391]: { name:'dead_fire_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_fire_coral_fan', texSide:'dead_fire_coral_fan', texBottom:'dead_fire_coral_fan', color:'#6A6A6A' },
[392]: { name:'horn_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'horn_coral', texSide:'horn_coral', texBottom:'horn_coral', color:'#A0A040' },
[393]: { name:'horn_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'horn_coral_block', texSide:'horn_coral_block', texBottom:'horn_coral_block', color:'#A0A040' },
[394]: { name:'horn_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'horn_coral_fan', texSide:'horn_coral_fan', texBottom:'horn_coral_fan', color:'#A0A040' },
[395]: { name:'dead_horn_coral', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_horn_coral', texSide:'dead_horn_coral', texBottom:'dead_horn_coral', color:'#6A6A6A' },
[396]: { name:'dead_horn_coral_block', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dead_horn_coral_block', texSide:'dead_horn_coral_block', texBottom:'dead_horn_coral_block', color:'#6A6A6A' },
[397]: { name:'dead_horn_coral_fan', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'dead_horn_coral_fan', texSide:'dead_horn_coral_fan', texBottom:'dead_horn_coral_fan', color:'#6A6A6A' },
[398]: { name:'prismarine', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'prismarine', texSide:'prismarine', texBottom:'prismarine', color:'#4AAFA0' },
[399]: { name:'prismarine_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'prismarine_bricks', texSide:'prismarine_bricks', texBottom:'prismarine_bricks', color:'#3A9A8A' },
[400]: { name:'dark_prismarine', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'dark_prismarine', texSide:'dark_prismarine', texBottom:'dark_prismarine', color:'#2A5A50' },
[401]: { name:'sea_pickle', solid:false, transparent:false, lightLevel:6, hardness:0, texTop:'sea_pickle', texSide:'sea_pickle', texBottom:'sea_pickle', color:'#60A820' },
[402]: { name:'kelp', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'kelp', texSide:'kelp', texBottom:'kelp', color:'#206830' },
[403]: { name:'seagrass', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'seagrass', texSide:'seagrass', texBottom:'seagrass', color:'#308830' },
[404]: { name:'cactus', solid:true, transparent:true, lightLevel:0, hardness:0.4, texTop:'cactus_top', texSide:'cactus_side', texBottom:'cactus_bottom', color:'#0A6E0A' },
[405]: { name:'sugar_cane', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'sugar_cane', texSide:'sugar_cane', texBottom:'sugar_cane', color:'#90C830' },
[406]: { name:'bamboo', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'bamboo_stalk', texSide:'bamboo_stalk', texBottom:'bamboo_stalk', color:'#50A020' },
[407]: { name:'poppy', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'poppy', texSide:'poppy', texBottom:'poppy', color:'#CC2222' },
[408]: { name:'dandelion', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'dandelion', texSide:'dandelion', texBottom:'dandelion', color:'#FFD700' },
[409]: { name:'blue_orchid', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'blue_orchid', texSide:'blue_orchid', texBottom:'blue_orchid', color:'#3060C0' },
[410]: { name:'allium', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'allium', texSide:'allium', texBottom:'allium', color:'#8040A0' },
[411]: { name:'azure_bluet', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'azure_bluet', texSide:'azure_bluet', texBottom:'azure_bluet', color:'#C0C0D0' },
[412]: { name:'red_tulip', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'red_tulip', texSide:'red_tulip', texBottom:'red_tulip', color:'#C03020' },
[413]: { name:'orange_tulip', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'orange_tulip', texSide:'orange_tulip', texBottom:'orange_tulip', color:'#D06020' },
[414]: { name:'white_tulip', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'white_tulip', texSide:'white_tulip', texBottom:'white_tulip', color:'#D0D0D8' },
[415]: { name:'pink_tulip', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'pink_tulip', texSide:'pink_tulip', texBottom:'pink_tulip', color:'#D08090' },
[416]: { name:'oxeye_daisy', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'oxeye_daisy', texSide:'oxeye_daisy', texBottom:'oxeye_daisy', color:'#D0D0A0' },
[417]: { name:'cornflower', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'cornflower', texSide:'cornflower', texBottom:'cornflower', color:'#2050A0' },
[418]: { name:'lily_of_the_valley', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'lily_of_the_valley', texSide:'lily_of_the_valley', texBottom:'lily_of_the_valley', color:'#D0D0C0' },
[419]: { name:'wither_rose', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'wither_rose', texSide:'wither_rose', texBottom:'wither_rose', color:'#2A2A2A' },
[420]: { name:'torchflower', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'torchflower', texSide:'torchflower', texBottom:'torchflower', color:'#C04020' },
[421]: { name:'sunflower', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'sunflower_front', texSide:'sunflower_front', texBottom:'sunflower_front', color:'#E0C020' },
[422]: { name:'lilac', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'lilac_top', texSide:'lilac_top', texBottom:'lilac_top', color:'#A060A0' },
[423]: { name:'rose_bush', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'rose_bush_top', texSide:'rose_bush_top', texBottom:'rose_bush_top', color:'#C02030' },
[424]: { name:'peony', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'peony_top', texSide:'peony_top', texBottom:'peony_top', color:'#D07080' },
[425]: { name:'tall_grass', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'tall_grass_top', texSide:'tall_grass_top', texBottom:'tall_grass_top', color:'#4A8020' },
[426]: { name:'large_fern', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'large_fern_top', texSide:'large_fern_top', texBottom:'large_fern_top', color:'#3A7018' },
[427]: { name:'fern', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'fern', texSide:'fern', texBottom:'fern', color:'#3A7018' },
[428]: { name:'short_grass', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'short_grass', texSide:'short_grass', texBottom:'short_grass', color:'#4A8020' },
[429]: { name:'red_mushroom', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'red_mushroom', texSide:'red_mushroom', texBottom:'red_mushroom', color:'#C83030' },
[430]: { name:'brown_mushroom', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'brown_mushroom', texSide:'brown_mushroom', texBottom:'brown_mushroom', color:'#8A6A40' },
[431]: { name:'red_mushroom_block', solid:true, transparent:false, lightLevel:0, hardness:0.2, texTop:'mushroom_block_inside', texSide:'red_mushroom_block', texBottom:'red_mushroom_block', color:'#A02020' },
[432]: { name:'brown_mushroom_block', solid:true, transparent:false, lightLevel:0, hardness:0.2, texTop:'mushroom_block_inside', texSide:'brown_mushroom_block', texBottom:'brown_mushroom_block', color:'#7A5A30' },
[433]: { name:'mushroom_stem', solid:true, transparent:false, lightLevel:0, hardness:0.2, texTop:'mushroom_block_inside', texSide:'mushroom_stem', texBottom:'mushroom_stem', color:'#C8C0A0' },
[434]: { name:'wheat', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'wheat_stage7', texSide:'wheat_stage7', texBottom:'wheat_stage7', color:'#A0A020' },
[435]: { name:'carrots', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'carrots_stage3', texSide:'carrots_stage3', texBottom:'carrots_stage3', color:'#30A020' },
[436]: { name:'potatoes', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'potatoes_stage3', texSide:'potatoes_stage3', texBottom:'potatoes_stage3', color:'#30A020' },
[437]: { name:'beetroots', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'beetroots_stage3', texSide:'beetroots_stage3', texBottom:'beetroots_stage3', color:'#602020' },
[438]: { name:'pumpkin_stem', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'pumpkin_stem', texSide:'pumpkin_stem', texBottom:'pumpkin_stem', color:'#408020' },
[439]: { name:'melon_stem', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'melon_stem', texSide:'melon_stem', texBottom:'melon_stem', color:'#408020' },
[440]: { name:'cake', solid:false, transparent:false, lightLevel:0, hardness:0.5, texTop:'cake_top', texSide:'cake_side', texBottom:'cake_bottom', color:'#E8C8A0' },
[441]: { name:'iron_door', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'iron_door_bottom', texSide:'iron_door_bottom', texBottom:'iron_door_bottom', color:'#A0A0A0' },
[442]: { name:'oak_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oak_door_bottom', texSide:'oak_door_bottom', texBottom:'oak_door_bottom', color:'#6B5130' },
[443]: { name:'spruce_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'spruce_door_bottom', texSide:'spruce_door_bottom', texBottom:'spruce_door_bottom', color:'#4A3320' },
[444]: { name:'birch_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'birch_door_bottom', texSide:'birch_door_bottom', texBottom:'birch_door_bottom', color:'#D4C4A0' },
[445]: { name:'jungle_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'jungle_door_bottom', texSide:'jungle_door_bottom', texBottom:'jungle_door_bottom', color:'#6A4A20' },
[446]: { name:'dark_oak_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'dark_oak_door_bottom', texSide:'dark_oak_door_bottom', texBottom:'dark_oak_door_bottom', color:'#3A2A18' },
[447]: { name:'acacia_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'acacia_door_bottom', texSide:'acacia_door_bottom', texBottom:'acacia_door_bottom', color:'#8A6040' },
[448]: { name:'mangrove_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'mangrove_door_bottom', texSide:'mangrove_door_bottom', texBottom:'mangrove_door_bottom', color:'#6A3020' },
[449]: { name:'cherry_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'cherry_door_bottom', texSide:'cherry_door_bottom', texBottom:'cherry_door_bottom', color:'#C87088' },
[450]: { name:'pale_oak_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'pale_oak_door_bottom', texSide:'pale_oak_door_bottom', texBottom:'pale_oak_door_bottom', color:'#A09080' },
[451]: { name:'iron_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:5.0, texTop:'iron_trapdoor', texSide:'iron_trapdoor', texBottom:'iron_trapdoor', color:'#A0A0A0' },
[452]: { name:'oak_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'oak_trapdoor', texSide:'oak_trapdoor', texBottom:'oak_trapdoor', color:'#6B5130' },
[453]: { name:'spruce_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'spruce_trapdoor', texSide:'spruce_trapdoor', texBottom:'spruce_trapdoor', color:'#4A3320' },
[454]: { name:'birch_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'birch_trapdoor', texSide:'birch_trapdoor', texBottom:'birch_trapdoor', color:'#D4C4A0' },
[455]: { name:'jungle_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'jungle_trapdoor', texSide:'jungle_trapdoor', texBottom:'jungle_trapdoor', color:'#6A4A20' },
[456]: { name:'dark_oak_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'dark_oak_trapdoor', texSide:'dark_oak_trapdoor', texBottom:'dark_oak_trapdoor', color:'#3A2A18' },
[457]: { name:'acacia_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'acacia_trapdoor', texSide:'acacia_trapdoor', texBottom:'acacia_trapdoor', color:'#8A6040' },
[458]: { name:'mangrove_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'mangrove_trapdoor', texSide:'mangrove_trapdoor', texBottom:'mangrove_trapdoor', color:'#6A3020' },
[459]: { name:'cherry_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'cherry_trapdoor', texSide:'cherry_trapdoor', texBottom:'cherry_trapdoor', color:'#C87088' },
[460]: { name:'pale_oak_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'pale_oak_trapdoor', texSide:'pale_oak_trapdoor', texBottom:'pale_oak_trapdoor', color:'#A09080' },
[461]: { name:'oak_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'oak_planks', texSide:'oak_planks', texBottom:'oak_planks', color:'#6B5130' },
[462]: { name:'oak_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'oak_planks', texSide:'oak_planks', texBottom:'oak_planks', color:'#6B5130' },
[463]: { name:'spruce_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'spruce_planks', texSide:'spruce_planks', texBottom:'spruce_planks', color:'#4A3320' },
[464]: { name:'spruce_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'spruce_planks', texSide:'spruce_planks', texBottom:'spruce_planks', color:'#4A3320' },
[465]: { name:'birch_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'birch_planks', texSide:'birch_planks', texBottom:'birch_planks', color:'#D4C4A0' },
[466]: { name:'birch_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'birch_planks', texSide:'birch_planks', texBottom:'birch_planks', color:'#D4C4A0' },
[467]: { name:'jungle_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'jungle_planks', texSide:'jungle_planks', texBottom:'jungle_planks', color:'#6A4A20' },
[468]: { name:'jungle_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'jungle_planks', texSide:'jungle_planks', texBottom:'jungle_planks', color:'#6A4A20' },
[469]: { name:'dark_oak_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'dark_oak_planks', texSide:'dark_oak_planks', texBottom:'dark_oak_planks', color:'#3A2A18' },
[470]: { name:'dark_oak_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'dark_oak_planks', texSide:'dark_oak_planks', texBottom:'dark_oak_planks', color:'#3A2A18' },
[471]: { name:'acacia_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'acacia_planks', texSide:'acacia_planks', texBottom:'acacia_planks', color:'#8A6040' },
[472]: { name:'acacia_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'acacia_planks', texSide:'acacia_planks', texBottom:'acacia_planks', color:'#8A6040' },
[473]: { name:'mangrove_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'mangrove_planks', texSide:'mangrove_planks', texBottom:'mangrove_planks', color:'#6A3020' },
[474]: { name:'mangrove_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'mangrove_planks', texSide:'mangrove_planks', texBottom:'mangrove_planks', color:'#6A3020' },
[475]: { name:'cherry_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'cherry_planks', texSide:'cherry_planks', texBottom:'cherry_planks', color:'#C87088' },
[476]: { name:'cherry_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'cherry_planks', texSide:'cherry_planks', texBottom:'cherry_planks', color:'#C87088' },
[477]: { name:'pale_oak_fence', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'pale_oak_planks', texSide:'pale_oak_planks', texBottom:'pale_oak_planks', color:'#A09080' },
[478]: { name:'pale_oak_fence_gate', solid:false, transparent:true, lightLevel:0, hardness:2.0, texTop:'pale_oak_planks', texSide:'pale_oak_planks', texBottom:'pale_oak_planks', color:'#A09080' },
[479]: { name:'oak_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'oak_planks', texSide:'oak_planks', texBottom:'oak_planks', color:'#6B5130' },
[480]: { name:'spruce_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'spruce_planks', texSide:'spruce_planks', texBottom:'spruce_planks', color:'#4A3320' },
[481]: { name:'birch_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'birch_planks', texSide:'birch_planks', texBottom:'birch_planks', color:'#D4C4A0' },
[482]: { name:'jungle_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'jungle_planks', texSide:'jungle_planks', texBottom:'jungle_planks', color:'#6A4A20' },
[483]: { name:'dark_oak_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'dark_oak_planks', texSide:'dark_oak_planks', texBottom:'dark_oak_planks', color:'#3A2A18' },
[484]: { name:'acacia_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'acacia_planks', texSide:'acacia_planks', texBottom:'acacia_planks', color:'#8A6040' },
[485]: { name:'mangrove_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'mangrove_planks', texSide:'mangrove_planks', texBottom:'mangrove_planks', color:'#6A3020' },
[486]: { name:'cherry_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'cherry_planks', texSide:'cherry_planks', texBottom:'cherry_planks', color:'#C87088' },
[487]: { name:'pale_oak_sign', solid:false, transparent:true, lightLevel:0, hardness:1.0, texTop:'pale_oak_planks', texSide:'pale_oak_planks', texBottom:'pale_oak_planks', color:'#A09080' },
[488]: { name:'iron_block_b', solid:true, transparent:false, lightLevel:0, hardness:5.0, texTop:'iron_block', texSide:'iron_block', texBottom:'iron_block', color:'#D8D8D8' },
[489]: { name:'iron_trapdoor_b', solid:true, transparent:true, lightLevel:0, hardness:5.0, texTop:'iron_trapdoor', texSide:'iron_trapdoor', texBottom:'iron_trapdoor', color:'#A0A0A0' },
[490]: { name:'white_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'white_shulker_box', texSide:'white_shulker_box', texBottom:'white_shulker_box', color:'#E8E8E8' },
[491]: { name:'orange_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'orange_shulker_box', texSide:'orange_shulker_box', texBottom:'orange_shulker_box', color:'#E08030' },
[492]: { name:'magenta_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'magenta_shulker_box', texSide:'magenta_shulker_box', texBottom:'magenta_shulker_box', color:'#C050A0' },
[493]: { name:'light_blue_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'light_blue_shulker_box', texSide:'light_blue_shulker_box', texBottom:'light_blue_shulker_box', color:'#5098C0' },
[494]: { name:'yellow_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'yellow_shulker_box', texSide:'yellow_shulker_box', texBottom:'yellow_shulker_box', color:'#E0C830' },
[495]: { name:'lime_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'lime_shulker_box', texSide:'lime_shulker_box', texBottom:'lime_shulker_box', color:'#60C030' },
[496]: { name:'pink_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'pink_shulker_box', texSide:'pink_shulker_box', texBottom:'pink_shulker_box', color:'#E08898' },
[497]: { name:'gray_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'gray_shulker_box', texSide:'gray_shulker_box', texBottom:'gray_shulker_box', color:'#505050' },
[498]: { name:'light_gray_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'light_gray_shulker_box', texSide:'light_gray_shulker_box', texBottom:'light_gray_shulker_box', color:'#A0A0A0' },
[499]: { name:'cyan_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'cyan_shulker_box', texSide:'cyan_shulker_box', texBottom:'cyan_shulker_box', color:'#308890' },
[500]: { name:'purple_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'purple_shulker_box', texSide:'purple_shulker_box', texBottom:'purple_shulker_box', color:'#7030A0' },
[501]: { name:'blue_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'blue_shulker_box', texSide:'blue_shulker_box', texBottom:'blue_shulker_box', color:'#3040A0' },
[502]: { name:'brown_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'brown_shulker_box', texSide:'brown_shulker_box', texBottom:'brown_shulker_box', color:'#604020' },
[503]: { name:'green_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'green_shulker_box', texSide:'green_shulker_box', texBottom:'green_shulker_box', color:'#308020' },
[504]: { name:'red_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'red_shulker_box', texSide:'red_shulker_box', texBottom:'red_shulker_box', color:'#C02020' },
[505]: { name:'black_shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'black_shulker_box', texSide:'black_shulker_box', texBottom:'black_shulker_box', color:'#1A1A1A' },
[506]: { name:'shulker_box', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'shulker_box', texSide:'shulker_box', texBottom:'shulker_box', color:'#806080' },
[507]: { name:'sculk', solid:true, transparent:false, lightLevel:0, hardness:0.2, texTop:'sculk', texSide:'sculk', texBottom:'sculk', color:'#0A1828' },
[508]: { name:'sculk_sensor', solid:false, transparent:false, lightLevel:0, hardness:0.2, texTop:'sculk_sensor_top', texSide:'sculk_sensor_side', texBottom:'sculk_sensor_bottom', color:'#104860' },
[509]: { name:'sculk_catalyst', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'sculk_catalyst_top', texSide:'sculk_catalyst_side', texBottom:'sculk_catalyst_bottom', color:'#0A4030' },
[510]: { name:'sculk_shrieker', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'sculk_shrieker_top', texSide:'sculk_shrieker_side', texBottom:'sculk_shrieker_bottom', color:'#0A2030' },
[511]: { name:'sculk_vein', solid:false, transparent:true, lightLevel:0, hardness:0.2, texTop:'sculk_vein', texSide:'sculk_vein', texBottom:'sculk_vein', color:'#0A2838' },
[512]: { name:'pointed_dripstone', solid:false, transparent:false, lightLevel:0, hardness:1.5, texTop:'pointed_dripstone_up_tip', texSide:'pointed_dripstone_up_tip', texBottom:'pointed_dripstone_up_tip', color:'#8A7A5A' },
[513]: { name:'budding_amethyst', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'budding_amethyst', texSide:'budding_amethyst', texBottom:'budding_amethyst', color:'#7848A0' },
[514]: { name:'small_amethyst_bud', solid:false, transparent:false, lightLevel:1, hardness:1.5, texTop:'small_amethyst_bud', texSide:'small_amethyst_bud', texBottom:'small_amethyst_bud', color:'#8858B0' },
[515]: { name:'medium_amethyst_bud', solid:false, transparent:false, lightLevel:2, hardness:1.5, texTop:'medium_amethyst_bud', texSide:'medium_amethyst_bud', texBottom:'medium_amethyst_bud', color:'#8858B0' },
[516]: { name:'large_amethyst_bud', solid:false, transparent:false, lightLevel:4, hardness:1.5, texTop:'large_amethyst_bud', texSide:'large_amethyst_bud', texBottom:'large_amethyst_bud', color:'#8858B0' },
[517]: { name:'amethyst_cluster', solid:false, transparent:false, lightLevel:5, hardness:1.5, texTop:'amethyst_cluster', texSide:'amethyst_cluster', texBottom:'amethyst_cluster', color:'#8858B0' },
[518]: { name:'copper_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'copper_block', texSide:'copper_block', texBottom:'copper_block', color:'#8A6A48' },
[519]: { name:'cut_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'cut_copper', texSide:'cut_copper', texBottom:'cut_copper', color:'#8A6A48' },
[520]: { name:'copper_grate', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'copper_grate', texSide:'copper_grate', texBottom:'copper_grate', color:'#8A6A48' },
[521]: { name:'copper_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'copper_door_bottom', texSide:'copper_door_bottom', texBottom:'copper_door_bottom', color:'#8A6A48' },
[522]: { name:'copper_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'copper_trapdoor', texSide:'copper_trapdoor', texBottom:'copper_trapdoor', color:'#8A6A48' },
[523]: { name:'copper_bulb', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'copper_bulb', texSide:'copper_bulb', texBottom:'copper_bulb', color:'#8A6A48' },
[524]: { name:'copper_lantern', solid:false, transparent:false, lightLevel:0, hardness:3.5, texTop:'copper_lantern', texSide:'copper_lantern', texBottom:'copper_lantern', color:'#8A6A48' },
[525]: { name:'copper_chain', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'copper_chain', texSide:'copper_chain', texBottom:'copper_chain', color:'#8A6A48' },
[526]: { name:'copper_bars', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'copper_bars', texSide:'copper_bars', texBottom:'copper_bars', color:'#8A6A48' },
[527]: { name:'chiseled_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'chiseled_copper', texSide:'chiseled_copper', texBottom:'chiseled_copper', color:'#8A6A48' },
[528]: { name:'lightning_rod', solid:false, transparent:false, lightLevel:0, hardness:3.0, texTop:'lightning_rod', texSide:'lightning_rod', texBottom:'lightning_rod', color:'#8A6A48' },
[529]: { name:'exposed_copper_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_copper_block', texSide:'exposed_copper_block', texBottom:'exposed_copper_block', color:'#6A5A3A' },
[530]: { name:'exposed_cut_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_cut_copper', texSide:'exposed_cut_copper', texBottom:'exposed_cut_copper', color:'#6A5A3A' },
[531]: { name:'exposed_copper_grate', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'exposed_copper_grate', texSide:'exposed_copper_grate', texBottom:'exposed_copper_grate', color:'#6A5A3A' },
[532]: { name:'exposed_copper_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_copper_door_bottom', texSide:'exposed_copper_door_bottom', texBottom:'exposed_copper_door_bottom', color:'#6A5A3A' },
[533]: { name:'exposed_copper_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'exposed_copper_trapdoor', texSide:'exposed_copper_trapdoor', texBottom:'exposed_copper_trapdoor', color:'#6A5A3A' },
[534]: { name:'exposed_copper_bulb', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_copper_bulb', texSide:'exposed_copper_bulb', texBottom:'exposed_copper_bulb', color:'#6A5A3A' },
[535]: { name:'exposed_copper_lantern', solid:false, transparent:false, lightLevel:0, hardness:3.5, texTop:'exposed_copper_lantern', texSide:'exposed_copper_lantern', texBottom:'exposed_copper_lantern', color:'#6A5A3A' },
[536]: { name:'exposed_copper_chain', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'exposed_copper_chain', texSide:'exposed_copper_chain', texBottom:'exposed_copper_chain', color:'#6A5A3A' },
[537]: { name:'exposed_copper_bars', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'exposed_copper_bars', texSide:'exposed_copper_bars', texBottom:'exposed_copper_bars', color:'#6A5A3A' },
[538]: { name:'exposed_chiseled_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_chiseled_copper', texSide:'exposed_chiseled_copper', texBottom:'exposed_chiseled_copper', color:'#6A5A3A' },
[539]: { name:'exposed_lightning_rod', solid:false, transparent:false, lightLevel:0, hardness:3.0, texTop:'exposed_lightning_rod', texSide:'exposed_lightning_rod', texBottom:'exposed_lightning_rod', color:'#6A5A3A' },
[540]: { name:'weathered_copper_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_copper_block', texSide:'weathered_copper_block', texBottom:'weathered_copper_block', color:'#4A5A4A' },
[541]: { name:'weathered_cut_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_cut_copper', texSide:'weathered_cut_copper', texBottom:'weathered_cut_copper', color:'#4A5A4A' },
[542]: { name:'weathered_copper_grate', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'weathered_copper_grate', texSide:'weathered_copper_grate', texBottom:'weathered_copper_grate', color:'#4A5A4A' },
[543]: { name:'weathered_copper_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_copper_door_bottom', texSide:'weathered_copper_door_bottom', texBottom:'weathered_copper_door_bottom', color:'#4A5A4A' },
[544]: { name:'weathered_copper_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'weathered_copper_trapdoor', texSide:'weathered_copper_trapdoor', texBottom:'weathered_copper_trapdoor', color:'#4A5A4A' },
[545]: { name:'weathered_copper_bulb', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_copper_bulb', texSide:'weathered_copper_bulb', texBottom:'weathered_copper_bulb', color:'#4A5A4A' },
[546]: { name:'weathered_copper_lantern', solid:false, transparent:false, lightLevel:0, hardness:3.5, texTop:'weathered_copper_lantern', texSide:'weathered_copper_lantern', texBottom:'weathered_copper_lantern', color:'#4A5A4A' },
[547]: { name:'weathered_copper_chain', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'weathered_copper_chain', texSide:'weathered_copper_chain', texBottom:'weathered_copper_chain', color:'#4A5A4A' },
[548]: { name:'weathered_copper_bars', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'weathered_copper_bars', texSide:'weathered_copper_bars', texBottom:'weathered_copper_bars', color:'#4A5A4A' },
[549]: { name:'weathered_chiseled_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_chiseled_copper', texSide:'weathered_chiseled_copper', texBottom:'weathered_chiseled_copper', color:'#4A5A4A' },
[550]: { name:'weathered_lightning_rod', solid:false, transparent:false, lightLevel:0, hardness:3.0, texTop:'weathered_lightning_rod', texSide:'weathered_lightning_rod', texBottom:'weathered_lightning_rod', color:'#4A5A4A' },
[551]: { name:'oxidized_copper_block', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_copper_block', texSide:'oxidized_copper_block', texBottom:'oxidized_copper_block', color:'#2A5A3A' },
[552]: { name:'oxidized_cut_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_cut_copper', texSide:'oxidized_cut_copper', texBottom:'oxidized_cut_copper', color:'#2A5A3A' },
[553]: { name:'oxidized_copper_grate', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'oxidized_copper_grate', texSide:'oxidized_copper_grate', texBottom:'oxidized_copper_grate', color:'#2A5A3A' },
[554]: { name:'oxidized_copper_door', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_copper_door_bottom', texSide:'oxidized_copper_door_bottom', texBottom:'oxidized_copper_door_bottom', color:'#2A5A3A' },
[555]: { name:'oxidized_copper_trapdoor', solid:true, transparent:true, lightLevel:0, hardness:3.0, texTop:'oxidized_copper_trapdoor', texSide:'oxidized_copper_trapdoor', texBottom:'oxidized_copper_trapdoor', color:'#2A5A3A' },
[556]: { name:'oxidized_copper_bulb', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_copper_bulb', texSide:'oxidized_copper_bulb', texBottom:'oxidized_copper_bulb', color:'#2A5A3A' },
[557]: { name:'oxidized_copper_lantern', solid:false, transparent:false, lightLevel:0, hardness:3.5, texTop:'oxidized_copper_lantern', texSide:'oxidized_copper_lantern', texBottom:'oxidized_copper_lantern', color:'#2A5A3A' },
[558]: { name:'oxidized_copper_chain', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'oxidized_copper_chain', texSide:'oxidized_copper_chain', texBottom:'oxidized_copper_chain', color:'#2A5A3A' },
[559]: { name:'oxidized_copper_bars', solid:false, transparent:true, lightLevel:0, hardness:5.0, texTop:'oxidized_copper_bars', texSide:'oxidized_copper_bars', texBottom:'oxidized_copper_bars', color:'#2A5A3A' },
[560]: { name:'oxidized_chiseled_copper', solid:true, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_chiseled_copper', texSide:'oxidized_chiseled_copper', texBottom:'oxidized_chiseled_copper', color:'#2A5A3A' },
[561]: { name:'oxidized_lightning_rod', solid:false, transparent:false, lightLevel:0, hardness:3.0, texTop:'oxidized_lightning_rod', texSide:'oxidized_lightning_rod', texBottom:'oxidized_lightning_rod', color:'#2A5A3A' },
[562]: { name:'nether_portal', solid:false, transparent:true, lightLevel:11, hardness:-1, texTop:'nether_portal', texSide:'nether_portal', texBottom:'nether_portal', color:'#5A2090' },
[563]: { name:'spawner', solid:true, transparent:true, lightLevel:0, hardness:5.0, texTop:'spawner', texSide:'spawner', texBottom:'spawner', color:'#203820' },
[564]: { name:'structure_block', solid:true, transparent:false, lightLevel:0, hardness:-1, texTop:'structure_block', texSide:'structure_block', texBottom:'structure_block', color:'#606060' },
[565]: { name:'reinforced_deepslate', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'reinforced_deepslate_top', texSide:'reinforced_deepslate_side', texBottom:'reinforced_deepslate_bottom', color:'#2A2A2A' },
[566]: { name:'pale_moss_block', solid:true, transparent:false, lightLevel:0, hardness:0.1, texTop:'pale_moss_block', texSide:'pale_moss_block', texBottom:'pale_moss_block', color:'#8A9A70' },
[567]: { name:'pale_hanging_moss', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'pale_hanging_moss', texSide:'pale_hanging_moss', texBottom:'pale_hanging_moss', color:'#8A9A70' },
[568]: { name:'creaking_heart', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'creaking_heart_top', texSide:'creaking_heart', texBottom:'creaking_heart', color:'#6A5A40' },
[569]: { name:'resin_block', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'resin_block', texSide:'resin_block', texBottom:'resin_block', color:'#D08020' },
[570]: { name:'resin_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'resin_bricks', texSide:'resin_bricks', texBottom:'resin_bricks', color:'#C07818' },
[571]: { name:'chiseled_resin_bricks', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'chiseled_resin_bricks', texSide:'chiseled_resin_bricks', texBottom:'chiseled_resin_bricks', color:'#B07010' },
[572]: { name:'bamboo_block', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'bamboo_block_top', texSide:'bamboo_block', texBottom:'bamboo_block', color:'#6A8A20' },
[573]: { name:'bamboo_mosaic', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'bamboo_mosaic', texSide:'bamboo_mosaic', texBottom:'bamboo_mosaic', color:'#7A9A28' },
[574]: { name:'bamboo_planks_b', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'bamboo_planks', texSide:'bamboo_planks', texBottom:'bamboo_planks', color:'#6A8A20' },
[575]: { name:'stripped_bamboo_block', solid:true, transparent:false, lightLevel:0, hardness:2.0, texTop:'stripped_bamboo_block_top', texSide:'stripped_bamboo_block', texBottom:'stripped_bamboo_block', color:'#7A9A28' },
[576]: { name:'powder_snow', solid:false, transparent:false, lightLevel:0, hardness:0.25, texTop:'powder_snow', texSide:'powder_snow', texBottom:'powder_snow', color:'#E0E8F0' },
[577]: { name:'spore_blossom', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'spore_blossom', texSide:'spore_blossom', texBottom:'spore_blossom', color:'#C060A0' },
[578]: { name:'azalea', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'azalea_top', texSide:'azalea_side', texBottom:'azalea_side', color:'#4A8A30' },
[579]: { name:'flowering_azalea', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'flowering_azalea_top', texSide:'flowering_azalea_side', texBottom:'flowering_azalea_side', color:'#5A9A38' },
[580]: { name:'big_dripleaf', solid:false, transparent:false, lightLevel:0, hardness:0.1, texTop:'big_dripleaf_top', texSide:'big_dripleaf_stem', texBottom:'big_dripleaf_stem', color:'#3A8A30' },
[581]: { name:'small_dripleaf', solid:false, transparent:false, lightLevel:0, hardness:0.1, texTop:'small_dripleaf_top', texSide:'small_dripleaf_side', texBottom:'small_dripleaf_side', color:'#3A8A30' },
[582]: { name:'hanging_roots', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'hanging_roots', texSide:'hanging_roots', texBottom:'hanging_roots', color:'#4A7020' },
[583]: { name:'glow_lichen', solid:false, transparent:true, lightLevel:7, hardness:0.2, texTop:'glow_lichen', texSide:'glow_lichen', texBottom:'glow_lichen', color:'#60A060' },
[584]: { name:'vine', solid:false, transparent:true, lightLevel:0, hardness:0.2, texTop:'vine', texSide:'vine', texBottom:'vine', color:'#3A6A18' },
[585]: { name:'lily_pad', solid:false, transparent:true, lightLevel:0, hardness:0, texTop:'lily_pad', texSide:'lily_pad', texBottom:'lily_pad', color:'#308830' },
[586]: { name:'frogspawn', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'frogspawn', texSide:'frogspawn', texBottom:'frogspawn', color:'#909040' },
[587]: { name:'turtle_egg', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'turtle_egg', texSide:'turtle_egg', texBottom:'turtle_egg', color:'#D0C8A0' },
[588]: { name:'sniffer_egg', solid:true, transparent:false, lightLevel:0, hardness:0.5, texTop:'sniffer_egg_not_cracked_top', texSide:'sniffer_egg_not_cracked_top', texBottom:'sniffer_egg_not_cracked_top', color:'#A09060' },
[589]: { name:'pink_petals', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'pink_petals', texSide:'pink_petals', texBottom:'pink_petals', color:'#E08898' },
[590]: { name:'wildflowers', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'wildflowers', texSide:'wildflowers', texBottom:'wildflowers', color:'#C0A030' },
[591]: { name:'closed_eyeblossom', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'closed_eyeblossom', texSide:'closed_eyeblossom', texBottom:'closed_eyeblossom', color:'#6A5A20' },
[592]: { name:'open_eyeblossom', solid:false, transparent:false, lightLevel:1, hardness:0, texTop:'open_eyeblossom', texSide:'open_eyeblossom', texBottom:'open_eyeblossom', color:'#C8A820' },
[593]: { name:'firefly_bush', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'firefly_bush', texSide:'firefly_bush', texBottom:'firefly_bush', color:'#4A6A20' },
[594]: { name:'leaf_litter', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'leaf_litter', texSide:'leaf_litter', texBottom:'leaf_litter', color:'#8A6A30' },
[595]: { name:'pale_moss_carpet', solid:false, transparent:false, lightLevel:0, hardness:0, texTop:'pale_moss_carpet', texSide:'pale_moss_carpet', texBottom:'pale_moss_carpet', color:'#8A9A70' },
[596]: { name:'trial_spawner', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'trial_spawner_top_inactive', texSide:'trial_spawner_side_inactive', texBottom:'trial_spawner_side_inactive', color:'#2A3A4A' },
[597]: { name:'vault', solid:true, transparent:false, lightLevel:0, hardness:50, texTop:'vault_top', texSide:'vault_side_off', texBottom:'vault_bottom', color:'#3A2A4A' },
[598]: { name:'crafter', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'crafter_top', texSide:'crafter_north', texBottom:'crafter_bottom', color:'#6A5A40' },
[599]: { name:'heavy_core', solid:true, transparent:false, lightLevel:0, hardness:10, texTop:'heavy_core', texSide:'heavy_core', texBottom:'heavy_core', color:'#2A2A3A' },
[600]: { name:'packed_mud', solid:true, transparent:false, lightLevel:0, hardness:1.0, texTop:'packed_mud', texSide:'packed_mud', texBottom:'packed_mud', color:'#7A6840' },
[601]: { name:'mud_bricks_b', solid:true, transparent:false, lightLevel:0, hardness:1.5, texTop:'mud_bricks', texSide:'mud_bricks', texBottom:'mud_bricks', color:'#8A7848' },
[602]: { name:'suspicious_sand', solid:true, transparent:false, lightLevel:0, hardness:0.25, texTop:'suspicious_sand_0', texSide:'suspicious_sand_0', texBottom:'suspicious_sand_0', color:'#C8B888' },
[603]: { name:'suspicious_gravel', solid:true, transparent:false, lightLevel:0, hardness:0.25, texTop:'suspicious_gravel_0', texSide:'suspicious_gravel_0', texBottom:'suspicious_gravel_0', color:'#807868' },
};
// All blocks available in creative inventory (425 blocks)
export const CREATIVE_BLOCKS = [
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 267, 271, 272, 273, 274, 275, 278, 283, 284, 285, 292, 293, 296, 297, 298, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 347, 348, 349, 350, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 369, 372, 375, 378, 381, 384, 387, 390, 393, 396, 398, 399, 400, 404, 431, 432, 433, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 509, 510, 513, 518, 519, 520, 521, 522, 523, 527, 529, 530, 531, 532, 533, 534, 538, 540, 541, 542, 543, 544, 545, 549, 551, 552, 553, 554, 555, 556, 560, 563, 564, 565, 566, 568, 569, 570, 571, 572, 573, 574, 575, 587, 588, 596, 597, 598, 599, 600, 601, 602, 603
];
// Block categories for creative inventory tabs
export const BLOCK_CATEGORIES: Record<string, number[]> = {
'Natural': [1, 2, 4, 6, 8, 11, 12, 18, 19, 20, 29, 30, 31, 32, 41, 43, 44, 45, 47, 24, 28, 16],
'Ores': [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 577, 599],
'Wood': [82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 337, 338, 339, 340, 341, 342, 433, 438, 439, 574],
'Wool': [120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135],
'Concrete': [136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151],
'Glass': [201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218],
'Bricks': [14, 17, 221, 222, 223, 224, 225, 228, 230, 234, 235, 320, 321, 322, 323, 325, 348, 399, 570, 571, 601],
'Functional': [241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261],
'Redstone': [54, 65, 73, 263, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 279, 280, 281, 282],
'Nether': [56, 57, 58, 75, 233, 234, 235, 236, 237, 238, 239, 240, 288, 289, 291, 317, 318, 319, 320, 321, 322, 323, 329, 330, 332, 334, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 562],
'End': [347, 348, 349, 350, 351, 352, 353],
'Plants': [19, 42, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 402, 403, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 425, 426, 427, 428, 429, 430, 431, 432, 433, 577, 578, 579, 580, 581, 582, 584, 585, 590],
'Lights': [265, 266, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 328, 420, 524, 535, 546, 557],
'Mineral Blocks': [67, 68, 69, 70, 71, 72, 73, 518, 75, 76, 77, 78, 79, 324, 327, 488, 518, 529, 540, 551],
'Copper': [55, 66, 518, 79, 299, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560],
'Deepslate': [8, 9, 10, 59, 60, 61, 62, 63, 64, 65, 66, 228, 229, 230, 231, 232, 565],
'Terracotta': [168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200],
};