2014-10-02 08:49:54 +08:00
|
|
|
AddCSLuaFile()
|
|
|
|
|
|
|
|
SWEP.Base = "weapon_zs_headcrab"
|
|
|
|
|
2018-05-02 06:32:59 +08:00
|
|
|
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()
|
2018-05-02 06:32:59 +08:00
|
|
|
self:GetOwner():EmitSound("NPC_FastHeadcrab.Bite")
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function SWEP:EmitIdleSound()
|
2018-05-02 06:32:59 +08:00
|
|
|
self:GetOwner():EmitSound("NPC_FastHeadcrab.Idle")
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function SWEP:EmitAttackSound()
|
2018-05-02 06:32:59 +08:00
|
|
|
self:GetOwner():EmitSound("NPC_FastHeadcrab.Attack")
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function SWEP:Reload()
|
|
|
|
end
|