Nomifactory

Nomifactory

143k Downloads

Creative Energy Cell Uncraftable

Valdevon opened this issue ยท 2 comments

commented

The Metadata required for the cell's in the creative energy cell recipe are unobtainable in survival mode.

Here's the metadata required:
image

Here is the closest metadata I was able to get
image

Notice the "Creative:0b" and "Level:0b" metadata that is present on my metadata, and not in the recipe's. That's the only difference.

Here's some suggested metadata to use instead, which is the metadata it has after crafting the cell and not placing it
image

Note that the recv and send values are different for the different tiers of cells

commented

Fixed by Exa's Fixes, so will get fixed by 1.3.

commented

Fix:

var basiccell = <thermalexpansion:cell>.withTag({Recv: 10000, Level: 0 as byte, Send: 10000});
var hardenedcell = <thermalexpansion:cell>.withTag({Recv: 40000, Level: 1 as byte, Send: 40000});
var reinforcedcell = <thermalexpansion:cell>.withTag({Recv: 90000, Level: 2 as byte, Send: 90000});
var signalumcell = <thermalexpansion:cell>.withTag({Recv: 160000, Level: 3 as byte, Send: 160000});
var resonantcell = <thermalexpansion:cell>.withTag({Recv: 250000, Level: 4 as byte, Send: 250000});

mods.extendedcrafting.TableCrafting.addShaped(creativecell, [
[basiccell,basiccell,basiccell,hardenedcell,reinforcedcell,hardenedcell,basiccell,basiccell,basiccell],
[basiccell,basiccell,hardenedcell,reinforcedcell,signalumcell,reinforcedcell,hardenedcell,basiccell,basiccell],
[basiccell,hardenedcell,reinforcedcell,signalumcell,resonantcell,signalumcell,reinforcedcell,hardenedcell,basiccell],
[hardenedcell,reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell,hardenedcell],
[reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,<avaritia:resource:5>,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell],
[hardenedcell,reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell,hardenedcell],
[basiccell,hardenedcell,reinforcedcell,signalumcell,resonantcell,signalumcell,reinforcedcell,hardenedcell,basiccell],
[basiccell,basiccell,hardenedcell,reinforcedcell,signalumcell,reinforcedcell,hardenedcell,basiccell,basiccell],
[basiccell,basiccell,basiccell,hardenedcell,reinforcedcell,hardenedcell,basiccell,basiccell,basiccell]]);