lantiannb 8b74989401 Merge branch 'main' of http://47.102.46.119:3000/ugc/UGCProjects
# Conflicts:
#	SoloKing/Asset/UI/SelectWeapons/SaveCustomWeaponItem/WB_SaveWeaponItem.uasset
#	SoloKing/Asset/UI/SelectWeapons/WB_CustomWeapon_New.uasset
#	SoloKing/Script/Global/WidgetManager/WidgetConfig.lua
#	SoloKing/Script/UI/SelectWeapons/WB_CustomWeapon_New.lua
2025-01-18 23:19:35 +08:00

729 lines
29 KiB
Lua

-- 武器表
WeaponTable = {}
-- 射击枪械槽类型
ShootWeaponEnums = {
ESurviveWeaponPropSlot.SWPS_MainShootWeapon1,
ESurviveWeaponPropSlot.SWPS_MainShootWeapon2,
ESurviveWeaponPropSlot.SWPS_SubShootWeapon,
};
-- 配件
EWeaponPartType = {
Muzzle = 1,
Grip = 2,
Telescope = 3,
Magazine = 4,
ButtStock = 5,
SubTelescope = 6
};
-- 配件展示顺序
PartTypeDisplayOrder = {
EWeaponPartType.Telescope,
EWeaponPartType.Muzzle,
EWeaponPartType.Magazine,
EWeaponPartType.Grip,
EWeaponPartType.ButtStock,
EWeaponPartType.SubTelescope,
}
-- 配件类型名
PartTypeName = {
[EWeaponPartType.Muzzle] = { Chinese = "枪口", English = "Muzzle", SubId = 201, },
[EWeaponPartType.Grip] = { Chinese = "握把", English = "Grip", SubId = 202, },
[EWeaponPartType.Telescope] = { Chinese = "瞄准镜", English = "Telescope", SubId = 203, },
[EWeaponPartType.Magazine] = { Chinese = "弹匣", English = "Magazine", SubId = 204, },
[EWeaponPartType.ButtStock] = { Chinese = "枪托", English = "ButtStock", SubId = 205, },
[EWeaponPartType.SubTelescope] = { Chinese = "侧边瞄准镜", English = "SubTelescope", SubId = 205, },
};
-- 武器配件类型表
---@type table<EWeaponPartType, table<int32>>
WeaponTypeParts = {
[EWeaponPartType.Muzzle] = { 201001, 201002, 201003, 201004, 201005, 201006, 201007, 201008, 201009, 201010, 201011, 201012, 201050, 201051 },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203018, 203023, 203024, 203030, 203104 },
[EWeaponPartType.Magazine] = { 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204015, 204016, 204017 },
[EWeaponPartType.ButtStock] = { 204014, 205001, 205002, 205003, 205004, },
[EWeaponPartType.SubTelescope] = { 203018, },
};
--武器配件 [ID] = { ID = int, Type = EWeaponPartType,},
WeaponParts = {
-- 枪口
[201001] = { ID = 201001, Type = EWeaponPartType.Muzzle, },
[201002] = { ID = 201002, Type = EWeaponPartType.Muzzle, },
[201003] = { ID = 201003, Type = EWeaponPartType.Muzzle, },
[201004] = { ID = 201004, Type = EWeaponPartType.Muzzle, },
[201005] = { ID = 201005, Type = EWeaponPartType.Muzzle, },
[201006] = { ID = 201006, Type = EWeaponPartType.Muzzle, },
[201007] = { ID = 201007, Type = EWeaponPartType.Muzzle, },
[201008] = { ID = 201008, Type = EWeaponPartType.Muzzle, },
[201009] = { ID = 201009, Type = EWeaponPartType.Muzzle, },
[201010] = { ID = 201010, Type = EWeaponPartType.Muzzle, },
[201011] = { ID = 201011, Type = EWeaponPartType.Muzzle, },
[201012] = { ID = 201012, Type = EWeaponPartType.Muzzle, },
[201050] = { ID = 201050, Type = EWeaponPartType.Muzzle, },
[201051] = { ID = 201051, Type = EWeaponPartType.Muzzle, },
-- 握把
[202001] = { ID = 202001, Type = EWeaponPartType.Grip, },
[202002] = { ID = 202002, Type = EWeaponPartType.Grip, },
[202004] = { ID = 202004, Type = EWeaponPartType.Grip, },
[202005] = { ID = 202005, Type = EWeaponPartType.Grip, },
[202006] = { ID = 202006, Type = EWeaponPartType.Grip, },
[202007] = { ID = 202007, Type = EWeaponPartType.Grip, },
-- 瞄准镜
[203001] = { ID = 203001, Type = EWeaponPartType.Telescope, },
[203002] = { ID = 203002, Type = EWeaponPartType.Telescope, },
[203003] = { ID = 203003, Type = EWeaponPartType.Telescope, },
[203004] = { ID = 203004, Type = EWeaponPartType.Telescope, },
[203005] = { ID = 203005, Type = EWeaponPartType.Telescope, },
[203014] = { ID = 203014, Type = EWeaponPartType.Telescope, },
[203015] = { ID = 203015, Type = EWeaponPartType.Telescope, },
[203030] = { ID = 203030, Type = EWeaponPartType.Telescope, },
-- 侧边瞄准镜
[203018] = { ID = 203018, Type = EWeaponPartType.SubTelescope, },
-- 弹匣
[204001] = { ID = 204001, Type = EWeaponPartType.Magazine, },
[204002] = { ID = 204002, Type = EWeaponPartType.Magazine, },
[204003] = { ID = 204003, Type = EWeaponPartType.Magazine, },
[204004] = { ID = 204004, Type = EWeaponPartType.Magazine, },
[204005] = { ID = 204005, Type = EWeaponPartType.Magazine, },
[204006] = { ID = 204006, Type = EWeaponPartType.Magazine, },
[204007] = { ID = 204007, Type = EWeaponPartType.Magazine, },
[204008] = { ID = 204008, Type = EWeaponPartType.Magazine, },
[204009] = { ID = 204009, Type = EWeaponPartType.Magazine, },
[204010] = { ID = 204010, Type = EWeaponPartType.Magazine, },
[204011] = { ID = 204011, Type = EWeaponPartType.Magazine, },
[204012] = { ID = 204012, Type = EWeaponPartType.Magazine, },
[204013] = { ID = 204013, Type = EWeaponPartType.Magazine, },
[204015] = { ID = 204015, Type = EWeaponPartType.Magazine, },
[204016] = { ID = 204016, Type = EWeaponPartType.Magazine, },
-- 枪托
[204014] = { ID = 204014, Type = EWeaponPartType.ButtStock, }, -- 特例
[205001] = { ID = 205001, Type = EWeaponPartType.ButtStock, },
[205002] = { ID = 205002, Type = EWeaponPartType.ButtStock, },
[205003] = { ID = 205003, Type = EWeaponPartType.ButtStock, },
[205004] = { ID = 205004, Type = EWeaponPartType.ButtStock, },
};
-- 武器套装表
---@type table<int32, table<EWeaponPartType, table<int32, int32>>>
WeaponSuits = {
-- AKM突击步枪
[101001] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- M16A4突击步枪
[101002] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.ButtStock] = { 205002 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- SCAR-L突击步枪
[101003] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- M416突击步枪
[101004] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011 },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.ButtStock] = { 205002, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- GROZA突击步枪
[101005] = {
[EWeaponPartType.Muzzle] = { 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
},
-- AUG突击步枪
[101006] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- QBZ突击步枪
[101007] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- M762突击步枪
[101008] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011 },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Mk47突击步枪
[101009] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
[EWeaponPartType.ButtStock] = { 205002, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- G36C突击步枪
[101010] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- AC-VAL突击步枪
[101011] = {
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
},
-- 蜜獾突击步枪
[101012] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- FAMAS突击步枪
[101013] = {
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204012, 204011 },
},
-- UZI冲锋枪
[102001] = {
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.ButtStock] = { 205001 },
},
-- UMP45冲锋枪
[102002] = {
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Vector冲锋枪
[102003] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.Grip] = { 202002, 202004, 202005, 202007, },
[EWeaponPartType.ButtStock] = { 205002, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- 汤姆逊冲锋枪
[102004] = {
[EWeaponPartType.Muzzle] = { 201006, },
[EWeaponPartType.Grip] = { 202002, },
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
},
-- 野牛冲锋枪
[102005] = {
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- MP5K冲锋枪
[102007] = {
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.ButtStock] = { 205002, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- AKS-74U冲锋枪
[102008] = {
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014 },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
},
-- P90冲锋枪
[102105] = { },
-- Kar98K狙击枪
[103001] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.ButtStock] = { 205003, 204014, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
[103901] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007 },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.ButtStock] = { 204014, 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- M24狙击枪
[103002] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
[103902] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- AWM狙击枪
[103003] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
[103903] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- AMR狙击枪
[103012] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
},
-- M200狙击枪
[103015] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- SKS射手步枪
[103004] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, 204014, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- VSS射手步枪
[103005] = {
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
},
-- Mini14射手步枪
[103006] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Mk14射手步枪
[103007] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Win94狙击枪
[103008] = {
[EWeaponPartType.ButtStock] = { 204014 },
},
-- SLR射手步枪
[103009] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- QBU射手步枪
[103010] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- 莫辛纳甘狙击枪
[103011] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007 },
[EWeaponPartType.ButtStock] = { 205003, 204014, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Mk12射手步枪
[103100] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- Mk417射手步枪
[103013] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- MK20-H射手步枪
[103014] = {
[EWeaponPartType.Muzzle] = { 201003, 201005, 201007, 201009, 201010, 201011, },
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203005, 203014, 203015, 203030, },
[EWeaponPartType.Magazine] = { 204009, 204007, 204008, },
[EWeaponPartType.Grip] = { 202001, 202002, 202004, 202005, 202006, 202007, },
[EWeaponPartType.ButtStock] = { 205003, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- S686霰弹枪
[104001] = {
[EWeaponPartType.Muzzle] = { 201001, },
[EWeaponPartType.ButtStock] = { 204014, },
},
-- S1897霰弹枪
[104002] = {
[EWeaponPartType.Muzzle] = { 201001, 201012, },
[EWeaponPartType.Magazine] = { 204017, },
[EWeaponPartType.ButtStock] = { 204014, },
},
-- S12K霰弹枪
[104003] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, 201012, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- DBS霰弹枪
[104004] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204017, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- AA12-G霰弹枪
[104005] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Muzzle] = { 201009, 201010, 201011, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
},
-- SPAS-12霰弹枪
[104100] = {
[EWeaponPartType.Magazine] = { 204017, },
},
-- M249轻机枪
[105001] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.ButtStock] = { 205002 },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- DP-28轻机枪
[105002] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
},
-- M134重机枪
[105003] = {},
-- MG3轻机枪
[105010] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
},
-- PKM轻机枪
[105012] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, 203015, },
[EWeaponPartType.Magazine] = { 204013, 204011, 204012, },
[EWeaponPartType.Grip] = { 202001, 202002, },
[EWeaponPartType.SubTelescope] = { 203018, },
},
-- P92手枪
[106001] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Muzzle] = { 201006, },
[EWeaponPartType.Grip] = { 202007, },
[EWeaponPartType.Magazine] = { 204006, 204001, 204002, },
},
-- P1911手枪
[106002] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Muzzle] = { 201006, },
[EWeaponPartType.Grip] = { 202007, },
[EWeaponPartType.Magazine] = { 204006, 204001, 204002, },
},
-- R1895手枪
[106003] = {
[EWeaponPartType.Muzzle] = { 201006, }
},
-- P18C手枪
[106004] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Muzzle] = { 201006, },
[EWeaponPartType.Grip] = { 202007, },
[EWeaponPartType.Magazine] = { 204005, }
},
-- R45手枪
[106005] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Grip] = { 202007, },
},
-- 短管霰弹枪
[106006] = {
[EWeaponPartType.Muzzle] = { 201001 }
},
-- 蝎式手枪
[106008] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Muzzle] = { 201006, },
[EWeaponPartType.Grip] = { 202002, 202004, 202005, 202007 },
[EWeaponPartType.Magazine] = { 204004, }, -- 只有这个
[EWeaponPartType.ButtStock] = { 205001 }
},
-- 沙漠之鹰手枪
[106010] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.Grip] = { 202007 }
},
-- TMP-9手枪
[106011] = {
[EWeaponPartType.Telescope] = { 203001, 203002, },
[EWeaponPartType.Magazine] = { 204006, 204004, 204005, },
[EWeaponPartType.Muzzle] = { 201002, 201004, 201006, },
},
-- 乱斗手枪
[106107] = {},
-- 十字弩
[107001] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, },
[EWeaponPartType.ButtStock] = { 205004, },
},
-- 战术弩
[107006] = {
[EWeaponPartType.Telescope] = { 203001, 203002, 203003, 203004, 203014, },
[EWeaponPartType.ButtStock] = { 205004, },
},
-- 燃点复合弓
[107008] = {
[EWeaponPartType.Telescope] = { 203001, 203003, 203014, },
},
-- RPG-7火箭弹
[107002] = {},
-- 铁拳火箭筒
[107005] = {},
-- 大砍刀
[108001] = {},
-- 撬棍
[108002] = {},
-- 镰刀
[108003] = {},
-- 平底锅
[108004] = {}
};
WeaponNameTable = {
[EWeaponTypeNew.EWeaponTypeNew_Other] = { Chinese = "其他", English = "Other", }, [EWeaponTypeNew.EWeaponTypeNew_Rifle] = { Chinese = "步枪", English = "Rifle", }, [EWeaponTypeNew.EWeaponTypeNew_SingleShotSniper] = { Chinese = "单发狙", English = "SingleShotSniper", }, [EWeaponTypeNew.EWeaponTypeNew_BurstShotSniper] = { Chinese = "连发狙", English = "BurstShotSniper", }, [EWeaponTypeNew.EWeaponTypeNew_Submachine] = { Chinese = "冲锋枪", English = "Submachine", }, [EWeaponTypeNew.EWeaponTypeNew_ShotGun] = { Chinese = "霰弹枪", English = "ShotGun", }, [EWeaponTypeNew.EWeaponTypeNew_MachineGun] = { Chinese = "机枪", English = "MachineGun", }, [EWeaponTypeNew.EWeaponTypeNew_Pistol] = { Chinese = "手枪", English = "Pistol", }, [EWeaponTypeNew.EWeaponTypeNew_Melee] = { Chinese = "近战武器", English = "Melee", }, [EWeaponTypeNew.EWeaponTypeNew_Crossbow] = { Chinese = "弓箭", English = "Crossbow", }, [EWeaponTypeNew.EWeaponTypeNew_ThrownObj] = { Chinese = "投掷物", English = "ThrownObj", },
};
--- 武器对应的子弹ID
WeaponAmmunitionItem = {
[101001] = 302001, [101002] = 303001, [101003] = 303001, [101004] = 303001, [101005] = 302001, [101006] = 303001, [101007] = 303001, [101008] = 302001, [101009] = 302001, [101010] = 302001, [101012] = 302001, [102001] = 301001, [102002] = 305001, [102003] = 301001, [102004] = 305001, [102005] = 301001, [102007] = 301001, [102105] = 301002, [103001] = 302001, [103002] = 302001, [103003] = 306001, [103004] = 302001, [103005] = 301001, [103006] = 303001, [103007] = 302001, [103008] = 305001, [103009] = 302001, [103010] = 303001, [103011] = 302001, [104001] = 304001, [104002] = 304001, [104003] = 304001, [104004] = 304001, [104100] = 304001, [105001] = 303001, [105002] = 302001, [105003] = 302001, [106001] = 301001, [106002] = 305001, [106003] = 302001, [106004] = 301001, [106005] = 305001, [106006] = 304001, [106008] = 301001, [106010] = 305001, [107001] = 307001, [107002] = 307002, [107094] = 307002, [107099] = 307002, [107905] = 307002,
[190008] = 307102, [190009] = 307100, [190010] = 307103, [190011] = 307101,
}
--- 推荐武器配置
WeaponTable.RecommendedWeaponParts = {
-- 步枪
[101001] = { 203018, 204013, 201009, 203001, } ,
[101002] = { 203018, 204013, 201009, 205002, 203001, } ,
[101003] = { 203018, 204013, 201009, 202007, 203001, } ,
[101004] = { 203018, 201009, 202007, 203001, 204013, 205002, } ,
[101005] = { 204013, 201011, 203001, } ,
[101006] = { 203018, 204013, 201009, 202007, 203001, } ,
[101007] = { 203018, 204013, 201009, 202007, 203001, } ,
[101008] = { 203018, 204013, 201009, 202007, 203001, } ,
[101009] = { 203018, 201009, 202007, 203001, 204013, 205002, } ,
[101010] = { 203018, 204013, 201009, 202007, 203001, } ,
[101011] = { 202002, 203002, 204013, },
[101012] = { 203018, 204013, 201009, 203001, } ,
[101013] = { 201009, 203002, 204013,},
-- 冲锋枪
[102001] = { 204006, 201002, 205001, 203001, } ,
[102002] = { 203018, 204006, 201002, 202007, 203001, } ,
[102003] = { 203018, 201002, 202007, 203001, 204006, 205002, } ,
[102004] = { 204006, 201006, 202002, 203001, } ,
[102005] = { 203018, 203001, 201002, } ,
[102007] = { 203018, 201002, 202007, 203001, 204006, 205002, } ,
[102008] = { 201002, 203001, 204006, },
[102105] = { } ,
-- 狙击
[103001] = { 203018, 201007, 204014, 203005, } ,
[103002] = { 203018, 204009, 201007, 205003, 203005, } ,
[103003] = { 203018, 204009, 201007, 205003, 203005, } ,
[103004] = { 203018, 201007, 202007, 203004, 204009, 205003, } ,
[103005] = { 204009, 205003, } ,
[103006] = { 203018, 204009, 201007, 203004, } ,
[103007] = { 203018, 204009, 201007, 205003, 203004, } ,
[103008] = { 204014, } ,
[103009] = { 203018, 204009, 201007, 205003, 203004, } ,
[103010] = { 203018, 204009, 201007, 203004, } ,
[103011] = { 203018, 201007, 204014, 203004, } ,
[103012] = { 203030} ,
[103013] = { 203018, 203015, 201007, 204009, 202007, },
[103014] = { 203018, 203015, 201007, 204009, 202007, 205003, },
[103015] = { 203018, 203015, 201007, 204009 },
[103901] = { 203018, 201007, 204014, 203005, } ,
[103902] = { 203018, 204009, 201007, 205003, 203005, } ,
[103903] = { 203018, 204009, 201007, 205003, 203005, } ,
[103100] = { 203018, 204009, 201007, 202007, 203004, } ,
-- 霰弹枪
[104001] = { 204014, 201001, } ,
[104002] = { 204014, 201001, 204017, } ,
[104003] = { 203018, 204013, 201012, 203001, } ,
[104004] = { 203018, 203001, 204017, } ,
[104005] = { 204013, 203001, 201009, },
[104100] = { 204017, },
-- 机枪
[105001] = { 203018, 204013, 205002, 203001, } ,
[105002] = { 203001, } ,
[105003] = {},
[105010] = { 203002, },
[105012] = { 203018, 203001, 204013, 202002, },
-- 手枪
[106001] = { 204003, 201008, 203001, 202007, } ,
[106002] = { 204003, 201008, 203001, 202007, } ,
[106003] = { 201008, } ,
[106004] = { 204003, 201008, 203001, 202007, } ,
[106005] = { 203001, 202007, } ,
[106006] = { 201008, } ,
[106008] = { 201008, 202007, 203001, 204002, 205001, } ,
[106010] = { 204002, 202007, 203001, } ,
[106011] = { 203002, 204006, 201002 },
[106107] = {},
-- 特殊武器
[107001] = { 205004, 203001, } ,
[107002] = {},-- RPG-7火箭弹
[107005] = {},-- 铁拳火箭筒
[107006] = { 203004, 205004 },
[107008] = { 203014, },
-- 近战武器
[108001] = { } ,
[108002] = { } ,
[108003] = { } ,
[108004] = { } ,
}
-- 武器射速
WeaponTable.WeaponRateOfFire = {
[101001] = 0.100 ,
[101002] = 0.070 ,
[101003] = 0.098 ,
[101004] = 0.098 ,
[101005] = 0.080 ,
[101006] = 0.085 ,
[101007] = 0.098 ,
[101008] = 0.098 ,
[101009] = 0.070588 ,
[101010] = 0.094 ,
[101011] = 0.0769 ,
[101012] = 0.089 ,
[101013] = 0.070 ,
[102001] = 0.048 ,
[102002] = 0.089552 ,
[102003] = 0.0545 ,
[102004] = 0.0920 ,
[102005] = 0.0790 ,
[102007] = 0.0666 ,
[102008] = 0.0816 ,
[102105] = 0.060 ,
[103001] = 1.550 ,
[103002] = 1.300 ,
[103003] = 1.900 ,
[103004] = 0.090 ,
[103005] = 0.0856 ,
[103006] = 0.100 ,
[103007] = 0.100 ,
[103008] = 0.910 ,
[103009] = 0.100 ,
[103010] = 0.100 ,
[103011] = 1.5 ,
[103012] = 1.5 ,
[103013] = 0.180 ,
[103014] = 0.300 ,
[103015] = 1.900 ,
[103100] = 0.100 ,
[103901] = 1.900 ,
[103902] = 1.300 ,
[103903] = 1.900 ,
[104001] = 0.200 ,
[104002] = 0.100 ,
[104003] = 0.250 ,
[104004] = 0.125 ,
[104005] = 0.260 ,
[104100] = 0.230 ,
[105001] = 0.088 ,
[105002] = 0.109 ,
[105003] = 0.050 ,
[105010] = 0.060606 , -- MG3的模式比较特殊 加速为0.060606 非加速为0.090909
[105012] = 0.092 ,
[106001] = 0.100 ,
[106002] = 0.110 ,
[106003] = 0.200 ,
[106004] = 0.060 ,
[106005] = 0.250 ,
[106006] = 0.200 ,
[106008] = 0.070588 ,
[106010] = 0.200 ,
[106011] = 0.075 ,
[106107] = 1.000 ,
[107001] = 0.075 ,
[107002] = 3.000 ,
[107005] = 3.000 ,
[107006] = 0.075 ,
[107008] = 0.075 ,
[108001] = nil ,
[108002] = nil ,
[108003] = nil ,
[108004] = nil ,
}