#malum
19 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
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
I tried to find recipes, but I couldn't. I'm waiting for your examples
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
}
]
})
Basically just copy it into the parenthesis and then adjust the recipe as you need
Weird
you probably looked in src/main/resources and not src/generated/resources for the recipes, which is probabably where you looked
probably*
probabably 
you are right
asked in malum server 
it seems malum in 1.16 doesn't have datapack recipes