Comprehensive List of Add-on Pack Contents
Have you ever wondered what files and folders the most comprehensive behavior, resource, and skin packs would contain? If so, this list is for you.
Minecraft Bedrock Edition can only use add-on pack file contents if the file is the correct type (like .json, .png, .fsb), and if it is stored in a folder with a particular name, and if that folder is in the correct location.
Behavior packs and resource packs can vary wildly depending on what the creator who made them wants to create. It can also be a design choice to group entities or items in separate folders, rather than storing their .json files all together.
For example, if the creator does not want to use functions, then there is no function section and no .mcfunction files. But if they do want to use a function, then this list helps by showing that the function folder goes in the behavior pack, that the folder must be named function (rather than "functions"), and that only .mcfunction files can go in that folder.
Some features need a folder to contain the resources and a related file like sounds.json.
The only required file in either type of pack is manifest.json.
Wherever possible, the sections are linked to related tutorials, overviews, or reference documents.
Comprehensive Behavior Pack
Here is an introduction to behavior packs.
- animation_controllers
<entity_name>
<entity_name_animation_controller>
.json
<entity_controller>
.json
- animations
<entity_name>
<entity_name_animations>
.json
<entity_name_animations>
.json
- blocks
<block_name>
.json
- cameras
- presets
<identifier>
.json
- presets
- entities
<entity_name>
<entity_name_animation_controller>
.json
<entity_name>
.json
- features
<feature>
.json
- feature_rules
<feature_rule>
.json
- [dialogue]
<scene_dialogue>
<scene>
.json
- manifest.json
- functions
<entity_name>
<entity_name_function>
.mcfunction
- tick.json
- items
<item_name>
.json
- loot_tables
- entities
<entity_name>
.json
- entities
- recipes
<entity_recipe>
.json
- spawn_rules
<entity_spawn_rules>
.json
- structures
<structure_name>
.mcstructure
- texts
- languages.json
- en_US.lang
<language>
.lang
- trading
<villager_trades>
.json
- manifest.json (required)
- pack_icon.png
Comprehensive Resource Pack
Here is an introduction to resource packs.
- animation_controllers
<entity_animation_controllers>
.json
- animations
<entity.animation>
.json
- attachables
<attachable_entity_name>
.json
- block_culling
<block_culling>.json
- entity
<entity_name>
<entity_name>
.json
<entity_name>
.json
- fogs
<location_fog_setting>
.json
- items
<item_name>
.json - materials
<entity>
.material
- models
<entity>
.geo.json
- particles
<item_name>
.json
- render_controllers
<entity_render_controllers>
.json- default.render_controllers.json
- sounds
<location_type>
<location1>
<location*>
.ogg
<location2>
<location*>
<sound*>
.fsb
- texts
<language>
- font
- glyph_*.png
- font
- en_US.lang
- textures
<item_category>
<item_name>
<item_name>
.png
<item_name>
.png
- blocks
<custom_block>
.png
- terrain_texture.json
- flipbook_textures.json
- ui
<graphic>
.png<graphic>
.jpg<file>
.json
- biomes_client.json
- blocks.json
- manifest.json (required)
- pack_icon.png
- sounds.json
Comprehensive Skin Pack
Here is an introduction to skin packs.
- texts
- languages.json
- en_US.lang
<skin_graphic>
.png- geometry.json
- manifest.json (required)
- skins.json
Common Files
manifest.json
This is the most important file in the pack. Without it, Minecraft will not know what to do with the rest of the content. Different packs' manifest files look similar, but there are some very important differences.
Take a look at these examples and notice the "type: "
line in the "modules"
section, if there is one.
behavior_pack/manifest.json
{
"format_version": 2,
"header": {
"description": "Pack description",
"name": "My Behavior Pack",
"uuid": "<FIRST GENERATED UUID>",
"version": [1, 0, 0],
"min_engine_version": [1, 16, 0]
},
"modules":
[
{
"description": "Pack description",
"type": "data",
"uuid": "<SECOND GENERATED UUID>",
"version": [1, 0, 0]
}
]
}
resource_pack.manifest.json
{
"format_version": 2,
"header": {
"description": "Resource pack description",
"name": "My Resource Pack",
"uuid": "<FIRST GENERATED UUID>",
"version": [1, 0, 0],
"min_engine_version": [1, 16, 0]
},
"modules": [
{
"description": "Resource pack description",
"type": "resources",
"uuid": "<SECOND GENERATED UUID>",
"version": [1, 0, 0]
}
]
}
skin_pack/manifest.json
{
"header": {
"name": "pack.name",
"version": [1, 0, 0],
"uuid": "<FIRST GENERATED UUID>"
},
"modules": [
{
"version": [1, 0, 0],
"type": "skin_pack",
"uuid": "<SECOND GENERATED UUID>"
}
],
"format_version": 1
}
world_template/manifest.json
{
"header": {
"name": "pack.name",
"description": "pack.description",
"version": [1, 0, 0],
"uuid": "<FIRST GENERATED UUID>"
},
"modules": [
{
"version": [1, 0, 0],
"type": "world_template",
"uuid": "<SECOND GENERATED UUID>"
}
],
"format_version": 2
}
dialogue/manifest.json taken from the NPC Dialogue page.
{
"format_version":"1.17",
"minecraft:npc_dialogue":{
"scenes":[
{
"scene_tag":"ducky_intro",
"npc_name":"Ducky",
"text":"Hello new friend",
"on_open_commands":[
"/clear @p"
],
"on_close_commands":[
"/say Farewell! "
],
"buttons":[
{
"name":"Take Gold?",
"commands":[
"/give @initiator gold_ingot"
]
},
{
"name":"Wish Luck",
"commands":[
"/say Good luck!"
]
}
]
}
]
}
}
.../texts/languages.json
This file tells Minecraft what languages your skin pack supports. Only English (en_US.lang) is required. If you want to support other languages you can make other xx_YY.lang
files and then edit the languages.json file to tell the game you support them.
The following locales/languages are currently supported:
- "en_US"
- "de_DE"
- "ru_RU"
- "zh_CN"
- "fr_FR"
- "it_IT"
- "pt_BR"
- "fr_CA"
- "zh_TW"
- "es_MX"
- "es_ES"
- "pt_PT"
- "en_GB"
- "ko_KR"
- "ja_JP"
- "nl_NL"
- "bg_BG"
- "cs_CZ"
- "da_DK"
- "el_GR"
- "fi_FI"
- "hu_HU"
- "id_ID"
- "nb_NO"
- "pl_PL"
- "sk_SK"
- "sv_SE"
- "tr_TR"
- "uk_UA"
Template languages.json
[
"en_US"
]
Sample Packs
To see examples of typical resource and behavior packs, check out the Minecraft Vanilla resource pack and Vanilla behavior Pack.
What's Next?
Here are some more advanced add-on pack content information: