1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-02 18:44:06 -03:00
BedrockData/README.md

41 lines
2.4 KiB
Markdown
Raw Normal View History

2018-06-12 14:40:06 -03:00
# BedrockData
Blobs of data generated from Minecraft: Bedrock Edition used by PocketMine-MP
2019-04-25 14:06:31 -03:00
2021-02-01 16:24:05 -03:00
## canonical_block_states.nbt
2020-12-23 17:43:52 -03:00
This file contains an ordered list of `TAG_Compound`s (in varint NBT format) representing the pre-agreed blockstates in MCPE.
The runtime ID of a state is the offset in the list that the state appears.
The contents of this file are extracted from the vanilla BDS using [`pmmp/mapping`](https://github.com/pmmp/mapping).
2019-04-25 14:06:31 -03:00
2022-07-02 11:15:10 -03:00
## block_state_meta_map.json
This file contains a mapping of all blockstate IDs (as per `canonical_block_states.nbt`) to their associated internal meta values.
The position in the list is the blockstate ID, and the value is the blockstate's associated meta value.
This information is used for interpreting and serializing crafting recipes on the network in PM5.
2019-04-25 14:06:31 -03:00
2022-07-02 11:15:10 -03:00
Note: While the values may **appear** to be contiguous, they are not - in some cases there are holes. This means that you can't always get away with just assigning an increasing integer to each blockstate as its meta value.
2019-04-25 14:06:31 -03:00
2021-02-01 16:24:05 -03:00
## banner_patterns.json
2019-04-25 14:06:31 -03:00
This file defines all the known banner pattern types and their crafting requirements.
2021-02-01 16:24:05 -03:00
## recipes.json
2019-04-25 14:06:31 -03:00
This file defines all crafting-table, furnace and chemistry recipes. This includes recipes for the smoker, cartography table etc.
2021-02-01 16:24:05 -03:00
## creativeitems.json
2019-04-25 14:06:31 -03:00
This file contains an ordered list of items which appear in the vanilla creative inventory with Education Edition and Experimental Gameplay enabled.
2019-12-06 08:54:48 -03:00
2021-02-01 16:24:05 -03:00
## biome_definitions.nbt
2019-12-06 08:54:48 -03:00
This file contains a network-format NBT blob containing biome definitions obtained from `BiomeDefinitionListPacket`.
2021-07-23 17:10:08 -03:00
## biome_id_map.json
This file contains a mapping of Minecraft string biome IDs to their legacy integer ID counterparts. While biome IDs aren't dynamic yet, it's expected they will become dynamic in the future.
2021-02-01 16:24:05 -03:00
## entity_identifiers.nbt
2019-12-06 08:54:48 -03:00
This file contains a network-format NBT blob containing entity identifier mappings obtained from `AvailableActorIdentifiersPacket`.
2022-01-07 13:20:31 -03:00
## level_sound_id_map.json
This file contains a mapping of string sound names to LevelSoundEvent IDs used by LevelSoundEventPacket.
Note that this file may be missing some IDs (it is generated from vanilla using [pmmp/mapping](https://github.com/pmmp/mapping), and vanilla itself is missing some mappings).
## particle_id_map.json
This file contains a mapping of string particle names to their legacy particle IDs (used for LevelEventPacket). Generated by [pmmp/mapping](https://github.com/pmmp/mapping).