zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_bonemesh/shared.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

52 lines
1.1 KiB
Lua

SWEP.Base = "weapon_zs_zombie"
SWEP.MeleeReach = 52
SWEP.MeleeDelay = 0.55
SWEP.MeleeSize = 4.5 --1.5
SWEP.MeleeDamage = 35 --28
SWEP.MeleeDamageType = DMG_SLASH
SWEP.MeleeAnimationDelay = 0.05
SWEP.Primary.Delay = 1.6
SWEP.ViewModel = Model("models/weapons/v_pza.mdl")
SWEP.WorldModel = "models/weapons/w_crowbar.mdl"
function SWEP:CheckMoaning()
end
function SWEP:StopMoaningSound()
end
function SWEP:StartMoaningSound()
end
function SWEP:PlayHitSound()
self:EmitSound("npc/zombie/claw_strike"..math.random(3)..".wav", 75, 80, nil, CHAN_AUTO)
end
function SWEP:PlayMissSound()
self:EmitSound("npc/zombie/claw_miss"..math.random(2)..".wav", 75, 80, nil, CHAN_AUTO)
end
function SWEP:PlayAttackSound()
self:EmitSound("NPC_PoisonZombie.ThrowWarn")
end
function SWEP:PlayAlertSound()
self:GetOwner():EmitSound("npc/antlion_guard/angry"..math.random(3)..".wav", 75, 140)
end
SWEP.PlayIdleSound = SWEP.PlayAlertSound
function SWEP:SetSwingAnimTime(time)
self:SetDTFloat(3, time)
end
function SWEP:GetSwingAnimTime()
return self:GetDTFloat(3)
end
function SWEP:StartSwinging()
self.BaseClass.StartSwinging(self)
self:SetSwingAnimTime(CurTime() + 1)
end