create additions is a buggy ass mod
This commit is contained in:
parent
8335dcc19a
commit
de0d71a066
2 changed files with 25 additions and 22 deletions
|
|
@ -28,6 +28,8 @@
|
||||||
- Added a new ore vein to all dimensions for gypsum, calcite, borax, and fuller's earth @Pyritie
|
- Added a new ore vein to all dimensions for gypsum, calcite, borax, and fuller's earth @Pyritie
|
||||||
- Added some more moon ore veins for copper, tin, gold, aluminium.. nothing exciting @Pyritie
|
- Added some more moon ore veins for copper, tin, gold, aluminium.. nothing exciting @Pyritie
|
||||||
- Changed the recipe for the infinity construction wand @Pyritie
|
- Changed the recipe for the infinity construction wand @Pyritie
|
||||||
|
- Rebalanced the liquid blaze burner fuel recipes to be more in-line with GregTech generation @Pyritie
|
||||||
|
- Changed the recipes for the circuit boards required for the electron tube and vacuum tube, and phenolic circuit board @TomPlop
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
|
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
|
||||||
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
|
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
|
||||||
|
|
|
||||||
|
|
@ -113,6 +113,7 @@ const registerCreateAdditionsRecipes = (event) => {
|
||||||
processingTime: 20 * 6
|
processingTime: 20 * 6
|
||||||
}).id(`tfg:vi/lathe/straw`)
|
}).id(`tfg:vi/lathe/straw`)
|
||||||
|
|
||||||
|
// the amount is hardcoded to 100mb because create additions sucks
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
|
|
@ -126,99 +127,99 @@ const registerCreateAdditionsRecipes = (event) => {
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:creosote',
|
fluidTag: 'forge:creosote',
|
||||||
amount: 160
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 10 * 9 * 9
|
burnTime: 500
|
||||||
}).id('tfg:createadditions/liquid_burning/creosote')
|
}).id('tfg:createadditions/liquid_burning/creosote')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:biomass',
|
fluidTag: 'forge:biomass',
|
||||||
amount: 40
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 10 * 9 * 9
|
burnTime: 2000
|
||||||
}).id('tfg:createadditions/liquid_burning/biomass')
|
}).id('tfg:createadditions/liquid_burning/biomass')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:oil',
|
fluidTag: 'forge:oil',
|
||||||
amount: 200
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 10 * 9 * 9
|
burnTime: 400
|
||||||
}).id('tfg:createadditions/liquid_burning/oil')
|
}).id('tfg:createadditions/liquid_burning/oil')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:oil_heavy',
|
fluidTag: 'forge:oil_heavy',
|
||||||
amount: 32
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 10 * 9 * 9
|
burnTime: 2500
|
||||||
}).id('tfg:createadditions/liquid_burning/oil_heavy')
|
}).id('tfg:createadditions/liquid_burning/oil_heavy')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:sulfuric_heavy_fuel',
|
fluidTag: 'forge:sulfuric_heavy_fuel',
|
||||||
amount: 32
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 10 * 9 * 9
|
burnTime: 2500
|
||||||
}).id('tfg:createadditions/liquid_burning/sulfuric_heavy_fuel')
|
}).id('tfg:createadditions/liquid_burning/sulfuric_heavy_fuel')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:heavy_fuel',
|
fluidTag: 'forge:heavy_fuel',
|
||||||
amount: 16
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 30 * 9 * 9
|
burnTime: 7000
|
||||||
}).id('tfg:createadditions/liquid_burning/heavy_fuel')
|
}).id('tfg:createadditions/liquid_burning/heavy_fuel')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:fish_oil',
|
fluidTag: 'forge:fish_oil',
|
||||||
amount: 50
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 100 * 9 * 9
|
burnTime: 7000
|
||||||
}).id('tfg:createadditions/liquid_burning/fish_oil')
|
}).id('tfg:createadditions/liquid_burning/fish_oil')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluid: 'tfc:olive_oil',
|
fluid: 'tfc:olive_oil',
|
||||||
amount: 50
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 150 * 9 * 9
|
burnTime: 7000
|
||||||
}).id('tfg:createadditions/liquid_burning/olive_oil')
|
}).id('tfg:createadditions/liquid_burning/olive_oil')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluid: 'firmalife:soybean_oil',
|
fluid: 'firmalife:soybean_oil',
|
||||||
amount: 50
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 150 * 9 * 9
|
burnTime: 7000
|
||||||
}).id('tfg:createadditions/liquid_burning/soybean_oil')
|
}).id('tfg:createadditions/liquid_burning/soybean_oil')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluidTag: 'forge:seed_oil',
|
fluidTag: 'forge:seed_oil',
|
||||||
amount: 50
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 150 * 9 * 9
|
burnTime: 7000
|
||||||
}).id('tfg:createadditions/liquid_burning/seed_oil')
|
}).id('tfg:createadditions/liquid_burning/seed_oil')
|
||||||
|
|
||||||
event.custom({
|
event.custom({
|
||||||
type: 'createaddition:liquid_burning',
|
type: 'createaddition:liquid_burning',
|
||||||
input: {
|
input: {
|
||||||
fluid: 'gtceu:steam',
|
fluid: 'gtceu:steam',
|
||||||
amount: 256
|
amount: 100
|
||||||
},
|
},
|
||||||
burnTime: 4 * 9 * 9
|
burnTime: 1
|
||||||
}).id('tfg:createadditions/liquid_burning/steam')
|
}).id('tfg:createadditions/liquid_burning/steam')
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue