Added Create Recipes

This commit is contained in:
JordanPlayz158
2024-07-22 20:07:41 -04:00
parent 4954ac3da8
commit a14078c869
4 changed files with 45 additions and 2 deletions

View File

@@ -530,6 +530,11 @@ file = "mods/grass-overhaul.pw.toml"
hash = "e78b02e9759ff949a2aff4a95363a9cf41dd91d0cb936809e62574d23d1a9070"
metafile = true
[[files]]
file = "mods/gravestones-fix.pw.toml"
hash = "4b350db5e3d33d62b190090a8f804f025b8792bc06467aaefa08c393d841287c"
metafile = true
[[files]]
file = "mods/gravestones.pw.toml"
hash = "ace9dbdca93d66c486a4474081fc91219640e506b62679bce01318c34af51e13"
@@ -1146,7 +1151,7 @@ hash = "7c627985b33d5d4458a4532b53a4bfc0e78f69ebb0614e178d7cddbc7714c999"
[[files]]
file = "scripts/recipes.zs"
hash = "658e3898168ba64bb96ae9fae02fd980f5dc1a05193815409439a00b2c828916"
hash = "49176b6aa7af590c6abe6225b004e84a03dc6872c62cdc9b8fb12d0bdc9b3cb4"
[[files]]
file = "servers.dat"

View File

@@ -0,0 +1,13 @@
name = "Gravestones Fix"
filename = "gravestonesfix-1.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nFIzW822/versions/vJzsnLh1/gravestonesfix-1.0.0.jar"
hash-format = "sha1"
hash = "a62baefb97ce246f43c19ae6608f1f7e16e7c017"
[update]
[update.modrinth]
mod-id = "nFIzW822"
version = "vJzsnLh1"

View File

@@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "453623c0045e658214aa25bd2794137f776c35c7d1785ac48a9184a4bf1a109f"
hash = "ab831f4d43423ab50d448b8d26a320b61b1f5282e2d05943bc0cb592094dc18b"
[versions]
fabric = "0.15.11"

View File

@@ -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