zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/zombieclasses/fast_headcrab.lua
2014-10-01 20:49:54 -04:00

106 lines
2.3 KiB
Lua

CLASS.Name = "Fast Headcrab"
CLASS.TranslationName = "class_fast_headcrab"
CLASS.Description = "description_fast_headcrab"
CLASS.Help = "controls_fast_headcrab"
CLASS.Model = Model("models/headcrab.mdl")
CLASS.Wave = 1 / 3
CLASS.SWEP = "weapon_zs_fastheadcrab"
CLASS.Health = 30
CLASS.Speed = 230
CLASS.JumpPower = 100
CLASS.NoFallDamage = true
CLASS.NoFallSlowdown = true
CLASS.Points = 2
CLASS.Hull = {Vector(-12, -12, 0), Vector(12, 12, 18.1)}
CLASS.HullDuck = {Vector(-12, -12, 0), Vector(12, 12, 18.1)}
CLASS.ViewOffset = Vector(0, 0, 10)
CLASS.ViewOffsetDucked = Vector(0, 0, 10)
CLASS.StepSize = 8
CLASS.CrouchedWalkSpeed = 1
CLASS.Mass = 16
CLASS.CantDuck = true
CLASS.IsHeadcrab = true
CLASS.PainSounds = {"NPC_FastHeadcrab.Pain"}
CLASS.DeathSounds = {"NPC_FastHeadcrab.Die"}
function CLASS:Move(pl, mv)
local wep = pl:GetActiveWeapon()
if wep.Move and wep:Move(mv) then
return true
end
end
function CLASS:PlayerFootstep(pl, vFootPos, iFoot, strSoundName, fVolume, pFilter)
return true
end
function CLASS:ScalePlayerDamage(pl, hitgroup, dmginfo)
return true
end
function CLASS:CalcMainActivity(pl, velocity)
if pl:OnGround() then
if velocity:Length2D() > 0.5 then
pl.CalcIdeal = ACT_RUN
else
pl.CalcSeqOverride = 1
end
elseif pl:WaterLevel() >= 3 then
pl.CalcSeqOverride = 6
else
pl.CalcSeqOverride = 3
end
return true
end
function CLASS:UpdateAnimation(pl, velocity, maxseqgroundspeed)
pl:FixModelAngles(velocity)
local seq = pl:GetSequence()
if seq == 3 then
if not pl.m_PrevFrameCycle then
pl.m_PrevFrameCycle = true
pl:SetCycle(0)
end
pl:SetPlaybackRate(1)
return true
elseif pl.m_PrevFrameCycle then
pl.m_PrevFrameCycle = nil
end
end
if not CLIENT then return end
CLASS.Icon = "zombiesurvival/killicons/fastheadcrab"
function CLASS:CreateMove(pl, cmd)
local wep = pl:GetActiveWeapon()
if wep:IsValid() and wep.m_ViewAngles and wep.IsPouncing and wep:IsPouncing() then
local maxdiff = FrameTime() * 15
local mindiff = -maxdiff
local originalangles = wep.m_ViewAngles
local viewangles = cmd:GetViewAngles()
local diff = math.AngleDifference(viewangles.yaw, originalangles.yaw)
if diff > maxdiff or diff < mindiff then
viewangles.yaw = math.NormalizeAngle(originalangles.yaw + math.Clamp(diff, mindiff, maxdiff))
end
wep.m_ViewAngles = viewangles
cmd:SetViewAngles(viewangles)
end
end