mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
48 lines
1.4 KiB
Lua
48 lines
1.4 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 = "Action Hero"
|
|
att.Icon = Material("entities/att/arccw_uc_tp_actionhero.png", "smooth mips")
|
|
att.Description = "Operate the firearm using only one hand. This improves weapon mobility, but accurate fire becomes difficult at best and near impossible at worst.\nBecause accuracy is already out the window, practictioners of this style also opt to shoot while sprinting at full speed."
|
|
att.Desc_Pros = {
|
|
--"+6% Coolness"
|
|
}
|
|
att.Desc_Cons = {
|
|
}
|
|
att.Desc_Neutrals = {
|
|
}
|
|
att.Slot = "uc_tp"
|
|
|
|
att.AutoStats = true
|
|
att.SortOrder = 20
|
|
|
|
att.Override_ShootWhileSprint = true
|
|
att.Mult_HipDispersion = 0.75
|
|
|
|
att.Mult_Recoil = 1.5
|
|
att.Mult_RecoilSide = 2
|
|
att.Mult_SightTime = 1.5
|
|
att.Mult_Sway = 2
|
|
--att.Mult_MoveDispersion = 2
|
|
att.Mult_MoveSpeed = .95
|
|
|
|
att.LHIK = true
|
|
att.LHIKHide = true
|
|
att.Override_HoldtypeActive = "pistol"
|
|
att.Override_HoltypeActive_Priority = 999
|
|
att.Override_HoldtypeSights = "pistol"
|
|
att.Override_HoltypeSights_Priority = 999
|
|
att.Override_HoldtypeHolstered = "normal"
|
|
|
|
att.Hook_Compatible = function(wep, data)
|
|
if wep:GetIsManualAction() and wep:GetBuff("HoldtypeActive") ~= "pistol" and wep:GetBuff("HoldtypeActive") ~= "revolver" then return false end
|
|
end
|
|
|
|
att.NotForNPCs = true |