Files
wnsrc/lua/arccw/shared/attachments/ur_ak_stock_aks.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

52 lines
1.6 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 = "AK Sidefolding Stock"
att.AbbrevName = "Sidefolding Stock"
if !GetConVar("arccw_truenames"):GetBool() then
att.PrintName = "KF Sidefolding Stock"
end
att.Icon = Material("entities/att/ur_ak/stock/fold.png", "mips smooth")
att.Description = [[Side-folding stock found since the 74 series' debut. The triangular structure reduces its compromise on stability, but it is still less effective than a fixed stock. Folding the stock provides massively boosted maneuverability at the cost of severe recoil.
Toggling this stock modifies performance accordingly.]]
att.AutoStats = true
att.Slot = {"ur_ak_stock"}
att.SortOrder = 1
att.ToggleLockDefault = true
att.ToggleSound = "arccw_uc/common/stockslide.ogg"
att.ExcludeFlags = {"mag_drum"}
att.ToggleStats = {
{
PrintName = "Extended",
Mult_SightTime = .8,
Mult_RecoilSide = 1.25,
Mult_Sway = 1.2,
Mult_SightedSpeedMult = 1.05,
ActivateElements = {"stock_aks"},
AutoStats = true,
},
{
PrintName = "Folded",
Mult_SightTime = 0.6,
Mult_DrawTime = 0.85,
Mult_HolsterTime = 0.85,
Mult_Recoil = 1.5,
Mult_RecoilSide = 2,
Mult_SightedSpeedMult = 1.2,
Mult_ShootSpeedMult = 1.15,
Add_BarrelLength = -9,
Mult_Sway = 3,
ActivateElements = {"stock_aks_folded"},
AutoStats = true,
}
}