forked from noobsystems/evidences
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen_items.lua
More file actions
84 lines (83 loc) · 2.07 KB
/
en_items.lua
File metadata and controls
84 lines (83 loc) · 2.07 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
-- 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 = 'Evidence Laptop',
description = 'Laptop for accessing DNA and fingerprint database',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.evidence_laptop'
}
},
['evidence_box'] = {
label = 'Evidence Box',
description = 'Box to store evidences',
weight = 250,
stack = false,
close = false,
buttons = {{
label = 'Label',
action = function(slot)
exports.evidences:evidence_box(slot)
end
}}
},
['forensic_kit'] = {
label = 'Forensic Kit',
description = 'You need this kit to secure evidences. The case can be used ten times.',
weight = 2500,
close = false,
stack = false,
decay = true
},
['hydrogen_peroxide'] = {
label = 'Hydrogen peroxide',
weight = 500,
stack = true,
client = {
export = 'evidences.hydrogen_peroxide'
}
},
['fingerprint_scanner'] = {
label = 'Fingerprint Scanner',
description = 'With this, you can scan the fingerprint of the person opposite you. If the fingerprint matches a database entry, their identity will be displayed to you.',
weight = 500,
stack = false,
close = true,
consume = 0,
client = {
export = 'evidences.fingerprint_scanner',
},
},
['collected_blood'] = {
label = 'Collected Blood',
weight = 200,
stack = false
},
['collected_saliva'] = {
label = 'Collected Saliva',
weight = 200,
stack = false
},
['collected_magazine'] = {
label = 'Collected Magazin',
weight = 200,
stack = false
},
['collected_fingerprint'] = {
label = 'Collected Fingerprint',
weight = 5,
stack = false
},
['spy_microphone'] = {
label = 'Spy Microphone',
description = 'Microphone for observing nearby people',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.spy_microphone'
}
}