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

26 lines
449 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
AddCSLuaFile()
SWEP.Base = "weapon_zs_headcrab"
SWEP.PrintName = "Fast Headcrab"
2014-10-02 08:49:54 +08:00
SWEP.PounceDamage = 6
SWEP.NoHitRecovery = 0.6
SWEP.HitRecovery = 0.75
function SWEP:EmitBiteSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Bite")
2014-10-02 08:49:54 +08:00
end
function SWEP:EmitIdleSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Idle")
2014-10-02 08:49:54 +08:00
end
function SWEP:EmitAttackSound()
self:GetOwner():EmitSound("NPC_FastHeadcrab.Attack")
2014-10-02 08:49:54 +08:00
end
function SWEP:Reload()
end