This commit is contained in:
m2r1k5 2022-02-13 19:10:18 +08:00
parent d042369a11
commit adb30e1ad1
12 changed files with 830 additions and 436 deletions

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ general {
B:disableQuestNotifications=false
# Enable this option so new players will spawn with a Quest Book. Default: false
B:spawnWithBook=true
B:spawnWithBook=false
}

View File

@ -0,0 +1 @@
material.rhodium_plated_palladium=Rhodium Plated Lumium-Palladium

View File

@ -43,6 +43,7 @@ furnace.remove(<metaitem:ingotSignalum>, <metaitem:dustSignalum>);
//blast_furnace.findRecipe(120, [<minecraft:iron_ingot>], [<liquid:oxygen> * 1000]).remove();
//blast_furnace.findRecipe(120, [<metaitem:ingotPigIron>], [<liquid:oxygen> * 1000]).remove();
//blast_furnace.findRecipe(120, [<metaitem:ingotWroughtIron>], [<liquid:oxygen> * 1000]).remove();
// Steel Ingot * 1
<recipemap:electric_blast_furnace>.findRecipe(120, [<metaitem:ingotWroughtIron>], [<liquid:oxygen> * 1000]).remove();
// Steel Ingot * 1

View File

@ -130,7 +130,7 @@ recipes.remove(<enderstorage:ender_storage:1>);
//Black Quartz
electrolyzer.recipeBuilder().inputs([<metaitem:dustQuartzite> * 4]).outputs([<actuallyadditions:item_dust:7>]).duration(400).EUt(90).buildAndRegister();
centrifuge.recipeBuilder().inputs([<metaitem:dustQuartzite> * 4]).outputs([<actuallyadditions:item_dust:7>]).duration(400).EUt(90).buildAndRegister();
autoclave.recipeBuilder().inputs([<actuallyadditions:item_dust:7>]).fluidInputs(<liquid:water> * 1000).outputs([<actuallyadditions:item_misc:5>]).duration(150).EUt(16).buildAndRegister();
//Mechanical Crafter
@ -170,9 +170,9 @@ recipes.remove(<appliedenergistics2:quartz_glass>);
recipes.addShaped(<simplyjetpacks:metaitem:4>, [[<minecraft:leather>, <ore:plateSteel>, <minecraft:leather>]]);
// Steel
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCoal>]).outputs([<metaitem:ingotSteel>]).duration(200).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCharcoal>]).outputs([<metaitem:ingotSteel>]).duration(200).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCarbon>]).outputs([<metaitem:ingotSteel>]).duration(200).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCoal>]).outputs([<metaitem:ingotSteel>]).duration(150).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCharcoal>]).outputs([<metaitem:ingotSteel>]).duration(150).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCarbon>]).outputs([<metaitem:ingotSteel>]).duration(150).EUt(16).buildAndRegister();
//EIO Alloys
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotSteel>, <minecraft:obsidian>]).outputs([<metaitem:ingotDarkSteel>]).duration(240).EUt(16).buildAndRegister();
alloy_smelter.recipeBuilder().inputs([<metaitem:ingotSteel>, <actuallyadditions:item_crystal:3>]).outputs([<metaitem:ingotDarkSteel>]).duration(240).EUt(16).buildAndRegister();
@ -1109,3 +1109,76 @@ electrolyzer.recipeBuilder()
.duration(768)
.EUt(30)
.buildAndRegister();
// PBF nomified
furnace.remove(<metaitem:brick.fireclay>);
furnace.addRecipe(<metaitem:brick.fireclay>, <metaitem:dustFireclay>, 0.5);
recipes.removeByRecipeName("gregtech:fireclay_dust");
recipes.addShapeless("fireclay_dust", <metaitem:dustFireclay> * 16, [<metaitem:dustClay>, <metaitem:dustBrick>]);
// PBF recipe removals
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <metaitem:dustCoke>], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <metaitem:gemCoke>], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <minecraft:coal:1> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <metaitem:dustCoal> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <minecraft:coal:0> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:ingotWroughtIron>, <metaitem:dustCharcoal> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <metaitem:dustCoke>], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <metaitem:gemCoke>], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <minecraft:coal:1> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <metaitem:dustCoal> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <minecraft:coal:0> * 2], null).remove();
// Steel Ingot * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_ingot:0>, <metaitem:dustCharcoal> * 2], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:blockWroughtIron>, <metaitem:blockCoke>], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:blockWroughtIron>, <metaitem:blockCharcoal> * 2], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<metaitem:blockWroughtIron>, <minecraft:coal_block:0> * 2], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_block:0>, <metaitem:blockCoke>], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_block:0>, <minecraft:coal_block:0> * 2], null).remove();
// Block of Steel * 1
<recipemap:primitive_blast_furnace>.findRecipe(1, [<minecraft:iron_block:0>, <metaitem:blockCharcoal> * 2], null).remove();
// PBF recipes
primitive_blast_furnace.recipeBuilder()
.inputs([<metaitem:ingotWroughtIron>, <minecraft:coal>])
.outputs([<metaitem:ingotSteel>, <metaitem:dustTinyDarkAsh> * 2])
.duration(400)
.EUt(1)
.buildAndRegister();
primitive_blast_furnace.recipeBuilder()
.inputs([<metaitem:ingotWroughtIron>, <minecraft:coal:1>])
.outputs([<metaitem:ingotSteel>, <metaitem:dustTinyDarkAsh> * 2])
.duration(400)
.EUt(1)
.buildAndRegister();
primitive_blast_furnace.recipeBuilder()
.inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCoal>])
.outputs([<metaitem:ingotSteel>, <metaitem:dustTinyDarkAsh> * 2])
.duration(400)
.EUt(1)
.buildAndRegister();
primitive_blast_furnace.recipeBuilder()
.inputs([<metaitem:ingotWroughtIron>, <metaitem:dustCharcoal>])
.outputs([<metaitem:ingotSteel>, <metaitem:dustTinyDarkAsh> * 2])
.duration(400)
.EUt(1)
.buildAndRegister();

View File

@ -231,34 +231,35 @@ fusion_reactor.recipeBuilder()
.property("eu_to_start", 400000000)
.buildAndRegister();
// LuV Machine Casing
recipes.remove(<gregtech:machine_casing:6>);
// LuV Machine Hull
recipes.remove(<meta_tile_entity:hull.luv>);
recipes.addShaped(<meta_tile_entity:hull.luv>, [
[<metaitem:platePolytetrafluoroethylene>, <ore:plateLumium>, <metaitem:platePolytetrafluoroethylene>],
[<ore:cableGtSingleVanadiumGallium>, <gregtech:machine_casing:6>, <ore:cableGtSingleVanadiumGallium>]]);
assembler.findRecipe(16,
[<ore:plateRhodiumPlatedPalladium>.firstItem * 8,
<metaitem:circuit.integrated>.withTag({Configuration: 8})],
[null]).remove();
assembler.recipeBuilder()
.inputs(<ore:plateLumium> * 8)
.outputs([<gregtech:machine_casing:6>])
.duration(30).EUt(16).buildAndRegister();
//// LuV Machine Casing
//recipes.remove(<gregtech:machine_casing:6>);
//
//// LuV Machine Hull
//recipes.remove(<meta_tile_entity:hull.luv>);
//
//recipes.addShaped(<meta_tile_entity:hull.luv>, [
// [<metaitem:platePolytetrafluoroethylene>, <ore:plateLumium>, <metaitem:platePolytetrafluoroethylene>],
// [<ore:cableGtSingleVanadiumGallium>, <gregtech:machine_casing:6>, <ore:cableGtSingleVanadiumGallium>]]);
//
//assembler.findRecipe(16,
// [<ore:plateRhodiumPlatedPalladium>.firstItem * 8,
// <metaitem:circuit.integrated>.withTag({Configuration: 8})],
// [null]).remove();
//
//assembler.recipeBuilder()
// .inputs(<ore:plateLumium> * 8)
// .outputs([<gregtech:machine_casing:6>])
// .duration(30).EUt(16).buildAndRegister();
//
//Rare Earth
// Redstone * 1
<recipemap:centrifuge>.findRecipe(24, [<metaitem:dustImpureRedstone>], null).remove();
centrifuge.recipeBuilder()
.inputs(<metaitem:dustImpureRedstone>)
.outputs([<minecraft:redstone>, <metaitem:dustTinyRareEarth>])
.duration(900).EUt(24).buildAndRegister();
//// Redstone * 1
//<recipemap:centrifuge>.findRecipe(24, [<metaitem:dustImpureRedstone>], null).remove();
//
//centrifuge.recipeBuilder()
// .inputs(<metaitem:dustImpureRedstone>)
// .outputs([<minecraft:redstone>, <metaitem:dustTinyRareEarth>])
// .duration(900).EUt(24).buildAndRegister();
//Bismuth
@ -483,4 +484,46 @@ assembly_line.recipeBuilder()
.outputs(<metaitem:field.generator.zpm>)
.duration(600)
.EUt(24000)
.buildAndRegister();
// Rhodium Plated Palladium
// Rhodium Plated Palladium Dust * 4
<recipemap:mixer>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 1})], null).remove();
mixer.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.circuit(1)
.outputs(<metaitem:dustRhodiumPlatedPalladium> * 6)
.duration(400)
.EUt(7680)
.buildAndRegister();
// Palladium Dust * 3
<recipemap:centrifuge>.findRecipe(30, [<metaitem:dustRhodiumPlatedPalladium> * 4], null).remove();
centrifuge.recipeBuilder()
.inputs(<metaitem:dustRhodiumPlatedPalladium> * 6)
.outputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.duration(630)
.EUt(30)
.buildAndRegister();
// Molten Rhodium Plated Palladium * 576
<recipemap:alloy_blast_smelter>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 12})], [<liquid:argon> * 200]).remove();
// Molten Rhodium Plated Palladium * 576
<recipemap:alloy_blast_smelter>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 2})], null).remove();
alloy_blast_smelter.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.circuit(3)
.fluidOutputs(<liquid:molten.rhodium_plated_palladium> * 864)
.property("temperature", 4500)
.duration(3600)
.EUt(7680)
.buildAndRegister();
alloy_blast_smelter.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.fluidInputs(<liquid:argon> * 300)
.circuit(13)
.fluidOutputs(<liquid:molten.rhodium_plated_palladium> * 864)
.property("temperature", 4500)
.duration(2412)
.EUt(7680)
.buildAndRegister();

View File

@ -3,6 +3,20 @@ import crafttweaker.item.IItemStack;
import crafttweaker.item.IIngredient;
import crafttweaker.data.IData;
recipes.remove(<thermalexpansion:satchel:2>);
recipes.addShaped("test", <thermalexpansion:satchel:2>, [
[null, <metaitem:nuggetElectrum>, null],
[<metaitem:ingotAluminium>, <thermalexpansion:satchel:1>.marked("satchel"), <metaitem:ingotAluminium>],
[<metaitem:nuggetElectrum>, null, <metaitem:nuggetElectrum>]],
function(out, ins, cInfo) {
var tag = {} as IData;
# This if is here to keep the tinkers workbench from screwing up JEI autocomplete
if(ins has "satchel" && !isNull(ins.satchel) && ins.satchel.hasTag) {
tag = ins.satchel.tag;
}
return out.withTag(tag);
}, null);
//Ender Star
recipes.remove(<actuallyadditions:item_misc:19>);
reactor.recipeBuilder().inputs([<minecraft:nether_star>]).fluidInputs([<liquid:ender_distillation> * 8000]).outputs(<actuallyadditions:item_misc:19>).EUt(400).duration(2000).buildAndRegister();
@ -19,13 +33,13 @@ fermenter.recipeBuilder().fluidInputs([<liquid:canolaoil> * 100]).fluidOutputs([
//Canola
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:canolaoil> * 1000,<liquid:methanol> * 6000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
//chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:canolaoil> * 1000,<liquid:bio.ethanol> * 6000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:canolaoil> * 1000,<liquid:ethanol> * 6000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:refinedcanolaoil> * 750,<liquid:methanol> * 4500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
//chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:refinedcanolaoil> * 750,<liquid:bio.ethanol> * 4500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:refinedcanolaoil> * 750,<liquid:ethanol> * 4500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000,]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:crystaloil> * 500,<liquid:methanol> * 3000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
//chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:crystaloil> * 500,<liquid:bio.ethanol> * 3000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:crystaloil> * 500,<liquid:ethanol> * 3000]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:empoweredoil> * 250,<liquid:methanol> * 1500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
//chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:empoweredoil> * 250,<liquid:bio.ethanol> * 1500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<metaitem:dustTinySodiumHydroxide>).fluidInputs([<liquid:empoweredoil> * 250,<liquid:ethanol> * 1500]).fluidOutputs([<liquid:glycerol> * 1000,<liquid:bio_diesel> * 6000]).duration(300).EUt(30).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<actuallyadditions:item_misc:23>).fluidInputs([<liquid:canolaoil> * 1000]).fluidOutputs([<liquid:crystaloil> * 1000]).duration(100).EUt(120).buildAndRegister();
chemical_reactor.recipeBuilder().inputs(<actuallyadditions:item_misc:24>).fluidInputs([<liquid:canolaoil> * 1000]).fluidOutputs([<liquid:empoweredoil> * 1000]).duration(100).EUt(500).buildAndRegister();
@ -49,7 +63,25 @@ centrifuge.findRecipe(20, [], [<liquid:hydrogen> * 160]).remove();
centrifuge.recipeBuilder().fluidInputs(<liquid:hydrogen> * 500).fluidOutputs([<liquid:deuterium> * 10]).duration(800).EUt(30).buildAndRegister();
centrifuge.recipeBuilder().inputs(<contenttweaker:moondust>).fluidOutputs([<liquid:deuterium> * 100]).duration(200).EUt(20).buildAndRegister();
//centrifuge.recipeBuilder().inputs(<metaitem:dustStone> * 3).outputs([<metaitem:dustSiliconDioxide> * 2]).duration(40).EUt(20).buildAndRegister();
//// Stone Dust
//centrifuge.recipeBuilder()
// .inputs(<metaitem:dustStone> * 3)
// .outputs([<metaitem:dustSiliconDioxide> * 2])
// .circuit(2)
// .duration(40).EUt(20)
// .buildAndRegister();
//
//// Small Pile of Quartzite Dust * 1
//<recipemap:centrifuge>.findRecipe(120, [<metaitem:dustStone>], null).remove();
//centrifuge.recipeBuilder()
// .inputs(<metaitem:dustStone>)
// .circuit(1)
// .outputs([<metaitem:dustSmallQuartzite>, <metaitem:dustSmallPotassiumFeldspar>, <metaitem:dustTinyMarble> * 2, <metaitem:dustTinyBiotite>])
// .chancedOutput(<metaitem:dustTinySodalite>, 5000, 500)
// .chancedOutput(<metaitem:dustTinyMetalMixture>, 7500, 750)
// .duration(480)
// .EUt(120)
// .buildAndRegister();
//Gear Boxes Via Assembler
//assembler.recipeBuilder()
@ -118,4 +150,8 @@ macerator.recipeBuilder()
.EUt(2)
.buildAndRegister();
canner.recipeBuilder()
.inputs(<minecraft:glass_bottle>)
.fluidInputs(<liquid:xpjuice> * 500)
.outputs(<minecraft:experience_bottle>)
.duration(1500).EUt(4).buildAndRegister();

View File

@ -1863,7 +1863,7 @@ mods.jei.JEI.removeAndHide(<meta_tile_entity:steam_alloy_smelter_steel>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:electromagnetic_separator.hv>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:electromagnetic_separator.ev>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:magic_energy_absorber>);
mods.jei.JEI.removeAndHide(<meta_tile_entity:primitive_blast_furnace.bronze>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:primitive_blast_furnace.bronze>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:cracker>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:coke_oven_hatch>);
//mods.jei.JEI.removeAndHide(<meta_tile_entity:coke_oven>);

View File

@ -153,52 +153,52 @@ recipes.addShaped(furnGen, [
[<metaitem:plateRedAlloy>,<metaitem:plateRedAlloy>,<metaitem:plateRedAlloy>]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_survival"}), [
[<minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>],
[<minecraft:cobblestone>, <extrautils2:machine>, <minecraft:cobblestone>],
[<ore:compressed4xCobblestone>, <ore:compressed4xCobblestone>, <ore:compressed4xCobblestone>],
[<ore:compressed4xCobblestone>, <extrautils2:machine>, <ore:compressed4xCobblestone>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_culinary"}), [
[<minecraft:potato>, <minecraft:potato>, <minecraft:potato>],
[<metaitem:dustAgar>, <minecraft:potato>, <metaitem:dustAgar>],
[<minecraft:potato>, <extrautils2:machine>, <minecraft:potato>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_slime"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_lava"}), [
[<minecraft:lava_bucket:*>, <metaitem:plateGold>, <minecraft:lava_bucket:*>],
[<ore:dustPyrotheum>, <metaitem:plateGold>, <ore:dustPyrotheum>],
[<metaitem:plateGold>, <extrautils2:machine>, <metaitem:plateGold>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_redstone"}), [
[redPlate, <ore:blockRedAlloy>, redPlate],
[redPlate, <extrautils2:machine>, redPlate],
[<metaitem:plateTantalum>, <ore:blockRedAlloy>, <metaitem:plateTantalum>],
[<metaitem:plateTantalum>, <extrautils2:machine>, <metaitem:plateTantalum>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_lava"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_ender"}), [
[<metaitem:plateEnderPearl>, <metaitem:plateEnderPearl>, <metaitem:plateEnderPearl>],
[<metaitem:sensor.ev>, <metaitem:plateEnderPearl>, <metaitem:sensor.ev>],
[<metaitem:plateEnderPearl>, <extrautils2:machine>, <metaitem:plateEnderPearl>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_potion"}), [
[<minecraft:brewing_stand:*>,<minecraft:brewing_stand:*>,<minecraft:brewing_stand:*>],
[<minecraft:brewing_stand:*>,<extrautils2:machine>,<minecraft:brewing_stand:*>],
[<metaitem:springNichrome>,<metaitem:springNichrome>,<metaitem:springNichrome>],
[<metaitem:springNichrome>,<extrautils2:machine>,<metaitem:springNichrome>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_pink"}), [
[<minecraft:dye:9>, <minecraft:dye:9>, <minecraft:dye:9>],
[<minecraft:dye:9>, <extrautils2:machine>, <minecraft:dye:9>],
[<metaitem:dye.pink>, <metaitem:dye.pink>, <metaitem:dye.pink>],
[<metaitem:dye.pink>, <extrautils2:machine>, <metaitem:dye.pink>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_potion"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_overclock"}), [
[<extrautils2:redstoneclock>,<extrautils2:redstoneclock>,<extrautils2:redstoneclock>],
[<extrautils2:redstoneclock>,<extrautils2:machine>,<extrautils2:redstoneclock>],
[<metaitem:wireGtQuadrupleUraniumRhodiumDinaquadide>,<metaitem:wireGtQuadrupleUraniumRhodiumDinaquadide>,<metaitem:wireGtQuadrupleUraniumRhodiumDinaquadide>],
[<metaitem:wireGtQuadrupleUraniumRhodiumDinaquadide>,<extrautils2:machine>,<metaitem:wireGtQuadrupleUraniumRhodiumDinaquadide>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_tnt"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_tnt"}), [
[<metaitem:plateEnergeticAlloy>,<ore:blockVanadiumSteel>,<metaitem:plateEnergeticAlloy>],
[<metaitem:plateEnergeticAlloy>,<extrautils2:machine>,<metaitem:plateEnergeticAlloy>],
[<metaitem:plateDoubleIncoloyMa956>,<ore:blockVanadiumSteel>,<metaitem:plateDoubleIncoloyMa956>],
[<metaitem:plateDoubleIncoloyMa956>,<extrautils2:machine>,<metaitem:plateDoubleIncoloyMa956>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_slime"}), [
[<minecraft:slime>,<minecraft:slime>,<minecraft:slime>],
[<metaitem:blockPolybenzimidazole>,<minecraft:slime>,<metaitem:blockPolybenzimidazole>],
[<minecraft:slime>,<extrautils2:machine>,<minecraft:slime>],
[redPlate, furnGen, redPlate]]);
@ -208,18 +208,18 @@ recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_de
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_ice"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_enchant"}), [
[<minecraft:enchanting_table:*>,<minecraft:enchanting_table:*>,<minecraft:enchanting_table:*>],
[<minecraft:enchanting_table:*>,<extrautils2:machine>,<minecraft:enchanting_table:*>],
[<metaitem:magic_energy_absorber>,<metaitem:magic_energy_absorber>,<metaitem:magic_energy_absorber>],
[<metaitem:magic_energy_absorber>,<extrautils2:machine>,<metaitem:magic_energy_absorber>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_potion"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_dragonsbreath"}), [
[<minecraft:purpur_block:*>, <minecraft:end_rod:*>, <minecraft:purpur_block:*>],
[<metaitem:blockCobaltBrass>, <minecraft:end_rod:*>, <metaitem:blockCobaltBrass>],
[<minecraft:purpur_block:*>, <extrautils2:machine>, <minecraft:purpur_block:*>],
[redPlate, <extrautils2:machine>.withTag({Type: "extrautils2:generator_tnt"}), redPlate]]);
recipes.addShaped(<extrautils2:machine>.withTag({Type: "extrautils2:generator_ice"}), [
[<minecraft:ice:*>,<minecraft:ice:*>,<minecraft:ice:*>],
[<minecraft:ice:*>,<extrautils2:machine>,<minecraft:ice:*>],
[<nuclearcraft:block_ice>,<nuclearcraft:block_ice>,<nuclearcraft:block_ice>],
[<nuclearcraft:block_ice>,<extrautils2:machine>,<nuclearcraft:block_ice>],
[redPlate, furnGen, redPlate]]);
recipes.addShaped(<draconicevolution:generator>, [

View File

@ -164,19 +164,19 @@ makeShaped("of_microverse_casing", <contenttweaker:microverse_casing> * 2,
{ P : <ore:ingotMicroversium>, //Microversium Ingot
W : wrench});
// LuV Machine Casing
makeShaped("of_luv_casing", <gregtech:machine_casing:6>,
["PPP",
"PWP",
"PPP"],
{ P : <ore:plateLumium>, //Lumium Plate
W : wrench});
//// LuV Machine Casing
//makeShaped("of_luv_casing", <gregtech:machine_casing:6>,
// ["PPP",
// "PWP",
// "PPP"],
// { P : <ore:plateLumium>, //Lumium Plate
// W : wrench});
//LV Hull
recipes.remove(<meta_tile_entity:hull.lv>);
recipes.addShaped(<meta_tile_entity:hull.lv>, [
[<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>],
[<ore:cableGtSingleTin>, <gregtech:machine_casing:1>, <ore:cableGtSingleTin>]]);
////LV Hull
//recipes.remove(<meta_tile_entity:hull.lv>);
//recipes.addShaped(<meta_tile_entity:hull.lv>, [
// [<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>],
// [<ore:cableGtSingleTin>, <gregtech:machine_casing:1>, <ore:cableGtSingleTin>]]);
// remove steel LV Motor recipes
recipes.removeByRecipeName("gregtech:electric_motor_lv_steel");
@ -198,29 +198,29 @@ recipes.addShaped(<meta_tile_entity:pyrolyse_oven>, [
[<ore:circuitBasic>, <meta_tile_entity:hull.ulv>, <ore:circuitBasic>],
[<metaitem:electric.piston.lv>, <metaitem:electric.pump.lv>, <ore:wireGtQuadrupleCupronickel>]]);
// LV Casing
recipes.removeByRecipeName("gregtech:casing.lv");
recipes.addShaped(<gregtech:machine_casing:1>, [
[<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>],
[<ore:plateWroughtIron>, <ore:gtceWrenches>, <ore:plateWroughtIron>],
[<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>]
]);
// LV Machine Casing * 1
<recipemap:assembler>.findRecipe(16, [<metaitem:plateSteel> * 8, <metaitem:circuit.integrated>.withTag({Configuration: 8})], null).remove();
assembler.recipeBuilder().inputs(<ore:plateWroughtIron> * 8).notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 8})).outputs([<gregtech:machine_casing:1>]).duration(30).EUt(16).buildAndRegister();
// ULV Casing
recipes.removeByRecipeName("gregtech:casing_ulv");
recipes.addShaped(<gregtech:machine_casing>, [
[<metaitem:plateIron>, <metaitem:plateIron>, <metaitem:plateIron>],
[<metaitem:plateIron>, <ore:gtceWrenches>, <metaitem:plateIron>],
[<metaitem:plateIron>, <metaitem:plateIron>, <metaitem:plateIron>]
]);
// ULV Machine Casing * 1
<recipemap:assembler>.findRecipe(16, [<metaitem:plateWroughtIron> * 8, <metaitem:circuit.integrated>.withTag({Configuration: 8})], null).remove();
assembler.recipeBuilder().inputs(<ore:plateIron> * 8).notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 8})).outputs([<gregtech:machine_casing>]).duration(30).EUt(16).buildAndRegister();
//// LV Casing
//recipes.removeByRecipeName("gregtech:casing.lv");
//recipes.addShaped(<gregtech:machine_casing:1>, [
// [<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>],
// [<ore:plateWroughtIron>, <ore:gtceWrenches>, <ore:plateWroughtIron>],
// [<ore:plateWroughtIron>, <ore:plateWroughtIron>, <ore:plateWroughtIron>]
//]);
//// LV Machine Casing * 1
//<recipemap:assembler>.findRecipe(16, [<metaitem:plateSteel> * 8, <metaitem:circuit.integrated>.withTag({Configuration: 8})], null).remove();
//assembler.recipeBuilder().inputs(<ore:plateWroughtIron> * 8).notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 8})).outputs([<gregtech:machine_casing:1>]).duration(30).EUt(16).buildAndRegister();
//
//// ULV Casing
//recipes.removeByRecipeName("gregtech:casing_ulv");
//
//recipes.addShaped(<gregtech:machine_casing>, [
// [<metaitem:plateIron>, <metaitem:plateIron>, <metaitem:plateIron>],
// [<metaitem:plateIron>, <ore:gtceWrenches>, <metaitem:plateIron>],
// [<metaitem:plateIron>, <metaitem:plateIron>, <metaitem:plateIron>]
//]);
//// ULV Machine Casing * 1
//<recipemap:assembler>.findRecipe(16, [<metaitem:plateWroughtIron> * 8, <metaitem:circuit.integrated>.withTag({Configuration: 8})], null).remove();
//
//assembler.recipeBuilder().inputs(<ore:plateIron> * 8).notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 8})).outputs([<gregtech:machine_casing>]).duration(30).EUt(16).buildAndRegister();
// pyro
@ -285,19 +285,19 @@ chemical_reactor.recipeBuilder().inputs(<metaitem:board.coated>).fluidInputs([<l
<recipemap:assembler>.findRecipe(7, [<metaitem:dustWood>, <metaitem:shape.mold.plate>], [<liquid:glue> * 50]).remove();
// make t1 circuits craftable w/o steam
recipes.removeByRecipeName("gregtech:electronic_circuit_lv");
recipes.addShaped(<metaitem:circuit.electronic>, [
[<metaitem:component.resistor>, <ore:plateWroughtIron>, <metaitem:component.resistor>],
[<metaitem:circuit.vacuum_tube>, <metaitem:circuit_board.basic>, <metaitem:circuit.vacuum_tube>],
[<metaitem:cableGtSingleRedAlloy>, <metaitem:cableGtSingleRedAlloy>, <metaitem:cableGtSingleRedAlloy>]
]);
recipes.removeByRecipeName("gregtech:vacuum_tube");
recipes.addShaped(<metaitem:circuit.vacuum_tube>, [
[null, null, null],
[<ore:stickWroughtIron>, <metaitem:component.glass.tube>, <ore:stickWroughtIron>],
[<metaitem:wireGtSingleCopper>, <metaitem:wireGtSingleCopper>, <metaitem:wireGtSingleCopper>]
]);
//recipes.removeByRecipeName("gregtech:electronic_circuit_lv");
//recipes.addShaped(<metaitem:circuit.electronic>, [
// [<metaitem:component.resistor>, <ore:plateWroughtIron>, <metaitem:component.resistor>],
// [<metaitem:circuit.vacuum_tube>, <metaitem:circuit_board.basic>, <metaitem:circuit.vacuum_tube>],
// [<metaitem:cableGtSingleRedAlloy>, <metaitem:cableGtSingleRedAlloy>, <metaitem:cableGtSingleRedAlloy>]
//]);
//
//recipes.removeByRecipeName("gregtech:vacuum_tube");
//recipes.addShaped(<metaitem:circuit.vacuum_tube>, [
// [null, null, null],
// [<ore:stickWroughtIron>, <metaitem:component.glass.tube>, <ore:stickWroughtIron>],
// [<metaitem:wireGtSingleCopper>, <metaitem:wireGtSingleCopper>, <metaitem:wireGtSingleCopper>]
//]);
recipes.addShaped(<metaitem:component.glass.tube>, [
[null, null, null],

View File

@ -919,10 +919,10 @@ makeExtremeRecipe9(<storagedrawers:upgrade_creative>,
{ A : <actuallyadditions:block_giant_chest_large>,
B : <actuallyadditions:block_giant_chest_medium>,
C : <avaritia:resource:5>,
D : <meta_tile_entity:super_chest.mv>,
E : <meta_tile_entity:super_chest.hv>,
F : <meta_tile_entity:super_chest.ev>,
G : <meta_tile_entity:super_chest.iv>,
D : <meta_tile_entity:quantum_chest.luv>,
E : <meta_tile_entity:quantum_chest.zpm>,
F : <meta_tile_entity:quantum_chest.uv>,
G : <meta_tile_entity:quantum_chest.uhv>,
H : <metaitem:crate.tungstensteel>,
I : <storagedrawers:upgrade_storage:4> });

View File

@ -184,7 +184,7 @@ var soularium = MaterialBuilder(32024, "soularium")
var end_steel = MaterialBuilder(32025, "end_steel")
.ingot().fluid()
.color(0xd6d980).iconSet("metallic")
.flags("generate_plate")
.flags("generate_plate", "generate_gear")
.cableProperties(2048,1,0,true)
.build();
@ -267,6 +267,7 @@ var iridosmine_8020 = MaterialBuilder(32030, "iridosmine_8020")
<material:glowstone>.setFormula("Au(Ca3(PO4)2)", true);
<material:energetic_alloy>.setFormula("Au2(Si(FeS2)5(CrAl2O3)Hg3)(Au(Ca3(PO4)2))", true);
<material:black_steel>.setFormula("(AuAgCu3)2Fe3?4", true);
<material:rhodium_plated_palladium>.setFormula("((SnFe)4(CuAg4)2)2Pd3Rh", true);
//<material:niobium>.setOreByProducts([<material:tantalum>]);
//<material:osmium>.setOreByProducts([<material:iridium>, <material:nickel>]);