This commit is contained in:
2026-03-27 17:41:52 -03:00
parent 1b045a4394
commit 30671b101a
4 changed files with 29 additions and 20 deletions
+16 -8
View File
@@ -17,15 +17,15 @@ const recipes: CraftingRecipe[] = [
width: 3,
height: 3,
pattern: [
"bworld:log",
"bworld:log",
"bworld:log",
"bworld:log",
"bworld:planks",
"bworld:planks",
"bworld:planks",
"bworld:planks",
undefined,
"bworld:log",
"bworld:log",
"bworld:log",
"bworld:log",
"bworld:planks",
"bworld:planks",
"bworld:planks",
"bworld:planks",
],
result: new ItemStack("bworld:chest", 1),
},
@@ -45,6 +45,14 @@ const recipes: CraftingRecipe[] = [
],
result: new ItemStack("bworld:furnace", 1),
},
{
width: 1,
height: 1,
pattern: [
"bworld:log",
],
result: new ItemStack("bworld:planks", 2),
},
];
const PADDING = 10;