38 lines
969 B
Lua
38 lines
969 B
Lua
att.PrintName = "AWM .300 10-Round Extended Mag"
|
|
att.AbbrevName = "10-Round Extended Mag"
|
|
|
|
if !GetConVar("arccw_truenames"):GetBool() then
|
|
att.PrintName = "AP 10-Round Extended Mag"
|
|
end
|
|
|
|
att.SortOrder = 10
|
|
att.Icon = Material("entities/att/ur_aw/mag338_10.png", "mips smooth")
|
|
att.Description = "Extended magazine for the Arctic Warfare. The extra rounds add weight to the magazine, but allow for twice as many shots to be taken between reloads."
|
|
att.Desc_Pros = {}
|
|
att.Desc_Cons = {}
|
|
att.Desc_Neutrals = {}
|
|
att.Slot = "ur_aw_mag"
|
|
|
|
att.AutoStats = true
|
|
|
|
att.HideIfBlocked = true
|
|
|
|
att.Override_ClipSize = 10
|
|
|
|
att.Mult_SightTime = 1.25
|
|
att.Mult_ReloadTime = 6 / 5.55
|
|
att.Mult_Sway = 1.25
|
|
|
|
att.Mult_SpeedMult = 0.975
|
|
att.Mult_ShootSpeedMult = 0.95
|
|
|
|
att.Mult_HipDispersion = 1.25
|
|
|
|
att.ActivateElements = {"mag_ext_338"}
|
|
|
|
att.Hook_SelectReloadAnimation = function(wep, anim)
|
|
return anim .. "_10_338"
|
|
end
|
|
|
|
att.RequireFlags = {"mag_300"}
|
|
att.ExcludeFlags = {"mag_308"} |