forked from BattletechModders/CustomComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.json
77 lines (66 loc) · 1.84 KB
/
mod.json
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
{
"Name": "CustomComponents",
"Author": "Denadan",
"Website": "https://github.com/Denadan/CustomComponents",
"Enabled": true,
"DependsOn": [],
"DLL": "CustomComponents.dll",
"DLLEntryPoint": "CustomComponents.Control.Init",
"CustomResourceTypes": ["CCCategories", "CCDefaults", "CCTagRestrictions"],
"Settings" : {
"LogLevel": "Debug",
"DebugInfo" : "ClearInventory, DefaultHandle, ComponentInstall, IsDestroyed, ShowConfig",
"Categories": [ ],
"TagRestrictions": [ ],
"ColorTags" : [ ],
"TagRestrictionDropValidateRequiredTags": false,
"TagRestrictionDropValidateIncompatibleTags": true,
"UseDefaultFixedColor": false,
"DefaultFlagBackgroundColor": "UpgradeColor",
"InvalidFlagBackgroundColor" : "Red",
"PreinstalledOverlayCColor": {
"R": 200,
"G": 90,
"B": 30,
"A": 55
},
"DefaultFlagOverlayCColor": {
"R": 180,
"G": 255,
"B": 180,
"A": 40
},
"CategoryDescriptionColor" : "#008000",
"TestEnableAllTags": false,
"OmniTechFlag": "cc_omnitech",
"OmniTechCostBySize": false,
"OmniTechInstallCost": 1,
"OverrideSalvageGeneration" : true,
"NoLootCTDestroyed" : false,
"OverrideRecoveryChance" : true,
"SalvageUnrecoveredMech" : true,
"BaseRecoveryChance" : 0.6,
"LimbRecoveryPenalty" : 0.05,
"TorsoRecoveryPenalty" : 0.1,
"HeadRecoveryPenaly" : 0,
"EjectRecoveryBonus" : 0.25,
"OverrideMechPartCalculation" : true,
"CenterTorsoDestroyedParts" : 1,
"SalvageArmWeight" : 0.75,
"SalvageLegWeight" : 0.75,
"SalvageTorsoWeight" : 1,
"SalvageHeadWeight" : 0.5,
},
"Manifest": [
{
"Type": "CCCategories",
"Path": "test/categories/",
"ShouldMergeJSON": false
},
{
"Type": "CCDefaults",
"Path": "test/defaults/",
"ShouldMergeJSON": false
}
]
}