Skip to content

Resonance Extractor

Da-Technomancer edited this page Aug 30, 2020 · 2 revisions

Resonance Extractor recipes are defined by JSON files, and can be added/changed/removed by data packs.

Format (anything preceded by // is a comment that should not be in a real JSON):

{
    "type": "crossroads:beam_extract",
    "active": <boolean> //Optional, defaults to true. If false, disables this recipe
    "input": {//This can be an ingredient (like with vanilla recipes, will any restriction) instead of a single input
        //One of the following
        "item": <string item ID> //The item input
        "tag": <string tag ID> //The tag input
    },
    "energy": <integer>,//Optional, defaults to 0. Amount of energy output per cycle
    "potential": <integer>,//Optional, defaults to 0. Amount of potential output per cycle
    "stability": <integer>,//Optional, defaults to 0. Amount of stability output per cycle
    "void": <integer>,//Optional, defaults to 0. Amount of void output per cycle
    "duration": <integer>//Optional, defaults to 1. Number of cycles for this fuel to last for
}
Clone this wiki locally