mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
56
lua/arccw/shared/attachments/ud_m79_barrel_short.lua
Normal file
56
lua/arccw/shared/attachments/ud_m79_barrel_short.lua
Normal file
@@ -0,0 +1,56 @@
|
||||
--[[
|
||||
| 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 = "AMSGL Short Tube"
|
||||
att.AbbrevName = "Short Tube"
|
||||
|
||||
if GetConVar("arccw_truenames"):GetBool() then
|
||||
att.PrintName = "M79 Short Tube"
|
||||
end
|
||||
|
||||
att.Icon = Material("entities/att/acwatt_ud_m79_barrel_short.png", "smooth mips")
|
||||
att.Description = "Nicknamed the 'Pirate Gun' due to its likeliness to a hand cannon, this short barrel improves agility at the cost of precision and projectile range."
|
||||
att.Desc_Pros = {
|
||||
}
|
||||
att.Desc_Cons = {
|
||||
"uc.altnofs"
|
||||
}
|
||||
att.Desc_Neutrals = {
|
||||
}
|
||||
att.Slot = "ud_m79_barrel"
|
||||
|
||||
att.LHIK = true
|
||||
|
||||
att.Model = "models/weapons/arccw/atts/lhik_short.mdl"
|
||||
|
||||
att.AutoStats = true
|
||||
|
||||
att.Mult_MuzzleVelocity = 0.5
|
||||
att.Mult_Recoil = 1.25
|
||||
att.Mult_AccuracyMOA = 2
|
||||
|
||||
att.Mult_MoveDispersion = 0.75
|
||||
att.Mult_SightTime = 0.75
|
||||
att.Mult_ReloadTime = 0.85
|
||||
|
||||
att.Mult_SpeedMult = 1.01
|
||||
att.Mult_SightedSpeedMult = 1.05
|
||||
|
||||
att.Mult_Sway = 0.75
|
||||
|
||||
att.A_Hook_Add_SightsDispersion = function(wep, data)
|
||||
if data and !wep.Attachments[1].Installed then
|
||||
data.add = data.add + 50
|
||||
end
|
||||
end
|
||||
|
||||
att.ActivateElements = {"m79_pirategun"}
|
||||
|
||||
att.GivesFlags = {"m79_pirategun"}
|
||||
Reference in New Issue
Block a user