mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
39 lines
1.0 KiB
Lua
39 lines
1.0 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 = "Rifled Barrel"
|
|
|
|
att.Icon = Material("entities/att/arccw_uc_precisionrifling.png", "mips smooth")
|
|
att.Description = "Specially made lightweight barrel designed for slug rounds. Improves precision and time to aim noticably."
|
|
att.Desc_Pros = {
|
|
}
|
|
att.Desc_Cons = {
|
|
}
|
|
att.Desc_Neutrals = {
|
|
"uc.reqslug"
|
|
}
|
|
att.Slot = {"uc_fg","uc_fg_singleshot"}
|
|
att.AutoStats = true
|
|
|
|
att.Hook_Compatible = function(wep)
|
|
if !wep:GetIsShotgun() then -- or wep:GetBuff("Num") > 1
|
|
return false
|
|
end
|
|
end
|
|
|
|
att.Mult_AccuracyMOA = 0.5
|
|
att.Mult_SightTime = 0.75
|
|
att.Mult_HipDispersion = 1.25
|
|
|
|
att.RequireFlags = {"uc_slug"}
|
|
att.GivesFlags = {"uc_fg_sg_rifled"}
|
|
att.ExcludeFlags = {"uc_choke_rifled"}
|
|
|
|
att.AttachSound = "arccw_uc/common/gunsmith/internal_modification.ogg" |