Animal Summoning Ritual

Add a new Animal Summoning Ritual recipe

server_scripts

This is the Animal Summoning Ritual recipe that allows you to summon 5 bats when augmenting the ritual with an Amethyst Shard.

KeyDescription
augmentIngredient that should be use to augment this ritual
countThe amount of mobs to spawn
mobThe entity ID of the mob to spawn
weightThe chance the mob is selected from the list
sourcealways keep this as MOB_LIST
ServerEvents.recipes(event => {
event.custom({
type: "ars_nouveau:summon_ritual",
augment: {
"item": "minecraft:amethyst_shard"
},
count: 5,
mobs: [
{
mob: "minecraft:bat",
weight: 1
}
],
source: "MOB_LIST"
});
});