-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtr_items.lua
More file actions
102 lines (101 loc) · 2.45 KB
/
tr_items.lua
File metadata and controls
102 lines (101 loc) · 2.45 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 = 'Kanıt Bilgisayarı',
description = 'DNA ve parmak izi veritabanına erişim için dizüstü bilgisayar',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.evidence_laptop'
}
},
['evidence_box'] = {
label = 'Kanıt Kutusu',
description = 'Kanıtları saklamak için kutu',
weight = 250,
stack = false,
close = false,
buttons = {{
label = 'Etiket',
action = function(slot)
exports.evidences:evidence_box(slot)
end
}}
},
['forensic_kit'] = {
label = 'Adli Tıp Kiti',
description = 'Delilleri güvence altına almak için bu çantaya ihtiyacın var. Çanta on kez kullanılabilir.',
weight = 2500,
close = false,
stack = false,
decay = true
},
['hydrogen_peroxide'] = {
label = 'Parmak İzi Temizleyici',
weight = 500,
stack = true,
client = {
export = 'evidences.hydrogen_peroxide'
}
},
['fingerprint_scanner'] = {
label = 'Parmak İzi Tarayıcısı',
description = 'Bununla karşındaki kişinin parmak izini tarayabilirsin. Parmak izi veritabanındaki bir kayıtla eşleşirse, kimliği sana gösterilir.',
weight = 500,
stack = false,
close = true,
consume = 0,
client = {
export = 'evidences.fingerprint_scanner',
},
},
['collected_blood'] = {
label = 'Kan delili',
weight = 200,
stack = false,
buttons = {{
label = 'DNA Kopyası',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_saliva'] = {
label = 'Tükürük delili',
weight = 200,
stack = false,
buttons = {{
label = 'DNA Kopyası',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_magazine'] = {
label = 'Şarjör Delili',
weight = 200,
stack = false
},
['collected_fingerprint'] = {
label = 'Delil Parmak İzi',
weight = 5,
stack = false,
buttons = {{
label = 'Parmak İzi Kopyası',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "fingerprint")
end
}}
},
['spy_microphone'] = {
label = 'Casus Mikrofon',
description = 'Kişileri dinlemek için mikrofon',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.spy_microphone'
}
}