![]() |
VOOZH | about |
Breaking, digging, punching, or mining is a common activity in Minecraft, performed (by default) by holding the left mouse button or right trigger while the crosshair is pointing at a block, or by long-pressing on the block on touch screens. Breaking is the primary way to remove unwanted blocks and acquire blocks for future placement or crafting.
By holding down the destroy button while looking at a block within range, the player's hand begins swinging, making a repetitive "thump" sound as the player hits the block. Cracks appear on the block, which show that it is being broken.
In Java Edition, this range is 5.2 blocks in Creative mode, and 4.5 blocks otherwise. In Bedrock Edition, the range is 5 blocks when using a keyboard/mouse or controller input; when using touch input, the range is 12 blocks in Creative mode and 6 blocks otherwise.
Targeted blocks are marked with a wireframe cube outline; in Bedrock Edition, this can be changed to a white highlight by disabling the "Outline Selection" option in video settings. After the cracking animation is finished and completely covers the block, it breaks and depending on the type of block and the tool used to do so, it may drop an item.
Although many blocks can be harvested with bare hands, certain ones require the use of a tool. In particular, to obtain resources from stone or metal-type blocks, the player must use a pickaxe. For harder blocks like iron ore or obsidian, a pickaxe made from a higher-tier material is required.
The player can use shovels, axes and hoes to speed up the breaking of dirt-type blocks, wood, and plant-type blocks, respectively. However, tools are not required to get the resource drop (with the exception of snow and snow blocks, which require a shovel to get a drop). A downside to this is that tools also have durability, so they eventually wear out.
The progress for breaking a block is reset if the target block changes while breaking. Progress is also reset whenever the breaking control is released. The player can move freely while breaking blocks. The player can even dig while jumping, swimming, or riding, although this reduces the breaking speed.
In Survival mode, however, some blocks are unbreakable, like bedrock, and in Adventure mode all blocks are unbreakable unless the player has an item or a tool with the can_destroy tag. In Spectator mode a player can't break blocks in any way, and in Creative mode all blocks are breakable unless the player is holding a sword, spear, debug stick, trident, or mace.
The player's mining efficiency (digging speed) is controlled by three factors: the block being broken, the item the player is currently wielding, and the mining penalties affecting the player. Every block has a hardness value, which determines the base amount of breaking time if the player hits it with their bare hands.
The base time in seconds is the block's hardness multiplied by:
Assuming that the player can harvest the block, the next check is whether the player's tool increases the breaking speed for the block. See Best tools for a full list.
If the tool helps, then it increases digging speed by a constant multiplier, given in the following table:
If a proper tool is used, the tool speed is further increased by the Efficiency enchantment. If the level of Efficiency is not 0, then the level squared plus 1 is added to the tool speed. For example, Efficiency I adds 2 to the value, while Efficiency V adds 26. The speed is also increased by (20Γlevel)% of Haste in Java Edition or multiplied by (0.2Γlevel+1)Γ(1.2level) in Bedrock Edition.
Mining Fatigue decreases the speed by multiplying by (0.3min(level,4)) in Java Edition or by (0.3level)Γ(0.7level) in Bedrock Edition. In Java Edition, increasing the effect level from II to III reduces the mining speed by a factor of 0.03 rather than 0.3.[1] Therefore, with level III the speed is reduced to 0.0027Γ of normal speed instead.
If the player's head is underwater and they are not wearing a helmet with the Aqua Affinity enchantment, breaking a block takes 5 times as long. If the player's feet are not touching the ground, an additional 5Γ penalty is added; this causes players floating in water to break blocks 25Γ slower than if they had been standing on land.
The total time to break a block is always a multiple of 1β20 of a second, or 1 game tick; any remainder is rounded up to the next tick.
When breaking a block, a tool and its enchantments do its speed value as "damage" to a block every game tick, and when that value exceeds the block's hardness times 30, the block breaks. If the tool and enchantments immediately exceed the hardness times 30, the block breaks with no delay; otherwise a 6 tick (3β10 second) delay occurs before the next block begins to break.
For example, a player with Haste II holding an Efficiency V diamond pickaxe (or netherite pickaxe) can break stone instantly, as the damage is (8+26)Γ(1+0.4)=47.6, which is greater than the base hardness of stone (1.5) times 30 (which is 45). Players in Creative mode always break blocks instantly regardless of tools or status effects, except for when wielding a sword, spear, debug stick, trident or a mace, in which case the player is unable to break anything.
Combining all of the information above yields the following pseudo-code to calculate how long in seconds a player takes to mine a certain block. All operations are floating-point, not integer.
if (isBedrockEdition): if (isBestTool): speedMultiplier = toolMultiplier if (not canHarvest): speedMultiplier = 1 else if (toolEfficiency): speedMultiplier += efficiencyLevel ^ 2 + 1 else: speedMultiplier = 1 else: speedMultiplier = mining speed for block determined by the tool item component if (speedMultiplier > 1): speedMultiplier += attribute(mining_efficiency) # normally efficiencyLevel ^ 2 + 1 if (haste or conduitPower): speedMultiplier *= 0.2 * max(hasteLevel, conduitPowerLevel) + 1 if (miningFatigue): # In Java Edition, Mining Fatigue actually follows hardcoded values for levels I, II, III, and IV. They are 0.3, 0.09, 0.0027, and 0.00081 respectively.[1] speedMultiplier *= 0.3 ^ min(miningFatigueLevel, 4)β[Java Edition only] speedMultiplier *= 0.3 ^ miningFatigueLevelβ[Bedrock Edition only] speedMultiplier *= attribute(block_break_speed)β[Java Edition only] # normally 1 if (inWater): speedMultiplier *= attribute(submerged_mining_speed)β[Java Edition only] # normally 0.2, or 1 with aqua affinity if (not hasAquaAffinity): speedMultiplier /= 5β[Bedrock Edition only] if (not onGround): speedMultiplier /= 5 damage = speedMultiplier / blockHardness if (canHarvest): damage /= 30 else: damage /= 100 if (haste or conduitPower): damage *= 1.2 ^ max(hasteLevel, conduitPowerLevel)β[Bedrock Edition only] if (miningFatigue): damage *= 0.7 ^ miningFatigueLevelβ[Bedrock Edition only] # Instant breaking if (damage >= 1): return 0 ticks = roundup(1 / damage) seconds = ticks / 20 return seconds
The Java Edition values follow hardcoded values for levels I, II, III, and IV.[1]
The following table shows the most efficient tools to break specific blocks.
| Tool | Material | Blocks | Notes |
|---|---|---|---|
| π Image Bucket |
Liquid | Not actually broken. Liquids cannot be targeted at all. | |
| Snow | Can only be obtained with a bucket. | ||
| π Image Axe |
Plants and fungi | Shears are required to collect vines and glow lichen. Silk Touch is required for whole melons without crafting, and giant mushroom blocks. | |
| Wood |
|
Bookshelves, campfires, soul campfires, chiseled bookshelves and creaking hearts require Silk Touch to drop as an item. | |
| Bees | Nests require Silk Touch to drop as an item. | ||
| π Image Pickaxe |
Ice | All require Silk Touch to drop as an item. | |
| Metal I |
|
Any pickaxe is required to collect a block. | |
| Metal II | Stone, copper, iron, diamond, or netherite pickaxe is required to collect a block. | ||
| Metal III | Iron, diamond, or netherite pickaxe is required to collect a block. | ||
| Metal IV | Diamond or netherite pickaxe is required to collect a block. | ||
| Chemistry equipment β[BE & edu only] | These blocks, except lab table, can be mined without a pickaxe, but it takes a long time. | ||
| Rails | |||
| Rock I |
|
Pickaxe is required to collect a block, except for buttons, packed mud, and pointed dripstone. Mining a monster spawner with a pickaxe drops 15-43 experience, but the monster spawner itself does not drop, even with Silk Touch. Budding amethyst cannot be collected, even with Silk Touch. For amethyst buds, amethyst clusters, ender chests, coral blocks, coal ore, deepslate coal ore, nether quartz ore, nether gold ore, deepslate, and stone to drop themselves, they must be mined with a pickaxe enchanted with Silk Touch. Gilded blackstone has a chance to drop golden nuggets. | |
| Rock II | Stone, copper, iron, diamond, or netherite pickaxe is required to collect a block. For the copper ore, deepslate copper ore, lapis lazuli ore, deepslate lapis lazuli ore, iron ore, and deepslate iron ore, Silk Touch is needed to collect the blocks themselves, or they drop their respective minerals. | ||
| Rock III | Iron, diamond, or netherite pickaxe is required to obtain drops. With the exception of the block of raw gold, a Silk Touch pickaxe is required to collect the ores themselves, or they drop their respective minerals. | ||
| Rock IV | Diamond or netherite pickaxe is required to collect a block. For glowing obsidian, Silk Touch is needed to collect the block, or it drops regular obsidian. | ||
| Other | These can be collected without a tool, but pickaxes mine faster. | ||
| π Image Shears |
Leaves | π Image Leaves |
|
| Cobweb | Can also be washed away by water. Sword or water is required to collect string. Shears or Silk Touch enchantment are required to collect cobweb. | ||
| Wool | |||
| π Image Shovel |
Ground |
|
Silk Touch-enchanted tools are required to collect clay, grass blocks, mycelium and podzol; otherwise it drops 4 clay balls for clay and dirt for the rest. Silk Touch-enchanted tools are also required to collect dirt path blocks, otherwise it drops dirt.β[BE & edu only]Dirt path always drop dirt in Java Edition, even with Silk Touch-enchanted tools. Farmland always drop dirt when mined, even with Silk Touch. Suspicious sand and suspicious gravel cannot be obtained through mining, even with Silk Touch. |
| Snow | Shovel is required to collect snowballs from snow-type blocks, and Silk Touch-enchanted shovels are required to collect the block themselves. β[JE only] Snow always drop snowballs in Bedrock Edition, even with Silk Touch-enchanted tools. | ||
| π Image Sword |
Cobweb | Can also be washed away by water. Sword or water is required to collect string. Shears or Silk Touch enchantment are required to collect cobweb. | |
| Plants | Damages the sword twice per bamboo broken. | ||
| Other |
|
Infested blocks cannot be obtained in Survival, even with Silk Touch. | |
| π Image Hoe |
Plants, sponges and fungi |
|
Shears or any Silk Touch enchanted tool are required to collect leaves. Silk Touch is required to mine sculk-related blocks, or they drop experience. Sculk veins drop no experience. |
| Any (all tools are equally efficient) | Circuits | Can also be destroyed by liquids. | |
| Glass |
|
For glass, glass panes, glowstone, sea lanterns, stained glass and stained glass panes to drop themselves, they must be mined with a tool enchanted with Silk Touch. | |
| Plants | In Adventure mode, the sand block underneath the cactus is required to be broken with a shovel for the cactus to be broken. | ||
| Other |
|
Carpet can also be washed away by water. Dragon eggs cannot usually be mined directly because hitting it causes it to teleport. Mining is possible only if its entire teleportation radius is filled with blocks. Turtle eggs must be mined with Silk Touch. Frosted ice, reinforced deepslate, trial spawners, and vaults never drop as an item, even with Silk Touch. Cake cannot be obtained after being placed, even with Silk Touch. | |
| Any (instantly breaks; doesn't make tools lose durability) | Redstone components | These blocks can also be washed away by liquids.β[JE only] Breaking tripwire without shears causes the mechanism to turn on and off quickly. | |
| Plants, corals and fungi |
|
These blocks, except sugar cane, mangrove propagules, kelp, seagrass, tall seagrass, sea pickles, and non-solid coral blocks, can be washed out by water. Ferns, large ferns, grass and tall grass must be mined with shears; or they randomly drop seeds. Seagrass, bushes, short dry grass, tall dry grass and nether sprouts drop nothing when mined without shears.
Tall grass, tall seagrass, and large ferns drop two of their respective plant when mined with shears. | |
| Other |
|
Flower pots, torches, soul torches, colored torches, underwater torches, and frogspawn can be washed out by water. Infested blocks and frogspawn cannot be obtained in Survival, even with Silk Touch. Decorated pots drop their respective sherds and bricks when mined with a tool not enchanted with Silk Touch, but not by any other method. Fire and soul fire are technical blocks, and cannot be obtained in the inventory at all.β[JE only] | |
| None (unbreakable) | Commands only |
|
Light blocks cannot be targeted if a light block is not held. |
| Other |
|
Nether portal can be broken by placing water or lava in place of it, or by explosions. Air, bubble column, cave air, end gateway, end portal, nether portal, and void air are technical blocks, and cannot be obtained in the inventory at all.β[JE only] |
The following table shows the time it takes to break each type of block. If there is no tool that helps speed up mining that block, the "tool" column is left empty. A few blocks are harvested faster with shears or a sword; these speeds are listed in the last two columns if different than "nothing". Any blocks with a breaking time of 0.05 seconds or less can be broken without the 3β10 second (or 6 ticks) delay that occurs between each broken block; see instant breaking above. Any block that has a hardness of infinity β actually has a hardness of -1. However, the breaking ticks start from 0, which means that effectively it can never break.
Legend:
| Block | Hardness | Tool | time (sec)[A] | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Default | Wooden | Stone | Copper | Iron | Diamond | Netherite | Golden | π ItemSprite shears.png: Sprite image for shears in Minecraft Shears |
π ItemSprite wooden-sword.png: Sprite image for wooden-sword in Minecraft Sword | |||
| π Image Allow |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Barrier |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Bedrock |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Border |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Client_request_placeholder_block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Command Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Chain Command Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Deny |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image End Gateway |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image End Portal |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image End Portal Frame |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Invisible Bedrock |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Jigsaw Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Light |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Moving Piston |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Nether Portal |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Repeating Command Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Structure Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Test Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Test Instance Block |
-1 (infinite) | β | β | β | β | β | β | β | β | β | β | β |
| π Image Lava[note 1] |
100 | β | 150 | β | β | β | β | β | β | β | β | β |
| π Image Water[note 1] |
100 | β | 150 | β | β | β | β | β | β | β | β | β |
| π Image Reinforced Deepslate |
55 | β | 82.5 | β | β | β | β | β | β | β | β | β |
| π Image Block of Netherite |
50 | π Image |
250 | 125 | 62.5 | 50 | 41.7 | 9.4 | 8.35 | 20.85 | β | β |
| π Image Crying Obsidian |
50 | π Image |
250 | 125 | 62.5 | 50 | 41.7 | 9.4 | 8.35 | 20.85 | β | β |
| π Image Obsidian |
50 | π Image |
250 | 125 | 62.5 | 50 | 41.7 | 9.4 | 8.35 | 20.85 | β | β |
| π Image Respawn Anchor |
50 | π Image |
250 | 125 | 62.5 | 50 | 41.7 | 9.4 | 8.35 | 20.85 | β | β |
| π Image Trial Spawner |
50 | β | 75 | β | β | β | β | β | β | β | β | β |
| π Image Vault |
50 | β | 75 | β | β | β | β | β | β | β | β | β |
| π Image Glowing Obsidian |
35 | π Image |
175 | 87.5 | 43.75 | 35 | 29.2 | 6.6 | 5.85 | 14.6 | β | β |
| π Image Ancient Debris |
30 | π Image |
150 | 75 | 37.5 | 30 | 25 | 5.65 | 5 | 12.5 | β | β |
| π Image Ender Chest |
22.5 | π Image |
33.75 | 16.9 | 8.45 | 6.75 | 5.65 | 4.25 | 3.75 | 2.85 | β | β |
| π Image Creaking Heart |
10 | π Image |
15 | 7.5 | 3.75 | 3 | 2.5 | 1.9 | 1.7 | 1.25 | β | β |
| π Image Hardened Glass |
10 | β | 15 | β | β | β | β | β | β | β | β | β |
| π Image Hardened Glass Pane |
10 | β | 15 | β | β | β | β | β | β | β | β | β |
| π Image Hardened Stained Glass |
10 | β | 15 | β | β | β | β | β | β | β | β | β |
| π Image Hardened Stained Glass Pane |
10 | β | 15 | β | β | β | β | β | β | β | β | β |
| π Image Heavy Core |
10 | π Image |
15 | 7.5 | 3.75 | 3 | 2.5 | 1.9 | 1.7 | 1.25 | β | β |
| π Image Anvil |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Bell |
5 | π Image |
7.5 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Block of Coal |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Block of Diamond |
5 | π Image |
25 | 12.5 | 6.25 | 5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Emerald |
5 | π Image |
25 | 12.5 | 6.25 | 5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Iron |
5 | π Image |
25 | 12.5 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Raw Copper |
5 | π Image |
25 | 12.5 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Raw Iron |
5 | π Image |
25 | 12.5 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Raw Gold |
5 | π Image |
25 | 12.5 | 6.25 | 5 | 1.25 | 0.95 | 0.85 | 2.1 | β | β |
| π Image Block of Redstone |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Copper Bars |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Copper Chain |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Deprecated Anvil |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Enchanting Table |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Iron Bars |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Iron Chain |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Iron Door |
5 | π Image |
7.5 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Iron Trapdoor |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Monster Spawner |
5 | π Image |
25 | 3.75 | 1.9 | 1.5 | 1.25 | 0.95 | 0.85 | 0.65 | β | β |
| π Image Deepslate Coal Ore |
4.5 | π Image |
22.5 | 3.4 | 1.7 | 1.35 | 1.15 | 0.85 | 0.75 | 0.6 | β | β |
| π Image Deepslate Copper Ore |
4.5 | π Image |
22.5 | 11.25 | 1.7 | 1.35 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Diamond Ore |
4.5 | π Image |
22.5 | 11.25 | 5.65 | 4.5 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Emerald Ore |
4.5 | π Image |
22.5 | 11.25 | 5.65 | 4.5 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Gold Ore |
4.5 | π Image |
22.5 | 11.25 | 5.65 | 4.5 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Iron Ore |
4.5 | π Image |
22.5 | 11.25 | 1.7 | 1.35 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Lapis Lazuli Ore |
4.5 | π Image |
22.5 | 11.25 | 1.7 | 1.35 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Deepslate Redstone Ore |
4.5 | π Image |
22.5 | 11.25 | 5.65 | 4.5 | 1.15 | 0.85 | 0.75 | 1.9 | β | β |
| π Image Cobweb |
4 | β | 20 | β | β | β | β | β | β | β | 0.4 | 0.4 |
| π Image Blast Furnace |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Chiseled Deepslate |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cobbled Deepslate |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cobbled Deepslate Slab |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cobbled Deepslate Stairs |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cobbled Deepslate Wall |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Copper Lantern |
3.5 | π Image |
5.25 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cracked Deepslate Bricks |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Cracked Deepslate Tiles |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Brick Slab |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Brick Stairs |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Brick Wall |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Bricks |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Tiles |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Tile Slab |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Tile Stairs |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Deepslate Tile Wall |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Dispenser |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Dropper |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Furnace |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Lantern |
3.5 | π Image |
5.25 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Lodestone |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Polished Deepslate |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Polished Deepslate Slab |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Polished Deepslate Stairs |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Polished Deepslate Wall |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Smoker |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Soul Lantern |
3.5 | π Image |
5.25 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Stonecutter |
3.5 | π Image |
17.5 | 2.65 | 1.35 | 1.05 | 0.9 | 0.7 | 0.6 | 0.45 | β | β |
| π Image Beacon |
3 | β | 4.5 | β | β | β | β | β | β | β | β | β |
| π Image Block of Copper |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Block of Gold |
3 | π Image |
15 | 7.5 | 3.75 | 3 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Block of Lapis Lazuli |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Chiseled Copper |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Coal Ore |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Conduit |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Copper Bulb |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Copper Chest |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Copper Door |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Copper Grate |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Copper Golem Statue |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Copper Ore |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Copper Trapdoor |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Cut Copper |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Cut Copper Slab |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Cut Copper Stairs |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Deepslate |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Diamond Ore |
3 | π Image |
15 | 7.5 | 3.75 | 3 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Dragon Egg[note 2] |
3 | β | 4.5 | β | β | β | β | β | β | β | β | β |
| π Image Emerald Ore |
3 | π Image |
15 | 7.5 | 3.75 | 3 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image End Stone |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image End Stone Brick Slab |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image End Stone Brick Stairs |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image End Stone Brick Wall |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image End Stone Bricks |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Gold Ore |
3 | π Image |
15 | 7.5 | 3.75 | 3 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Hopper |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Iron Ore |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Lapis Lazuli Ore |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Lightning Rod |
3 | π Image |
15 | 7.5 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Nether Gold Ore |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Nether Quartz Ore |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Nether Reactor Core |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Observer |
3 | π Image |
15 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Redstone Ore |
3 | π Image |
15 | 7.5 | 3.75 | 3 | 0.75 | 0.6 | 0.5 | 1.25 | β | β |
| π Image Sculk Catalyst |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Sculk Shrieker |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Wooden Door |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Wooden Trapdoor |
3 | π Image |
4.5 | 2.25 | 1.15 | 0.9 | 0.75 | 0.6 | 0.5 | 0.4 | β | β |
| π Image Blue Ice |
2.8 | π Image |
4.2 | 2.1 | 1.05 | 0.85 | 0.7 | 0.55 | 0.5 | 0.35 | β | β |
| π Image Barrel |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Cartography Table |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Chest |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Compound Creator |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Crafting Table |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Element Constructor |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Fletching Table |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Heat Block |
2.5 | π Image |
12.5 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Lab Table |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Lectern |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Loom |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Material Reducer |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Smithing Table |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Trapped Chest |
2.5 | π Image |
3.75 | 1.9 | 0.95 | 0.75 | 0.65 | 0.5 | 0.45 | 0.35 | β | β |
| π Image Bamboo Mosaic |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Bamboo Mosaic Stairs |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Bamboo Mosaic Slab |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Blackstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Block of Bamboo |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Block of Stripped Bamboo |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Bone Block |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Brick Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Brick Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Brick Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Bricks |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Campfire |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cauldron |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Chiseled Nether Bricks |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cobblestone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cobblestone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cobblestone Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cobblestone Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Copper Sink |
2 | β | 10 | β | β | β | β | β | β | β | β | β |
| π Image Cut Red Sandstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Cut Sandstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Dyed Shulker Box |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Fence Gates |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Grindstone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Jukebox |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Logs |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Mossy Cobblestone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Mossy Cobblestone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Mossy Cobblestone Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Mossy Cobblestone Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Nether Brick Fence |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Nether Brick Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Nether Brick Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Nether Brick Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Nether Bricks |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Petrified Oak Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Planks |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Polished Blackstone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Polished Blackstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Polished Blackstone Brick Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Polished Blackstone Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Polished Blackstone Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Purpur Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Quartz Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Red Nether Brick Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Red Nether Brick Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Red Nether Brick Wall |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Red Nether Bricks |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Red Sandstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Sandstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Shulker Box |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Shelf |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Quartz Block |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Quartz Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Quartz Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Red Sandstone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Red Sandstone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Red Sandstone Stairs |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Stone |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Smooth Stone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Soul Campfire |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Stems |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Stone Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Stone Brick Slab |
2 | π Image |
10 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Stripped Log |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Stripped Wood |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Wood |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Wooden Fences |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Wooden Slab |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Wooden Stairs |
2 | π Image |
3 | 1.5 | 0.75 | 0.6 | 0.5 | 0.4 | 0.35 | 0.25 | β | β |
| π Image Concrete |
1.8 | π Image |
9 | 1.35 | 0.7 | 0.55 | 0.45 | 0.35 | 0.3 | 0.25 | β | β |
| π Image Amethyst Bud |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Amethyst Cluster |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Andesite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Andesite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Andesite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Andesite Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Blackstone |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Blackstone Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Blackstone Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Block of Amethyst |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Bookshelf |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Budding Amethyst |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Calibrated Sculk Sensor |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Bookshelf |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Cinnabar |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Polished Blackstone |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Purpur |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Resin Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Stone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Sulfur |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Tuff |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Chiseled Tuff Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cinnabar Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Coral Block |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cracked Polished Blackstone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Cracked Stone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Crafter |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Dark Prismarine |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Dark Prismarine Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Dark Prismarine Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Dead Coral Block |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Deprecated Purpur Block 2 |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Diorite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Diorite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Diorite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Diorite Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Dripstone Block |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Gilded Blackstone[note 3] |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Granite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Granite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Granite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Granite Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Infested Deepslate |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mossy Stone Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mossy Stone Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mossy Stone Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mossy Stone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mud Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mud Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mud Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Mud Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Piston |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Piston Head |
1.5 | β | 2.25 | β | β | β | β | β | β | β | β | β |
| π Image Pointed Dripstone |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Andesite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Andesite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Andesite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Blackstone Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Blackstone Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Cinnabar |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Cinnabar Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Cinnabar Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Cinnabar Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Diorite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Diorite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Diorite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Granite |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Granite Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Granite Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Sulfur |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Sulfur Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Sulfur Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Sulfur Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Tuff |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Tuff Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Polished Tuff Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Potent Sulfur |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Prismarine Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Purpur Block |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Purpur Pillar |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Purpur Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Resin Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Resin Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Resin Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Resin Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sculk Sensor |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Smooth Stone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sticky Piston |
1.5 | π Image |
2.25 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Stone |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Stone Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Stone Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Stone Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Stone Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Sulfur Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Bricks |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Brick Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Brick Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Brick Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Slab |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Stairs |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Tuff Wall |
1.5 | π Image |
7.5 | 1.15 | 0.6 | 0.45 | 0.4 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Glazed Terracotta |
1.4 | π Image |
7 | 1.05 | 0.55 | 0.45 | 0.35 | 0.3 | 0.25 | 0.2 | β | β |
| π Image Basalt |
1.25 | π Image |
6.25 | 0.95 | 0.5 | 0.4 | 0.35 | 0.25 | 0.25 | 0.2 | β | β |
| π Image Polished Basalt |
1.25 | π Image |
6.25 | 0.95 | 0.5 | 0.4 | 0.35 | 0.25 | 0.25 | 0.2 | β | β |
| π Image Smooth Basalt |
1.25 | π Image |
6.25 | 0.95 | 0.5 | 0.4 | 0.35 | 0.25 | 0.25 | 0.2 | β | β |
| π Image Stained Terracotta |
1.25 | π Image |
6.25 | 0.95 | 0.5 | 0.4 | 0.35 | 0.25 | 0.25 | 0.2 | β | β |
| π Image Terracotta |
1.25 | π Image |
6.25 | 0.95 | 0.5 | 0.4 | 0.35 | 0.25 | 0.25 | 0.2 | β | β |
| π Image Bamboo |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | 0.05 |
| π Image Banners |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Carved Pumpkin |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | 1 |
| π Image Chalkboard |
1.15 | π Image |
1.75 | 0.9 | 0.45 | 0.35 | 0.3 | 0.25 | 0.2 | 0.15 | β | β |
| π Image Hanging Signs |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image info_update |
1 | β | 1.5 | β | β | β | β | β | β | β | β | β |
| π Image info_update2 |
1 | β | 1.5 | β | β | β | β | β | β | β | β | β |
| π Image Infested Cobblestone |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Jack o'Lantern |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | 1 |
| π Image Melon |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | 1 |
| π Image Mob Head |
1 | β | 1.5 | β | β | β | β | β | β | β | β | β |
| π Image Ominous Banner |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Packed Mud |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Player Head |
1 | β | 1.5 | β | β | β | β | β | β | β | β | β |
| π Image Pumpkin |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | 1 |
| π Image Shroomlight |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Signs |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Wart Block |
1 | π Image |
1.5 | 0.75 | 0.4 | 0.3 | 0.25 | 0.2 | 0.2 | 0.15 | β | β |
| π Image Block of Quartz |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Note Block |
0.8 | π Image |
1.2 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Quartz Stairs |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Red Sandstone |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Red Sandstone Stairs |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Sandstone |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Sandstone Stairs |
0.8 | π Image |
4 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Wool |
0.8 | β | 1.2 | β | β | β | β | β | β | β | 0.25 | β |
| π Image Wool Slab |
0.8 | β | 1.2 | β | β | β | β | β | β | β | 0.25 | β |
| π Image Wool Stairs |
0.8 | β | 1.2 | β | β | β | β | β | β | β | 0.25 | β |
| π Image Calcite |
0.75 | π Image |
3.75 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Infested Stone |
0.75 | π Image |
1.15 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Infested Stone Bricks |
0.75 | π Image |
1.15 | 0.6 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Activator Rail |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Detector Rail |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Mangrove Roots |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Muddy Mangrove Roots |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Powered Rail |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Rail |
0.7 | π Image |
1.05 | 0.55 | 0.3 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Dirt Path |
0.65 | π Image |
1 | 0.5 | 0.25 | 0.2 | 0.2 | 0.15 | 0.15 | 0.1 | β | β |
| π Image Beehive |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Clay |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Composter |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Farmland |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Grass Block |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Gravel[note 3] |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Honeycomb Block |
0.6 | β | 0.9 | β | β | β | β | β | β | β | β | β |
| π Image Mycelium |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Sponge |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Wet Sponge |
0.6 | π Image |
0.9 | 0.45 | 0.25 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | β | β |
| π Image Brewing Stand |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Stone Button |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Cake |
0.5 | β | 0.75 | β | β | β | β | β | β | β | β | β |
| π Image Coarse Dirt |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Concrete Powder |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Dirt |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Dried Kelp Block |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Hay Bale |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Ice |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Packed Ice |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Frosted Ice |
0.5 | β | 0.75 | β | β | β | β | β | β | β | β | β |
| π Image Lever |
0.5 | β | 0.75 | β | β | β | β | β | β | β | β | β |
| π Image Magma Block |
0.5 | π Image |
2.5 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Mud |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Target |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Turtle Egg |
0.5 | β | 0.75 | β | β | β | β | β | β | β | β | β |
| π Image Sniffer Egg |
0.5 | β | 0.75 | β | β | β | β | β | β | β | β | β |
| π Image Podzol |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Rooted Dirt |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Sand |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Soul Sand |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Soul Soil |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Stone Pressure Plate |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Heavy Weighted Pressure Plate |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Light Weighted Pressure Plate |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Wooden Pressure Plate |
0.5 | π Image |
0.75 | 0.4 | 0.2 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | β | β |
| π Image Cactus |
0.4 | β | 0.6 | β | β | β | β | β | β | β | β | β |
| π Image Ladder |
0.4 | π Image |
0.6 | 0.3 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | β | β |
| π Image Chorus Flower |
0.4 | π Image |
0.6 | 0.3 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | β | β |
| π Image Chorus Plant |
0.4 | π Image |
0.6 | 0.3 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | β | β |
| π Image Netherrack |
0.4 | π Image |
2 | 0.3 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | β | β |
| π Image Nylium |
0.4 | π Image |
2 | 0.3 | 0.15 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | β | β |
| π Image Bee Nest |
0.3 | π Image |
0.45 | 0.25 | 0.15 | 0.1 | 0.1 | 0.1 | 0.05 | 0.05 | β | β |
| π Image Froglight |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Glass |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Glass Pane |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Glowstone |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Redstone Lamp |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Sea Lantern |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Stained Glass |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Stained Glass Panes |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Tinted Glass |
0.3 | β | 0.45 | β | β | β | β | β | β | β | β | β |
| π Image Glow Item Frame[note 4] |
0.25 | β | 0.4 | β | β | β | β | β | β | β | β | β |
| π Image Item Frame[note 4] |
0.25 | β | 0.4 | β | β | β | β | β | β | β | β | β |
| π Image Powder Snow |
0.25 | β | 0.4 | β | β | β | β | β | β | β | β | β |
| π Image Suspicious Gravel |
0.25 | π Image |
0.4 | 0.2 | 0.1 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Suspicious Sand |
0.25 | π Image |
0.4 | 0.2 | 0.1 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Bed |
0.2 | β | 0.3 | β | β | β | β | β | β | β | β | β |
| π Image Cocoa |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | 0.2 |
| π Image Daylight Detector |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Glow Lichen |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.3 | 0.2 |
| π Image Mushroom Blocks |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Leaves[note 5] |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.2 |
| π Image Sculk |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Sculk Vein |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Snow Block |
0.2 | π Image |
1 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Vines |
0.2 | π Image |
0.3 | 0.15 | 0.1 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.3 | 0.2 |
| π Image Big Dripleaf |
0.1 | π Image |
0.15 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Candle |
0.1 | β | 0.15 | β | β | β | β | β | β | β | β | β |
| π Image Carpet |
0.1 | β | 0.15 | β | β | β | β | β | β | β | β | β |
| π Image Dyed Candle |
0.1 | β | 0.15 | β | β | β | β | β | β | β | β | β |
| π Image Moss Block |
0.1 | π Image |
0.15 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Moss Carpet |
0.1 | π Image |
0.15 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Pale Moss Block |
0.1 | π Image |
0.15 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Pale Moss Carpet |
0.1 | π Image |
0.15 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Snow |
0.1 | π Image |
0.5 | 0.1 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | β | β |
| π Image Air[note 1] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Azalea |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Beetroots |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Block of Resin |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Bubble Column[note 1] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Bush |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Cactus Flower |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Camera[verify] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Carrots |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Cave Air[note 1] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Cave Vines |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Colored Torch |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Copper Torch |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Coral |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Coral Fan |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Dead Coral Fan |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Dead Bush |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Dead Coral |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Decorated Pot |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Dried Ghast |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Element |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image End Rod |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Eyeblossom |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Fire |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Flower Pot |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Flowering Azalea |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Flowers |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Frogspawn |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Fern |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Large Fern |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Hanging Roots |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Honey Block |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Kelp |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Lava Spawner |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Lily Pad |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Melon Stem |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Mushrooms |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Nether Fungi |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Nether Sprouts |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Nether Wart |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Pale Hanging Moss |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Pink Petals |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Pitcher Plant |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Potatoes |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Pumpkin Stem |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Redstone Comparator |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Redstone Repeater |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Redstone Torch |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Redstone Dust |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image reserved6 |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Crimson Roots |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Warped Roots |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Saplings |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Seagrass |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Scaffolding |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Sea Pickle |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Short Grass |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Slime Block |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Small Dripleaf |
0 | β | 0.05 | β | β | β | β | β | β | β | 0.05 | β |
| π Image Spore Blossom |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Structure Void |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Sugar Cane |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Sweet Berries |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image TNT |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Torch |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Tripwire |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Tripwire Hook |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Twisting Vines[note 6] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Underwater TNT |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Underwater Torch |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Unknown |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Void Air[note 1] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Water Spawner |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Weeping Vines[note 6] |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Wheat |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image Locked chest |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| π Image leaves_carried |
0 | β | 0.05 | β | β | β | β | β | β | β | β | β |
| June 14, 2009 | Notch discussed how breaking blocks would work in Survival mode: "Selecting the pickaxe and clicking on a tile will destroy it, but different tiles will take differently long to remove. Stone will be tougher than dirt, and so. Either way, the delay won't be long. Perhaps one full second for stone." | ||||||
|---|---|---|---|---|---|---|---|
| Java Edition | |||||||
|---|---|---|---|---|---|---|---|
| 1.0.0 | Beta 1.9 Prerelease 4 | Efficiency enchantment added, which mines blocks faster. | |||||
| Beta 1.9 Prerelease 6 | The mining time of many blocks has been decreased, including redstone ore, stone bricks, nether bricks, iron bars, doors, monster spawners and obsidian. | ||||||
| Before this update, some of these blocks either had no preferred tool (soul sand, fence), or a pickaxe was required, sometimes with tier requirements, but the breaking time was consistent regardless of tier. For instance, it always took about 5.5 seconds to mine a furnace with any type of pickaxe. | |||||||
| Several blocks' tool weaknesses have been fixed, such as crafting tables now mining faster with an axe and rails now mining faster with a pickaxe. | |||||||
| Mined stairs of any materials drop a stair block now instead of a block form of its material. | |||||||
| 1.3.1 | 12w18a | The 6-tick (3β10 second) delay between block breaking is now removed if a block takes less than 1 tick (1β20 second) to break in Survival. The player can now instantly mine a large amount of blocks in Survival simply by holding destroy if conditions are met. | |||||
| 12w22a | Mining ores (except gold ore and iron ore) rewards the player with experience orbs. | ||||||
| 12w23a | The block breaking animation can be seen when other players break blocks. | ||||||
| 12w24a | While holding a tool, breaking a block that can be instantly mined by hand no longer reduces the tool's durability. | ||||||
| 1.4.4 | 1.4.3 | Switching tools resets a block's brokenness. | |||||
| 1.4.6 | 12w50a | The Efficiency enchantment no longer applies when mining blocks of the wrong type (ex: Efficiency pickaxes don't increase the mining speed of dirt). This is a consequence of the new rule "the mining speed of a block is increased only when it is mined with the correct tool". | |||||
| 1.5 | 13w09b | The proper tool now increases the breaking speed of a block even if it is not the correct grade. | |||||
| 1.20.5 | 23w51a | The generic.block_interaction_range attribute now allows the block break reach to be customized. | |||||
| Pocket Edition Alpha | |||||||
|---|---|---|---|---|---|---|---|
| ? | Breaking sounds of blocks drastically changed, from being identical to those of Alpha-esque updates to sounds that were much different depending on if the game was being played on iOS or Android. | ||||||
| v0.7.4 | Buckets can no longer be used to literally mine water and lava.[2] | ||||||
| v0.12.1 | build 12 | Breaking sounds are now the same as on PC. Prior to this update, the breaking sounds of most blocks differed greatly on iOS and Android. | |||||
| Legacy Console Edition | |||||||
|---|---|---|---|---|---|---|---|
| Xbox 360 | Xbox One | PS3 | PS4 | PS Vita | Wii U | Switch | |
| TU5 | CU1 | 1.00 | 1.00 | 1.00 | patch 1 | 1.0.1 | The mining time of many blocks has been decreased, including redstone ore, stone bricks, nether bricks, iron bars, doors, monster spawners and obsidian. |
| Before this update, some of these blocks either had no preferred tool (soul sand, fence), or a pickaxe was required, sometimes with tier requirements, but the breaking time was consistent regardless of tier. For instance, it always took about 5.5 seconds to mine a furnace with any type of pickaxe. | |||||||
| Several blocks' tool weaknesses have been fixed, such as crafting tables now mining faster with an axe and rails now mining faster with a pickaxe. | |||||||
| Mined stairs of any materials drop a stair block now instead of a block form of its material. | |||||||
Issues relating to "Breaking" or "Mining" are maintained on the bug tracker. Issues should be reported and viewed there.