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,54 @@
--[[
| 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 = "Slamfire Kit"
att.Icon = nil -- Material("entities/att/acwatt_lowpolysaiga12extmag.png", "smooth mips")
att.Description = "Reckless removal of trigger safety features allows shells to fire immediately upon being cycled while the trigger is held. This enables rapid \"rack and fire\" behavior similar to old trench guns, but impacts weapon performance."
att.Desc_Pros = {
"uc.slam"
}
att.Desc_Cons = {
}
att.Desc_Neutrals = {
}
att.Slot = "uc_fg"
att.AutoStats = true
att.Hook_Compatible = function(wep)
if !wep:GetIsShotgun() then
return false
end
if wep:GetBuff_Override("Override_ManualAction", wep.ManualAction) then return end
for i, v in pairs(wep.Firemodes) do
if !v then continue end
if v.Mode and v.Override_ManualAction then
return
end
end
return false
end
att.Mult_Recoil = 1.2
att.Mult_RecoilSide = 1.5
att.Override_Firemodes = {
{
Mode = 2,
PrintName = "fcg.slam",
Override_ManualAction = true,
},
{
Mode = 0
}
}
att.Override_Firemodes_Priority = 11 -- higher than spas-12 manual
att.AttachSound = "arccw_uc/common/gunsmith/internal_modification.ogg"