add warping recipes to the construction core
This commit is contained in:
@@ -443,4 +443,44 @@ ServerEvents.recipes((event) => {
|
|||||||
.inputFluids("gtceu:construction_foam 100")
|
.inputFluids("gtceu:construction_foam 100")
|
||||||
.EUt(8)
|
.EUt(8)
|
||||||
.duration(20);
|
.duration(20);
|
||||||
|
|
||||||
|
// Warping
|
||||||
|
function getWarped(input, output) {
|
||||||
|
event.recipes.gtceu
|
||||||
|
.construction_core(output)
|
||||||
|
.itemInputs(input)
|
||||||
|
.itemOutputs(`4x ${output}`)
|
||||||
|
.circuit(1)
|
||||||
|
.inputFluids("gtceu:construction_foam 100")
|
||||||
|
.dimension(new ResourceLocation("the_nether"))
|
||||||
|
.EUt(16)
|
||||||
|
.duration(20);
|
||||||
|
}
|
||||||
|
|
||||||
|
getWarped("architects_palette:abyssaline", "architects_palette:hadaline")
|
||||||
|
getWarped("architects_palette:abyssaline_pillar", "architects_palette:hadaline_pillar")
|
||||||
|
getWarped("architects_palette:abyssaline_tiles", "architects_palette:hadaline_tiles")
|
||||||
|
getWarped("architects_palette:chiseled_abyssaline_bricks", "architects_palette:chiseled_hadaline_bricks")
|
||||||
|
getWarped("architects_palette:abyssaline_bricks", "architects_palette:hadaline_bricks")
|
||||||
|
getWarped("architects_palette:abyssaline_plating", "architects_palette:hadaline_plating")
|
||||||
|
getWarped("architects_palette:abyssaline_lamp", "architects_palette:hadaline_lamp")
|
||||||
|
|
||||||
|
getWarped("architects_palette:sunstone", "architects_palette:moonstone")
|
||||||
|
getWarped("architects_palette:rotten_flesh_block", "architects_palette:entrails")
|
||||||
|
|
||||||
|
getWarped("netherite_ingot", "architects_palette:unobtanium")
|
||||||
|
|
||||||
|
getWarped("granite", "architects_palette:onyx")
|
||||||
|
getWarped("diorite", "architects_palette:nebulite")
|
||||||
|
getWarped("cobblestone", "architects_palette:craterstone")
|
||||||
|
getWarped("andesite", "architects_palette:esoterrack")
|
||||||
|
getWarped("stone_bricks", "architects_palette:moonshale_bricks")
|
||||||
|
getWarped("stone", "architects_palette:moonshale")
|
||||||
|
|
||||||
|
getWarped("#minecraft:logs", "architects_palette:twisted_log")
|
||||||
|
getWarped("#minecraft:planks", "architects_palette:twisted_planks")
|
||||||
|
getWarped("#minecraft:saplings", "architects_palette:twisted_sapling")
|
||||||
|
getWarped("#minecraft:leaves", "architects_palette:twisted_leaves")
|
||||||
|
|
||||||
|
getWarped("clay", "architects_palette:warpstone")
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user