https://github.com/tonimatasdev/minestom-recipes
Implementation of all Minecraft recipes into Minestom.
https://github.com/tonimatasdev/minestom-recipes
Last synced: 10 months ago
JSON representation
Implementation of all Minecraft recipes into Minestom.
- Host: GitHub
- URL: https://github.com/tonimatasdev/minestom-recipes
- Owner: TonimatasDEV
- Created: 2025-07-03T13:12:35.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-07-03T14:14:45.000Z (12 months ago)
- Last Synced: 2025-07-03T15:29:54.923Z (12 months ago)
- Language: Kotlin
- Homepage:
- Size: 81.1 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minestom Recipes
It is a library that implements all Minecraft recipes.
# Installation
You should add this library to your dependency manager. [Here](https://maven.tonimatas.dev/#) is the maven repository and how to add it.
## Getting started
Here are an example of how to use this library. (It is the same in both languages)
### Kotlin:
```kotlin
fun start() {
val server = MinecraftServer.init()
VanillaRecipes.init()
server.start("0.0.0.0", 25565)
}
```
### Java:
```java
public void start() {
MinecraftServer server = MinecraftServer.init();
VanillaRecipes.init();
server.start("0.0.0.0", 25565);
}
```
# Credits
Thanks to [Extractor](https://github.com/Pumpkin-MC/Extractor), it is the tool used to create the recipes.json