diff options
author | ClarkeCode <33846391+ClarkeCode@users.noreply.github.com> | 2023-04-29 03:39:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 03:39:28 +0200 |
commit | 1f8545facd248bbf4ea0cd551fea5f7d9b0efdce (patch) | |
tree | 0accf6d2c5479afb99649351ccf485b63520ac81 /game | |
parent | 05937359e8c53ee76dc3ce537dd70083a016f766 (diff) | |
parent | ef0d15bef9c35f261c4d09bbb23a2b8731acd3fc (diff) |
Merge pull request #100 from OpenVic2Project/goods
Addition of goods struct
Diffstat (limited to 'game')
-rw-r--r-- | game/common/data/goods-jca.json | 2 | ||||
-rw-r--r-- | game/common/data/goods.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/game/common/data/goods-jca.json b/game/common/data/goods-jca.json index 3a0390a..5017d7e 100644 --- a/game/common/data/goods-jca.json +++ b/game/common/data/goods-jca.json @@ -15,7 +15,7 @@ {"id": "precious_goods", "category": "Raw", "cost": 7.00, "colour": "247 241 61", "isAvailableAtStart": true, "isTradeable": false, "isMoney": true, "hasOverseasPenalty": false}, {"id": "rubber", "category": "Raw", "cost": 7.00, "colour": "123 110 86", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "silk", "category": "Raw", "cost": 10.00, "colour": "125 158 43", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, - {"id": "sulpher", "category": "Raw", "cost": 6.00, "colour": "181 228 102", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, + {"id": "sulphur", "category": "Raw", "cost": 6.00, "colour": "181 228 102", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "timber", "category": "Raw", "cost": 0.90, "colour": "146 72 17", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "tropical_wood", "category": "Raw", "cost": 5.40, "colour": "213 177 118", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "wool", "category": "Raw", "cost": 0.70, "colour": "234 195 158", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, diff --git a/game/common/data/goods.json b/game/common/data/goods.json index 4954fb0..9d8e0e3 100644 --- a/game/common/data/goods.json +++ b/game/common/data/goods.json @@ -14,7 +14,7 @@ {"id": "precious_metal", "category": "Raw", "cost": 8.00, "colour": "253 199 110", "isAvailableAtStart": true, "isTradeable": false, "isMoney": true, "hasOverseasPenalty": false}, {"id": "rubber", "category": "Raw", "cost": 7.00, "colour": "123 110 86", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "silk", "category": "Raw", "cost": 10.00, "colour": "125 158 43", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, - {"id": "sulpher", "category": "Raw", "cost": 6.00, "colour": "181 228 102", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, + {"id": "sulphur", "category": "Raw", "cost": 6.00, "colour": "181 228 102", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "timber", "category": "Raw", "cost": 0.90, "colour": "146 72 17", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "tropical_wood", "category": "Raw", "cost": 5.40, "colour": "213 177 118", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, {"id": "wool", "category": "Raw", "cost": 0.70, "colour": "234 195 158", "isAvailableAtStart": true, "isTradeable": true, "isMoney": false, "hasOverseasPenalty": false}, |