-
Notifications
You must be signed in to change notification settings - Fork 13
Recipes
Uraneptus edited this page Dec 20, 2023
·
3 revisions
Sully's Mod adds a new recipe type called grindstone_polishing, here you can find instructions on how to add your own recipe of this type
{
"type": "sullysmod:grindstone_polishing",
"experience": <xpAmount>,
"ingredient": "namespace:your_ingredient",
"result": "namespace:your_result",
"resultCount": <resultCount>
}
- experience: The amount of experience the player will aquire when polishing. Doesn't accept decimal numbers!
- ingredient: The ingredient that should be polished. Accepts Items & Blocks.
- result: The result the player receives for polishing the ingredient. Accepts Items & Blocks.
- resultCount: The amount of result items the player should recive when polishing. Doesn't accept decimal numbers!
As of version 2.4.1 the polishing recipe has a new format.
{
"type": "sullysmod:grindstone_polishing",
"experience": <xpAmount>,
"ingredients": [
{
"item":"namespace:your_ingredient"
}
],
"result": {
"count": <resultCount>
"item": "namespace:your_result"
}
}
- experience: The amount of experience the player will aquire when polishing. Doesn't accept decimal numbers!
- ingredients: The possible ingredients that can be polished. Accepts Items, Blocks and Tags.
- result: The result the player receives for polishing the ingredient. Accepts Items & Blocks.
- count: The amount of result items the player recives when polishing. Doesn't accept decimal numbers!