// Make bamboo charcoal create torches on a 1:1 basis recipes.removeByRecipeName("cuisine:torch"); recipes.addShaped("cuisine_torch", , [ [], [] ]); // Allow conversions between string type items recipes.addShapeless("string_to_linen", , []); recipes.addShapeless("linen_to_ties", , []); recipes.addShapeless("ties_to_silk", , []); recipes.addShapeless("silk_to_string", , []); // 4x bolt of string -> wool block recipes.addShaped("string_bolt_to_wool", , [ [,], [,], ]); // Make stone torch recipe work, and use Inspiration's stone rod recipes.removeByRecipeName("jetorches:material/stick_stone"); recipes.removeByRecipeName("jetorches:torch/torch_stone"); recipes.addShaped("stone_torch", , [ [], [] ]); // Normalise the other torch recipes recipes.removeByRecipeName("jetorches:torch/torch_obsidian"); recipes.addShaped("obsidian_torch", , [ [], [] ]); recipes.removeByRecipeName("atum:palm_torch"); recipes.addShaped("palm_torch", , [ [], [] ]); recipes.removeByRecipeName("atum:deadwood_torch"); recipes.addShaped("deadwood_torch", , [ [], [] ]); recipes.removeByRecipeName("atum:bone_torch"); recipes.addShaped("bone_torch", , [ [], [] ]); recipes.removeByRecipeName("atum:limestone_torch"); recipes.addShaped("limestone_torch", , [ [], [] ]); // Disable Rustic's rope recipe in favour of Inspirations' recipes.removeByRecipeName("rustic:rope");