-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhammercan.json
More file actions
49 lines (49 loc) · 1.82 KB
/
hammercan.json
File metadata and controls
49 lines (49 loc) · 1.82 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
{
"@type": "ExamineActionsAPI.DataDrivenGenericAction.DataDrivenGenericAction",
"Id": "Json_HammerCan",
"MenuItemLocalizationKey": "Hammer",
"ActionButtonLocalizedStringKey": "Hammer",
"CanBeCancelled": true,
"ShouldConsumeOnCancellation": false,
"ShouldConsumeOnSuccess": true,
"DurationMinuteProvider": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.SimpleDurationMinutesProvider",
"BaseDurationMinutes": 10,
"DurationMinutesOffsetPerSubAction": 0
},
"ProgressSecondProvider": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.SimpleProgressSecondProvider",
"BaseProgressSeconds": 3,
"ProgressSecondsOffsetPerSubAction": 0
},
"IsActionAvailableProvider": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.SimpleIsActionAvailableProvider",
"ValidGearNames": [
"GEAR_RecycledCan"
],
"MinNormalizedCondition": 0,
"MaxNormalizedCondition": 1,
"MinStackSize": 0,
"MaxStackSize": 999
},
"ProductItemProvider": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.SimpleProductItemProvider",
"Items": [
{
"@type": "ExamineActionsAPI.DataDrivenGenericAction.MaterialOrProductSizedBySubActionDef",
"Def": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.MaterialOrProductDef",
"Name": "GEAR_ScrapMetal",
"Size": 1,
"Chance": 75
},
"SizeExtraMultiplierPerSubAction": 0,
"SizeOffsetPerSubAction": 0
}
]
},
"ToolOptionsProvider": {
"@type": "ExamineActionsAPI.DataDrivenGenericAction.SimpleToolOptionsProvider",
"CuttingToolTypeFilter": "Hammer"
}
}