Newer
Older
Kristify / data / products.lua
local products = {
	{
		displayName = "Dirt",
		categorys={"Items"},
		type = "item",
		price = 2,
		params = {
			amount = 203,
			id = "minecraft:dirt"
		}
	},
	{
		displayName = "Diamond",
		categorys={"Items","RARE"},
		type = "item",
		price = 14,
		params = {
			amount = 24,
			id = "minecraft:diamond"
		}
	},
	{
		displayName = "MiloX",
		categorys={"Files"},
		type = "link",
		price = 20,
		params = {
			link = "https://devbin.dev/8f3wy"
		}
	}
};
return products;