# SS-Crafting

<figure><img src="/files/JgVebI9SCucSXtcZMIw0" alt=""><figcaption><p>CRAFTING SYSTEM</p></figcaption></figure>

<figure><img src="/files/2Bd6YLjxPBzbX7w6jywT" alt=""><figcaption></figcaption></figure>

* [**How to create a receipe ?**](/readme-1/create-a-receipe.md)
* [**Permanent Items ?**](/readme-1/permanent-items.md)
* [**Create a book / workbench ?**](/readme-1/create-a-book-workbench.md)

***

## Create a receipe.

<details>

<summary>Receipe Example</summary>

```
["horsebrush"] = { -- RECEIPE NAME SHOULD BE SAME AS THE ITEM
	Item = "horsebrush", -- ITEM TO RECEIVE
	Amount = 2, -- AMOUNT TO RECEIVE WHEN CRAFTED
	Desc = "help keep your horse's coat clean by removing dust and dirt particles
	 while also giving them a massage which helps release oils that give their 
	coat a glossy shine.", -- ITEM DESCRIPTION AND INFO
	Category = "medic", -- IN WICH CATEGORY SHOULD ADD THE EXP ?
	Level = 0, -- LVL NEED TO CAN CRAFT THIS ITEM
	Exp = 25, -- HOW MUCH EXPERIENCE TO ADD WHEN CRAFT
	isGun = false, -- IS THIS ITEM A GUN ?
	Jobs = {}, -- WHAT JOBS CAN CRAFT THIS ITEM ? {} WILL ALLOW ANYBODY / {"jobname, "jobname"} WILL BE SHOWED ONLY TO THEM
	JobGrades = {}, -- WHAT JOBS GRADE CAN CRAFT THIS ITEM ? {} WILL ALLOW ANY / {1, 5} WILL BE SHOWED ONLY TO THIS RANK
	SuccessRate = 100, -- % CHANCE TO CRAFT THIS ITEM ?
	Time = 5, -- TIME NEED TO WAIT
        Metadata = {description = "TESTING : ", ["qty"] = 20}, -- ADD METADATA IF YES WICH ? false TURN IT OFF
        Price = 100,
	Ingredients = { -- WHAT INGREDIENTS NEED TO CRAFT THIS RECEIPE
		['bread'] = {amount = 2, returnItem = false, returnAmount = 1},
		['beer'] = {amount = 2, returnItem = false, returnAmount = 1},
	}
},   
```

</details>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sirecstudio.com/readme-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
