add trinium to t5, fix ULV hull, fix AE2 recipes
This commit is contained in:
parent
2f7338b22a
commit
4e2ec35ab8
@ -26,6 +26,7 @@ material.draconic_superconductor=Draconic Superconductor
|
||||
material.fluix=Fluix
|
||||
material.osmiridium_8020=Osmiridium 80/20
|
||||
material.iridosmine_8020=Iridosmine 80/20
|
||||
material.kaemanite=Kaemanite
|
||||
|
||||
item.contenttweaker.omnicoin.name=Omnipenny [1]
|
||||
item.contenttweaker.omnicoin5.name=Omninickel [5]
|
||||
|
@ -374,3 +374,25 @@ macerator.recipeBuilder()
|
||||
.outputs(<appliedenergistics2:material:45>)
|
||||
.inputs(<appliedenergistics2:sky_stone_block>)
|
||||
.duration(45).EUt(8).buildAndRegister();
|
||||
|
||||
// certus block
|
||||
recipes.removeByRecipeName("appliedenergistics2:decorative/certus_quartz_block");
|
||||
recipes.addShaped(<appliedenergistics2:quartz_block>, [
|
||||
[<appliedenergistics2:material>, <appliedenergistics2:material>],
|
||||
[<appliedenergistics2:material>, <appliedenergistics2:material>]
|
||||
]);
|
||||
|
||||
// Oredict Storage Bus
|
||||
recipes.removeByRecipeName("appliedenergistics2:network/parts/oredict_storage_bus");
|
||||
recipes.removeByRecipeName("appliedenergistics2:network/parts/oredict_storage_bus_alt");
|
||||
recipes.addShapeless("nf_oredict_storage_bus",
|
||||
<appliedenergistics2:part:222>,
|
||||
[<appliedenergistics2:part:220>, <metaitem:ore_dictionary_filter>]);
|
||||
|
||||
// Extended Processing Pattern Terminal
|
||||
recipes.removeByRecipeName("appliedenergistics2:network/parts/terminal_expanded_processing");
|
||||
recipes.addShaped("nf_terminal_expanded_processing", <appliedenergistics2:part:341>, [
|
||||
[null, <appliedenergistics2:part:340>, null],
|
||||
[null, <ore:circuitExtreme>, null],
|
||||
[null, <packagedauto:encoder>, null]
|
||||
]);
|
@ -234,7 +234,7 @@ recipes.addShaped(<meta_tile_entity:pyrolyse_oven>, [
|
||||
recipes.remove(<meta_tile_entity:hull.ulv>);
|
||||
recipes.addShaped(<meta_tile_entity:hull.ulv>, [
|
||||
[<ore:plateIron>, <ore:plateIron>, <ore:plateIron>],
|
||||
[<ore:cableGtSingleRedAlloy>, <gregtech:machine_casing>, <ore:cableGtSingleRedAlloy>]]);
|
||||
[<ore:cableGtSingleLead>, <gregtech:machine_casing>, <ore:cableGtSingleLead>]]);
|
||||
|
||||
// pyro
|
||||
|
||||
|
@ -202,6 +202,15 @@ var iridosmine_8020 = MaterialBuilder(32030, "iridosmine_8020")
|
||||
.addOreByproducts(<material:iridium>, <material:osmium>, <material:rhodium>)
|
||||
.build();
|
||||
|
||||
var kaemanite = MaterialBuilder(32031, "kaemanite")
|
||||
.dust()
|
||||
.components([<material:trinium> * 1, <material:tantalum> * 1, <material:oxygen> * 4])
|
||||
.color(0xe7413c).iconSet("bright")
|
||||
.ore()
|
||||
.addOreByproducts(<material:niobium>, <material:trinium>, <material:trinium>)
|
||||
.washedIn(<material:sodium_persulfate>)
|
||||
.build();
|
||||
|
||||
<material:lutetium>.addIngot();
|
||||
<material:neptunium>.addIngot();
|
||||
<material:curium>.addIngot();
|
||||
|
@ -583,7 +583,7 @@ microverse_projector_advanced.recipeMap
|
||||
<gregtech:ore_beryllium_0> * 64)
|
||||
.buildAndRegister();
|
||||
|
||||
// t5 naquadah sheldonite
|
||||
// t5 naquadah sheldonite trinium
|
||||
microverse_projector_advanced.recipeMap
|
||||
.recipeBuilder()
|
||||
.duration(1000)
|
||||
@ -593,9 +593,10 @@ microverse_projector_advanced.recipeMap
|
||||
<contenttweaker:stabilizedplutonium> * 32)
|
||||
.outputs(<gregtech:ore_cooperite_0:2> * 64,
|
||||
<gregtech:ore_cooperite_0:2> * 64,
|
||||
<gregtech:ore_naquadah_0:2> * 64,
|
||||
<gregtech:ore_naquadah_0:2> * 64,
|
||||
<gregtech:ore_naquadah_0:2> * 32)
|
||||
<gregtech:ore_kaemanite_0:2> * 64,
|
||||
<gregtech:ore_naquadah_0> * 64,
|
||||
<gregtech:ore_naquadah_0> * 64,
|
||||
<gregtech:ore_naquadah_0> * 64)
|
||||
|
||||
.buildAndRegister();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user