fixed a few recipes that were consuming the needle
This commit is contained in:
parent
00862f3049
commit
576820b667
2 changed files with 23 additions and 18 deletions
|
|
@ -6,19 +6,21 @@ const registerComfortsRecipes = (event) => {
|
|||
event.remove({ mod: "comforts" })
|
||||
|
||||
//Rope and Nail
|
||||
event.recipes.minecraft.crafting_shapeless("comforts:rope_and_nail", ["firmaciv:rope_coil", "gtceu:wrought_iron_screw"])
|
||||
event.shapeless("comforts:rope_and_nail", ["firmaciv:rope_coil", "gtceu:wrought_iron_screw"])
|
||||
.id("comforts:crafting/shaped/rope_and_nail");
|
||||
|
||||
//sleeping bag
|
||||
event.recipes.minecraft.crafting_shaped("comforts:sleeping_bag_white", [
|
||||
"AAA",
|
||||
"B "
|
||||
], {
|
||||
A: "#tfc:high_quality_cloth",
|
||||
B: 'tfc:bone_needle'
|
||||
});
|
||||
event.recipes.tfc.damage_inputs_shaped_crafting(
|
||||
event.shaped("comforts:sleeping_bag_white", [
|
||||
"AAA",
|
||||
"B "
|
||||
], {
|
||||
A: "#tfc:high_quality_cloth",
|
||||
B: 'tfc:bone_needle'
|
||||
})
|
||||
).id('comforts:shaped/sleeping_bag_white');
|
||||
|
||||
event.recipes.minecraft.crafting_shaped("comforts:hammock_white", [
|
||||
event.shaped("comforts:hammock_white", [
|
||||
"ABA",
|
||||
"CCC",
|
||||
"ABA"
|
||||
|
|
|
|||
|
|
@ -161,15 +161,18 @@ function registerTFGMiscellaneousRecipes(event) {
|
|||
.EUt(GTValues.VA[GTValues.ULV]);
|
||||
|
||||
//Airship Balloon
|
||||
event.shaped('tfg:airship_balloon', [
|
||||
'ABA',
|
||||
'BCB',
|
||||
'ABA'
|
||||
], {
|
||||
A: '#forge:string',
|
||||
B: 'immersive_aircraft:sail',
|
||||
C: 'tfc:bone_needle'
|
||||
}).id('tfg:shaped/airship_balloon')
|
||||
event.recipes.tfc.damage_inputs_shaped_crafting(
|
||||
event.shaped('tfg:airship_balloon', [
|
||||
'ABA',
|
||||
'BCB',
|
||||
'ABA'
|
||||
], {
|
||||
A: '#forge:string',
|
||||
B: 'immersive_aircraft:sail',
|
||||
C: 'tfc:bone_needle'
|
||||
})
|
||||
).id('tfg:shaped/airship_balloon')
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/airship_balloon')
|
||||
.itemInputs('4x immersive_aircraft:sail', '4x #forge:string')
|
||||
.itemOutputs('tfg:airship_balloon')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue