forked from sayterdarkwynd/FrackinUniverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
currencies.config.patch
99 lines (95 loc) · 3.43 KB
/
currencies.config.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[
// SAIL currency list parameters:
// sail_secret - Set to 'true' if this currency should be displayed only if the player has the currency (more than 0)
// sail_hidden - Set to 'true' if this currency should not be displayed in the currency list (overrides 'sail_secret', so no point in defining them both)
// sail_group - A string for grouping resources together (because 'pairs' is not organized)
// If no group is defined, the resource defaults to 'unsorted'
// Their strings are defined in '\zb\newSail\data.config' inside the 'TextData.currencies' table
// sail_group_order - Defined only in 'money'(aka pixels), and used to order the groups. Not patching defined groups into this will result in random orders for those groups
// 'main' should not be on the list because it is added manually via script, and is always first (I suggest against touching their 'sail_group' value as well)
// 'unsorted' should not be on the list because it is added manually via script, and is always last
// Grouping vanilla currencies
{
"op": "add",
"path": "/money/sail_group_order",
"value": ["fu_research", "fu_tradegoods", "fu_madness"]
},
// Grouping vanilla currencies
{
"op": "add",
"path": "/money/sail_group",
"value": "main"
},
{
"op": "add",
"path": "/essence/sail_group",
"value": "main"
},
// Research currencies
{
"op": "add",
"path": "/fuscienceresource",
"value": { "representativeItem" : "fuscienceresource", "playerMax" : 999999, "sail_group" : "fu_research" }
},
{
"op": "add",
"path": "/fuprecursorresource",
"value": { "representativeItem" : "fuprecursorresource", "playerMax" : 5000, "sail_group" : "fu_research", "sail_secret" : true }
},
{
"op": "add",
"path": "/fumadnessresource",
"value": { "representativeItem" : "fumadnessresource", "playerMax" : 15000, "sail_group" : "fu_research" }
},
{
"op": "add",
"path": "/fugeneticmaterial",
"value": { "representativeItem" : "fugeneticmaterial", "playerMax" : 15000, "sail_group" : "fu_research" }
},
// Space station trading goods
{
"op": "add",
"path": "/fufoodgoods",
"value": { "representativeItem" : "fufoodgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fumilitarygoods",
"value": { "representativeItem" : "fumilitarygoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fuelectronicgoods",
"value": { "representativeItem" : "fuelectronicgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fumedicalgoods",
"value": { "representativeItem" : "fumedicalgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fuchemicalgoods",
"value": { "representativeItem" : "fuchemicalgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fuluxurygoods",
"value": { "representativeItem" : "fuluxurygoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fumineralgoods",
"value": { "representativeItem" : "fumineralgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
},
{
"op": "add",
"path": "/fuemptygoods",
"value": { "representativeItem" : "fuemptygoods", "playerMax" : 99999, "sail_hidden" : true }
},
{
"op": "add",
"path": "/fucontrabandgoods",
"value": { "representativeItem" : "fucontrabandgoods", "playerMax" : 99999, "sail_group" : "fu_tradegoods" }
}
]