Залив

This commit is contained in:
Refosel
2026-03-30 10:39:52 +03:00
commit 2b57c019cb
2010 changed files with 185745 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
ATTACHMENT.Base = "att_barrel"
ATTACHMENT.Name = "660mm Extended Barrel"
ATTACHMENT.Model = Model("models/viper/mw/attachments/delta/attachment_vm_sn_delta_barlong.mdl")
ATTACHMENT.Icon = Material("viper/mw/attachments/icons/delta/icon_attachment_sn_delta_barlong.vmt")
ATTACHMENT.BonemergeToCategory = {"Receivers"}
local BaseClass = GetAttachmentBaseClass(ATTACHMENT.Base)
function ATTACHMENT:Stats(weapon)
BaseClass.Stats(self, weapon)
weapon.Bullet.EffectiveRange = weapon.Bullet.EffectiveRange * 1.1
weapon.Bullet.DropOffStartRange = weapon.Bullet.DropOffStartRange * 1.1
weapon.Animations.Ads_In.Fps = weapon.Animations.Ads_In.Fps * 0.9
weapon.Animations.Ads_Out.Fps = weapon.Animations.Ads_Out.Fps * 0.9
weapon.Animations.Draw.Fps = weapon.Animations.Draw.Fps * 0.92
weapon.Animations.Holster.Fps = weapon.Animations.Holster.Fps * 0.92
end

View File

@@ -0,0 +1,3 @@
ATTACHMENT.Base = "att_barrel"
ATTACHMENT.Model = Model("models/viper/mw/attachments/delta/attachment_vm_sn_delta_barrel.mdl")
ATTACHMENT.BonemergeToCategory = {"Receivers"}

View File

@@ -0,0 +1,16 @@
ATTACHMENT.Base = "att_barrel"
ATTACHMENT.Name = "510mm Compact Barrel"
ATTACHMENT.Model = Model("models/viper/mw/attachments/delta/attachment_vm_sn_delta_barshort.mdl")
ATTACHMENT.Icon = Material("viper/mw/attachments/icons/delta/icon_attachment_sn_delta_barshort.vmt")
ATTACHMENT.BonemergeToCategory = {"Receivers"}
local BaseClass = GetAttachmentBaseClass(ATTACHMENT.Base)
function ATTACHMENT:Stats(weapon)
BaseClass.Stats(self, weapon)
weapon.Bullet.EffectiveRange = weapon.Bullet.EffectiveRange * 0.85
weapon.Bullet.DropOffStartRange = weapon.Bullet.DropOffStartRange * 0.85
weapon.Animations.Ads_In.Fps = weapon.Animations.Ads_In.Fps * 1.05
weapon.Animations.Ads_Out.Fps = weapon.Animations.Ads_Out.Fps * 1.05
weapon.Animations.Draw.Fps = weapon.Animations.Draw.Fps * 1.05
weapon.Animations.Holster.Fps = weapon.Animations.Holster.Fps * 1.05
end