mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
32 lines
936 B
Lua
32 lines
936 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 = "AMAS 11-Round Extended Magazine"
|
|
if !GetConVar("arccw_truenames"):GetBool() then
|
|
att.PrintName = "M1911 11-Round Extended Magazine"
|
|
end
|
|
att.AbbrevName = "11-Round Extended Mag"
|
|
att.Icon = Material("entities/att/ur_1911/mag11.png","mips smooth")
|
|
att.Description = "A higher capacity magazine increases the time you can spend without reloading."
|
|
att.Slot = "ur_m1911_mag"
|
|
att.AutoStats = true
|
|
|
|
att.Override_ClipSize = 11
|
|
att.Mult_SightTime = 1.1
|
|
att.Mult_ReloadTime = 1.15
|
|
att.Mult_Sway = 1.25
|
|
att.Mult_SpeedMult = 0.98
|
|
att.Mult_ShootSpeedMult = 0.95
|
|
|
|
att.Mult_HipDispersion = 1.25
|
|
|
|
att.Hook_SelectReloadAnimation = function(wep, anim)
|
|
return anim .. "_10"
|
|
end |