zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_fastheadcrab.lua
2014-10-01 20:49:54 -04:00

27 lines
454 B
Lua

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