diff --git a/.gitignore b/.gitignore index 4f1bd55..10abae9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Configuration files config.lua +products.lua # .settings .settings diff --git a/data/products.example.lua b/data/products.example.lua new file mode 100644 index 0000000..f083013 --- /dev/null +++ b/data/products.example.lua @@ -0,0 +1,8 @@ +return { + { + displayName = "Emerald Ingot", + price = 1, + id = "minecraft:emerald", + metaname = "mald", + }, +} diff --git a/data/products.lua b/data/products.lua index 4dd6e75..f083013 100644 --- a/data/products.lua +++ b/data/products.lua @@ -1,3 +1,8 @@ return { - -} \ No newline at end of file + { + displayName = "Emerald Ingot", + price = 1, + id = "minecraft:emerald", + metaname = "mald", + }, +}