mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
35 lines
860 B
Lua
35 lines
860 B
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 = "Full Choke"
|
|
|
|
att.Icon = nil -- Material("entities/att/acwatt_lowpolysaiga12extmag.png", "smooth mips")
|
|
att.Description = "A very tight choke for shotguns, noticably tightening spread. However, it tends to offset aiming."
|
|
att.Desc_Pros = {
|
|
}
|
|
att.Desc_Cons = {
|
|
"uc.disp.100"
|
|
}
|
|
att.Desc_Neutrals = {
|
|
}
|
|
att.Slot = {"choke","muzzle"}
|
|
att.AutoStats = true
|
|
|
|
att.Hook_Compatible = function(wep)
|
|
if !wep:GetIsShotgun() then
|
|
return false
|
|
end
|
|
end
|
|
|
|
att.Mult_Recoil = 1.25
|
|
att.Mult_RecoilSide = 1.5
|
|
att.Mult_AccuracyMOA = .7
|
|
att.Add_HipDispersion = 100
|
|
att.Add_SightsDispersion = 100 |