#Can i make a create crushing recipe without an addon?

4 messages · Page 1 of 1 (latest)

frosty narwhal
#

Title explains itself, i want to add this custom recipe into my server scripts

{
  "type": "create:crushing",
  "ingredients": [
    {
      "item": "infernalexp:dimstone"
    }
  ],
  "results": [
    {
      "item": "minecraft:glowstone_dust",
      "count": 1
    },
    {
      "item": "infernalexp:glownuggets",
      "count": 2
    },
    {
      "item": "minecraft:glowstone_dust",
      "chance": 0.5
    }
  ],
  "conditions": [
    {
      "modid": "infernalexp",
      "type": "forge:mod_loaded"
    }
  ],
  "processingTime": 150
}
upbeat palmBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

sharp gorge
#

event.custom({recipeJsonGoesHere})

#

from your example

ServerEvents.recipes(event => {
  event.custom({
  "type": "create:crushing",
  "ingredients": [
    {
      "item": "infernalexp:dimstone"
    }
  ],
  "results": [
    {
      "item": "minecraft:glowstone_dust",
      "count": 1
    },
    {
      "item": "infernalexp:glownuggets",
      "count": 2
    },
    {
      "item": "minecraft:glowstone_dust",
      "chance": 0.5
    }
  ],
  "conditions": [
    {
      "modid": "infernalexp",
      "type": "forge:mod_loaded"
    }
  ],
  "processingTime": 150
  })
})