39 lines
1000 B
Lua
39 lines
1000 B
Lua
att.PrintName = "AW 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/mag308_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_Neutrals = {}
|
|
att.Slot = "ur_aw_mag"
|
|
|
|
att.AutoStats = true
|
|
att.HideIfBlocked = true
|
|
|
|
att.Override_ClipSize = 10
|
|
|
|
att.Desc_Cons = {
|
|
--"+ Reload time"
|
|
}
|
|
|
|
att.Mult_SightTime = 1.25
|
|
att.Mult_ReloadTime = 5.675 / 5.15 -- compensation for longer anim length
|
|
att.Mult_Sway = 1.25
|
|
|
|
att.Mult_SpeedMult = 0.975
|
|
att.Mult_ShootSpeedMult = 0.95
|
|
|
|
att.Mult_HipDispersion = 1.25
|
|
|
|
att.ActivateElements = {"mag_ext"}
|
|
|
|
att.Hook_SelectReloadAnimation = function(wep, anim)
|
|
return anim .. "_10"
|
|
end
|
|
|
|
att.ExcludeFlags = {"mag_338","mag_300"} |