Skip to content

Commit

Permalink
Fixes #103
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkosto committed Jan 7, 2025
1 parent 9b0eb52 commit cd70641
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/minecraft/scripts/shaped_recipes.zs
Original file line number Diff line number Diff line change
Expand Up @@ -1381,3 +1381,23 @@ craftingTable.addShaped(
[<item:minecraft:red_dye>, <item:minecraft:spruce_sapling>, <item:minecraft:nether_wart>]
]
);

// Ars Wood to Chest Recipes
craftingTable.addShaped(
"archwood_logs_to_chest",
<item:minecraft:chest> * 4,
[
[<tag:items:forge:logs/archwood>, <tag:items:forge:logs/archwood>, <tag:items:forge:logs/archwood>],
[<tag:items:forge:logs/archwood>, <item:minecraft:air>, <tag:items:forge:logs/archwood>],
[<tag:items:forge:logs/archwood>, <tag:items:forge:logs/archwood>, <tag:items:forge:logs/archwood>]
]
);
craftingTable.addShaped(
"archwood_planks_to_chest",
<item:minecraft:chest> * 1,
[
[<tag:items:forge:planks/archwood>, <tag:items:forge:planks/archwood>, <tag:items:forge:planks/archwood>],
[<tag:items:forge:planks/archwood>, <item:minecraft:air>, <tag:items:forge:planks/archwood>],
[<tag:items:forge:planks/archwood>, <tag:items:forge:planks/archwood>, <tag:items:forge:planks/archwood>]
]
);

0 comments on commit cd70641

Please sign in to comment.