Files
wnsrc/lua/arccw/shared/attachments/uc_ammo_sg_bird2.lua
lifestorm 324f19217d Upload
2024-08-05 18:40:29 +03:00

44 lines
1.1 KiB
Lua

--[[
| 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 = "\"BIRD\" #9 Birdshot"
att.SortOrder = 4
att.Icon = Material("entities/att/arccw_uc_ammo_shotgun_generic.png", "mips smooth")
att.Description = [[Hunting rounds with a wide spread and a very large number of pellets, designed to shoot birds out of the sky.
While not as lethal as buckshot, the loose clump spread makes it easier to hit small or multiple targets.]]
att.Desc_Pros = {
"uc.pellet.8"
}
att.Desc_Cons = {
"uc.accuracy.10"
}
att.Desc_Neutrals = {
}
att.Slot = {"ud_ammo_shotgun", "uc_ammo"}
att.InvAtt = "uc_ammo_sg_bird"
att.AutoStats = true
att.Add_Num = 8
att.Mult_Damage = 0.9
att.Mult_DamageMin = 0.9
att.Mult_Recoil = 0.8
att.Add_AccuracyMOA = 10
att.Override_UC_ShellColor = Color(0.4 * 255, 0.6 * 255, 0.8 * 255)
att.Hook_Compatible = function(wep)
if !wep:GetBuff_Override("UC_Shotshell") then
return false
end
end