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

27 lines
369 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
AddCSLuaFile()
SWEP.Base = "weapon_zs_zombie"
SWEP.PrintName = "Zombie Torso"
2014-10-02 08:49:54 +08:00
SWEP.MeleeDelay = 0.25
SWEP.MeleeReach = 40
SWEP.MeleeDamage = 25
SWEP.SwingAnimSpeed = 2.96
2014-10-02 08:49:54 +08:00
SWEP.DelayWhenDeployed = true
function SWEP:Reload()
self:SecondaryAttack()
end
function SWEP:StartMoaning()
end
function SWEP:StopMoaning()
end
function SWEP:IsMoaning()
return false
end