mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +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 = "MP5A3 Retractable Stock"
|
||
|
|
att.AbbrevName = "Retractable Stock"
|
||
|
|
|
||
|
|
if !GetConVar("arccw_truenames"):GetBool() then
|
||
|
|
att.PrintName = "K7-3 Retractable Stock"
|
||
|
|
end
|
||
|
|
|
||
|
|
att.Icon = Material("entities/att/ur_mp5/stock_colap.png", "smooth mips")
|
||
|
|
att.Description = "Retractable skeletal stock, signficantly less massive than solid polymer. It can be collapsed to reduce profile even further at the cost of stability.\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_Recoil = 1.5
|
||
|
|
att.Mult_RecoilSide = 1.15
|
||
|
|
att.Mult_SightTime = 0.90
|
||
|
|
|
||
|
|
att.Mult_DrawTime = 0.85
|
||
|
|
att.Mult_HolsterTime = 0.85
|
||
|
|
|
||
|
|
att.Mult_HipDispersion = 0.8
|
||
|
|
|
||
|
|
att.ToggleStats = {
|
||
|
|
{
|
||
|
|
PrintName = "Extended",
|
||
|
|
ActivateElements = {"stock_a3"},
|
||
|
|
AutoStats = true,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
PrintName = "Collapsed",
|
||
|
|
ActivateElements = {"stock_a3_folded"},
|
||
|
|
AutoStats = true,
|
||
|
|
Add_BarrelLength = -9,
|
||
|
|
|
||
|
|
Mult_Sway = 2,
|
||
|
|
Mult_ShootSpeedMult = 1.12,
|
||
|
|
Mult_SightedSpeedMult = 1.12,
|
||
|
|
}
|
||
|
|
}
|