Back to mods
EFab-PnC project artwork

CurseForge · Minecraft mod

EFab-PnC

Added compatibility with PneumaticCraft: Repressurized for EFab - Unofficial

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which EFab-PnC release should I use?

Updated 2 months ago
Latest stable file efabpnc-1.0.1.jar
Game version 1.21.1
Loader NeoForge

EFab-PnC efabpnc-1.0.1.jar targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. All 2 required mods have matching files.

Where it goes

Is EFab-PnC required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does EFab-PnC efabpnc-1.0.1.jar need?

efabpnc-1.0.1.jar. Change the file and its required mods may change too.

All 2 required mods have matching files

Install PneumaticCraft: Repressurized, EFab - Unofficial first. We found matching files for this game-version and loader setup. 5 come through another mod in the chain.

6 listed on this file 5 pulled in by those mods
PneumaticCraft: Repressurized Needed by EFab-PnC efabpnc-1.0.1.jar
required
Matching file found Matched file: "PneumaticCraft: Repressurized" 8.2.23 MC-1.21.1
EFab - Unofficial Needed by EFab-PnC efabpnc-1.0.1.jar
required
Matching file found Matched file: efab-0.3.6.jar
The One Probe Optional for EFab-PnC efabpnc-1.0.1.jar
optional
Matching file found Matched file: TheOneProbe - 1.21_neo-12.0.8
KubeJS Optional for EFab-PnC efabpnc-1.0.1.jar
optional
Matching file found Matched file: KubeJS NeoForge 2101.7.2-build.374
CraftTweaker Optional for EFab-PnC efabpnc-1.0.1.jar
optional
Matching file found Matched file: CraftTweaker-neoforge-1.21.1-21.0.38.jar
Jade 🔍 Optional for EFab-PnC efabpnc-1.0.1.jar
optional
Matching file found Matched file: [NeoForge 1.21.1] 15.10.6
Patchouli Needed by PneumaticCraft: Repressurized
pulled in
Matching file found Matched file: Patchouli-1.21.1-93-NEOFORGE.jar
ConnectedTexturesMod Needed by PneumaticCraft: Repressurized
pulled in
Matching file found Matched file: CTM - 1.21-1.2.1+3
Rhino Needed by KubeJS
pulled in
Matching file found Matched file: Rhino 2101.2.7-build.85
Better Advanced Tooltips Needed by KubeJS
pulled in
Matching file found Matched file: better-advanced-tooltips-2101.1.0-build.5.jar
Just Enough Items (JEI) Needed by Jade 🔍
pulled in
Matching file found Matched file: 19.50.0.414 for NeoForge 1.21.1

5 extra mods were pulled in by other dependencies. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add EFab-PnC without breaking your instance.

Built for EFab-PnC efabpnc-1.0.1.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use efabpnc-1.0.1.jar. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install PneumaticCraft: Repressurized, EFab - Unofficial first. We found matching files for this game-version and loader setup. 5 come through another mod in the chain.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside efabpnc-1.0.1.jar. It opens that exact file at the source.

About this project

What does EFab-PnC add?

EFab PnC Compat adds PneumaticCraft: Repressurized support to EFab.

It adds a Pneumatic Interface block that lets EFab recipes require:

  • PneumaticCraft air
  • Minimum pressure in bar
  • Heat
  • Minimum temperature

Requirements

  • Minecraft 1.21.1
  • NeoForge
  • EFab - Unoffical
  • PneumaticCraft: Repressurized

CraftTweaker and KubeJS recipe integrations are available when those mods are installed.

License and Modpacks

EFab PNC Compat is licensed under the MIT License.

You are free to use this mod in modpacks, including public and private modpacks, without asking for additional permission.

Unit Conversion

The Pneumatic Interface has 25000 air volume.

1 bar = 25000 air
2 bar = 50000 air
4 bar = 100000 air

minPressure is passed directly in bar.

The Pneumatic Interface has 500 heat capacity.

1 K temperature difference = 500 heat
10 K temperature difference = 5000 heat
100 K temperature difference = 50000 heat

minTemperature is passed in Kelvin:

Kelvin = Celsius + 273
100 C = 373 K

CraftTweaker

Chain these methods on an EFab grid recipe builder:

builder.pneumaticAir(25000);        // consume 1 bar worth of air
builder.pneumaticAir(25000, 1.0);   // require at least 1 bar and consume air above that reserve
builder.pneumaticPressure(2.0);     // require 2 bar, no air consumption

builder.pneumaticHeat(5000);        // consume 10 K worth of heat
builder.pneumaticHeat(5000, 373);   // require at least 100 C and consume heat above that reserve
builder.pneumaticTemperature(373);  // require 100 C, no heat consumption

Full method list:

pneumaticAir(air as int)
pneumaticAir(air as int, minPressure as float)
pneumaticAir(phase as string, air as int, minPressure as float, consume as bool)
pneumaticPressure(minPressure as float)

pneumaticHeat(heat as double)
pneumaticHeat(heat as double, minTemperature as double)
pneumaticHeat(phase as string, heat as double, minTemperature as double, consume as bool)
pneumaticTemperature(minTemperature as double)

KubeJS

Chain these methods on an EFab grid recipe builder:

builder.pneumaticAir(25000)       // consume 1 bar worth of air
builder.pneumaticAir(25000, 1.0)  // require at least 1 bar and consume air above that reserve
builder.pneumaticPressure(2.0)    // require 2 bar, no air consumption

builder.pneumaticHeat(5000)       // consume 10 K worth of heat
builder.pneumaticHeat(5000, 373)  // require at least 100 C and consume heat above that reserve
builder.pneumaticTemperature(373) // require 100 C, no heat consumption

Full method list:

pneumaticAir(air)
pneumaticAir(air, minPressure)
pneumaticAir(air, minPressure, consume)
pneumaticPressure(minPressure)

pneumaticHeat(heat)
pneumaticHeat(heat, minTemperature)
pneumaticHeat(heat, minTemperature, consume)
pneumaticTemperature(minTemperature)

air and heat scale with the crafted output amount. Passing consume = false checks the requirement without draining the resource.

Project description from CurseForge.

Pick your setup

EFab-PnC by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

EFab-PnC versions and loaders

2 of 2 releases match

Looking for an older file? The official CurseForge project page is in Resources.