Newer
Older
Kristify / config / products.lua
@Erlend Erlend on 30 Aug 2022 295 bytes Create basic folder structure
local products = {
	{
		displayName = "Dirt",
		type = "item",
		price = 2,
		params = {
			amount = 203,
			id = "minecraft:dirt"
		}
	},
	{
		displayName = "MiloX",
		type = "link",
		price = 20,
		params = {
			link = "https://devbin.dev/8f3wy"
		}
	}
};
return products;