ed
This commit is contained in:
parent
250ce4a411
commit
8f44065e5f
19 changed files with 1093 additions and 2 deletions
|
@ -1499,7 +1499,12 @@ CodeStudio.Products = {
|
|||
itemPrice = 0,
|
||||
itemInfo = "",
|
||||
},
|
||||
|
||||
['weapon_klog19fde'] = {
|
||||
itemName = "Klog 19 FDE",
|
||||
itemStock = 50,
|
||||
itemPrice = 0,
|
||||
itemInfo = "",
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
|
|
BIN
resources/[inventory]/cs_shops/ui/image/weapon_klog19fde.png
Normal file
BIN
resources/[inventory]/cs_shops/ui/image/weapon_klog19fde.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 260 KiB |
Binary file not shown.
After Width: | Height: | Size: 260 KiB |
|
@ -95,6 +95,25 @@ config.attachment.weaponAttachment = {
|
|||
{ item = "free", component = "COMPONENT_AT_PI_SUPP_02" },
|
||||
},
|
||||
},
|
||||
["weapon_klog19fde"] = {
|
||||
["magazine"] = {
|
||||
{ item = "free", component = "COMPONENT_PISTOL_MK2_CLIP_01", default = true },
|
||||
{ item = "free", component = "COMPONENT_PISTOL_MK2_CLIP_02" },
|
||||
},
|
||||
["flashlight"] = {
|
||||
{ item = "free", component = "COMPONENT_AT_PI_FLSH_02" },
|
||||
},
|
||||
["scope"] = {
|
||||
{ item = "free", component = "COMPONENT_AT_PI_RAIL" },
|
||||
},
|
||||
["muzzle"] = {
|
||||
{ item = "free", component = "COMPONENT_AT_PI_COMP" },
|
||||
{ item = "free", component = "COMPONENT_AT_PI_SUPP_02" },
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
|
||||
--ILLEGAL Pistol
|
||||
["weapon_m45a1fm"] = {
|
||||
["magazine"] = {
|
||||
|
|
|
@ -141,6 +141,7 @@ local weaponList = {
|
|||
weapon_navyrevolver = 500,
|
||||
weapon_gadgetpistol = 500,
|
||||
weapon_pistolxm3 = 500,
|
||||
weapon_klog19fde = 500, -- Mod
|
||||
-- Submachine Guns
|
||||
weapon_microsmg = 1000,
|
||||
weapon_smg = 1000,
|
||||
|
|
|
@ -10731,7 +10731,17 @@ itemsData = {
|
|||
image = 'line_coke.png',
|
||||
name = 'line_coke',
|
||||
},
|
||||
|
||||
weapon_klog19fde = {
|
||||
shouldClose = true,
|
||||
type = 'weapon',
|
||||
description = '',
|
||||
weight = 1000,
|
||||
label = 'Klog 19 FDE',
|
||||
unique = true,
|
||||
useable = true,
|
||||
image = 'weapon_klog19fde.png',
|
||||
name = 'weapon_klog19fde',
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -136,6 +136,10 @@ local weaponsList = {
|
|||
weapon_airsoftm4 = { name = 'weapon_airsoftm4', label = 'Softair M4', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm4.png', description = '' },
|
||||
weapon_airsoftak74 = { name = 'weapon_airsoftak74', label = 'Softair AK75', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftak74.png', description = '' },
|
||||
|
||||
-- Addon
|
||||
weapon_klog19fde = { name = 'weapon_klog19fde', label = 'Klog 19 FDE', weight = 1000, ammotype = 'AMMO_PISTOL', image = 'weapon_klog19fde.png', description = '' },
|
||||
|
||||
|
||||
}
|
||||
local ammoTypeToPolice = {
|
||||
AMMO_SMG = "AMMO_POLICE_SMG",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue