#malum

19 messages · Page 1 of 1 (latest)

errant tundra
#

how to change crafts in malum using kubejs?

humble lilyBOT
#

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

mellow harness
#

If you specifically mean void favor/spirit infusion you can check how the recipes are structured in the mods github and use event.custom, you can additionally use some functions to help with it.

I can provide some code examples when I get on my computer later today.

#

Oh, as for removing recipes, you can remove them normally. The one thing I recall not working properly is replaceInput/Output

errant tundra
#

I tried to find recipes, but I couldn't. I'm waiting for your examples

sly vale
#

data\malum\recipes

#

An example would be this:
https://github.com/SammySemicolon/Malum-Mod/blob/1.16.5/src/main/generated_resources/data/malum/recipes/spirit_infusion/brilliance_cluster.json
JSON FORMAT:

{
  "type": "malum:spirit_infusion",
  "retain_prime_item": true,
  "input": {
    "item": "malum:brilliance_cluster",
    "count": 1
  },
  "output": {
    "item": "malum:brilliance_cluster",
    "count": 2
  },
  "extra_items": [],
  "spirits": [
    {
      "item": "malum:arcane_spirit",
      "count": 4
    }
  ]
}

event.custom format:

event.custom({
  "type": "malum:spirit_infusion",
  "retain_prime_item": true,
  "input": {
    "item": "malum:brilliance_cluster",
    "count": 1
  },
  "output": {
    "item": "malum:brilliance_cluster",
    "count": 2
  },
  "extra_items": [],
  "spirits": [
    {
      "item": "malum:arcane_spirit",
      "count": 4
    }
  ]
})
GitHub

A minecraft mod about dark magic. Contribute to SammySemicolon/Malum-Mod development by creating an account on GitHub.

#

Basically just copy it into the parenthesis and then adjust the recipe as you need

errant tundra
#

what?

#

I searched in this place yesterday, but didn't find it

sly vale
#

Weird

celest inlet
#

you probably looked in src/main/resources and not src/generated/resources for the recipes, which is probabably where you looked

#

probably*

#

probabably despair

errant tundra
#

you are rightdespair

errant tundra
#

asked in malum server despair

celest inlet
#

it seems malum in 1.16 doesn't have datapack recipes

errant tundra