This commit is contained in:
lifestorm
2024-08-04 23:54:45 +03:00
parent 8064ba84d8
commit 6a58f406b1
7522 changed files with 4011896 additions and 15 deletions

View File

@@ -0,0 +1,28 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local PLUGIN = PLUGIN
CLASS.name = "Fast Headcrab"
CLASS.faction = FACTION_HEADCRAB
CLASS.model = "models/headcrab.mdl"
function CLASS:OnSet(client)
client:SetWalkSpeed(ix.config.Get("runSpeed"))
client:SetRunSpeed(ix.config.Get("runSpeed") * 2)
client:SetModel("models/headcrab.mdl")
end
function CLASS:CanSwitchTo(client)
return false
end
CLASS_FASTHEADCRAB = CLASS.index

View File

@@ -0,0 +1,25 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local PLUGIN = PLUGIN
CLASS.name = "Headcrab"
CLASS.faction = FACTION_HEADCRAB
CLASS.isDefault = true
function CLASS:OnSet(client)
client:SetWalkSpeed(ix.config.Get("walkSpeed") * 0.5)
client:SetRunSpeed(ix.config.Get("walkSpeed"))
client:SetModel("models/headcrabclassic.mdl")
client:SetBodygroup(0, 1)
end
CLASS_HEADCRAB = CLASS.index

View File

@@ -0,0 +1,28 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local PLUGIN = PLUGIN
CLASS.name = "Poison Headcrab"
CLASS.faction = FACTION_HEADCRAB
CLASS.model = "models/headcrabblack.mdl"
function CLASS:OnSet(client)
client:SetWalkSpeed(ix.config.Get("walkSpeed") * 0.3)
client:SetRunSpeed(ix.config.Get("walkSpeed") * 0.5)
client:SetModel("models/headcrabblack.mdl")
end
function CLASS:CanSwitchTo(client)
return false
end
CLASS_POISONHEADCRAB = CLASS.index