diff --git a/README.md b/README.md index 1e30f71..fc51dbc 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,18 @@ # kristify -A Krist Shop Software for newer versions of CC:T -No other mods are required. +A piece of software that let's you create [Krist](https://krist.dev/) shops in modern version of [ComputerCraft](https://tweaked.cc) +No other mods than ComputerCraft ([Tweaked](https://modrinth.com/mod/cc-tweaked) or [Restitched](https://modrinth.com/mod/cc-restitched)) are required. ## Folder Structure | Folder | Description | | ---------- | -------------------------------------------------------------------- | | `/src` | The source code! This file will be compiled into `kristify.lua`. | -| `/config` | All types of data. Example: Config, products, chests, etc. | +| `/data` | All types of data. Examples: Config, products, chests, etc. | | `/docs` | The documentation folder. This folder is not included in production. | | `/.github` | All github related stuff. Not included in production | +| `.vscode` | All VSC related stuff. Not included in production | + +## Documentation + +Our documentation is hosted on [`kristify.github.io/kristify`](https://kristify.github.io/kristify). diff --git a/data/products.lua b/data/products.lua index 57baee2..1565da6 100644 --- a/data/products.lua +++ b/data/products.lua @@ -3,37 +3,15 @@ displayName = "Dirt", description = "Has good quality.", bimg = { { "‡€‹", " ", "888" }, { "‚", "888", "ccc" }, { "‹€‡", "c c", " c " } }, - categorys = { "Items" }, - type = "item", price = 2, - params = { - amount = 203, - id = "minecraft:dirt" - }, - metaname = "dirt" + id = "minecraft:dirt", + metaname = "dirt", }, { displayName = "Diamond", description = "Only for a limited time!", - categorys = { "Items", "RARE" }, - type = "item", price = 14, - params = { - amount = 24, - id = "minecraft:diamond" - }, - metaname = "dia" + id = "minecraft:diamond", + metaname = "dia", }, - { - displayName = "MiloX", - description = "Get access to a script!", - bimg = "script.bimg", - categorys = { "Files" }, - type = "link", - price = 20, - params = { - link = "https://devbin.dev/8f3wy" - }, - metaname = "milo" - } }