# Trade goal

<div align="left"><figure><img src="https://3957347284-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7r6RseTZTkJJcKqbC3EI%2Fuploads%2FsGX44wOQtWPs1ZSFZHcM%2F93.png?alt=media&#x26;token=10ebf2ca-0792-40cb-9ad1-894a665e76db" alt="" width="128"><figcaption><p>Trade Quest Icon</p></figcaption></figure></div>

This quest requires to bring *Disinfectant Alcohol, Spray* and *Iodine Tincture*. Each goal has the quantity set. Be careful about these numbers and make sure, what is the real quantity of the item.&#x20;

This quest is not **repeatable**

This quest has a pre-quest of id `player1`

You will get reward - 1x *cooking pot* and 1x *baked beans can*

```json
{
      "Id": "medicineTrading",
      "TakerId": "barman",
      "QType": 4,
      "Name": "Medicine deal",
      "Description": "Trade medicine",
      "Goals": [
        {
          "QType": 4,
          "ClassName": "DisinfectantAlcohol",
          /* "Count" : 0 */ // 
          "Quantity": 100, // Use Quantity if the item has quantity 
          "Description": "Bring " // Rest is filled automatically by display name 
        },
        {
          "QType": 4,
          "ClassName": "DisinfectantSpray",
          "Quantity": 100,
          "Description": "Bring "
        },
        {
          "QType": 4,
          "ClassName": "CrudeMachete",
          "Count": 1,
          "Description": "Bring "
        }
      ],
      "Rewards": [
        {
          "RewardType": 1,
          "ClassName": "Pot",
          "Amount": 1
        },
        {
          "RewardType": 1,
          "ClassName": "BakedBeansCan",
          "Amount": 1
        }
      ],
      "IsRepeatable": false,
      "PreQuests": [
        "player1"
      ],
      "RepeatDurationHours": 0
}

```
