43 lines
731 B
TypeScript
43 lines
731 B
TypeScript
import type { Product } from "../types/product";
|
|
|
|
export const products: Product[] = [
|
|
{
|
|
id: "spruce-log",
|
|
name: "Spruce Log",
|
|
pricePerStack: 1,
|
|
},
|
|
{
|
|
id: "birch-log",
|
|
name: "Birch Log",
|
|
pricePerStack: 1,
|
|
},
|
|
{
|
|
id: "oak-log",
|
|
name: "Oak Log",
|
|
pricePerStack: 1,
|
|
},
|
|
{
|
|
id: "jungle-log",
|
|
name: "Jungle Log",
|
|
pricePerStack: 1,
|
|
},
|
|
{
|
|
id: "cobblestone",
|
|
name: "Cobblestone",
|
|
pricePerStack: 1 / 16,
|
|
defaultStacksPerDia: 16,
|
|
variants: ["Cobblestone", "Stone", "Stone Bricks"],
|
|
},
|
|
{
|
|
id: "sand",
|
|
name: "Sand",
|
|
pricePerStack: 1,
|
|
},
|
|
{
|
|
id: "gunpowder",
|
|
name: "Gunpowder",
|
|
pricePerStack: 1 / 4,
|
|
defaultStacksPerDia: 4,
|
|
},
|
|
];
|