https://github.com/blockception/bc-minecraft-bedrock-vanilla-data
A Typescript library for dealing provides vanilla minecraft data
https://github.com/blockception/bc-minecraft-bedrock-vanilla-data
bedrock data hacktoberfest hacktoberfest2022 minecraft ts typescript vanilla
Last synced: 5 months ago
JSON representation
A Typescript library for dealing provides vanilla minecraft data
- Host: GitHub
- URL: https://github.com/blockception/bc-minecraft-bedrock-vanilla-data
- Owner: Blockception
- License: bsd-3-clause
- Created: 2021-05-08T10:39:37.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-09-01T10:15:08.000Z (5 months ago)
- Last Synced: 2025-09-01T12:36:56.117Z (5 months ago)
- Topics: bedrock, data, hacktoberfest, hacktoberfest2022, minecraft, ts, typescript, vanilla
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/bc-minecraft-bedrock-vanilla-data
- Size: 2.25 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Blockception Minecraft Bedrock Vanilla Data
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/npm-test.yml)
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/npm-publish.yml)
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/create-includes.yml)


A Typescript library that provides vanilla minecraft bedrock data
```ts
const entity = MinecraftData.BehaviorPack.getEntity("minecraft:creeper");
MinecraftData.General.Effect.includes("speed");
MinecraftData.ResourcePack.getAnimation("...");
MinecraftData.vanilla.ResourcePack.animations.foreach(Animation=>...);
MinecraftData.edu.ResourcePack.animations.foreach(Animation=>...);
```
## Contributing
First, read the [contributing guide](./CONTRIBUTING.md). fork the project, clone it and run the following commands:
**Installation**
```cmd
npm ci
npm update
```