1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-26 08:32:40 +02:00
parent b40547416c
commit f803e85365
5 changed files with 23 additions and 2 deletions

View file

@ -2937,11 +2937,20 @@ CodeStudio.Products = {
itemInfo = "", itemInfo = "",
}, },
['weapon_airsoftak74'] = { ['weapon_airsoftak74'] = {
itemName = "Softair AK74", itemName = "Softair AK75",
itemStock = 150, itemStock = 150,
itemPrice = 50, itemPrice = 50,
itemInfo = "", itemInfo = "",
}, },
['weapon_airsoftg36c'] = {
itemName = "Softair GCR",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
} }
}, },

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

View file

@ -10719,6 +10719,18 @@ itemsData = {
image = 'weapon_airsoftglock20.png', image = 'weapon_airsoftglock20.png',
name = 'weapon_airsoftglock20', name = 'weapon_airsoftglock20',
}, },
weapon_airsoftg36c = {
shouldClose = true,
type = 'weapon',
description = '',
weight = 1000,
label = 'Softair GCR',
unique = true,
useable = true,
image = 'weapon_airsoftg36c.png',
name = 'weapon_airsoftg36c',
},
airsoft_bullets = { airsoft_bullets = {
shouldClose = true, shouldClose = true,
type = 'item', type = 'item',

View file

@ -134,8 +134,8 @@ local weaponsList = {
weapon_airsoftmircouzi = { name = 'weapon_airsoftmicrouzi', label = 'Softair Uzi', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftmircouzi.png', description = '' }, weapon_airsoftmircouzi = { name = 'weapon_airsoftmicrouzi', label = 'Softair Uzi', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftmircouzi.png', description = '' },
weapon_airsoftm249 = { name = 'weapon_airsoftm249', label = 'Softair M249', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm249.png', description = '' }, weapon_airsoftm249 = { name = 'weapon_airsoftm249', label = 'Softair M249', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm249.png', description = '' },
weapon_airsoftm4 = { name = 'weapon_airsoftm4', label = 'Softair M4', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm4.png', description = '' }, weapon_airsoftm4 = { name = 'weapon_airsoftm4', label = 'Softair M4', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm4.png', description = '' },
weapon_airsoftg36c = { name = 'weapon_airsoftg36c', label = 'Softair GCR', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftg36c.png', description = '' },
weapon_airsoftak74 = { name = 'weapon_airsoftak74', label = 'Softair AK75', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftak74.png', description = '' }, weapon_airsoftak74 = { name = 'weapon_airsoftak74', label = 'Softair AK75', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftak74.png', description = '' },
-- Addon -- Addon
} }