mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
36 lines
1.1 KiB
Lua
36 lines
1.1 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 = "Kalashnikov Compensator"
|
|
|
|
att.Icon = Material("entities/att/ur_ak/muzzle_74m.png", "mips smooth")
|
|
att.Description = "External compensator used since the '70s for AKs of multiple calibers. Efficiently reduces horizontal recoil and marginally reduces vertical recoil at the cost of a frontal counterweight that will inevitably raise swaying."
|
|
att.AutoStats = true
|
|
att.Slot = {"ur_ak_muzzle"}
|
|
|
|
if !GetConVar("arccw_truenames"):GetBool() then
|
|
att.PrintName = "Vladimir Compensator"
|
|
att.Description = string.Replace(att.Description,"AKs","AVRs") -- so we don't have to change the desc twice
|
|
end
|
|
|
|
att.Mult_Recoil = .95
|
|
att.Mult_RecoilSide = .65
|
|
|
|
att.Add_BarrelLength = 2.5
|
|
att.Mult_SightTime = 1.05
|
|
att.Mult_Sway = 1.25
|
|
|
|
att.SortOrder = 999
|
|
|
|
att.AttachSound = "arccw_uc/common/gunsmith/suppressor_thread.ogg"
|
|
att.ActivateElements = {"muzzle_ak74"}
|
|
att.ExcludeFlags = {"ak_barrelchange"}
|
|
|
|
att.Ignore = true |