zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_fastheadcrab.lua

28 lines
454 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
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