Add Recycling Recipes for GT Parts and Hatches (#797)
Adds recycling recipes for some GT parts and hatches.
Fixes #780.
/* Github Stuff */
[FEATURE]
[DETAILS]
details = [
"**Adds Recycling Recipes For:**",
"LuV+ Parts",
"LuV+ Energy Hatches",
"4A and 16A Energy Hatches",
"Adjustable Transformers",
"Substation Hatches",
"Laser Hatches",
"Misc Batteries",
]
[DETAILS]
[FIXUP]
sha = "226cd449fe4844b2b2c84cebdd6bfaf3cec9a313"
newBody = '''
[EXPAND]
[[messages]]
messageTitle = "Port Tooltips to Groovy (#796)"
messageBody = """
[FEATURE]
[DETAILS]
detail = \"Tooltips are now Localisable!\"
[DETAILS]
"""
[[messages]]
messageTitle = "Fix Fluids in JEI (#796)"
messageBody = """
[BUG]
[DETAILS]
details = [
\"Fixes Some Fluids being Items in JEI\",
\"Adds Information about Temperature to all Fluids\",
]
[DETAILS]
"""
[EXPAND]
'''
[FIXUP]
Co-authored-by: Integer Limit <103940576+IntegerLimit@users.noreply.github.com>
2024-07-14 06:16:17 -04:00
|
|
|
import static com.nomiceu.nomilabs.groovy.GroovyHelpers.RecyclingHelpers.*
|
2024-07-19 01:11:52 +00:00
|
|
|
import static gregtech.api.GTValues.*
|
2024-03-24 23:45:47 +11:00
|
|
|
|
|
|
|
// Processing Array
|
|
|
|
replaceRecipeInput(metaitem('processing_array'),
|
2024-05-19 07:22:30 +01:00
|
|
|
[[ore('circuitLuv'), item('advsolars:sunnarium'), ore('circuitLuv')],
|
|
|
|
[metaitem('robot.arm.iv'), metaitem('hull.iv'), metaitem('robot.arm.iv')],
|
|
|
|
[ore('circuitLuv'), metaitem('tool.datastick'), ore('circuitLuv')]])
|
2024-07-19 01:11:52 +00:00
|
|
|
|
|
|
|
// Make Rare Earth Centrifuging Output Full Dusts
|
|
|
|
mods.gregtech.centrifuge.removeByInput([metaitem('dustRareEarth')], null)
|
|
|
|
mods.gregtech.centrifuge.recipeBuilder()
|
|
|
|
.inputs(metaitem('dustRareEarth'))
|
|
|
|
.chancedOutput(metaitem('dustCadmium'), 625, 100)
|
|
|
|
.chancedOutput(metaitem('dustNeodymium'), 625, 100)
|
|
|
|
.chancedOutput(metaitem('dustSamarium'), 625, 100)
|
|
|
|
.chancedOutput(metaitem('dustCerium'), 625, 100)
|
|
|
|
.chancedOutput(metaitem('dustYttrium'), 625, 100)
|
|
|
|
.chancedOutput(metaitem('dustLanthanum'), 625, 100)
|
2024-08-01 08:17:48 +10:00
|
|
|
.duration(64).EUt(VA[LV])
|
2024-07-19 01:11:52 +00:00
|
|
|
.buildAndRegister()
|
2024-08-04 21:03:51 +10:00
|
|
|
|
|
|
|
// Nether Star Block -> Nether Star
|
|
|
|
crafting.addShapeless(item('minecraft:nether_star') * 9, [ore('blockNetherStar')])
|