├── .gitattributes ├── .minify_json.php ├── LICENSE ├── README.md ├── banner_patterns.json ├── biome_definitions.json ├── biome_id_map.json ├── block_id_to_item_id_map.json ├── block_properties_table.json ├── block_state_meta_map.json ├── canonical_block_states.nbt ├── command_arg_types.json ├── composer.json ├── creative ├── construction.json ├── equipment.json ├── items.json └── nature.json ├── entity_id_map.json ├── entity_identifiers.nbt ├── enums.py ├── enums └── ParticleType.json ├── item_tags.json ├── level_sound_id_map.json ├── protocol_info.json ├── r12_to_current_block_map.bin ├── r16_to_current_item_map.json ├── recipes ├── potion_container_change.json ├── potion_type.json ├── shaped_chemistry_asymmetric.json ├── shaped_crafting.json ├── shapeless_chemistry.json ├── shapeless_crafting.json ├── shapeless_shulker_box.json ├── smelting.json ├── smithing.json ├── smithing_trim.json └── special_hardcoded.json └── required_item_list.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/.gitattributes -------------------------------------------------------------------------------- /.minify_json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/.minify_json.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/README.md -------------------------------------------------------------------------------- /banner_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/banner_patterns.json -------------------------------------------------------------------------------- /biome_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/biome_definitions.json -------------------------------------------------------------------------------- /biome_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/biome_id_map.json -------------------------------------------------------------------------------- /block_id_to_item_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/block_id_to_item_id_map.json -------------------------------------------------------------------------------- /block_properties_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/block_properties_table.json -------------------------------------------------------------------------------- /block_state_meta_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/block_state_meta_map.json -------------------------------------------------------------------------------- /canonical_block_states.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/canonical_block_states.nbt -------------------------------------------------------------------------------- /command_arg_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/command_arg_types.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/composer.json -------------------------------------------------------------------------------- /creative/construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/creative/construction.json -------------------------------------------------------------------------------- /creative/equipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/creative/equipment.json -------------------------------------------------------------------------------- /creative/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/creative/items.json -------------------------------------------------------------------------------- /creative/nature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/creative/nature.json -------------------------------------------------------------------------------- /entity_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/entity_id_map.json -------------------------------------------------------------------------------- /entity_identifiers.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/entity_identifiers.nbt -------------------------------------------------------------------------------- /enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/enums.py -------------------------------------------------------------------------------- /enums/ParticleType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/enums/ParticleType.json -------------------------------------------------------------------------------- /item_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/item_tags.json -------------------------------------------------------------------------------- /level_sound_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/level_sound_id_map.json -------------------------------------------------------------------------------- /protocol_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/protocol_info.json -------------------------------------------------------------------------------- /r12_to_current_block_map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/r12_to_current_block_map.bin -------------------------------------------------------------------------------- /r16_to_current_item_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/r16_to_current_item_map.json -------------------------------------------------------------------------------- /recipes/potion_container_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/potion_container_change.json -------------------------------------------------------------------------------- /recipes/potion_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/potion_type.json -------------------------------------------------------------------------------- /recipes/shaped_chemistry_asymmetric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/shaped_chemistry_asymmetric.json -------------------------------------------------------------------------------- /recipes/shaped_crafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/shaped_crafting.json -------------------------------------------------------------------------------- /recipes/shapeless_chemistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/shapeless_chemistry.json -------------------------------------------------------------------------------- /recipes/shapeless_crafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/shapeless_crafting.json -------------------------------------------------------------------------------- /recipes/shapeless_shulker_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/shapeless_shulker_box.json -------------------------------------------------------------------------------- /recipes/smelting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/smelting.json -------------------------------------------------------------------------------- /recipes/smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/smithing.json -------------------------------------------------------------------------------- /recipes/smithing_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/smithing_trim.json -------------------------------------------------------------------------------- /recipes/special_hardcoded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/recipes/special_hardcoded.json -------------------------------------------------------------------------------- /required_item_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/BedrockData/HEAD/required_item_list.json --------------------------------------------------------------------------------