Decay/lua/arccw/shared/attachments/ud_glock_mag_33.lua

44 lines
1.0 KiB
Lua
Raw Normal View History

2024-02-29 20:47:24 -05:00
att.PrintName = "Glock 33-Round Extended Mag"
att.AbbrevName = "33-Round Extended Mag"
if !GetConVar("arccw_truenames"):GetBool() then
att.PrintName = "GEN3 33-Round Extended Mag"
end
att.SortOrder = 33
att.Icon = Material("entities/att/acwatt_ud_glock_mag_33.png", "smooth mips")
att.Description = "Extended stick magazine. Heavier and throws off weapon balance, but does allow you to fire for longer."
att.Desc_Pros = {}
att.Desc_Cons = {
"uc.jam"
}
att.Desc_Neutrals = {}
att.Slot = "ud_glock_mag"
att.AutoStats = true
att.Mult_SightTime = 1.1
att.Mult_ReloadTime = 1.15
att.Override_ClipSize = 33
att.Mult_HipDispersion = 1.25
att.Mult_Sway = 1.5
att.Mult_ShootSpeedMult = 0.95
att.Mult_HipDispersion = 1.25
att.Override_Malfunction = true
att.Mult_MalfunctionMean = 0.85
att.Mult_MalfunctionVariance = 1.5
att.ActivateElements = {"ud_glock_33_mag"}
att.Hook_SelectReloadAnimation = function(wep, anim)
return anim .. "_33"
end
att.Hook_TranslateAnimation = function(wep, anim)
if (anim == "fix") then
return anim .. "_33"
end
end