mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
36 lines
968 B
Lua
36 lines
968 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 = "40-Round Magazine"
|
|
att.Icon = Material("vgui/entities/eft_mp7/eft_mp7_mag40.png", "mips smooth")
|
|
att.Description = "A standard 40-round 4.6x30 magazine for the MP7 SMGs, manufactured by Heckler & Koch."
|
|
att.SortOrder = 40
|
|
att.Desc_Pros = {
|
|
"pro.magcap"
|
|
}
|
|
att.Desc_Cons = {
|
|
}
|
|
att.AutoStats = true
|
|
att.Slot = "eft_mag_mp7"
|
|
|
|
att.Model = "models/weapons/arc_eft_mp7/eft_mp7/models/eft_mp7_mag40.mdl"
|
|
|
|
att.Mult_MoveSpeed = 0.9
|
|
att.Mult_SightTime = 1.2
|
|
att.Override_ClipSize = 40
|
|
att.Mult_ReloadTime = 1.15
|
|
|
|
att.Hook_SelectReloadAnimation = function(wep, anim)
|
|
if anim == "reload" then
|
|
return "reload_extended2"
|
|
elseif anim == "reload_empty" then
|
|
return "reload_extended2_empty"
|
|
end
|
|
end |