Skip to content
Crazy AE2 Addons

Crazy AE2 Addons

Generated page, edit scripts/gen_schema_pages.py instead.

Crazy AE2 Addons recipes (1.20.1), pkl4mc dialect.

crazy_provider_conversion (swaps the Crazy Pattern Provider between its block and part forms) is out of scope: it’s an empty CustomRecipe, its real serializer ignores the JSON body entirely, nothing for a schema to configure.

Usage

amends "@pkl4mc/crazyae2addons_recipes.pkl"

Example

// Crazy AE2 Addons recipes - one example per shape.
// Each entry becomes `<name>.json` under this file's directory.
amends "@pkl4mc/crazyae2addons_recipes.pkl"

fabrication {
  new {
    name = "example_fabrication_cpu_priority_tuner"
    inputs {
      new { item = "ae2:certus_quartz_wrench"; count = 1 }
      new { item = "ae2:crafting_monitor"; count = 1 }
    }
    output { item = "crazyae2addons:cpu_priority_tuner" }
  }
  new {
    name = "example_fabrication_wormhole"
    inputs {
      new { item = "ae2:me_p2p_tunnel" }
      new { item = "ae2:fluid_p2p_tunnel" }
      new { item = "minecraft:nether_star" }
      new { item = "minecraft:diamond"; count = 4 }
    }
    output { item = "crazyae2addons:wormhole" }
    requiredKey = "crazyae2addons:p2p_tunnels"
  }
  new {
    name = "example_fabrication_fluid_condenser"
    inputs { new { item = "minecraft:bucket" } }
    fluidInput { fluid = "minecraft:lava"; amount = 1000 }
    fluidOutput { fluid = "minecraft:water"; amount = 1000 }
  }
}