Draconic Evolution
Generated page, edit
scripts/gen_schema_pages.py instead.Draconic Evolution recipes (1.20.1), pkl4mc dialect. Only real custom recipe type: fusion crafting (Crafting Injector + Crafting Core). ToolUpgradeRecipe in the mod’s own source is dead 1.12-era code, entirely commented out.
Usage
amends "@pkl4mc/draconicevolution_recipes.pkl"Example
// Draconic Evolution recipes - fusion crafting.
// Each entry becomes `<name>.json` under this file's directory.
amends "@pkl4mc/draconicevolution_recipes.pkl"
fusion {
// Plain single-item catalyst (count 1, the common case).
new {
name = "example_fusion_chaotic_core"
catalyst { item = "draconicevolution:large_chaos_frag" }
ingredients {
new { tag = "forge:ingots/draconium_awakened" }
new { tag = "forge:ingots/draconium_awakened" }
new { item = "draconicevolution:awakened_core" }
new { item = "draconicevolution:awakened_core" }
new { item = "draconicevolution:large_chaos_frag" }
}
output { item = "draconicevolution:chaotic_core" }
tier = "DRACONIC"
totalEnergy = 100000000
}
// Stacked catalyst (count > 1) - rendered as the custom ingredient_stack type.
new {
name = "example_fusion_awakened_draconium_block"
catalyst { tag = "forge:storage_blocks/draconium"; count = 4 }
ingredients {
new { item = "draconicevolution:draconium_core" }
new { item = "draconicevolution:draconium_core" }
new { item = "draconicevolution:draconium_core" }
new { item = "draconicevolution:dragon_heart" }
new { item = "draconicevolution:draconium_core"; consume = false }
}
output { item = "draconicevolution:awakened_draconium_block"; count = 4 }
tier = "WYVERN"
totalEnergy = 50000000
}
}