Recipes and Data (v3)
Due to the changes in Vanilla, recipe and other datapack files have a different set of fields in different MC versions: This is the page version for MC 1.21.2 and newer.
Data Component Types
Energized Power adds a few custom data component types.
energizedpower:action_cooldown
- Description: A non-negative integer which blocks an action until the data component is no longer present or reaches 0.
- Usage: Tools (Like the Wrench)
energizedpower:active
- Description: A boolean which stores if an item is currently activated.
- Usage: Inventory Generators, Tools
energizedpower:current_face
- Description: The current face (Direction) of a block which is selected.
- Usage: Tools (Like the Wrench)
energizedpower:current_item
- Description: An item stack which is currently being processed, used, or selected.
- JSON representation:
{
"currentItem": {
"id": "minecraft:coal",
"count": 1,
"components": {
"minecraft:custom_name": "\"Super Coal\""
}
}
}
- Usage: Inventory Generators, Tools
energizedpower:dimensional_position
- Description: An block position (Integers
x,y, andz) in a dimension (Identifier (Format:namespace:id)dimensionId). - JSON representation:
{
"x": 10,
"y": 90,
"z": -42,
"dimensionId": "minecraft:the_nether"
}
- Usage: Teleporter Matrix
energizedpower:energy
- Description: A non negative integer (On Forge/NeoForge) or a non negative long (On Fabric) which stores how much energy is stored in an item.
- Usage: Batteries, Inventory Generators, Tools
energizedpower:energy_production_left
- Description: A non negative integer (On Forge/NeoForge) or a non negative long (On Fabric) which stores how much energy is still being produced.
- Usage: Inventory Generators
energizedpower:inventory
- Description: A list of 0 or more item stacks which are currently stored in an item.
- JSON representation:
- The size of the inventory is the length of the JSON list. Items are stored in order. An empty JSON object is used to represent empty slots`
[
{
"id": "energizedpower:battery_6",
"count": 1
},
{
},
{
"id": "energizedpower:battery_7",
"count": 1,
"components": {
"energizedpower:energy": 262144
}
}
]
- Usage: Items with inventories (Like the Inventory Charger)
energizedpower:max_progress
- Description: A non negative integer which stores the maximal progress of an operation (If
progressreachesmax_progressthe operation is finished). - Usage: Inventory Generators, Tools
energizedpower:progress
- Description: A non negative integer which stores the current progress of an operation.
- Usage: Inventory Generators, Tools
energizedpower:working
- Description: A boolean which stores if an item is currently working.
- Usage: Inventory Generators, Tools
Recipes
Recipes can be added via configuration files like any other recipe.
Folder: data/<name>/recipe/<folder_1>/<folder_2>/.../<recipe_id>.json
General
Percentages value
`percentages` is an array of double element which determines the output amount odds of an accompanying `result` item stack element. Every element is independent from other elements and represents the chance to add 1 to the final output count.
Examples:
- The item count for the array
[0.75, 0.25]would be at least 0 and at most 2. There is a 75% chance the first element would add 1 to the final output count and there is a 25% chance the second element would add 1 to the final output count. The general odds would be the following (count is 0: 18.75%, count is 1: 62.5%, count is 2: 18.75%) [1, 0.33, 0.33]-> (count is 0: 0%, count is 1: 44.89%, count is 2: 44.22%, count is 3: 10.89%)
Item Stack format
Example for an item with custom data components:
{
"id": "energizedpower:battery_1",
"count": 1,
"components": {
"item_name": "{\"text\": \"Test Battery\"}",
"energizedpower:energy": 32
}
}
Explanation:
id: The item id (May not beair)count: The count of the item (Default: 1) [OPTIONAL]components: The data components of the item [OPTIONAL]
Fluid Stack format
Example for 1 Bucket of Water:
{
"id": "minecraft:water",
"amount": 1000
}
Explanation:
id: The fluid id (May not beempty)amount: The amount of the fluid in milli Buckets (Value must be > 0)leftoverDropletsAmount: The amount of droplets (81 droplet = 1 mB (milli Buckets)) which would be the fractional part of the milli Buckets conversion (Value must be > 0 and < 81) [Fabric only] [OPTIONAL]components: The data components of the fluid [OPTIONAL]
Machine recipes
Alloy Furnace
Example for smelting Steel Ingots:
{
"type": "energizedpower:alloy_furnace",
"ingredients": [
{
"ingredient": "#c:ingots/iron"
},
{
"ingredient": "#minecraft:coals",
"count": 3
}
],
"ticks": 1000,
"result": {
"id": "energizedpower:steel_ingot"
}
}
Explanation:
type: Must be set to energizedpower:alloy_furnace
ingredients: A list of inputs [Each contains an ingredient element and an optional count element] (There can be multiple entries with the same or overlapping ingredients) (There must be at least one and at most three inputs)
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
ticks: The amount of ticks the recipe takes
result: The output item stack (Min count: 1, max count: 99)
secondaryResult: Must contain an item and a list of percentages [OPTIONAL]
result: The output item stack (Count must be 1, because the count is determined by the percentages element)
percentages: An array of double values. May or may not contain a percentage of 100%. For details see: percentages-value.
Assembling Machine
Example 1 for assembling Processing Units:
{
"type": "energizedpower:assembling_machine",
"ingredients": [
{
"ingredient": "energizedpower:advanced_circuit",
"count": 4
},
{
"ingredient": "#c:wires/energized_gold",
"count": 6
},
{
"ingredient": "#c:silicon",
"count": 6
}
],
"result": {
"id": "energizedpower:processing_unit"
}
}
Example 2 for assembling Crystal Matrices:
{
"type": "energizedpower:assembling_machine",
"ingredients": [
{
"ingredient": "#c:gems/amethyst",
"count": 6
},
{
"ingredient": "#c:gems/diamond",
"count": 2
},
{
"ingredient": "#c:gems/emerald",
"count": 2
},
{
"ingredient": "#c:dusts/redstone"
}
],
"result": {
"id": "energizedpower:crystal_matrix"
}
}
Explanation:
type: Must be set to energizedpower:assembling_machine
ingredients: A list of inputs [Each contains an ingredient element and an optional count element] (There can be multiple entries with the same or overlapping ingredients) (There must be at least one and at most four inputs)
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
result: The output item stack (Min count: 1, max count: 99)
Charger
Example for charging Copper Ingots to get Energized Copper Ingots:
{
"type": "energizedpower:charger",
"ingredient": "#c:ingots/copper",
"energy": 524288,
"result": {
"id": "energizedpower:energized_copper_ingot"
}
}
Explanation:
type: Must be set toenergizedpower:chargeringredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)energy: The amount of energy in FE which is required to charge the ingredientresult: The output item stack (Count must be 1)
Energizer
Example for energizing Copper Ingots to get Energized Copper Ingots:
{
"type": "energizedpower:energizer",
"ingredient": "#c:ingots/copper",
"energy": 8192,
"result": {
"id": "energizedpower:energized_copper_ingot"
}
}
Explanation:
typeenergizedpower:energizeringredientenergyresultCrusher
Example for crushing Cobbelstone blocks to get Gravel:
{
"type": "energizedpower:crusher",
"ingredient": "#c:cobblestone/normal",
"result": {
"id": "minecraft:gravel"
}
}
Explanation:
typeenergizedpower:crusheringredientresultSawmill
Example for sawing Oak Logs to get Oak Planks:
{
"type": "energizedpower:sawmill",
"ingredient": "#minecraft:oak_logs",
"result": {
"id": "minecraft:oak_planks",
"count": 4
},
"sawdustAmount": 2
}
typeenergizedpower:sawmillingredientresultsawdustAmountSawmill with other secondary output itemCompressor
Example for sawing Jukebox to get Oak Planks:
{
"type": "energizedpower:sawmill",
"ingredient": "minecraft:jukebox",
"result": {
"id": "minecraft:oak_planks",
"count": 8
},
"secondaryResult": {
"id": "minecraft:diamond",
"count": 1
}
}
typeenergizedpower:sawmillingredientresultsecondaryResultCompressor
Example for compressing Stone Pebbles to get Cobblestone:
{
"type": "energizedpower:compressor",
"ingredient": {
"ingredient": "energizedpower:stone_pebble",
"count": 16
},
"result": {
"id": "minecraft:cobblestone"
}
}
Explanation:
type: Must be set toenergizedpower:compressoringredient: Must contain a single ingredient with count object:ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
result: The output item stack (Min count: 1, max count: 99)
Crusher
Example for crushing Cobbelstone blocks to get Gravel:
{
"type": "energizedpower:crusher",
"ingredient": "#c:cobblestone/normal",
"result": {
"id": "minecraft:gravel"
}
}
Explanation:
type: Must be set to energizedpower:crusher
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
result: The output item stack (Min count: 1, max count: 99)
Crystal Growth Chamber
Example 1 for growing Amethyst Shards:
{
"type": "energizedpower:crystal_growth_chamber",
"ingredient": {
"ingredient": "#c:gems/amethyst"
},
"ticks": 16000,
"result": {
"result": {
"id": "minecraft:amethyst_shard"
},
"percentages": [1.0, 1.0, 0.67, 0.5, 0.25, 0.125]
}
}
Example 2 for growing Budding Amethysts:
{
"type": "energizedpower:crystal_growth_chamber",
"ingredient": {
"ingredient": "#c:storage_blocks/amethyst",
"count": 4
},
"ticks": 32000,
"result": {
"result": {
"id": "minecraft:budding_amethyst"
},
"percentages": [0.25]
}
}
Explanation:
type: Must be set to energizedpower:crystal_growth_chamber
ingredient: Must contain a single ingredient with count object:
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
ticks: The amount of ticks the recipe takes
result: A single object with result and percentages elements
result: The output item stack (Count must be 1, because the count is determined by the percentages element)
percentages: An array of double values. May or may not contain a percentage of 100%. For details see: percentages-value.
Energizer
Example for energizing Copper Ingots to get Energized Copper Ingots:
{
"type": "energizedpower:energizer",
"ingredient": "#c:ingots/copper",
"energy": 8192,
"result": {
"id": "energizedpower:energized_copper_ingot"
}
}
Explanation:
type: Must be set to energizedpower:energizer
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
energy: The amount of energy in FE which is required to charge the ingredient
result: The output item stack (Min count: 1, max count: 99)
Filtration Plant
Example for filtering Raw Copper from Dirty Water:
{
"type": "energizedpower:filtration_plant",
"icon": "minecraft:raw_copper",
"result": {
"result": {
"id": "minecraft:cobblestone"
},
"percentages": [ 0.33 ]
},
"secondaryResult": {
"result": {
"id": "minecraft:raw_copper"
},
"percentages": [ 0.05 ]
}
}
Explanation:
type: Must be set to energizedpower:filtration_plant
icon: Must be an item id which will be displayed as an icon in the recipe selector in the Filtration Plant GUI
result: Must contain an item and a list of percentages
result: The output item stack (Count must be 1, because the count is determined by the percentages element)
percentages: An array of double values. May or may not contain a percentage of 100%. For details see: percentages-value.
secondaryResult: Must contain an item and a list of percentages [OPTIONAL]
result: The output item stack (Count must be 1, because the count is determined by the percentages element)
percentages: An array of double values. May or may not contain a percentage of 100%. For details see: percentages-value.
Fluid Freezer [v2.16.0 and newer]
Example for freezing Water into Ice:
{
"type": "energizedpower:fluid_freezer",
"ingredient": {
"amount": 1000,
"id": "minecraft:water"
},
"result": {
"id": "minecraft:ice"
}
}
Explanation:
type: Must be set to energizedpower:fluid_freezer
ingredient: Must contain a single fluid stack object (Min amount: 1)
result: The output item stack (Min count: 1, max count: 99)
Fluid Transposer
Example 1 for emptying Water from Wet Sponges:
{
"type": "energizedpower:fluid_transposer",
"mode": "EMPTYING",
"ingredient": "minecraft:wet_sponge",
"result": {
"id": "minecraft:sponge"
},
"fluid": {
"id": "minecraft:water",
"amount": 1000
}
}
Example 2 for filling Sponges with Water:
{
"type": "energizedpower:fluid_transposer",
"mode": "FILLING",
"ingredient": "minecraft:sponge",
"result": {
"id": "minecraft:wet_sponge"
},
"fluid": {
"id": "minecraft:water",
"amount": 1000
}
}
Explanation:
type: Must be set to energizedpower:fluid_transposer
mode: Must be EMPTYING for the emptying mode (Item -> Item + Fluid) and FILLING for the filling mode (Item + Fluid -> Item)
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
result: The output item stack (Min count: 1, max count: 99)
fluid: The fluid stack (output for emptying mode and input for filling mode) (Min amount: 1)
Metal Press
Example for pressing Iron Plates into Iron Gear:
{
"type": "energizedpower:metal_press",
"ingredient": {
"ingredient": "#c:plates/iron",
"count": 2
},
"pressMold": {
"id": "energizedpower:gear_press_mold"
},
"result": {
"id": "energizedpower:iron_gear"
}
}
Explanation:
type: Must be set to energizedpower:metal_press
ingredient: Must contain a single ingredient with count object:
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
pressMold: The Press Mold item stack (Must be in the energizedpower:metal_press/press_molds tag) (Will not be consumed by the recipe; Count must always be 1)
result: The output item stack (Min count: 1, max count: 99)
Plant Growth Chamber
Example 1 for growing Beetroot Seeds to get Beetroots:
{
"type": "energizedpower:plant_growth_chamber",
"ingredient": "minecraft:beetroot_seeds",
"ticks": 16000,
"results": [
{
"result": {
"id": "minecraft:beetroot_seeds"
},
"percentages": [1.0, 0.33, 0.33]
},
{
"result": {
"id": "minecraft:beetroot"
},
"percentages": [1.0, 0.75, 0.25, 0.25]
}
]
}
Example 2 for growing Potato to get Potatoes:
{
"type": "energizedpower:plant_growth_chamber",
"ingredient": "minecraft:potato",
"ticks": 16000,
"results": [
{
"result": {
"id": "minecraft:potato"
},
"percentages": [1.0, 0.75, 0.25, 0.25]
},
{
"result": {
"id": "minecraft:poisonous_potato"
},
"percentages": [0.125]
}
]
}
Explanation:
type: Must be set toenergizedpower:plant_growth_chamberingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)ticks: The amount of ticks the recipe takes without using fertilizersresults: A list of outputs [Each contains anresultand apercentageselement]. More than 4 values can be used but excess items will vanish.result: The output item stack (Count must be 1, because the count is determined by thepercentageselement)percentages: An array of double values. If a percentage of 100% is used, it must be within the first 4resultselements to guarantee that it won't vanish. For details see: percentages-value.
Plant Growth Chamber - Fertilizer
Example Bone Meal fertilizer:
{
"type": "energizedpower:plant_growth_chamber_fertilizer",
"ingredient": "minecraft:bone_meal",
"speedMultiplier": 1.5,
"energyConsumptionMultiplier": 3.0
}
Explanation:
type: Must be set toenergizedpower:plant_growth_chamber_fertilizeringredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)speedMultiplier: A double value by which theticksvalue fromPlant Growth Chamberrecipes is divided.energyConsumptionMultiplier: A double value by which the energy consumption per tick value of thePlant Growth Chamberis multiplied.
Heat
Press Generator
Mold Maker
Example for generatingcreating energya fromRaw flowingGear lava:Press Mold:
{
"type": "energizedpower:heat_generator"press_mold_maker",
"ingredient"clayCount": 4,
"result": {
"id": "minecraft:flowing_lava",energizedpower:raw_gear_press_mold"
"energy": 15}
}
Explanation:
type: Must be set toenergizedpower:heat_generatorpress_mold_makeringredient: Must be a single fluid id or a list of fluid ids (Flowing fluids are allowed too)
energyclayCount: The amount of Thermal Generator
Example for generating energy from lava:
{
"type": "energizedpower:thermal_generator",
"ingredient": "minecraft:lava",
"energy": 50000
}
Explanation:
typeenergizedpower:thermal_generatorcraft the Raw Press Mold (Min count: 1, max count: 99)
ingredientenergyresult: The energizedpower:metal_press/raw_press_molds tag and should have a smelting recipe for the non-raw version of the energizedpower:metal_press/press_molds tag) which can be used in the Metal Press) (Min count: 1, max count: 99)
Pulverizer
Example 1 for pulverizing Gold ores to get Gold Dust:
{
"type": "energizedpower:pulverizer",
"ingredient": "#minecraft:gold_ores",
"result": {
"result": {
"id": "energizedpower:gold_dust"
},
"percentages": [ 1.0, 1.0, 0.25 ]
}
}
Example 2 for pulverizing Copper ores to get Copper Dust and Gold Dust:
{
"type": "energizedpower:pulverizer",
"ingredient": "#minecraft:copper_ores",
"result": {
"result": {
"id": "energizedpower:copper_dust"
},
"percentages": [ 1.0, 1.0, 1.0, 1.0, 0.5, 0.5 ]
},
"secondaryResult": {
"result": {
"id": "energizedpower:gold_dust"
},
"percentages": [ 0.1 ],
"percentagesAdvanced": [ 0.2 ]
}
}
Explanation:
type: Must be set toenergizedpower:pulverizeringredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)result: Must contain an item and a list of percentagesresult: The output item stack (Count must be 1, because the count is determined by thepercentageselement)percentages: An array of double values. (On EP version 2.16.0 and lower at least one percentage must be 100%, since EP version 2.16.1 you can also define primary outputs without percentage values of 100%). For details see: percentages-value.percentagesAdvanced: An array of double values which may or may not have the same count of elements aspercentages.percentagesAdvancedwill overridepercentagesfor the advanced version of the Pulverizer ifpercentagesAdvancedis present. At least one percentage must be 100%. For details see: percentages-value. [OPTIONAL]
secondaryResult: Must contain an item and a list of percentages [OPTIONAL]result: The output item stack (Count must be 1, because the count is determined by thepercentageselement)percentages: An array of double values. May or may not contain a percentage of 100%. For details see: percentages-value.percentagesAdvanced: An array of double values which may or may not have the same count of elements aspercentages.percentagesAdvancedwill overridepercentagesfor the advanced version of the Pulverizer ifpercentagesAdvancedis present. May or may not contain a percentage of 100%. For details see: percentages-value. [OPTIONAL]
Press Mold Maker
Sawmill
Example for creatingsawing aOak RawLogs Gearto Pressget Mold:Oak Planks:
{
"type": "energizedpower:press_mold_maker"sawmill",
"clayCount"ingredient": 4,"#minecraft:oak_logs",
"result": {
"id": "energizedpower:raw_gear_press_mold"minecraft:oak_planks",
"count": 4
},
"sawdustAmount": 2
}
Explanation:
type: Must be set toenergizedpower:press_mold_makersawmill
clayCountresultenergizedpower:metal_press/raw_press_moldsenergizedpower:metal_press/press_moldsMetal Press
Example for pressing Iron Plates into Iron Gear:
{
"type": "energizedpower:metal_press",
"ingredient": {
"ingredient": "#c:plates/iron",
"count": 2
},
"pressMold": {
"id": "energizedpower:gear_press_mold"
},
"result": {
"id": "energizedpower:iron_gear"
}
}
Explanation:
typeenergizedpower:metal_pressingredientingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags): Thecountresultcountoutputofitemthe ingredientstack (Min count: 1, max count: 99)[OPTIONAL]
pressMoldsawdustAmount: The energizedpower:metal_press/press_moldssawdust Sawmill alwayswith other secondary output item
Example for sawing Jukebox to get Oak Planks:
{
"type": "energizedpower:sawmill",
"ingredient": "minecraft:jukebox",
"result": {
"id": "minecraft:oak_planks",
"count": 8
},
"secondaryResult": {
"id": "minecraft:diamond",
"count": 1
}
}
type: Must be energizedpower:sawmill
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
result: The output item stack (Min count: 1, max count: 99)
secondaryResult: The secondary output item stack (Min count: 0, max count: 99), If the count is set to 0, no secondary output will be produced.
Stone Liquefier [v2.14.0 and newer]
Example for liquefying Stone:
{
"type": "energizedpower:stone_liquefier",
"ingredient": "minecraft:stone",
"result": {
"amount": 50,
"id": "minecraft:lava"
}
}
Explanation:
type: Must be set to energizedpower:stone_liquefier
ingredient: Must contain a single ingredient object (a single item/tag or a list of items/tags)
result: The output fluid stack (Min amount: 1)
Stone Solidifier
Example for creating Cobblestones:
{
"type": "energizedpower:stone_solidifier",
"waterAmount": 50,
"lavaAmount": 50,
"result": {
"id": "minecraft:cobblestone"
}
}
Explanation:
type: Must be set toenergizedpower:stone_solidifierwaterAmount: The amount in mB (milli Buckets) of Water consumed by the recipe (Min amount: 1 mB)lavaAmount: The amount in mB (milli Buckets) of Lava consumed by the recipe (Min amount: 1 mB)result: The output item stack (Min count: 1, max count: 99)
AssemblingGenerator Machinerecipes
Heat Generator
Example 1 for assemblinggenerating Processingenergy Units:from flowing lava:
{
"type": "energizedpower:assembling_machine"heat_generator",
"ingredients": [
{
"ingredient": "energizedpower:advanced_circuit"minecraft:flowing_lava",
"count"energy": 4
},
{
"ingredient": "#c:wires/energized_gold",
"count": 6
},
{
"ingredient": "#c:silicon",
"count": 6
}
],
"result": {
"id": "energizedpower:processing_unit"
}
}
Example 2 for assembling Crystal Matrices:
{
"type": "energizedpower:assembling_machine",
"ingredients": [
{
"ingredient": "#c:gems/amethyst",
"count": 6
},
{
"ingredient": "#c:gems/diamond",
"count": 2
},
{
"ingredient": "#c:gems/emerald",
"count": 2
},
{
"ingredient": "#c:dusts/redstone"
}
],
"result": {
"id": "energizedpower:crystal_matrix"
}15
}
Explanation:
type: Must be set toenergizedpower:assembling_machineheat_generator
ingredientsingredientcountingredient: Mustcontainbe a singleingredientfluidobject (a single item/tagid or a list ofitems/tags)fluid ids (Flowing fluids are allowed too): Thecountenergycountamount oftheenergyingredientproduced(Minpercount:block1,facemaxpercount: 99) [OPTIONAL]tick
Thermal
resultCrystal Growth Chamber
Generator
Example 1 for growinggenerating Amethystenergy Shards:from lava:
{
"type": "energizedpower:crystal_growth_chamber"thermal_generator",
"ingredient": {
"ingredient": "#c:gems/amethyst"
}minecraft:lava",
"ticks"energy": 16000,
"result": {
"result": {
"id": "minecraft:amethyst_shard"
},
"percentages": [1.0, 1.0, 0.67, 0.5, 0.25, 0.125]
}
}
Example 2 for growing Budding Amethysts:
{
"type": "energizedpower:crystal_growth_chamber",
"ingredient": {
"ingredient": "#c:storage_blocks/amethyst",
"count": 4
},
"ticks": 32000,
"result": {
"result": {
"id": "minecraft:budding_amethyst"
},
"percentages": [0.25]
}50000
}
Explanation:
type: Must be set toenergizedpower:crystal_growth_chamberthermal_generatoringredient: Mustcontainbe a singleingredientfluidwith count object:ingredient: Must contain a single ingredient object (a single item/tagid or a list ofitems/tags)fluid ids (Flowing fluids are allowed too)count: The count of the ingredient (Min count: 1, max count: 99) [OPTIONAL]
ticksenergy: The amount of resultresultpercentagesresultpercentagespercentagesFiltration Plant
Example for filtering Raw Coppergenerated from Dirty1000 Water:
{
"type": "energizedpower:filtration_plant",
"icon": "minecraft:raw_copper",
"result": {
"result": {
"id": "minecraft:cobblestone"
},
"percentages": [ 0.33 ]
},
"secondaryResult": {
"result": {
"id": "minecraft:raw_copper"
},
"percentages": [ 0.05 ]
}
}
Explanation:
typeenergizedpower:filtration_planticonresultresultpercentagespercentagessecondaryResultresultpercentagespercentagesFluid Transposer
Example 1 for emptying Water from Wet Sponges:
{
"type": "energizedpower:fluid_transposer",
"mode": "EMPTYING",
"ingredient": "minecraft:wet_sponge",
"result": {
"id": "minecraft:sponge"
},
"fluid": {
"id": "minecraft:water",
"amount": 1000
}
}
Example 2 for filling Sponges with Water:
{
"type": "energizedpower:fluid_transposer",
"mode": "FILLING",
"ingredient": "minecraft:sponge",
"result": {
"id": "minecraft:wet_sponge"
},
"fluid": {
"id": "minecraft:water",
"amount": 1000
}
}
Explanation:
typeenergizedpower:fluid_transposermodeEMPTYINGFILLINGingredientresultfluidAlloy Furnace
Example for smelting Steel Ingots:
{
"type": "energizedpower:alloy_furnace",
"ingredients": [
{
"ingredient": "#c:ingots/iron"
},
{
"ingredient": "#minecraft:coals",
"count": 3
}
],
"ticks": 1000,
"result": {
"id": "energizedpower:steel_ingot"
}
}
Explanation:
typeenergizedpower:alloy_furnaceingredientsingredientcountingredientcountticksresultsecondaryResultresultpercentagespercentagesStone Liquefier [v2.14.0 and newer]
Example for liquefying Stone:
{
"type": "energizedpower:stone_liquefier",
"ingredient": "minecraft:stone",
"result": {
"amount": 50,
"id": "minecraft:lava"
}
}
Explanation:
typeenergizedpower:stone_liquefieringredientresultFluid Freezer [v2.16.0 and newer]
Example for freezing Water into Ice:
{
"type": "energizedpower:fluid_freezer",
"ingredient": {
"amount": 1000,
"id": "minecraft:water"
},
"result": {
"id": "minecraft:ice"
}
}Explanation:
typeenergizedpower:fluid_freezeringredientresult