-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathes_items.lua
More file actions
102 lines (101 loc) · 2.65 KB
/
es_items.lua
File metadata and controls
102 lines (101 loc) · 2.65 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 = 'Protátil de Pruebas',
description = 'Portátil para acceder a bases de datos de ADN y huellas dactilares',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.evidence_laptop'
}
},
['evidence_box'] = {
label = 'Caja de Pruebas',
description = 'Caja para guardar pruebas',
weight = 250,
stack = false,
close = false,
buttons = {{
label = 'Etiquetar',
action = function(slot)
exports.evidences:evidence_box(slot)
end
}}
},
['forensic_kit'] = {
label = 'Kit Forense',
description = 'Necesitas este maletín para asegurar pruebas. El maletín puede usarse diez veces.',
weight = 2500,
close = false,
stack = false,
decay = true
},
['hydrogen_peroxide'] = {
label = 'Peróxido de Hidrógeno',
weight = 500,
stack = true,
client = {
export = 'evidences.hydrogen_peroxide'
}
},
['fingerprint_scanner'] = {
label = 'Lector de Huellas Dactilares',
description = 'Con esto puedes escanear la huella dactilar de la persona frente a ti. Si la huella coincide con una entrada en la base de datos, se te mostrará su identidad.',
weight = 500,
stack = false,
close = true,
consume = 0,
client = {
export = 'evidences.fingerprint_scanner',
},
},
['collected_blood'] = {
label = 'Muestra de Sangre',
weight = 200,
stack = false,
buttons = {{
label = 'Copia de ADN',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_saliva'] = {
label = 'Saliva recolectada',
weight = 200,
stack = false,
buttons = {{
label = 'Copia de ADN',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_magazine'] = {
label = 'Cargador Recolectado',
weight = 200,
stack = false
},
['collected_fingerprint'] = {
label = 'CMuestra de Huella Dactilar',
weight = 5,
stack = false,
buttons = {{
label = 'Copia de huella dactilar',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "fingerprint")
end
}}
},
['spy_microphone'] = {
label = 'Micrófono Espía',
description = 'Micrófono para escuchar a las personas cercanas',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.spy_microphone'
}
}