This commit is contained in:
lifestorm
2024-08-05 18:40:29 +03:00
parent c4d91bf369
commit 324f19217d
8040 changed files with 1853423 additions and 21 deletions

View File

@@ -0,0 +1,42 @@
--[[
| 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/
--]]
if not ATTACHMENT then
ATTACHMENT = {}
end
ATTACHMENT.Name = "Extended Tube, 6rnd"
ATTACHMENT.Description = {
TFA.AttachmentColors["+"], "Increases internal magazine capacity", TFA.Attachments.Colors["-"],"Attaching & detaching empties magazine",
}
ATTACHMENT.Icon = "entities/ks23tube.png" --Revers to label, please give it an icon though! This should be the path to a png, like "entities/tfa_ammo_match.png"
ATTACHMENT.ShortName = "+MAG"
ATTACHMENT.WeaponTable = {
["Bodygroups_V"] = {[2] = 1},
["Bodygroups_W"] = {[2] = 1},
["Primary"] = {
["ClipSize"] = function(wep, val)
return wep.Primary.ClipSize_ExtRifle or 6
end,
},
}
function ATTACHMENT:Attach(wep)
wep:Unload()
end
function ATTACHMENT:Detach(wep)
wep:Unload()
end
if not TFA_ATTACHMENT_ISUPDATING then
TFAUpdateAttachments()
end