1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-02 12:54:21 -03:00

Update README.md

This commit is contained in:
Dylan T 2019-04-25 18:06:31 +01:00 committed by GitHub
parent 917a8fc555
commit e9a2c28f8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,2 +1,39 @@
# BedrockData
Blobs of JSON data generated from Minecraft: Bedrock Edition used by PocketMine-MP
### `required_block_states.json`
This file contains data defining all the needed block states in MCPE's StartGamePacket. The format is as follows:
<details><summary>Show</summary>
```
"prefix": {
"block_id": [
/* all of the needed metadata variants (or states in the future) */
0,
1,
2,
3
]
}
```
</details>
### `block_id_map.json`
This file contains a mapping of all block stringy IDs to legacy numeric IDs (which are still used internally, and still needed by third party developers for conversion and for items).
#### Note
Where a block's legacy ID is > 255, its item ID is `255 - legacyBlockId`. This means prismarine stairs = -2 and so on.
### `item_id_map.json`
This file contains a mapping of all item stringy IDs to legacy numeric IDs.
### `banner_patterns.json`
This file defines all the known banner pattern types and their crafting requirements.
### `recipes.json`
This file defines all crafting-table, furnace and chemistry recipes. This includes recipes for the smoker, cartography table etc.
#### Note
Brewing recipes are **not** included because Mojang don't see fit to send these over network.
### `creativeitems.json`
This file contains an ordered list of items which appear in the vanilla creative inventory with Education Edition and Experimental Gameplay enabled.