drhouse-data
v1.0.6
Published
The House's alternative to minecraft-data.
Maintainers
Readme
DrHouse-Data
The House's alternative to minecraft-data.
Game data for Minecraft: Bedrock Edition. Includes blocks, items, biomes, entities, recipes, enchantments, effects, materials, foods, instruments, windows, block collision shapes, block name mappings, language strings, the default skin, and the protocol itself.
Install
npm install drhouse-dataUsage
const minecraftData = require('drhouse-data')
const mcData = minecraftData('bedrock_1.26.40')
mcData.blocksByName.oak_log
mcData.itemsArray.length
mcData.biomesArray.length
mcData.entitiesByName.chicken
mcData.protocol.types.mcpe_packetVersions can be given by name or protocol number:
minecraftData('bedrock_1.26.40')
minecraftData('1.26.20')
minecraftData(975)Supported Versions
| Version | Protocol | | ------- | -------- | | 1.26.40 | 2168 | | 1.26.30 | 1001 | | 1.26.20 | 975 | | 1.26.10 | 944 | | 1.26.0 | 924 |
License
MIT
