Skip to content
DivineRPG

DivineRPG

Generated page, edit scripts/gen_schema_pages.py instead.

DivineRPG recipes (1.20.1), pkl4mc dialect.

DivineRPG ships two custom recipe types; everything else in the mod is plain vanilla crafting/cooking/stonecutting JSON (use recipe.pkl for those).

Usage

amends "@pkl4mc/divinerpg_recipes.pkl"

Example

// DivineRPG recipes - one example per type.
// Each entry becomes `<name>.json` under this file's directory.
amends "@pkl4mc/divinerpg_recipes.pkl"

arcanium_extractor {
  new {
    name = "example_arcanium_extractor_arcanium"
    input { item = "divinerpg:raw_arcanium" }
    output { item = "divinerpg:arcanium" }
    experience = 1.0
    cookingTime = 100
  }
}

// Template item in the second slot selects which output the input+template combo produces.
infusion_table {
  new {
    name = "example_infusion_table_backsword"
    input { item = "divinerpg:amthirmis_lump"; count = 5 }
    template { item = "divinerpg:backsword_template" }
    output { item = "divinerpg:amthirmis_backsword" }
  }
}