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

25 lines
449 B
Lua

AddCSLuaFile()
SWEP.Base = "weapon_zs_headcrab"
SWEP.PrintName = "Fast Headcrab"
SWEP.PounceDamage = 6
SWEP.NoHitRecovery = 0.6
SWEP.HitRecovery = 0.75
function SWEP:EmitBiteSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Bite")
end
function SWEP:EmitIdleSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Idle")
end
function SWEP:EmitAttackSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Attack")
end
function SWEP:Reload()
end