2022-03-24 23:07:41 +08:00
|
|
|
#packmode expert
|
|
|
|
|
|
|
|
import scripts.common.makeExtremeRecipe5 as makeExtremeRecipe5;
|
|
|
|
import scripts.common.makeShaped as makeShaped;
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// Hide Normal Mode Controllers
|
|
|
|
mods.jei.JEI.removeAndHide(<metaitem:nomilabs:creative_tank_provider>);
|
|
|
|
mods.jei.JEI.removeAndHide(<metaitem:nomilabs:dme_sim_chamber>);
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2022-03-24 23:07:41 +08:00
|
|
|
// multiblock controller recipes
|
2024-03-24 23:45:47 +11:00
|
|
|
recipes.addShaped("microverse_projector_1", <metaitem:nomilabs:microverse_projector_1>, [
|
|
|
|
[<ore:circuitHv>, <nomilabs:microverse_casing>, <ore:circuitHv>],
|
|
|
|
[<nomilabs:microverse_casing>, <metaitem:cover.screen>, <nomilabs:microverse_casing>],
|
|
|
|
[<ore:circuitHv>, <nomilabs:microverse_casing>, <ore:circuitHv>]
|
2022-03-24 23:07:41 +08:00
|
|
|
]);
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
recipes.addShaped("microverse_projector_2", <metaitem:nomilabs:microverse_projector_2>, [
|
|
|
|
[<ore:circuitEv>, <nomilabs:microverse_casing>, <ore:circuitEv>],
|
|
|
|
[<nomilabs:microverse_casing>, <metaitem:cover.screen>, <nomilabs:microverse_casing>],
|
|
|
|
[<ore:circuitEv>, <nomilabs:microverse_casing>, <ore:circuitEv>]
|
2022-03-24 23:07:41 +08:00
|
|
|
]);
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
recipes.addShaped("microverse_projector_3", <metaitem:nomilabs:microverse_projector_3>, [
|
|
|
|
[<ore:circuitIv>, <nomilabs:microverse_casing>, <ore:circuitIv>],
|
|
|
|
[<nomilabs:microverse_casing>, <metaitem:cover.screen>, <nomilabs:microverse_casing>],
|
|
|
|
[<ore:circuitIv>, <nomilabs:microverse_casing>, <ore:circuitIv>]
|
2022-03-24 23:07:41 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
Fix and Improve Custom Multis (#483)
Adds Front Overlays back
Fix Muffler Hatch not being allowed everywhere (multiverse)
Adds Maintenance and Min Casing Requirements to all multis
Add distinct mode to some multis
Note: the HM crafting recipe for naq reactors has been removed, as the new assembly line recipe added applies to both NM and HM.
Fixes #504
Fixes #505
Fixes #513
[EXPAND]
[[messages]]
messageTitle = "Improve Custom Multis"
messageBody = """
[COMBINE]
commits = [\"bd58b9072f45d647734ae66168cbd27bf9b2f220\"]
[COMBINE]
"""
[[messages]]
messageTitle = "Fix Custom Multis"
messageBody = """
[BUG]
[IGNORE]
checks = { compareNot = \"1.7-alpha-1\" }
[IGNORE]
[DETAILS]
details = [
\"Fixes Multiverse Projector Muffler Hatch Issues\",
\"Fixes Naquadah Reactors\"
]
[DETAILS]
"""
[EXPAND]
[FIXUP]
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = """
[EXPAND]
[[messages]]
messageTitle = \"Update GT to 2.7.4\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\\",
\\"Adds Assembly Line Research\\",
\\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\\",
\\"Adds Filtered Output Hatches\\",
\\"Adds EU Multiblock Power Storage\\",
\\"Adds Multiblock Transformer and Laser Power Transfer\\",
\\"Adds Long Distance Pipes\\",
\\"Creating Waypoints in the Prospector\\",
\\"Fixing many bugs\\",
\\"And many more!\\"
]
[DETAILS]
\"\"\"
[[messages]]
messageTitle = \"Multiblock Changes\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\\",
\\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\\",
\\"Some Custom Multiblocks now have Distinct Mode\\",
\\"All Custom Multiblocks now have custom Front Overlays\\",
\\"Reworked & Improved Multiblock UIs\\"
]
[DETAILS]
\"\"\"
[EXPAND]
"""
[FIXUP]
2023-11-09 09:21:58 +11:00
|
|
|
// Naquadah Reactor
|
|
|
|
// Moved to Groovy
|
2022-03-30 12:41:49 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
makeExtremeRecipe5(<metaitem:nomilabs:actualization_chamber>,
|
2022-03-30 12:41:49 +08:00
|
|
|
["PPPPP",
|
|
|
|
"PEFSP",
|
|
|
|
"PWGWP",
|
|
|
|
"PSFEP",
|
|
|
|
"PPPPP"],
|
|
|
|
{ G : <metaitem:field.generator.uv>,
|
2022-04-06 17:27:36 +08:00
|
|
|
W : <ore:circuitUv>,
|
2022-03-30 12:41:49 +08:00
|
|
|
P : <ore:plateAmericium>,
|
|
|
|
E : <metaitem:emitter.uv>,
|
|
|
|
S : <metaitem:sensor.uv>,
|
|
|
|
F : <gregtech:fusion_casing:1> });
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// Universal Crystallizer (Moved to Grooy)
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2022-03-24 23:07:41 +08:00
|
|
|
// multiblock recipemap recipes
|
|
|
|
// basic projector
|
|
|
|
// t1 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(500)
|
|
|
|
.EUt(500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship>,
|
|
|
|
<nomilabs:quantumflux>,
|
2022-03-24 23:07:41 +08:00
|
|
|
<minecraft:chest>)
|
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 8000)
|
|
|
|
.outputs(<densemetals:dense_iron_ore> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0> * 64,
|
|
|
|
<gregtech:ore_redstone_0> * 64,
|
|
|
|
<gregtech:ore_nickel_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_uraninite_0> * 64,
|
|
|
|
<gregtech:ore_galena_0> * 64,
|
|
|
|
<gregtech:ore_galena_0> * 64,
|
|
|
|
<gregtech:ore_molybdenum_0> * 64,
|
|
|
|
<advancedrocketry:moonturf> * 64,
|
|
|
|
<libvulpes:ore0> * 64,
|
|
|
|
<gregtech:ore_salt_0> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t1 gems
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(500)
|
|
|
|
.EUt(500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship>,
|
|
|
|
<nomilabs:quantumflux>,
|
|
|
|
<nomilabs:gemsensor>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 8000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:gemPerfectDiamond> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<gregtech:ore_apatite_0> * 64,
|
|
|
|
<gregtech:ore_tricalcium_phosphate_0> * 64,
|
|
|
|
<gregtech:ore_quartzite_0> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t1 stellar creation data 1
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(100)
|
|
|
|
.EUt(500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship>,
|
|
|
|
<nomilabs:ultradensehydrogen>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 2000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:stellarcreationdata>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st1 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tieroneship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.inputs(<minecraft:cobblestone>)
|
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tieroneship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t2 radium + ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(600)
|
|
|
|
.EUt(1000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiertwoship>,
|
|
|
|
<nomilabs:quantumflux> * 2)
|
2022-03-24 23:07:41 +08:00
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 12000)
|
|
|
|
.outputs(<gregtech:ore_bauxite_0:2> * 64,
|
|
|
|
<gregtech:ore_pyrochlore_0:2> * 64,
|
|
|
|
<gregtech:ore_pyrochlore_0:2> * 64,
|
|
|
|
<gregtech:ore_tantalite_0:2> * 64,
|
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_sphalerite_0:2> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0:2> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:2> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:2> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:2> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:radiumsalt> * 64,
|
|
|
|
<nomilabs:radiumsalt> * 64)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t2 stellar creation data
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(120)
|
|
|
|
.EUt(1000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiertwoship>,
|
|
|
|
<nomilabs:ultradensehydrogen> * 4)
|
2022-03-24 23:07:41 +08:00
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 3000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:stellarcreationdata> * 4)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// st2 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tiertwoship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tiertwoship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t3 gems
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(700)
|
|
|
|
.EUt(2000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship>,
|
|
|
|
<nomilabs:quantumflux> * 4,
|
|
|
|
<nomilabs:gemsensor>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 20000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:gemPerfectDiamond> * 64,
|
|
|
|
<metaitem:gemPerfectDiamond> * 32,
|
|
|
|
<metaitem:gemPerfectRuby> * 64,
|
|
|
|
<metaitem:gemPerfectTopaz> * 48,
|
|
|
|
<metaitem:gemPerfectEmerald> * 32,
|
2022-03-24 23:07:41 +08:00
|
|
|
<gregtech:ore_sapphire_0:1> * 64,
|
|
|
|
<gregtech:ore_gold_0:1> * 64,
|
|
|
|
<gregtech:ore_silver_0:1> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t3 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(700)
|
|
|
|
.EUt(2000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship>,
|
|
|
|
<nomilabs:quantumflux> * 4,
|
2022-03-24 23:07:41 +08:00
|
|
|
<meta_tile_entity:super_chest.mv>)
|
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 20000)
|
|
|
|
.outputs(<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0:1> * 64,
|
|
|
|
<gregtech:ore_vanadium_magnetite_0:1> * 64,
|
|
|
|
<gregtech:ore_tetrahedrite_0:1> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0:1> * 64,
|
|
|
|
<gregtech:ore_tin_0:1> * 64,
|
|
|
|
<gregtech:ore_redstone_0:1> * 64,
|
|
|
|
<gregtech:ore_certus_quartz_0:1> * 64,
|
2022-03-26 10:45:46 +08:00
|
|
|
<gregtech:ore_almandine_0:1> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<gregtech:ore_lepidolite_0:1> * 64,
|
|
|
|
<gregtech:ore_cobaltite_0:1> * 64,
|
|
|
|
<gregtech:ore_laurite_0:1> * 16,
|
|
|
|
<gregtech:ore_cuprorhodsite_0:1> * 8)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t3 magma
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(700)
|
|
|
|
.EUt(2000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship>,
|
|
|
|
<nomilabs:quantumflux> * 4,
|
2022-03-24 23:07:41 +08:00
|
|
|
<metaitem:super_chest.lv>)
|
|
|
|
.fluidInputs(<liquid:rocket_fuel> * 20000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:densemagma> * 64, <nomilabs:densemagma> * 64)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// st3 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tierthreeship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tierthreeship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// advanced projector
|
|
|
|
// t4 oil and infinity
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(800)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<advancedrocketry:satelliteprimaryfunction:1>,
|
|
|
|
<ore:dustPetrotheum> * 64)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:denseoilshale> * 64,
|
|
|
|
<nomilabs:denseoilshale> * 64,
|
2023-03-03 21:34:09 +11:00
|
|
|
<ore:compressed2xDustBedrock>.firstItem * 32)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t4 dense gem ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(800)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
|
|
|
<nomilabs:gemsensor>,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:dustPetrotheum> * 64)
|
|
|
|
.outputs(<densemetals:dense_lapis_ore> * 64,
|
|
|
|
<densemetals:dense_diamond_ore> * 64,
|
|
|
|
<densemetals:dense_diamond_ore> * 64,
|
|
|
|
<densemetals:dense_coal_ore> * 64,
|
|
|
|
<densemetals:dense_emerald_ore> * 32,
|
|
|
|
<densemetals:dense_redstone_ore> * 16)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// t4 pgs ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(800)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
|
|
|
<nomilabs:witherrealmdata> * 4,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:dustPetrotheum> * 64)
|
2022-03-26 10:45:46 +08:00
|
|
|
.outputs(<gregtech:ore_pentlandite_0:1> * 64,
|
|
|
|
<gregtech:ore_pentlandite_0:1> * 64,
|
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
2022-03-31 21:46:54 +08:00
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:1> * 64)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st4 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tierfourship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tierfourship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t4.5 ow mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(800)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<thermalfoundation:material:1026> * 64,
|
|
|
|
<ore:treeSapling>)
|
|
|
|
.outputs(<minecraft:skull> * 48,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:skull:2> * 48,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:skull:4> * 48,
|
|
|
|
<minecraft:gunpowder> * 64,
|
|
|
|
<minecraft:slime> * 64,
|
|
|
|
<armorplus:material:1> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t4.5 nether mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1000)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<thermalfoundation:material:1026> * 64,
|
|
|
|
<minecraft:netherrack>)
|
2022-07-26 20:20:10 +08:00
|
|
|
.outputs(<minecraft:blaze_rod> * 50,
|
|
|
|
<minecraft:blaze_rod> * 50,
|
|
|
|
<thermalfoundation:material:2048> * 50,
|
|
|
|
<thermalfoundation:material:2048> * 50,
|
|
|
|
<thermalfoundation:material:2050> * 50,
|
|
|
|
<thermalfoundation:material:2050> * 50,
|
|
|
|
<thermalfoundation:material:2052> * 50,
|
|
|
|
<thermalfoundation:material:2052> * 50,
|
2022-03-24 23:07:41 +08:00
|
|
|
<minecraft:ghast_tear> * 64,
|
|
|
|
<minecraft:skull:1>* 48,
|
|
|
|
<armorplus:material:2> * 64,
|
|
|
|
<armorplus:material:2> * 64,
|
|
|
|
<minecraft:magma_cream> * 64,
|
|
|
|
<extrautils2:ingredients:10> * 4)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t4.5 end mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1200)
|
|
|
|
.EUt(3750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<thermalfoundation:material:1026> * 64,
|
|
|
|
<minecraft:end_stone>)
|
|
|
|
.outputs(<enderio:block_enderman_skull> * 48,
|
|
|
|
<metaitem:blockEnderPearl> * 16,
|
|
|
|
<minecraft:shulker_shell> * 64,
|
|
|
|
<minecraft:shulker_shell> * 64,
|
|
|
|
<darkutils:shulker_pearl> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// t4.5 dragon
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(2000)
|
|
|
|
.EUt(10000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<thermalfoundation:material:1026> * 64,
|
|
|
|
<minecraft:ender_eye> * 16)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<minecraft:skull:5>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t4.5 wither
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(2000)
|
|
|
|
.EUt(10000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship>,
|
|
|
|
<nomilabs:quantumflux> * 8,
|
2022-03-24 23:07:41 +08:00
|
|
|
<thermalfoundation:material:1026> * 64,
|
|
|
|
<armorplus:material:2> * 64)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:witherrealmdata> * 64,
|
|
|
|
<nomilabs:witherrealmdata> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<metaitem:blockNetherStar> * 48)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st4.5 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tierfourandhalfship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tierfourandhalfship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t5 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1000)
|
|
|
|
.EUt(7500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfiveship>,
|
|
|
|
<nomilabs:quantumflux> * 16,
|
|
|
|
<nomilabs:stabilizeduranium> * 32)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<gregtech:ore_uraninite_0> * 64,
|
|
|
|
<gregtech:ore_palladium_0> * 64,
|
|
|
|
<gregtech:ore_realgar_0> * 64,
|
|
|
|
<gregtech:ore_bastnasite_0> * 64,
|
|
|
|
<gregtech:ore_sphalerite_0> * 64,
|
|
|
|
<gregtech:ore_monazite_0> * 64,
|
2022-09-01 22:58:38 +08:00
|
|
|
<gregtech:ore_monazite_0> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<gregtech:meta_block_compressed_26> * 64, //Ender Pearl Block
|
|
|
|
<gregtech:ore_osmiridium_8020_0> * 6,
|
|
|
|
<gregtech:ore_iridosmine_8020_0> * 6,
|
|
|
|
<metaitem:dustBoron> * 64,
|
|
|
|
<gregtech:ore_molybdenite_0> * 64,
|
|
|
|
<gregtech:ore_beryllium_0> * 64,
|
2022-04-11 12:12:27 +08:00
|
|
|
<gregtech:ore_beryllium_0> * 64,
|
2023-03-08 21:54:21 +11:00
|
|
|
<gregtech:ore_fluorite_0> * 64)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
2022-03-26 10:45:46 +08:00
|
|
|
// t5 naquadah trinium
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1000)
|
|
|
|
.EUt(7500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfiveship>,
|
|
|
|
<nomilabs:quantumflux> * 16,
|
|
|
|
<nomilabs:stabilizedplutonium> * 32)
|
2023-03-11 18:19:38 +11:00
|
|
|
.outputs(<gregtech:ore_pollucite_0> * 64,
|
|
|
|
<gregtech:ore_pollucite_0> * 64,
|
2023-03-08 21:54:21 +11:00
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
2022-04-07 10:20:49 +08:00
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
2022-04-09 20:43:34 +08:00
|
|
|
<gregtech:ore_kaemanite_0> * 24)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st5 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tierfiveship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tierfiveship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t6 u/os/ir
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1250)
|
|
|
|
.EUt(18750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship>,
|
|
|
|
<nomilabs:quantumflux> * 16,
|
|
|
|
<nomilabs:stabilizeduranium> * 32,
|
|
|
|
<nomilabs:witherrealmdata> * 16)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<gregtech:ore_uraninite_0:2> * 64,
|
|
|
|
<gregtech:ore_uraninite_0:2> * 64,
|
2022-03-26 10:45:46 +08:00
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
2022-03-26 12:47:22 +08:00
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
2022-04-11 12:12:27 +08:00
|
|
|
<gregtech:ore_iridosmine_8020_0> * 24)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t6 einsteinium
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1250)
|
|
|
|
.EUt(18750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship>,
|
|
|
|
<nomilabs:quantumflux> * 16,
|
|
|
|
<nomilabs:stabilizedplutonium> * 32,
|
|
|
|
<nomilabs:witherrealmdata> * 64)
|
|
|
|
.outputs(<nomilabs:stabilizedeinsteinium> * 32)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t6 eggs
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1250)
|
|
|
|
.EUt(18750)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship>,
|
|
|
|
<nomilabs:quantumflux> * 16,
|
|
|
|
<nomilabs:stabilizedplutonium> * 32,
|
|
|
|
<nomilabs:dragonlairdata> * 16)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<minecraft:dragon_egg> * 32)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st6 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tiersixship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tiersixship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// advanced projector 2
|
|
|
|
// t7 hearts
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1500)
|
|
|
|
.EUt(31250)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersevenship>,
|
|
|
|
<nomilabs:quantumflux> * 32,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:dragonlairdata> * 32)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<draconicevolution:dragon_heart> * 32,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_breath> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<metaitem:blockSilver> * 64, //Silver block
|
|
|
|
<metaitem:blockSilver> * 64, //Silver Block
|
|
|
|
<minecraft:diamond_block> * 64,
|
|
|
|
<minecraft:diamond_block> * 64,
|
|
|
|
<metaitem:blockPlatinum> * 64, //Platinum Block
|
2022-05-03 13:02:54 +08:00
|
|
|
<metaitem:blockRuthenium> * 16)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t7 chaos lair data
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1500)
|
|
|
|
.EUt(31250)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersevenship>,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:gemsensor>,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64)
|
|
|
|
.outputs(<nomilabs:lairofthechaosguardiandata>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st7 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tiersevenship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tiersevenship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
|
|
|
// t8 gravistar nt
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(2000)
|
|
|
|
.EUt(62500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightship>,
|
|
|
|
<nomilabs:quantumflux> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:witherrealmdata> * 64,
|
|
|
|
<nomilabs:witherrealmdata> * 64)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<metaitem:quantumstar> * 32,
|
|
|
|
<metaitem:quantumeye> * 64,
|
|
|
|
<avaritia:resource:2> * 64,
|
|
|
|
<avaritia:resource:2> * 64,
|
|
|
|
<metaitem:gravistar>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t8 shards eggs
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1500)
|
|
|
|
.EUt(62500)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightship>,
|
|
|
|
<nomilabs:quantumflux> * 64,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
|
|
|
<ore:gemDilithium>.firstItem * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:lairofthechaosguardiandata>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<draconicevolution:chaos_shard> * 4,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// st8 matter
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(9408)
|
|
|
|
.EUt(30720)
|
|
|
|
.inputs(<minecraft:cobblestone>)
|
2024-03-24 23:45:47 +11:00
|
|
|
.notConsumable(<nomilabs:tiereightship_stabilized>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:tiereightship_stabilized_matter>
|
2022-03-24 23:07:41 +08:00
|
|
|
).buildAndRegister();
|
|
|
|
|
2022-09-01 22:58:08 +08:00
|
|
|
// t8.5 darmstadtite
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-09-01 22:58:08 +08:00
|
|
|
.duration(9000)
|
|
|
|
.EUt(250000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightandhalfship>,
|
2022-09-01 22:58:08 +08:00
|
|
|
<metaitem:neutron_reflector> * 8,
|
|
|
|
<metaitem:blockNaquadah> * 24,
|
|
|
|
<draconicevolution:chaos_shard>)
|
|
|
|
.outputs(
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64,
|
|
|
|
<gregtech:ore_darmstadtite_0:2> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
2022-09-18 15:52:37 +08:00
|
|
|
// t8.5 dulysite
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-09-01 22:58:08 +08:00
|
|
|
.duration(9000)
|
|
|
|
.EUt(250000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightandhalfship>,
|
|
|
|
<nomilabs:gemsensor> * 8,
|
2022-09-01 22:58:08 +08:00
|
|
|
<metaitem:blockNaquadah> * 24,
|
2022-09-04 23:56:14 +08:00
|
|
|
<draconicevolution:chaos_shard>)
|
2022-09-01 22:58:08 +08:00
|
|
|
.outputs(
|
2022-09-18 15:52:37 +08:00
|
|
|
<gregtech:ore_dulysite_0:2> * 64,
|
|
|
|
<gregtech:ore_dulysite_0:2> * 64,
|
|
|
|
<gregtech:ore_dulysite_0:2> * 64,
|
|
|
|
<gregtech:ore_dulysite_0:2> * 64,
|
|
|
|
<gregtech:ore_dulysite_0:2> * 64,
|
|
|
|
<gregtech:ore_dulysite_0:2> * 64)
|
2022-09-01 22:58:08 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
2022-03-24 23:07:41 +08:00
|
|
|
// t9 nt
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(3000)
|
|
|
|
.EUt(250000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiernineship>,
|
2022-03-24 23:07:41 +08:00
|
|
|
<metaitem:neutron_reflector> * 8,
|
2024-03-24 23:45:47 +11:00
|
|
|
<metaitem:nomilabs:blockAwakenedDraconium> * 4,
|
|
|
|
<nomilabs:stellarcreationdata>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64,
|
|
|
|
<ore:nuggetNeutronium>.firstItem * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t9 universe creation data
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(3000)
|
|
|
|
.EUt(250000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiernineship>,
|
|
|
|
<metaitem:nomilabs:blockAwakenedDraconium> * 4,
|
|
|
|
<nomilabs:stellarcreationdata> * 64,
|
|
|
|
<nomilabs:stellarcreationdata> * 64,
|
|
|
|
<nomilabs:stellarcreationdata> * 64,
|
|
|
|
<nomilabs:stellarcreationdata> * 64)
|
|
|
|
.outputs(<nomilabs:universecreationdata>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t10 hotu
|
2024-03-24 23:45:47 +11:00
|
|
|
microverse_projector_3.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(6000)
|
|
|
|
.EUt(1000000)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiertenship>,
|
|
|
|
<nomilabs:universecreationdata>,
|
2022-03-24 23:07:41 +08:00
|
|
|
<ore:blockAwakenedDraconium> * 8)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:heartofauniverse>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
2022-03-30 12:41:49 +08:00
|
|
|
// actualization
|
|
|
|
// t1 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<densemetals:dense_iron_ore> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0> * 64,
|
|
|
|
<gregtech:ore_redstone_0> * 64,
|
|
|
|
<gregtech:ore_nickel_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0> * 64,
|
|
|
|
<gregtech:ore_uraninite_0> * 64,
|
|
|
|
<gregtech:ore_galena_0> * 64,
|
|
|
|
<gregtech:ore_galena_0> * 64,
|
|
|
|
<gregtech:ore_molybdenum_0> * 64,
|
|
|
|
<advancedrocketry:moonturf> * 64,
|
|
|
|
<libvulpes:ore0> * 64,
|
|
|
|
<gregtech:ore_salt_0> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t1 gems
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:gemPerfectDiamond> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<gregtech:ore_apatite_0> * 64,
|
|
|
|
<gregtech:ore_tricalcium_phosphate_0> * 64,
|
|
|
|
<gregtech:ore_quartzite_0> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t1 stellar data
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tieroneship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:stellarcreationdata>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t2 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiertwoship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<gregtech:ore_bauxite_0:2> * 64,
|
|
|
|
<gregtech:ore_pyrochlore_0:2> * 64,
|
|
|
|
<gregtech:ore_pyrochlore_0:2> * 64,
|
2023-02-15 22:24:36 +11:00
|
|
|
<gregtech:ore_tantalite_0:2> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_copper_0:2> * 64,
|
|
|
|
<gregtech:ore_sphalerite_0:2> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0:2> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:2> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:2> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:2> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<nomilabs:radiumsalt> * 64,
|
|
|
|
<nomilabs:radiumsalt> * 64)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
2023-02-15 22:24:36 +11:00
|
|
|
// t2 stellar creation data
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2023-02-15 22:24:36 +11:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiertwoship_stabilized_matter>)
|
2023-02-15 22:24:36 +11:00
|
|
|
.circuit(2)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:stellarcreationdata> * 4)
|
2023-02-15 22:24:36 +11:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
2022-03-30 12:41:49 +08:00
|
|
|
// t3 gems
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:gemPerfectDiamond> * 64,
|
|
|
|
<metaitem:gemPerfectDiamond> * 32,
|
|
|
|
<metaitem:gemPerfectRuby> * 64,
|
|
|
|
<metaitem:gemPerfectTopaz> * 48,
|
|
|
|
<metaitem:gemPerfectEmerald> * 32,
|
2022-03-30 12:41:49 +08:00
|
|
|
<gregtech:ore_sapphire_0:1> * 64,
|
|
|
|
<gregtech:ore_gold_0:1> * 64,
|
|
|
|
<gregtech:ore_silver_0:1> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t3 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
|
|
|
.outputs(<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<gregtech:ore_scheelite_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_tungstate_0:1> * 64,
|
|
|
|
<gregtech:ore_ilmenite_0:1> * 64,
|
|
|
|
<gregtech:ore_vanadium_magnetite_0:1> * 64,
|
|
|
|
<gregtech:ore_tetrahedrite_0:1> * 64,
|
|
|
|
<gregtech:ore_cassiterite_0:1> * 64,
|
|
|
|
<gregtech:ore_tin_0:1> * 64,
|
|
|
|
<gregtech:ore_redstone_0:1> * 64,
|
|
|
|
<gregtech:ore_certus_quartz_0:1> * 64,
|
|
|
|
<gregtech:ore_almandine_0:1> * 64,
|
2024-03-24 23:45:47 +11:00
|
|
|
<gregtech:ore_lepidolite_0:1> * 64,
|
|
|
|
<gregtech:ore_cobaltite_0:1> * 64,
|
|
|
|
<gregtech:ore_laurite_0:1> * 16,
|
|
|
|
<gregtech:ore_cuprorhodsite_0:1> * 8)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t3 magma
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierthreeship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:densemagma> * 64, <nomilabs:densemagma> * 64)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// t4 oil and infinity
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:denseoilshale> * 64,
|
|
|
|
<nomilabs:denseoilshale> * 64,
|
2023-03-08 11:40:44 +11:00
|
|
|
<ore:compressed2xDustBedrock>.firstItem * 32)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
|
|
|
.outputs(<densemetals:dense_lapis_ore> * 64,
|
|
|
|
<densemetals:dense_diamond_ore> * 64,
|
|
|
|
<densemetals:dense_diamond_ore> * 64,
|
|
|
|
<densemetals:dense_coal_ore> * 64,
|
|
|
|
<densemetals:dense_emerald_ore> * 32,
|
|
|
|
<densemetals:dense_redstone_ore> * 16)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4 pgs ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(3)
|
|
|
|
.outputs(<gregtech:ore_pentlandite_0:1> * 64,
|
|
|
|
<gregtech:ore_pentlandite_0:1> * 64,
|
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
2022-03-31 21:46:54 +08:00
|
|
|
<gregtech:ore_chalcocite_0:1> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:1> * 64)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t4.5 ow mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<minecraft:skull> * 48,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:bone> * 64,
|
|
|
|
<minecraft:skull:2> * 48,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:rotten_flesh> * 64,
|
|
|
|
<minecraft:skull:4> * 48,
|
|
|
|
<minecraft:gunpowder> * 64,
|
|
|
|
<minecraft:slime> * 64,
|
|
|
|
<armorplus:material:1> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4.5 nether mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
2023-02-15 22:24:36 +11:00
|
|
|
.outputs(<minecraft:blaze_rod> * 50,
|
|
|
|
<minecraft:blaze_rod> * 50,
|
|
|
|
<thermalfoundation:material:2048> * 50,
|
|
|
|
<thermalfoundation:material:2048> * 50,
|
|
|
|
<thermalfoundation:material:2050> * 50,
|
|
|
|
<thermalfoundation:material:2050> * 50,
|
|
|
|
<thermalfoundation:material:2052> * 50,
|
|
|
|
<thermalfoundation:material:2052> * 50,
|
2022-03-30 12:41:49 +08:00
|
|
|
<minecraft:ghast_tear> * 64,
|
|
|
|
<minecraft:skull:1>* 48,
|
|
|
|
<armorplus:material:2> * 64,
|
|
|
|
<armorplus:material:2> * 64,
|
|
|
|
<minecraft:magma_cream> * 64,
|
|
|
|
<extrautils2:ingredients:10> * 4)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4.5 end mobs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(3)
|
|
|
|
.outputs(<enderio:block_enderman_skull> * 48,
|
|
|
|
<metaitem:blockEnderPearl> * 16,
|
|
|
|
<minecraft:shulker_shell> * 64,
|
|
|
|
<minecraft:shulker_shell> * 64,
|
|
|
|
<darkutils:shulker_pearl> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4.5 dragon
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(4)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
|
|
|
<nomilabs:dragonlairdata> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<minecraft:skull:5>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t4.5 wither
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfourandhalfship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(5)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:witherrealmdata> * 64,
|
|
|
|
<nomilabs:witherrealmdata> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<metaitem:blockNetherStar> * 48)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t5 ores
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfiveship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<gregtech:ore_uraninite_0> * 64,
|
|
|
|
<gregtech:ore_palladium_0> * 64,
|
|
|
|
<gregtech:ore_realgar_0> * 64,
|
|
|
|
<gregtech:ore_bastnasite_0> * 64,
|
|
|
|
<gregtech:ore_sphalerite_0> * 64,
|
|
|
|
<gregtech:ore_monazite_0> * 64,
|
2022-09-01 22:58:38 +08:00
|
|
|
<gregtech:ore_monazite_0> * 64,
|
2022-03-30 12:41:49 +08:00
|
|
|
<gregtech:meta_block_compressed_26> * 64, //Ender Pearl Block
|
2022-04-11 12:12:27 +08:00
|
|
|
<gregtech:ore_osmiridium_8020_0> * 6,
|
|
|
|
<gregtech:ore_iridosmine_8020_0> * 6,
|
2022-03-30 12:41:49 +08:00
|
|
|
<metaitem:dustBoron> * 64,
|
|
|
|
<gregtech:ore_molybdenite_0> * 64,
|
|
|
|
<gregtech:ore_beryllium_0> * 64,
|
2022-04-11 12:12:27 +08:00
|
|
|
<gregtech:ore_beryllium_0> * 64,
|
|
|
|
<gregtech:ore_fluorite_0> * 64)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t5 nq ke
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tierfiveship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
2023-03-12 16:16:10 +11:00
|
|
|
.outputs(<gregtech:ore_pollucite_0> * 64,
|
|
|
|
<gregtech:ore_pollucite_0> * 64,
|
2023-03-08 21:54:21 +11:00
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
2022-04-09 20:43:34 +08:00
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_snowchestite_0> * 64,
|
|
|
|
<gregtech:ore_kaemanite_0> * 24)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t6 u/pgs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<gregtech:ore_uraninite_0:2> * 64,
|
|
|
|
<gregtech:ore_uraninite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
|
|
|
<gregtech:ore_cooperite_0:2> * 64,
|
2022-04-11 12:12:27 +08:00
|
|
|
<gregtech:ore_iridosmine_8020_0> * 24)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t6 es
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:stabilizedeinsteinium> * 32)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t6 eggs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersixship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(3)
|
|
|
|
.outputs(<minecraft:dragon_egg> * 32)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
// t7 hearts
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersevenship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
2023-02-15 22:24:36 +11:00
|
|
|
.outputs(<draconicevolution:dragon_heart> * 32,
|
2022-03-30 12:41:49 +08:00
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_breath> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<armorplus:material:3> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<minecraft:gold_block> * 64,
|
|
|
|
<metaitem:blockSilver> * 64, //Silver block
|
|
|
|
<metaitem:blockSilver> * 64, //Silver Block
|
|
|
|
<minecraft:diamond_block> * 64,
|
|
|
|
<minecraft:diamond_block> * 64,
|
|
|
|
<metaitem:blockPlatinum> * 64, //Platinum Block
|
2022-05-03 13:02:54 +08:00
|
|
|
<metaitem:blockRuthenium> * 16)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t7 chaos
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiersevenship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<nomilabs:lairofthechaosguardiandata>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// t8 nt
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(1)
|
|
|
|
.outputs(<metaitem:quantumstar> * 32,
|
|
|
|
<metaitem:quantumeye> * 64,
|
|
|
|
<avaritia:resource:2> * 64,
|
|
|
|
<avaritia:resource:2> * 64,
|
|
|
|
<metaitem:gravistar>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// t8 eggs
|
2024-03-24 23:45:47 +11:00
|
|
|
actualization_chamber.recipeBuilder()
|
2022-03-30 12:41:49 +08:00
|
|
|
.duration(780)
|
|
|
|
.EUt(30720)
|
2024-03-24 23:45:47 +11:00
|
|
|
.inputs(<nomilabs:tiereightship_stabilized_matter>)
|
2022-03-30 12:41:49 +08:00
|
|
|
.circuit(2)
|
|
|
|
.outputs(<draconicevolution:chaos_shard> * 4,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64,
|
|
|
|
<minecraft:dragon_egg> * 64)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
2022-03-24 23:07:41 +08:00
|
|
|
// Naquadah Reactor Mk1 Recipes
|
2024-03-24 23:45:47 +11:00
|
|
|
naquadah_reactor_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(938)
|
Fix and Improve Custom Multis (#483)
Adds Front Overlays back
Fix Muffler Hatch not being allowed everywhere (multiverse)
Adds Maintenance and Min Casing Requirements to all multis
Add distinct mode to some multis
Note: the HM crafting recipe for naq reactors has been removed, as the new assembly line recipe added applies to both NM and HM.
Fixes #504
Fixes #505
Fixes #513
[EXPAND]
[[messages]]
messageTitle = "Improve Custom Multis"
messageBody = """
[COMBINE]
commits = [\"bd58b9072f45d647734ae66168cbd27bf9b2f220\"]
[COMBINE]
"""
[[messages]]
messageTitle = "Fix Custom Multis"
messageBody = """
[BUG]
[IGNORE]
checks = { compareNot = \"1.7-alpha-1\" }
[IGNORE]
[DETAILS]
details = [
\"Fixes Multiverse Projector Muffler Hatch Issues\",
\"Fixes Naquadah Reactors\"
]
[DETAILS]
"""
[EXPAND]
[FIXUP]
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = """
[EXPAND]
[[messages]]
messageTitle = \"Update GT to 2.7.4\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\\",
\\"Adds Assembly Line Research\\",
\\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\\",
\\"Adds Filtered Output Hatches\\",
\\"Adds EU Multiblock Power Storage\\",
\\"Adds Multiblock Transformer and Laser Power Transfer\\",
\\"Adds Long Distance Pipes\\",
\\"Creating Waypoints in the Prospector\\",
\\"Fixing many bugs\\",
\\"And many more!\\"
]
[DETAILS]
\"\"\"
[[messages]]
messageTitle = \"Multiblock Changes\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\\",
\\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\\",
\\"Some Custom Multiblocks now have Distinct Mode\\",
\\"All Custom Multiblocks now have custom Front Overlays\\",
\\"Reworked & Improved Multiblock UIs\\"
]
[DETAILS]
\"\"\"
[EXPAND]
"""
[FIXUP]
2023-11-09 09:21:58 +11:00
|
|
|
.EUt(393216)
|
2022-07-27 22:45:36 +08:00
|
|
|
.inputs(<metaitem:boltNaquadahEnriched>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<metaitem:boltLead>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
naquadah_reactor_1.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(3750)
|
Fix and Improve Custom Multis (#483)
Adds Front Overlays back
Fix Muffler Hatch not being allowed everywhere (multiverse)
Adds Maintenance and Min Casing Requirements to all multis
Add distinct mode to some multis
Note: the HM crafting recipe for naq reactors has been removed, as the new assembly line recipe added applies to both NM and HM.
Fixes #504
Fixes #505
Fixes #513
[EXPAND]
[[messages]]
messageTitle = "Improve Custom Multis"
messageBody = """
[COMBINE]
commits = [\"bd58b9072f45d647734ae66168cbd27bf9b2f220\"]
[COMBINE]
"""
[[messages]]
messageTitle = "Fix Custom Multis"
messageBody = """
[BUG]
[IGNORE]
checks = { compareNot = \"1.7-alpha-1\" }
[IGNORE]
[DETAILS]
details = [
\"Fixes Multiverse Projector Muffler Hatch Issues\",
\"Fixes Naquadah Reactors\"
]
[DETAILS]
"""
[EXPAND]
[FIXUP]
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = """
[EXPAND]
[[messages]]
messageTitle = \"Update GT to 2.7.4\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\\",
\\"Adds Assembly Line Research\\",
\\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\\",
\\"Adds Filtered Output Hatches\\",
\\"Adds EU Multiblock Power Storage\\",
\\"Adds Multiblock Transformer and Laser Power Transfer\\",
\\"Adds Long Distance Pipes\\",
\\"Creating Waypoints in the Prospector\\",
\\"Fixing many bugs\\",
\\"And many more!\\"
]
[DETAILS]
\"\"\"
[[messages]]
messageTitle = \"Multiblock Changes\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\\",
\\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\\",
\\"Some Custom Multiblocks now have Distinct Mode\\",
\\"All Custom Multiblocks now have custom Front Overlays\\",
\\"Reworked & Improved Multiblock UIs\\"
]
[DETAILS]
\"\"\"
[EXPAND]
"""
[FIXUP]
2023-11-09 09:21:58 +11:00
|
|
|
.EUt(393216)
|
2022-07-27 22:45:36 +08:00
|
|
|
.inputs(<metaitem:boltNaquadria>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<metaitem:boltLead>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
|
|
|
// Naquadah Reactor Mk2 Recipes
|
2024-03-24 23:45:47 +11:00
|
|
|
naquadah_reactor_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(1875)
|
Fix and Improve Custom Multis (#483)
Adds Front Overlays back
Fix Muffler Hatch not being allowed everywhere (multiverse)
Adds Maintenance and Min Casing Requirements to all multis
Add distinct mode to some multis
Note: the HM crafting recipe for naq reactors has been removed, as the new assembly line recipe added applies to both NM and HM.
Fixes #504
Fixes #505
Fixes #513
[EXPAND]
[[messages]]
messageTitle = "Improve Custom Multis"
messageBody = """
[COMBINE]
commits = [\"bd58b9072f45d647734ae66168cbd27bf9b2f220\"]
[COMBINE]
"""
[[messages]]
messageTitle = "Fix Custom Multis"
messageBody = """
[BUG]
[IGNORE]
checks = { compareNot = \"1.7-alpha-1\" }
[IGNORE]
[DETAILS]
details = [
\"Fixes Multiverse Projector Muffler Hatch Issues\",
\"Fixes Naquadah Reactors\"
]
[DETAILS]
"""
[EXPAND]
[FIXUP]
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = """
[EXPAND]
[[messages]]
messageTitle = \"Update GT to 2.7.4\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\\",
\\"Adds Assembly Line Research\\",
\\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\\",
\\"Adds Filtered Output Hatches\\",
\\"Adds EU Multiblock Power Storage\\",
\\"Adds Multiblock Transformer and Laser Power Transfer\\",
\\"Adds Long Distance Pipes\\",
\\"Creating Waypoints in the Prospector\\",
\\"Fixing many bugs\\",
\\"And many more!\\"
]
[DETAILS]
\"\"\"
[[messages]]
messageTitle = \"Multiblock Changes\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\\",
\\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\\",
\\"Some Custom Multiblocks now have Distinct Mode\\",
\\"All Custom Multiblocks now have custom Front Overlays\\",
\\"Reworked & Improved Multiblock UIs\\"
]
[DETAILS]
\"\"\"
[EXPAND]
"""
[FIXUP]
2023-11-09 09:21:58 +11:00
|
|
|
.EUt(1572864)
|
2022-07-27 22:45:36 +08:00
|
|
|
.inputs(<metaitem:boltNaquadahEnriched>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<metaitem:boltLead>)
|
|
|
|
.buildAndRegister();
|
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
naquadah_reactor_2.recipeBuilder()
|
2022-03-24 23:07:41 +08:00
|
|
|
.duration(7500)
|
Fix and Improve Custom Multis (#483)
Adds Front Overlays back
Fix Muffler Hatch not being allowed everywhere (multiverse)
Adds Maintenance and Min Casing Requirements to all multis
Add distinct mode to some multis
Note: the HM crafting recipe for naq reactors has been removed, as the new assembly line recipe added applies to both NM and HM.
Fixes #504
Fixes #505
Fixes #513
[EXPAND]
[[messages]]
messageTitle = "Improve Custom Multis"
messageBody = """
[COMBINE]
commits = [\"bd58b9072f45d647734ae66168cbd27bf9b2f220\"]
[COMBINE]
"""
[[messages]]
messageTitle = "Fix Custom Multis"
messageBody = """
[BUG]
[IGNORE]
checks = { compareNot = \"1.7-alpha-1\" }
[IGNORE]
[DETAILS]
details = [
\"Fixes Multiverse Projector Muffler Hatch Issues\",
\"Fixes Naquadah Reactors\"
]
[DETAILS]
"""
[EXPAND]
[FIXUP]
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = """
[EXPAND]
[[messages]]
messageTitle = \"Update GT to 2.7.4\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\\",
\\"Adds Assembly Line Research\\",
\\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\\",
\\"Adds Filtered Output Hatches\\",
\\"Adds EU Multiblock Power Storage\\",
\\"Adds Multiblock Transformer and Laser Power Transfer\\",
\\"Adds Long Distance Pipes\\",
\\"Creating Waypoints in the Prospector\\",
\\"Fixing many bugs\\",
\\"And many more!\\"
]
[DETAILS]
\"\"\"
[[messages]]
messageTitle = \"Multiblock Changes\"
messageBody = \"\"\"
[BREAKING]
[DETAILS]
details = [
\\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\\",
\\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\\",
\\"Some Custom Multiblocks now have Distinct Mode\\",
\\"All Custom Multiblocks now have custom Front Overlays\\",
\\"Reworked & Improved Multiblock UIs\\"
]
[DETAILS]
\"\"\"
[EXPAND]
"""
[FIXUP]
2023-11-09 09:21:58 +11:00
|
|
|
.EUt(1572864)
|
2022-07-27 22:45:36 +08:00
|
|
|
.inputs(<metaitem:boltNaquadria>)
|
2022-03-24 23:07:41 +08:00
|
|
|
.outputs(<metaitem:boltLead>)
|
|
|
|
.buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
|
|
|
// Universal Crystallizer Recipes
|
2024-03-24 23:45:47 +11:00
|
|
|
// recipes MUST have an eut below 1 UHV amp (2,097,152 EU/t)
|
|
|
|
// in order to run without using higher tier energy hatches
|
|
|
|
|
|
|
|
// original was 3 ticks, 23592960 eut
|
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-18 21:54:44 +08:00
|
|
|
.inputs(<ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64, <ore:dustCarbon> * 64)
|
|
|
|
.outputs(<minecraft:diamond> * 32)
|
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(60).EUt(1179648).buildAndRegister();
|
2022-04-20 01:04:11 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// Combination recipe is 4,000,000 RF for all empowered recipes
|
|
|
|
// 4,000,000 RF -> 1,000,000 EU
|
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustIron> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered:5> * 7)
|
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustRedstone> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered> * 7)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustLapis> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered:1> * 7)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustCoal> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered:3> * 7)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustDiamond> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered:2> * 7)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:dustEmerald> * 63)
|
|
|
|
.outputs(<actuallyadditions:block_crystal_empowered:4> * 7)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(7).EUt(1000000).buildAndRegister();
|
2022-04-18 21:54:44 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// original was 3 ticks, 23592960 EU/t
|
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:gemPerfectDiamond> * 3, <minecraft:nether_star> * 9, <ore:plateDiamond> * 27, <ore:gemDiamond> * 27)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:nomilabs:ingotCrystalMatrix>)
|
2022-04-18 21:54:44 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 3)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(45).EUt(1572864).buildAndRegister();
|
2022-04-20 01:04:11 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// DE recipe is 175,544,000 RF -> 43,886,000 EU total
|
|
|
|
// at 25 ticks, eu/t would be 1,755,440 EU/t
|
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<actuallyadditions:block_crystal_empowered:4>, <metaitem:blockNetherStar> * 2, <draconicevolution:draconic_core> * 4, <armorplus:block_compressed_infused_lava_crystal> * 2)
|
|
|
|
.outputs(<draconicevolution:wyvern_core>)
|
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 30)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(25).EUt(1755440).buildAndRegister();
|
2022-04-20 01:04:11 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// DE recipe is 3,000,000,000 RF -> 750,000,000 EU total
|
|
|
|
// at 375 ticks, eu/t would be 2,000,000 EU/t
|
|
|
|
universal_crystallizer.recipeBuilder()
|
|
|
|
.inputs(<minecraft:nether_star>, <draconicevolution:wyvern_core> * 4, <metaitem:nomilabs:blockAwakenedDraconium> * 2)
|
2022-04-20 01:04:11 +08:00
|
|
|
.outputs(<draconicevolution:awakened_core>)
|
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 30)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(375).EUt(2000000).buildAndRegister();
|
2022-04-20 01:04:11 +08:00
|
|
|
|
2024-03-24 23:45:47 +11:00
|
|
|
// DE recipe is 24,000,000,000 RF -> 6,000,000,000 EU total
|
|
|
|
// at 3,000 ticks, eu/t would be 2,000,000 EU/t
|
|
|
|
universal_crystallizer.recipeBuilder()
|
2022-04-20 01:04:11 +08:00
|
|
|
.inputs(<ore:blockDraconium> * 5, <draconicevolution:wyvern_core> * 4, <draconicevolution:dragon_heart> * 2)
|
2024-03-24 23:45:47 +11:00
|
|
|
.outputs(<metaitem:nomilabs:blockAwakenedDraconium> * 5)
|
2022-04-20 01:04:11 +08:00
|
|
|
.fluidInputs(<liquid:naquadah_enriched> * 30)
|
2024-03-24 23:45:47 +11:00
|
|
|
.duration(3000).EUt(2000000).buildAndRegister();
|