From 97a065ab49af3163b341f2df376f6d814a2ddd62 Mon Sep 17 00:00:00 2001 From: JordanPlayz158 Date: Sat, 2 Nov 2024 16:32:49 -0400 Subject: [PATCH] Added Create Crushed Raw Silver into 1 Bewitchment Silver Ingot with a 40% chance of a second Bewitchment Silver Ingot when superheating Create Crushed Raw Silver --- index.toml | 4 ++++ pack.toml | 2 +- scripts/recipes_silver_1-0-21.zs | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 scripts/recipes_silver_1-0-21.zs diff --git a/index.toml b/index.toml index a57515d..392a4b9 100644 --- a/index.toml +++ b/index.toml @@ -1187,6 +1187,10 @@ hash = "242dd9fbe0d5254436c9fc98f7c322222a31ed4b4faaae96630952a2be680caa" file = "scripts/recipes_nylium_1-0-20.zs" hash = "cf6df7c17e2a4e927e9492855d6288a6717ceffee3e85c93b5b98f4b4275a0a7" +[[files]] +file = "scripts/recipes_silver_1-0-21.zs" +hash = "4e92b8cf4a1f9e33a043e4edce03341c5c4de04d6dac163f9b3632af3401e644" + [[files]] file = "servers.dat" hash = "7f7d5bbb9482fb88a30c572ed01dc77ef555d7eb8375910bdc78584042dd349f" diff --git a/pack.toml b/pack.toml index c895402..0b6b2b3 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "3ec85a3e4d6cfa6c6dcc4e05cd2eff57c9eca643e7d61885bf07a37ad4669ca0" +hash = "a3482214279053747e2e8717487a127406ad88c5e196d2a5e705d446205ba85a" [versions] fabric = "0.15.11" diff --git a/scripts/recipes_silver_1-0-21.zs b/scripts/recipes_silver_1-0-21.zs new file mode 100644 index 0000000..3aa482f --- /dev/null +++ b/scripts/recipes_silver_1-0-21.zs @@ -0,0 +1,18 @@ +// #Add + +.addJsonRecipe("create_dd_crushed_raw_silver_silver_ingot", { + type: "create_dd:superheating", + + ingredients: [ + + ], + results: [ + , + { + item: "bewitchment:silver_ingot", + chance: 0.4 + } + ] +}); + +// File End