X Tutup
Skip to content

Commit 49bd7e2

Browse files
author
Webster Sheets
authored
Merge pull request #5474 from Web-eWorks/station-economy
Dynamic Station Economies
2 parents 0dab846 + 869b7f3 commit 49bd7e2

22 files changed

+1235
-420
lines changed

data/economy/commodities/high_tech.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"commodities": {
44
"medicines": {
55
"l10n_key": "MEDICINES",
6-
"inputs": [ "computers", "carbon_ore" ],
6+
"inputs": [ "carbon_ore", [ "computers", 0.4 ] ],
77
"producer": "industrial",
88
"price": 563
99
},
1010
"computers": {
1111
"l10n_key": "COMPUTERS",
12-
"inputs": [ "precious_metals", "industrial_machinery" ],
12+
"inputs": [ [ "precious_metals", 0.2 ], "industrial_machinery" ],
1313
"producer": "industrial",
1414
"price": 461
1515
},

data/economy/commodities/industrial.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"hand_weapons": {
4646
"l10n_key": "HAND_WEAPONS",
47-
"inputs": [ "metal_alloys", "computers" ],
47+
"inputs": [ "metal_alloys", [ "computers", 0.2 ] ],
4848
"producer": "industrial",
4949
"price": 251,
5050
"default_legality": [ 1, 2 ]

data/lang/ui-core/en.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2183,6 +2183,10 @@
21832183
"description": "",
21842184
"message": "Total mass"
21852185
},
2186+
"TRADING_AT": {
2187+
"description": "Indicates the current system for inspecting commodities.",
2188+
"message": "At {system}:"
2189+
},
21862190
"TRADING_FROM": {
21872191
"description": "Indicates the source system of a commodity trade.",
21882192
"message": "From {system}:"
@@ -2342,5 +2346,17 @@
23422346
"ZOOM": {
23432347
"description": "Label for a zoom (magnification) control bar.",
23442348
"message": "Zoom"
2349+
},
2350+
"DEMAND": {
2351+
"description": "Column label for commodity demand at a market.",
2352+
"message": "Demand"
2353+
},
2354+
"INTERSTELLAR_TRADE_AVG": {
2355+
"description": "Label displaying commodity flow at a per-system level",
2356+
"message": "Interstellar Trade:"
2357+
},
2358+
"NO_AVAILABLE_DATA": {
2359+
"description": "Message displaying no stored data available",
2360+
"message": "No data available"
23452361
}
23462362
}

0 commit comments

Comments
 (0)
X Tutup