Added Create Recipes
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
// #Add
|
||||
|
||||
// Flowers
|
||||
craftingTable.addShaped("sunflower_dandelion", <item:minecraft:dandelion> * 4, [[<item:minecraft:sunflower>], [<item:minecraft:sunflower>]]);
|
||||
|
||||
craftingTable.addShaped("lilac_allium", <item:minecraft:allium> * 4, [[<item:minecraft:lilac>], [<item:minecraft:lilac>]]);
|
||||
@@ -6,4 +8,27 @@ craftingTable.addShaped("lilac_allium", <item:minecraft:allium> * 4, [[<item:min
|
||||
craftingTable.addShaped("peony_pink_tulip", <item:minecraft:pink_tulip> * 4, [[<item:minecraft:peony>], [<item:minecraft:peony>]]);
|
||||
|
||||
craftingTable.addShaped("rose_bush_poppy", <item:minecraft:poppy> * 4, [[<item:minecraft:rose_bush>], [<item:minecraft:rose_bush>]]);
|
||||
|
||||
// Create
|
||||
<tag:items:c:steel_ingots>.add(<item:create_dd:steel_ingot>);
|
||||
|
||||
// Steel Ingot Melting
|
||||
<tag:items:createbigcannons:ingot_steel>.add(<item:create_dd:steel_ingot>);
|
||||
|
||||
// Steel Block Melting
|
||||
<tag:items:createbigcannons:block_steel>.add(<item:create_dd:steel_block>);
|
||||
|
||||
// Nethersteel
|
||||
<recipetype:create:mixing>.addJsonRecipe("create_dd_steel_nethersteel", {
|
||||
heatRequirement: "superheated",
|
||||
ingredients: [
|
||||
<item:minecraft:netherite_scrap>,
|
||||
<item:create_dd:steel_ingot>,
|
||||
<item:create_dd:steel_ingot>,
|
||||
<item:create_dd:steel_ingot>,
|
||||
<item:create_dd:steel_ingot>
|
||||
],
|
||||
results: [<item:createbigcannons:nethersteel_ingot> * 8]
|
||||
});
|
||||
|
||||
// File End
|
||||
|
||||
Reference in New Issue
Block a user