mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
55 lines
1.2 KiB
Lua
55 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 = "20-Round AMSAS Drum Mag"
|
|
att.AbbrevName = "20-Round Drum Mag"
|
|
|
|
if GetConVar("arccw_truenames"):GetBool() then
|
|
att.PrintName = "20-Round USAR Drum Mag"
|
|
end
|
|
|
|
att.SortOrder = -1
|
|
att.Icon = Material("entities/att/obsolete.png", "mips smooth")
|
|
att.Description = "Extended drum magazine that offers extra magazine capacity. Almost no legitimate military uses, but makes a fun range toy."
|
|
att.Desc_Pros = {
|
|
}
|
|
att.Desc_Cons = {
|
|
}
|
|
att.Desc_Neutrals = {
|
|
}
|
|
att.Slot = "ud_m16_mag"
|
|
|
|
att.AutoStats = true
|
|
att.HideIfBlocked = true
|
|
|
|
att.Override_ClipSize = 20
|
|
att.Override_ClipSize_SkipAS = true
|
|
|
|
att.Mult_SightTime = 1.25
|
|
--att.Mult_Recoil = 0.9
|
|
att.Mult_ReloadTime = 1.25
|
|
att.Mult_SpeedMult = 0.95
|
|
att.Mult_Sway = 3
|
|
|
|
att.ActivateElements = {"ud_m16_usas_mag_20"}
|
|
|
|
att.Hook_SelectReloadAnimation = function(wep, anim)
|
|
return anim .. "_usas_20"
|
|
end
|
|
|
|
|
|
att.Hook_SelectFireAnimation = function(wep, anim)
|
|
return anim .. "_usas"
|
|
end
|
|
|
|
att.RequireFlags = {"m16_usas"}
|
|
|
|
att.Description = "OBSOLETE"
|
|
att.Ignore = true |