Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

TonimatasDEV-Storage/minestom-recipes

Repository files navigation

Minestom Recipes

It is a library that implements all Minecraft recipes.

Installation

You should add this library to your dependency manager. Here 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:

fun start() {
    val server = MinecraftServer.init()

    VanillaRecipes.init()

    server.start("0.0.0.0", 25565)
}

Java:

public void start() {
    MinecraftServer server = MinecraftServer.init();

    VanillaRecipes.init();

    server.start("0.0.0.0", 25565);
}

Credits

Thanks to Extractor, it is the tool used to create the recipes.json

About

Implementation of all Minecraft recipes into Minestom.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages