mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
51 lines
1.4 KiB
Lua
51 lines
1.4 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
att.PrintName = "MP5K PDW Folding Stock"
|
|
att.AbbrevName = "PDW Stock"
|
|
|
|
if !GetConVar("arccw_truenames"):GetBool() then
|
|
att.PrintName = "PK5-PDW Folding Stock"
|
|
end
|
|
|
|
att.Icon = Material("entities/att/ur_mp5/stock_pdw.png", "smooth mips")
|
|
att.Description = "Light polymer \"personal defense weapon\" stock. Ideal for point shooting due to its conventional shape. It can be folded to reduce profile even further at the cost of recoil.\n\nToggling the stock modifies performance accordingly."
|
|
att.AutoStats = true
|
|
att.Slot = "ur_mp5_stock"
|
|
|
|
att.ToggleLockDefault = true
|
|
att.ToggleSound = "arccw_uc/common/stockslide.ogg"
|
|
|
|
att.Mult_MoveDispersion = .85
|
|
att.Mult_Recoil = 1.5
|
|
att.Mult_RecoilSide = 1.25
|
|
|
|
|
|
att.Mult_HipDispersion = 0.75
|
|
att.Mult_DrawTime = 0.85
|
|
att.Mult_HolsterTime = 0.85
|
|
|
|
att.ToggleStats = {
|
|
{
|
|
PrintName = "Extended",
|
|
ActivateElements = {"stock_pdw"},
|
|
AutoStats = true,
|
|
},
|
|
{
|
|
PrintName = "Folded",
|
|
ActivateElements = {"stock_pdw_folded"},
|
|
AutoStats = true,
|
|
Add_BarrelLength = -12,
|
|
Mult_Recoil = 2,
|
|
Mult_ShootSpeedMult = 1.20,
|
|
Mult_SightedSpeedMult = 1.20,
|
|
Mult_Sway = 3,
|
|
}
|
|
} |