-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathja_items.lua
More file actions
102 lines (101 loc) · 2.68 KB
/
ja_items.lua
File metadata and controls
102 lines (101 loc) · 2.68 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 = '証拠解析用ノートPC',
description = 'DNAおよび指紋データベースにアクセスするためのノートPC',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.evidence_laptop'
}
},
['evidence_box'] = {
label = '証拠品保管箱',
description = '証拠品を収納するための箱',
weight = 250,
stack = false,
close = false,
buttons = {{
label = 'ラベルを貼る',
action = function(slot)
exports.evidences:evidence_box(slot)
end
}}
},
['forensic_kit'] = {
label = '鑑識キット',
description = '証拠を確保するために必要なキットです。10回まで使用可能です。',
weight = 2500,
close = false,
stack = false,
decay = true
},
['hydrogen_peroxide'] = {
label = '過酸化水素水',
weight = 500,
stack = true,
client = {
export = 'evidences.hydrogen_peroxide'
}
},
['fingerprint_scanner'] = {
label = '指紋スキャナー',
description = '目の前の人物の指紋をスキャンできます。指紋がデータベースと一致した場合、その身元が表示されます。',
weight = 500,
stack = false,
close = true,
consume = 0,
client = {
export = 'evidences.fingerprint_scanner',
},
},
['collected_blood'] = {
label = '採取された血液',
weight = 200,
stack = false,
buttons = {{
label = 'DNAのコピ',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_saliva'] = {
label = '採取された唾液',
weight = 200,
stack = false,
buttons = {{
label = 'DNAのコピ',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "dna")
end
}}
},
['collected_magazine'] = {
label = '採取されたマガジン',
weight = 200,
stack = false
},
['collected_fingerprint'] = {
label = '採取された指紋',
weight = 5,
stack = false,
buttons = {{
label = '指紋のコピ',
action = function(slot)
exports.evidences:copyEvidenceOwner(slot, "fingerprint")
end
}}
},
['spy_microphone'] = {
label = 'スパイマイク',
description = '周囲の人物を監視・傍受するためのマイク',
weight = 1500,
stack = true,
close = true,
client = {
export = 'evidences.spy_microphone'
}
}