-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.lua
More file actions
72 lines (64 loc) · 2.39 KB
/
Copy pathitems.lua
File metadata and controls
72 lines (64 loc) · 2.39 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
-- ═══════════════════════════════════════
-- ARDENHUB FISHING - ITEMS
-- Aggiungi questi item in ox_inventory/data/items.lua
-- ═══════════════════════════════════════
-- ─────────────────────────────────────
-- ATTREZZATURA
-- ─────────────────────────────────────
['fishingrod'] = {
label = 'Canna da Pesca',
weight = 2000,
stack = false,
close = true,
},
['fishbait'] = {
label = 'Esca',
weight = 50,
stack = true,
close = true,
},
-- ─────────────────────────────────────
-- PESCI - COMUNE
-- ─────────────────────────────────────
['anchovy'] = {
label = 'Acciuga',
weight = 200,
stack = true,
close = true,
server = {
export = 'ardenhub_fishing.anchovy'
}
},
-- ─────────────────────────────────────
-- PESCI - NON COMUNE
-- ─────────────────────────────────────
['trout'] = {
label = 'Trota',
weight = 500,
stack = true,
close = true,
},
['salmon'] = {
label = 'Salmone',
weight = 800,
stack = true,
close = true,
},
-- ─────────────────────────────────────
-- PESCI - RARO
-- ─────────────────────────────────────
['tuna'] = {
label = 'Tonno',
weight = 3000,
stack = true,
close = true,
},
-- ─────────────────────────────────────
-- PESCI - LEGGENDARIO
-- ─────────────────────────────────────
['swordfish'] = {
label = 'Pesce Spada',
weight = 8000,
stack = true,
close = true,
},