forked from BattletechModders/MechEngineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.json
More file actions
109 lines (105 loc) · 2.26 KB
/
mod.json
File metadata and controls
109 lines (105 loc) · 2.26 KB
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
100
101
102
103
104
105
106
107
108
109
{
"Name": "MechEngineer",
"Author": "Maintainer: CptMoore",
"Website": "https://github.com/BattletechModders/MechEngineer",
"Enabled": true,
"DependsOn": ["CustomComponents"],
"DLL": "MechEngineer.dll",
"DLLEntryPoint": "MechEngineer.Control.Start",
"LogSettings": {
"LogFileEnabled" : true
},
"CustomResourceTypes": ["MEBonusDescriptions", "MECriticalEffects"],
"Manifest": [
{
"Type": "AdvancedJSONMerge",
"Path": "advancedjsonmerge",
"ShouldMergeJSON": false
},
{
"Type": "MEBonusDescriptions",
"Path": "data/basic/bonusDescriptions/",
"ShouldMergeJSON": false
},
{
"Type": "MECriticalEffects",
"Path": "data/basic/criticalEffects/",
"ShouldMergeJSON": false
},
{
"Type": "CCCategories",
"Path": "data/basic/categories/",
"ShouldMergeJSON": false
},
{
"Type": "CCTagRestrictions",
"Path": "data/basic/tagRestrictions/",
"ShouldMergeJSON": false
},
{
"Type": "CCDefaults",
"Path": "data/basic/defaults/",
"ShouldMergeJSON": false
},
{
"Type": "UpgradeDef",
"Path": "data/basic/internals/",
"ShouldMergeJSON": false
},
{
"Type": "UpgradeDef",
"Path": "data/basic/internalsCompatibility/",
"ShouldMergeJSON": false
},
{
"Type": "HeatSinkDef",
"Path": "data/basic/engines/",
"ShouldMergeJSON": false
},
{
"Type": "HeatSinkDef",
"Path": "data/basic/engine_parts/",
"ShouldMergeJSON": false
},
{
"Type": "MechDef",
"Path": "data/basic/mech/",
"ShouldMergeJSON": false
},
{
"Type": "ChassisDef",
"Path": "data/basic/chassis/",
"ShouldMergeJSON": false
},
{
"Type": "ItemCollectionDef",
"Path": "data/basic/itemCollections/",
"ShouldMergeJSON": false
},
{
"Type": "UpgradeDef",
"Path": "disabled data/test/upgrades/",
"ShouldMergeJSON": false
},
{
"Type": "UpgradeDef",
"Path": "disabled data/test/internals/",
"ShouldMergeJSON": false
},
{
"Type": "HeatSinkDef",
"Path": "disabled data/test/heatsinks/",
"ShouldMergeJSON": false
},
{
"Type": "HeatSinkDef",
"Path": "disabled data/test/engines/",
"ShouldMergeJSON": false
},
{
"Type": "HeatSinkDef",
"Path": "disabled data/test/engine_parts/",
"ShouldMergeJSON": false
}
]
}