2008Choco / Alchema

Spigot plugin. In-world cauldron crafting, witchcraft and sorcery
https://www.spigotmc.org/resources/alchema.87078/
GNU General Public License v3.0
9 stars 3 forks source link

Recipes for cobblestone -> gravel, gravel -> sand #5

Closed Deadpan110 closed 3 years ago

Deadpan110 commented 3 years ago

I added this to our server as some people like to build and not have to grind all that much.

I figured I would share the json here for others to see/use (or perhaps you can use it in examples).

Cobblestone -> Gravel -> Sand while using Flint as the grinding/alchema ingredient to make it work:

Cobblestone into Gravel:

{
    "result": {
        "item": "minecraft:gravel",
        "amount": 8
    },
    "ingredients": [
        {
            "type": "alchema:material",
            "item": "minecraft:cobblestone",
            "amount": 8
        },
        {
            "type": "alchema:material",
            "item": "minecraft:flint"
        }
    ]
}

Gravel into Sand:

{
    "result": {
        "item": "minecraft:sand",
        "amount": 8
    },
    "ingredients": [
        {
            "type": "alchema:material",
            "item": "minecraft:gravel",
            "amount": 8
        },
        {
            "type": "alchema:material",
            "item": "minecraft:flint"
        }
    ]
}
2008Choco commented 3 years ago

This reminds me a lot of Ex Nihilo's hammers from mod packs like Skyfactory 🙂 I would be all for including these as default recipes if you grant me permission to do so. Much like I did with the default concrete recipes that were suggested to me, I may leave a comment in the JSON file attributing the resources to your user (or some other name if you so choose - do let me know)

Deadpan110 commented 3 years ago

Please feel free to use the recipes, I am glad to contribute to your great/fun plugin!

:)

2008Choco commented 3 years ago

Closing for now. Will be available in the next release! I've left a comment in the JSON files to attribute the recipes to you. Thank you!