Various fixes (#3288)
* A typo in the meat tag has been fixed. Typo in the tag for meat from the wan_ancient_beasts mod has been fixed; meat can now once again be used to lure the entity from wan_ancient_beasts. Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com> * Fixed the crafting recipe for two items. bitwise_xnor_gate and morered:hexidecrubrometer have circuit 5 Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com> * fix(kubejs/space_general): fixed the recipe for tfg:aes_insulation_sheet (roll → 9 sheets unpacking) and separated circuit (0/1) to remove the recipe conflict. fix(kubejs/space_general): fixed the recipe for tfg:aes_insulation_sheet (roll → 9 sheets unpacking) and separated circuit (0/1) to remove the recipe conflict. Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com> * Fixed the recipeId butraldehyde → butyraldehyde in ADD_CIRCUIT, so the circuit now applies to the correct recipe. Fixed the recipeId butraldehyde → butyraldehyde in ADD_CIRCUIT, so the circuit now applies to the correct recipe. Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com> * Replaced flibe with tfg:flibe in material components → removed WARN not a known Material. Replaced flibe with tfg:flibe in material components → removed WARN not a known Material. Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com> --------- Signed-off-by: Tipy <105522881+Tipy4@users.noreply.github.com>
This commit is contained in:
@@ -72,7 +72,7 @@ const registerMoreRedRecipes = (event) => {
|
||||
// Red Wire Post Relay Plate
|
||||
event.recipes.gtceu.assembler('tfg/morered/hexidecrubrometer')
|
||||
.itemInputs('8x gtceu:stone_plate', '9x minecraft:redstone', '4x minecraft:quartz')
|
||||
.circuit(5)
|
||||
.circuit(28)
|
||||
.itemOutputs('morered:hexidecrubrometer')
|
||||
.duration(100)
|
||||
.EUt(16)
|
||||
@@ -281,4 +281,4 @@ const registerMoreRedRecipes = (event) => {
|
||||
})
|
||||
|
||||
//#endregion
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,9 +90,9 @@ function registerTFGInsulationRecipes(event) {
|
||||
}).id('tfg:shaped/aes_insulation_roll')
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:aes_insulation_sheet')
|
||||
.itemInputs('9x tfg:aes_insulation_sheet')
|
||||
.itemOutputs('tfg:aes_insulation_roll')
|
||||
.circuit(0)
|
||||
.itemInputs('tfg:aes_insulation_roll')
|
||||
.itemOutputs('9x tfg:aes_insulation_sheet')
|
||||
.circuit(1)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
@@ -251,4 +251,4 @@ function registerTFGInsulationRecipes(event) {
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.IV])
|
||||
//#endregion
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ const registerWABItemTags = (event) => {
|
||||
event.add('tfc:foods/cooked_meats', 'wan_ancient_beasts:cooked_ancient_meat')
|
||||
event.add('tfc:foods/meats', 'wan_ancient_beasts:cooked_ancient_meat')
|
||||
|
||||
event.add('wan_antcient_beasts:meat_food', '#tfc:foods/raw_meats')
|
||||
event.add('wan_ancient_beasts:meat_food', '#tfc:foods/raw_meats')
|
||||
|
||||
// Eggs
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:eater_egg')
|
||||
@@ -88,4 +88,4 @@ const registerWansAncientBeastsBiomeTags = (event) => {
|
||||
event.removeAll('wan_ancient_beasts:has_structure/primal_log');
|
||||
event.removeAll('wan_ancient_beasts:has_structure/ruined_castle');
|
||||
event.removeAll('wan_ancient_beasts:has_structure/training_outpost');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -452,8 +452,8 @@ global.ADD_CIRCUIT = /** @type {const} */ ([
|
||||
{ recipeId: "gtceu:chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 },
|
||||
|
||||
{ recipeId: "gtceu:chemical_reactor/butraldehyde", circuitNumber: 5 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/butraldehyde", circuitNumber: 5 },
|
||||
{ recipeId: "gtceu:chemical_reactor/butyraldehyde", circuitNumber: 5 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/butyraldehyde", circuitNumber: 5 },
|
||||
|
||||
{ recipeId: "gtceu:chemical_reactor/saltpeter", circuitNumber: 2 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/saltpeter", circuitNumber: 2 },
|
||||
|
||||
@@ -184,14 +184,14 @@ const registerTFGNuclearMaterials = (event) => {
|
||||
event.create('tfg:dirty_flibe')
|
||||
.liquid(new GTFluidBuilder().temperature(293))
|
||||
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
|
||||
.components('1x flibe', '1x unknown')
|
||||
.components('1x tfg:flibe', '1x unknown')
|
||||
.color(0xdaffd6)
|
||||
.secondaryColor(0xcd8dbc)
|
||||
|
||||
event.create('tfg:hot_flibe')
|
||||
.liquid(new GTFluidBuilder().customStill().temperature(3293))
|
||||
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
|
||||
.components('1x flibe')
|
||||
.components('1x tfg:flibe')
|
||||
|
||||
// Material Fission Earth
|
||||
|
||||
|
||||
Reference in New Issue
Block a user