This commit is contained in:
Nordi98 2025-07-12 13:10:51 +02:00
parent 26ed285540
commit 4c95214808
53 changed files with 694 additions and 2507 deletions

View file

@ -1287,7 +1287,24 @@ CodeStudio.Products = {
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
},
['kq_tow_rope'] = {
itemName = "Abschleppseil",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
['kq_winch'] = {
itemName = "Seilwinden Ferndedinung",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
}
},
['police_weapons'] = {
@ -2697,10 +2714,28 @@ CodeStudio.Products = {
itemInfo = "",
},
}
}
},
['tools'] = {
categoryName = "Items",
categoryLogo = "fa-shopping-basket",
items = {
['kq_tow_rope'] = {
itemName = "Abschleppseil",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
['kq_winch'] = {
itemName = "Seilwinden Ferndedinung",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
}
},
} -- Schließende Klammer für CodeStudio.Products
@ -2830,6 +2865,7 @@ CodeStudio.Shops = {
[2] = 'kayas',
[3] = 'odinsbar',
[4] = 'cute',
[5] = 'tools',
},

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -10379,6 +10379,27 @@ itemsData = {
image = 'dynamite.png',
name = 'dynamite',
},
kq_tow_rope = {
shouldClose = true,
type = 'item',
description = '',
weight = 2000,
label = 'Abschleppseil',
unique = true,
useable = true,
image = 'kq_tow_rope.png',
name = 'kq_tow_rope',
},
kq_winch = {
shouldClose = true,
type = 'item',
description = '',
weight = 4000,
label = 'Seilwinden Steuerung',
unique = true,
useable = true,
image = 'kq_winch.png',
name = 'kq_winch',
},
}