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 = "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"} |