From b6a1eb7900172ae177f44213f090d75c7c528713 Mon Sep 17 00:00:00 2001 From: Space Admiral Date: Wed, 7 Dec 2022 22:12:49 -0800 Subject: [PATCH] better marketplace trade description --- models/MarketTradeGood.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/models/MarketTradeGood.json b/models/MarketTradeGood.json index 0b6ba5a..bfc3bba 100644 --- a/models/MarketTradeGood.json +++ b/models/MarketTradeGood.json @@ -7,26 +7,27 @@ }, "tradeVolume": { "type": "integer", - "description": "The typical volume flowing through the market for this type of good.", - "minimum": 1 + "description": "The typical volume flowing through the market for this type of good. The larger the trade volume, the more stable prices will be.", + "minimum": 10 }, "supply": { "type": "string", - "description": "A rough estimate of the total supply of this good in this marketplace.", + "description": "A rough estimate of the total supply of this good in the marketplace.", "enum": [ - "HIGH", - "AVERAGE", - "LOW" + "SCARCE", + "LIMITED", + "MODERATE", + "ABUNDANT" ] }, "purchasePrice": { "type": "integer", - "description": "The price at which this good is sold.", + "description": "The price at which this good can be purchased from the market.", "minimum": 0 }, "sellPrice": { "type": "integer", - "description": "The price at which this good is bought.", + "description": "The price at which this good can be sold to the market.", "minimum": 0 } },