e9da54c2f9
Too many changes to list.
25 lines
449 B
Lua
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
|