This commit is contained in:
2026-09-24 23:28:01 -03:00
parent 79faa556de
commit bb42dd662e
73 changed files with 2349 additions and 34 deletions
+3 -3
View File
@@ -80,13 +80,13 @@ BLOCK_BEHAVIORS["bworld:chest"] = {
// furnace
interface FurnaceRecipe {
export interface FurnaceRecipe {
input: string;
output: ItemStack;
cook_time: number;
}
const FURNACE_RECIPES: FurnaceRecipe[] = [
export const FURNACE_RECIPES: FurnaceRecipe[] = [
{
input: "bworld:log",
output: new ItemStack("bworld:coal", 1),
@@ -119,7 +119,7 @@ const FURNACE_RECIPES: FurnaceRecipe[] = [
},
];
const FUEL_VALUES: Record<string, number> = {
export const FUEL_VALUES: Record<string, number> = {
"bworld:coal": 1000,
"bworld:log": 100,
};