Files
wnsrc/lua/arccw/shared/attachments/ur_ak_muzzle_ak74.lua

36 lines
1.1 KiB
Lua
Raw Normal View History

2024-08-05 18:40:29 +03:00
--[[
| 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