mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
48 lines
1.2 KiB
Lua
48 lines
1.2 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 = "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 = {}
|
|
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.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 |