Intro to Blocks
guide
Minecraft Bedrock allows us to add custom blocks into our world with various vanilla-like properties. In latest versions, custom blocks can have multiple stages (like plants), directional facing, and other features. This tutorial will cover how to create some simple blocks for the stable version of Minecraft Bedrock.
WARNING
Blocks on the stable version of Minecraft (1.10 format version) are missing many new features, available in experimental (1.16 format version). You can learn more about experimental blocks here.
Block Behavior File
Block behaviors are structured similarly to entities: they contain a description and a list of components that defines the block's behavior.
{
"format_version": "1.12.0",
"minecraft:block": {
"description": {
"identifier": "wiki:blocky",
"is_experimental": false,
"register_to_creative_menu": true
},
"components": {
"minecraft:loot": "loot_tables/blocks/blocky.json",
"minecraft:destroy_time": 3,
"minecraft:explosion_resistance": 3,
"minecraft:friction": 0.6,
"minecraft:flammable": {
"flame_odds": 0,
"burn_odds": 0
},
"minecraft:map_color": "#FFFFFF",
"minecraft:block_light_absorption": 0,
"minecraft:block_light_emission": 0.25
}
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"identifier"
under"description"
is already familiar to us."components"
"minecraft:loot"
defines a loot table path for the block to drop. If this is removed, then the block will drop itself. You can learn more about loot tables here."minecraft:destroy_time"
defines how long the player will need to mine the block until it breaks. Currently, it isn't possible to set different destroy times for different tools."minecraft:explosion_resistance"
defines the chance for an explosion to break the block. Higher the value, lower the chance."minecraft:friction"
defines how much friction the block has. For example, soulsand has a low value for friction, so it slows the players. Ice has a higher friction value, so it has a slippery effect. The friction of classic blocks such as wood or stone is0.6
."minecraft:flammable"
"flame_odds"
defines how likely the block is to catch fire."burn_odds"
defines how likely the block is to be destroyed by fire.
"minecraft:map_color"
is the hex color code that will be displayed on a Minecraft map to symbolize this block.#FFFFFF
means white. You can get hex codes for other colors here."minecraft:block_light_emission"
defines the light level the block will output. Light level is out of 15, so to get a light level of 9, insert0.6
as the value.
Let's create some more blocks in BP/blocks
. I created these four block for the tutorial:
- Filename:
blocky.json
; Identifier:wiki:blocky
; - Filename:
sapp_log.json
; Identifier:wiki:sapp_log
; - Filename:
compass_block.json
; Identifier:wiki:compass_block
; - Filename:
flashing.json
; Identifier:wiki:flashing
; You can play around with changing the component values for each of these. Now let's move over to the resource definition.
Block Resource File
The resource definition for blocks differs from entities/items because all the definitions appear in a single file. The only two things we can define for blocks are its sound and its textures.
{
"format_version": [1, 1, 0],
"wiki:blocky": {
"textures": "blocky",
"sound": "stone"
},
"wiki:sapp_log": {
"textures": {
"up": "sapp_log_top",
"down": "sapp_log_top",
"side": "sapp_log_side"
},
"sound": "wood"
},
"wiki:compass_block": {
"textures": {
"up": "compass_block_up",
"down": "compass_block_down",
"north": "compass_block_north",
"south": "compass_block_south",
"west": "compass_block_west",
"east": "compass_block_east"
},
"sound": "wool"
},
"wiki:flashing": {
"textures": "flashing",
"sound": "glass"
}
}
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
As you can see, every block's identifier is applied with textures and step sounds. When we define the textures, we use their shortnames which we will define in terrain_texture.json
later on. There are 3 ways we can define the texture of a block:
"wiki:blocky"
&"wiki:flashing"
have the same texture on each side of the block. We will be animating the texture for"wiki:flashing"
later on."wiki:sapp_log"
has 3 different textures; the top of the block, the bottom of the block & the remaining sides of the block."wiki:compass_block"
has a different texture for each side of the block.
When we define the sounds, we use their shortnames. For a list of vanilla sound shortnames, you can look here. If you want to learn about making your own custom sounds, you can look here.
Block terrain texture definition
These "gorgeous" textures are the ones I'm going to use for my example blocks. The first three are located in the RP/textures/blocks/
folder and, the last 6 are located in the RP/textures/blocks/compass_block
subfolder - they show North, South, etc.
Left to right: blocky.png
, sapp_log_side.png
, side_block_top.png
, sb_up.png
, sb_down.png
, sb_north.png
, sb_south.png
, sb_west.png
, sb_east.png









All textures need to define a shortname and we'll do it the same way as we defined item texture shortnames in RP/textures/item_texture.json
, but this time in RP/textures/terrain_texture.json
{
"resource_pack_name": "wiki",
"texture_name": "atlas.terrain",
"padding": 8,
"num_mip_levels": 4,
"texture_data": {
"blocky": {
"textures": "textures/blocks/blocky"
},
"sapp_log_top": {
"textures": "textures/blocks/sapp_log_top"
},
"sapp_log_side": {
"textures": "textures/blocks/sapp_log_side"
},
"compass_block_north": {
"textures": "textures/blocks/compass_block/sb_north"
},
"compass_block_east": {
"textures": "textures/blocks/compass_block/sb_east"
},
"compass_block_west": {
"textures": "textures/blocks/compass_block/sb_west"
},
"compass_block_south": {
"textures": "textures/blocks/compass_block/sb_south"
},
"compass_block_up": {
"textures": "textures/blocks/compass_block/sb_up"
},
"compass_block_down": {
"textures": "textures/blocks/compass_block/sb_down"
}
}
}
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
The only difference from item_textures.json
is that "atlas.items
" is now changed to "atlas.terrain
".
"padding"
and "num_mip_levels"
mean the quality of how the texture is displayed, especially noticeable on higher resolution textures. The performance will be better if it's lower, but the textures will appear glitchy from further distances.
Next, all our texture shortnames have been defined. These shortnames were already used in RP/blocks.json
, as you might remember. If you load the game now, you'll be able to see the 3 new custom blocks you just added, with all the texture functionality.
But, we still have to define the wiki:flashing
texture(third from the left), which is currently undefined. That's why it appears as a dirt block with "update" written on it.
Block flipbook texture definition
As you might have already guessed, flipbook texture shortnames are defined in a different place than RP/textures/terrain_texture.json
. Let's create another file RP/textures/flipbook_textures.json
.
[
{
"flipbook_texture": "textures/blocks/flashing_flipbook",
"atlas_tile": "flashing",
"ticks_per_frame": 13
}
]
2
3
4
5
6
7
"flipbook_texture"
is the path to your texture file, which is named"flashing_flipbook"
in this scenario."atlas_tile"
is the shortname definition. As you know, we already applied"flashing"
texture shortname to thewiki:flashing
block inRP/blocks.json
."ticks_per_frame"
defines how quickly the different textures will fade into the block, in other words, the speed of the animation.
You can read more about flipbook textures here.
A flipbook texture file is created like this:
- The image width is 16;
- Image height is
16*3
, as we have three different block textures/frames to fade. If you wanted a flipbook with 12 different textures, the height would be16*12
.
Done! All of our blocks work perfectly.
Setting block names
And, finally, let's define our block's names in /RP/texts/en_US.lang
as we did with items, somewhat like this:
tile.wiki:blocky.name=Blocky Block
tile.wiki:sapp_log.name=Sapphire Wood
tile.wiki:compass_block.name=A compass in block-form
tile.wiki:flashing.name=Block of Flashing Matter
2
3
4
You can learn more about translation keys here.
What you have learned
What you have learned:
- What custom block behavior components there are
- How to create a custom block with simple textures
- How to create a custom block with side and face-relying textures
- How to create a custom block with flipbook textures