Skip to content

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

Old format

Template

{
  "type": "sullysmod:grindstone_polishing",
  "experience": <xpAmount>,
  "ingredient": "namespace:your_ingredient",
  "result": "namespace:your_result",
  "resultCount": <resultCount>
}

Elements

  • 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!

New format!

As of version 2.4.1 the polishing recipe has a new format.

New template

{
  "type": "sullysmod:grindstone_polishing",
  "experience": <xpAmount>,
  "ingredients": [
    {
      "item":"namespace:your_ingredient"
    }
  ],
  "result": {
    "count": <resultCount>
    "item": "namespace:your_result"
  }
}

Elements

  • 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!
Clone this wiki locally