This commit is contained in:
lifestorm
2024-08-05 18:40:29 +03:00
parent 9f505a0646
commit c6d9b6f580
8044 changed files with 1853472 additions and 21 deletions

View File

@@ -0,0 +1,51 @@
--[[
| 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 = "GA9 Revolution 9 Suppressor"
att.AbbrevName = "GA9 Suppressor"
att.Icon = Material("entities/att/acwatt_uc_muzzle_supp_ga9.png", "mips smooth")
att.Description = "Traps propellant gas from the muzzle, reducing visual and audible report.\nCompact and lightweight, with little impact on handling, but still lengthens profile more than other muzzle attachments."
att.Desc_Neutrals = {"uc.exclusive.pistol", "uc.supptail"}
att.AutoStats = true
att.Slot = {"muzzle"}
att.SortOrder = 150
att.Model = "models/weapons/arccw/atts/uc_ga_revolution9.mdl"
att.ModelOffset = Vector(2.6, 0, 0)
att.ModelScale = Vector(1.15, 1.15, 1.15)
att.OffsetAng = Angle(0, 0, 0)
att.Silencer = true
att.Override_MuzzleEffect = "muzzleflash_suppressed"
att.IsMuzzleDevice = true
att.Mult_ShootPitch = 1.1
att.Mult_ShootVol = 0.75
att.Mult_Range = 0.9
att.Add_BarrelLength = 5
att.Mult_SightTime = 1.07
att.Mult_Sway = 1.1
att.AttachSound = "arccw_uc/common/gunsmith/suppressor_thread.ogg"
att.Hook_Compatible = function(wep,data)
if !ArcCW.UC.PistolAmmoTypes[wep:GetBuff_Override("Override_Ammo", wep.Primary.Ammo)] then
return false
end
end
att.Hook_GetDistantShootSound = function(wep, distancesound)
if wep:GetBuff("PhysBulletMuzzleVelocity") < ArcCW.UC.SubsonicThreshold then
return false
end
end