a bunch of small tweaks
This commit is contained in:
parent
7973b44cba
commit
3fb490fe04
9 changed files with 54 additions and 22 deletions
|
|
@ -881,9 +881,9 @@ const registerAdAstraRecipes = (event) => {
|
|||
)
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/glacian_fur')
|
||||
.itemInputs('8x tfg:glacian_wool')
|
||||
.itemInputs('tfg:glacian_wool')
|
||||
.circuit(10)
|
||||
.itemOutputs('8x ad_astra:glacian_fur')
|
||||
.itemOutputs('ad_astra:glacian_fur')
|
||||
.duration(100)
|
||||
.EUt(4)
|
||||
|
||||
|
|
|
|||
|
|
@ -15,4 +15,28 @@ function registerEndermanOverhaulRecipes(event) {
|
|||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.duration(50)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.shaped('endermanoverhaul:corrupted_shield', [
|
||||
'ABA',
|
||||
'ECE',
|
||||
'ADA'
|
||||
], {
|
||||
A: 'endermanoverhaul:enderman_tooth',
|
||||
B: 'endermanoverhaul:corrupted_pearl',
|
||||
C: 'tfc:metal/shield/blue_steel',
|
||||
D: '#forge:plates/ender_pearl',
|
||||
E: '#forge:plates/titanium'
|
||||
}).id('tfg:shaped/corrupted_shield_blue')
|
||||
|
||||
event.shaped('endermanoverhaul:corrupted_shield', [
|
||||
'ABA',
|
||||
'ACA',
|
||||
'ADA'
|
||||
], {
|
||||
A: 'endermanoverhaul:enderman_tooth',
|
||||
B: 'endermanoverhaul:corrupted_pearl',
|
||||
C: 'tfc:metal/shield/red_steel',
|
||||
D: '#forge:plates/ender_pearl',
|
||||
E: '#forge:plates/titanium'
|
||||
}).id('tfg:shaped/corrupted_shield_red')
|
||||
}
|
||||
|
|
@ -3,9 +3,7 @@
|
|||
const registerEndermanOverhaulItemTags = (event) => {
|
||||
|
||||
const DISABLED_ITEMS = [
|
||||
'endermanoverhaul:enderman_tooth',
|
||||
'endermanoverhaul:corrupted_blade',
|
||||
'endermanoverhaul:corrupted_shield',
|
||||
|
||||
'endermanoverhaul:savanna_hood',
|
||||
'endermanoverhaul:snowy_hood',
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@ const registerSandwormRecipes = (event) => {
|
|||
.itemOutputs('sandworm_mod:thumper')
|
||||
.duration(200)
|
||||
.circuit(10)
|
||||
.EUt(GTValues.VA[GTValues.EV]*2);
|
||||
.EUt(GTValues.VA[GTValues.EV]);
|
||||
}
|
||||
|
|
@ -73,37 +73,45 @@ function registerSpeciesRecipes(event) {
|
|||
event.shapeless('species:cracked_wraptor_egg', ['tfg:wraptor_egg', '#forge:tools/hammers']).id('tfg:shapeless/crack_egg')
|
||||
event.shapeless('2x tfg:wraptor_sugar', ['species:cracked_wraptor_egg']).id('tfg:shapeless/juice_egg')
|
||||
|
||||
event.recipes.gtceu.extractor('tfg:juice_egg_mv')
|
||||
event.recipes.gtceu.extractor('tfg:juice_wraptor_egg_mv')
|
||||
.itemInputs('species:cracked_wraptor_egg')
|
||||
.itemOutputs('4x tfg:wraptor_sugar')
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
event.recipes.gtceu.extractor('tfg:juice_egg_full')
|
||||
event.recipes.gtceu.extractor('tfg:juice_wraptor_egg_full')
|
||||
.itemInputs('tfg:wraptor_egg')
|
||||
.itemOutputs('4x tfg:wraptor_sugar')
|
||||
.duration(200)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
event.recipes.gtceu.extractor('tfg:juice_sniffer_egg')
|
||||
.itemInputs('tfg:sniffer_egg')
|
||||
.outputFluids(Fluid.of('firmalife:cream', 1000))
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
event.shaped('species:ricoshield', [
|
||||
'ABA',
|
||||
'EBE',
|
||||
'ACA',
|
||||
'ADA'
|
||||
'EDE'
|
||||
], {
|
||||
A: '#forge:double_plates/copper',
|
||||
A: '#forge:springs/steel',
|
||||
B: 'create:precision_mechanism',
|
||||
C: 'species:kinetic_core',
|
||||
D: 'tfc:metal/shield/blue_steel'
|
||||
C: 'tfc:metal/shield/blue_steel',
|
||||
D: 'species:kinetic_core',
|
||||
E: '#forge:plates/titanium'
|
||||
}).id('tfg:shaped/ricoshield_blue')
|
||||
|
||||
event.shaped('species:ricoshield', [
|
||||
'ABA',
|
||||
'EBE',
|
||||
'ACA',
|
||||
'ADA'
|
||||
'EDE'
|
||||
], {
|
||||
A: '#forge:double_plates/copper',
|
||||
A: '#forge:springs/steel',
|
||||
B: 'create:precision_mechanism',
|
||||
C: 'species:kinetic_core',
|
||||
D: 'tfc:metal/shield/red_steel'
|
||||
C: 'tfc:metal/shield/red_steel',
|
||||
D: 'species:kinetic_core',
|
||||
E: '#forge:plates/titanium'
|
||||
}).id('tfg:shaped/ricoshield_red')
|
||||
|
||||
event.shaped('species:deflector_dummy', [
|
||||
|
|
|
|||
|
|
@ -554,7 +554,7 @@ function registerTFGFoodData(event) {
|
|||
event.foodItem("betterend:cave_pumpkin_pie", (food) => {
|
||||
food.hunger(4);
|
||||
food.saturation(4);
|
||||
food.decayModifier(2);
|
||||
food.decayModifier(1.5);
|
||||
food.water(5);
|
||||
food.protein(1);
|
||||
food.fruit(5);
|
||||
|
|
|
|||
|
|
@ -917,7 +917,7 @@ function registerTFGMiscellaneousRecipes(event) {
|
|||
.outputFluids(Fluid.of('tfg:molten_aes', 200))
|
||||
.circuit(4)
|
||||
.duration(80)
|
||||
.blastFurnaceTemp(3400)
|
||||
.blastFurnaceTemp(3000)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
event.recipes.gtceu.electric_blast_furnace('tfg:smelt_wraptor_wool')
|
||||
.itemInputs('tfg:wraptor_wool')
|
||||
|
|
@ -925,7 +925,7 @@ function registerTFGMiscellaneousRecipes(event) {
|
|||
.outputFluids(Fluid.of('tfg:molten_aes', 100))
|
||||
.circuit(8)
|
||||
.duration(60)
|
||||
.blastFurnaceTemp(3400)
|
||||
.blastFurnaceTemp(3000)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
|
||||
event.recipes.tfc.damage_inputs_shapeless_crafting(
|
||||
|
|
|
|||
|
|
@ -53,12 +53,13 @@ const registerWABRecipes = (event) => {
|
|||
|
||||
event.shaped('wan_ancient_beasts:reinforced_shield', [
|
||||
'BAB',
|
||||
'BCB',
|
||||
'DCD',
|
||||
'BAB'
|
||||
], {
|
||||
A: 'wan_ancient_beasts:eater_tooth',
|
||||
B: 'wan_ancient_beasts:crusher_spike',
|
||||
C: '#tfc:shields'
|
||||
C: '#tfc:shields',
|
||||
D: '#forge:plates/titanium'
|
||||
}).id('tfg:shaped/reinforced_shield_from_shield')
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
GTMaterials.Beryllium.addFlags(GENERATE_DUSTY_ORES);
|
||||
GTMaterials.Thorium.addFlags(GENERATE_DUSTY_ORES);
|
||||
GTMaterials.Uraninite.addFlags(GENERATE_DUSTY_ORES);
|
||||
GTMaterials.Hematite.addFlags(GENERATE_DUSTY_ORES);
|
||||
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue