-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcs_items.lua
More file actions
102 lines (101 loc) · 2.58 KB
/
cs_items.lua
File metadata and controls
102 lines (101 loc) · 2.58 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
-- Add the following items to ox_inventory/data/items.lua
-- Do not change the item names inside the square brackets
-- You may change the item descriptions and labels of buttons
['evidence_laptop'] = {
label = 'Evidenční notebook',
description = 'Notebook pro přístup do databáze DNA a otisků prstů',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.evidence_laptop'
}
},
['evidence_box'] = {
label = 'Krabička na důkazy',
description = 'Krabička k uložení důkazů',
weight = 250,
stack = false,
close = false,
buttons = {{
label = 'Štítek',
action = function(slot)
exports.evidences:evidence_box(slot)
end
}}
},
['forensic_kit'] = {
label = 'Forenzní sada',
description = 'Tento kufr potřebuješ k zajištění důkazů. Kufr lze použít desetkrát.',
weight = 2500,
close = false,
stack = false,
decay = true
},
['hydrogen_peroxide'] = {
label = 'Peroxid vodíku',
weight = 500,
stack = true,
client = {
export = 'evidences.hydrogen_peroxide'
}
},
['fingerprint_scanner'] = {
label = 'Skener otisků prstů',
description = 'Tímto můžeš naskenovat otisk prstu osoby naproti tobě. Pokud se otisk shoduje s databází, zobrazí se ti její identita.',
weight = 500,
stack = false,
close = true,
consume = 0,
client = {
export = 'evidences.fingerprint_scanner',
},
},
['collected_blood'] = {
label = 'Odebraná krev',
weight = 200,
stack = false,
buttons = {{
label = 'Kopie DNA',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_saliva'] = {
label = 'Odebraná slina',
weight = 200,
stack = false,
buttons = {{
label = 'Kopie DNA',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_magazine'] = {
label = 'Odebraný zásobník',
weight = 200,
stack = false
},
['collected_fingerprint'] = {
label = 'Odebraný otisk prstu',
weight = 5,
stack = false,
buttons = {{
label = 'Kopie otisku prstu',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "fingerprint")
end
}}
},
['spy_microphone'] = {
label = 'Špionážní mikrofon',
description = 'Mikrofon pro pozorování lidí v okolí',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.spy_microphone'
}
}