bc-minecraft-bedrock-vanilla-data
Version:
A Typescript library for dealing provides vanilla minecraft data
31 lines (21 loc) • 1.5 kB
Markdown
# 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
```