Skip to content

Commit

Permalink
Fixes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkosto committed Dec 13, 2024
1 parent 979c964 commit 6eef125
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/minecraft/scripts/resources/dye_crafting.zs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ craftingTable.removeByName("minecraft:light_gray_dye_from_black_white_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Light_Gray,
"light_gray_dye_combo",
"light_gray_dye_combo_manual_only",
<item:minecraft:light_gray_dye> * 2,
[<item:minecraft:gray_dye>, <item:minecraft:white_dye>]
);

mods.recipestages.Recipes.addShapeless(
Stage.Light_Gray,
"light_gray_dye_combo2",
"light_gray_dye_combo2_manual_only",
<item:minecraft:light_gray_dye> * 3,
[<item:minecraft:black_dye>, <item:minecraft:white_dye>, <item:minecraft:white_dye>]
);
Expand All @@ -31,7 +31,7 @@ craftingTable.removeByName("minecraft:gray_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Gray,
"gray_dye_combo",
"gray_dye_combo_manual_only",
<item:minecraft:gray_dye> * 2,
[<item:minecraft:white_dye>, <item:minecraft:black_dye>]
);
Expand All @@ -42,7 +42,7 @@ craftingTable.removeByName("minecraft:orange_dye_from_red_yellow");

mods.recipestages.Recipes.addShapeless(
Stage.Orange,
"orange_dye_combo",
"orange_dye_combo_manual_only",
<item:minecraft:orange_dye> * 2,
[<item:minecraft:red_dye>, <item:minecraft:yellow_dye>]
);
Expand All @@ -53,7 +53,7 @@ craftingTable.removeByName("minecraft:purple_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Purple,
"purple_dye_combo",
"purple_dye_combo_manual_only",
<item:minecraft:purple_dye> * 2,
[<item:minecraft:red_dye>, <item:minecraft:blue_dye>]
);
Expand All @@ -66,7 +66,7 @@ craftingTable.removeByName("minecraft:magenta_dye_from_blue_red_white_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Magenta,
"magenta_dye_combo",
"magenta_dye_combo_manual_only",
<item:minecraft:magenta_dye> * 2,
[<item:minecraft:purple_dye>, <item:minecraft:pink_dye>]
);
Expand All @@ -77,7 +77,7 @@ craftingTable.removeByName("minecraft:lime_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Lime,
"lime_dye_combo",
"lime_dye_combo_manual_only",
<item:minecraft:lime_dye> * 2,
[<item:minecraft:green_dye>, <item:minecraft:white_dye>]
);
Expand All @@ -88,7 +88,7 @@ craftingTable.removeByName("minecraft:pink_dye_from_red_white_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Pink,
"pink_dye_combo",
"pink_dye_combo_manual_only",
<item:minecraft:pink_dye> * 2,
[<item:minecraft:white_dye>, <item:minecraft:red_dye>]
);
Expand All @@ -99,7 +99,7 @@ craftingTable.removeByName("minecraft:cyan_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Cyan,
"cyan_dye_combo",
"cyan_dye_combo_manual_only",
<item:minecraft:cyan_dye> * 2,
[<item:minecraft:blue_dye>, <item:minecraft:green_dye>]
);
Expand All @@ -110,15 +110,15 @@ craftingTable.removeByName("minecraft:light_blue_dye_from_blue_white_dye");

mods.recipestages.Recipes.addShapeless(
Stage.Light_Blue,
"light_blue_dye_combo",
"light_blue_dye_combo_manual_only",
<item:minecraft:light_blue_dye> * 2,
[<item:minecraft:blue_dye>, <item:minecraft:white_dye>]
);

// Green Dye Combination
mods.recipestages.Recipes.addShapeless(
Stage.Green,
"green_dye_combo",
"green_dye_combo_manual_only",
<item:minecraft:green_dye> * 2,
[<item:minecraft:blue_dye>, <item:minecraft:yellow_dye>]
);
Expand Down

0 comments on commit 6eef125

Please sign in to comment.