Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
This commit is contained in:
commit
f9abebb03b
17 changed files with 31 additions and 23 deletions
|
|
@ -7,6 +7,8 @@ const ROCK_LAYER_HEIGHT = 40;
|
|||
|
||||
// Bare minimum
|
||||
TFCEvents.createChunkDataProvider('moon', event => {
|
||||
const emptyLayer = TFC.misc.lerpFloatLayer(0, 0, 0, 0);
|
||||
|
||||
var aquifer = [];
|
||||
let i = 0;
|
||||
while (i < 16) {
|
||||
|
|
@ -21,7 +23,7 @@ TFCEvents.createChunkDataProvider('moon', event => {
|
|||
}
|
||||
|
||||
event.partial((data, chunk) => {
|
||||
data.generatePartial(0, 0, 0, 0, 0)
|
||||
data.generatePartial(emptyLayer, emptyLayer, 0, 0, 0)
|
||||
})
|
||||
event.full((data, chunk) => {
|
||||
data.generateFull(heights, aquifer)
|
||||
|
|
|
|||
|
|
@ -661,8 +661,8 @@ function registerTFGFoodRecipes(event) {
|
|||
|
||||
processorRecipe("butter", 300, 16, {
|
||||
itemInputs: ["tfc:powder/salt"],
|
||||
itemOutputs: ["firmalife:food/butter"],
|
||||
fluidInputs: [Fluid.of('firmalife:cream', 1000)],
|
||||
itemOutputs: ["firmalife:food/butter"],
|
||||
itemOutputProvider: TFC.isp.of('firmalife:food/butter').resetFood()
|
||||
})
|
||||
|
||||
|
|
@ -740,6 +740,7 @@ function registerTFGFoodRecipes(event) {
|
|||
})
|
||||
|
||||
processorRecipe("cured_maize", 300, 8, {
|
||||
circuit: 1,
|
||||
itemInputs: ["tfc:food/maize_grain"],
|
||||
inputFluids: [Fluid.of('tfc:limewater', 100)],
|
||||
itemOutputs: ["firmalife:food/cured_maize"],
|
||||
|
|
@ -747,6 +748,7 @@ function registerTFGFoodRecipes(event) {
|
|||
})
|
||||
|
||||
processorRecipe("soy_mixture", 300, 8, {
|
||||
circuit: 1,
|
||||
itemInputs: ["tfc:food/soybean", 'tfc:powder/salt'],
|
||||
fluidInputs: ['#tfg:clean_water 50'],
|
||||
itemOutputs: ["firmalife:food/soy_mixture"],
|
||||
|
|
|
|||
|
|
@ -56,28 +56,30 @@ function registerTFGSpaceRecipes(event) {
|
|||
.EUt(16)
|
||||
|
||||
// Aqueous accumulator
|
||||
|
||||
|
||||
let aaCircuit = 1;
|
||||
|
||||
event.recipes.gtceu.aqueous_accumulator('water')
|
||||
.circuit(aaCircuit++)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VHA[GTValues.ULV])
|
||||
.addDataString("fluidA", "minecraft:water")
|
||||
.outputFluids(Fluid.of("minecraft:water", 1000))
|
||||
|
||||
event.recipes.gtceu.aqueous_accumulator('sea_water')
|
||||
.circuit(aaCircuit++)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
.addDataString("fluidA", "tfc:salt_water")
|
||||
.outputFluids(Fluid.of("tfc:salt_water", 1000))
|
||||
|
||||
event.recipes.gtceu.aqueous_accumulator('semiheavy_water_mars')
|
||||
.circuit(aaCircuit++)
|
||||
.dimension('ad_astra:mars')
|
||||
.duration(20)
|
||||
.EUt(GTValues.VHA[GTValues.ULV])
|
||||
.addDataString("fluidA", "tfg:semiheavy_ammoniacal_water")
|
||||
.outputFluids(Fluid.of("tfg:semiheavy_ammoniacal_water", 1000))
|
||||
|
||||
let aaCircuit = 1;
|
||||
|
||||
event.recipes.gtceu.aqueous_accumulator('lava_overworld')
|
||||
.circuit(aaCircuit++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue