This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
--[[
| 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/
--]]
CLASS.name = "BMD Heavy Class"
CLASS.faction = FACTION_BMDFLAGSYSTEM
CLASS.isDefault = false
CLASS.accessFlag = "K"
CLASS_BMDGUNS = CLASS.index

View File

@@ -0,0 +1,16 @@
--[[
| 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/
--]]
CLASS.name = "BMD Regular Class"
CLASS.faction = FACTION_BMDFLAGSYSTEM
CLASS.isDefault = false
CLASS.accessFlag = "B"
CLASS_BMDMEDICAL = CLASS.index

View File

@@ -0,0 +1,14 @@
--[[
| 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/
--]]
CLASS.name = "Citoyen"
CLASS.faction = FACTION_CITIZEN
CLASS.isDefault = true
CLASS_CITIZEN = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Unité de la Protection Civile"
CLASS.faction = FACTION_CP
function CLASS:CanSwitchTo(client)
return !Schema:IsCombineRank(client:Name(), "RL")
end
--luacheck: globals CLASS_OWS
CLASS_CP = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Commandant de la Protection Civile"
CLASS.faction = FACTION_CP
function CLASS:CanSwitchTo(client)
return Schema:IsCombineRank(client:Name(), "CmD")
end
--luacheck: globals CLASS_OWS
CLASS_CP_CMD = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Officier de la Protection Civile"
CLASS.faction = FACTION_CP
function CLASS:CanSwitchTo(client)
return Schema:IsCombineRank(client:Name(), "OfC")
end
--luacheck: globals CLASS_OWS
CLASS_CP_CPT = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Overseer"
CLASS.faction = FACTION_OTA
function CLASS:CanSwitchTo(client)
return string.find(client:Name(), "^Overseer ")
end
--luacheck: globals CLASS_OWS
CLASS_OVERSEER = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Civil Protection Rank Leader"
CLASS.faction = FACTION_CP
function CLASS:CanSwitchTo(client)
return Schema:IsCombineRank(client:Name(), "RL")
end
--luacheck: globals CLASS_OWS
CLASS_CP_RL = CLASS.index

View File

@@ -0,0 +1,23 @@
--[[
| 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/
--]]
CLASS.name = "Ordinal"
CLASS.faction = FACTION_OTA
CLASS.isDefault = false
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_super_soldier.mdl") -- Placeholder
end
end
CLASS_ORD = CLASS.index

View File

@@ -0,0 +1,19 @@
--[[
| 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/
--]]
CLASS.name = "Overwatch"
CLASS.description = "An Overwatch AI, it utilises Combine technology."
CLASS.faction = FACTION_OVERWATCH
function CLASS:CanSwitchTo(client)
return !Schema:IsCombineRank(client:Name(), "SCN") or !Schema:IsCombineRank(client:Name(), "Disp:AI")
end
CLASS_OW = CLASS.index

View File

@@ -0,0 +1,29 @@
--[[
| 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/
--]]
CLASS.name = "Overwatch Scanner"
CLASS.description = "An Overwatch scanner, it utilises Combine technology."
CLASS.faction = FACTION_OVERWATCH
function CLASS:CanSwitchTo(client)
return Schema:IsCombineRank(client:Name(), "SCN") or Schema:IsCombineRank(client:Name(), "Disp:AI")
end
function CLASS:OnSpawn(client)
local scanners = ix.plugin.list["scannerplugin"]
if (scanners) then
timer.Simple(0.1, function()
scanners:CreateScanner(client, nil)
end)
end
end
CLASS_OW_SCANNER = CLASS.index

View File

@@ -0,0 +1,23 @@
--[[
| 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/
--]]
CLASS.name = "Charger Overwatch Soldier"
CLASS.faction = FACTION_OTA
CLASS.isDefault = false
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_super_soldier.mdl") -- Placeholder
end
end
CLASS_CHA = CLASS.index

View File

@@ -0,0 +1,23 @@
--[[
| 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/
--]]
CLASS.name = "Elite Overwatch Soldier"
CLASS.faction = FACTION_OTA
CLASS.isDefault = false
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_super_soldier.mdl")
end
end
CLASS_EOW = CLASS.index

View File

@@ -0,0 +1,24 @@
--[[
| 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/
--]]
CLASS.name = "Overwatch Containment Soldier"
CLASS.faction = FACTION_OTA
CLASS.isDefault = true
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_soldier.mdl")
end
end
--luacheck: globals CLASS_OWS
CLASS_OCS = CLASS.index

View File

@@ -0,0 +1,24 @@
--[[
| 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/
--]]
CLASS.name = "Overwatch Soldier"
CLASS.faction = FACTION_OTA
CLASS.isDefault = true
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_soldier.mdl")
end
end
--luacheck: globals CLASS_OWS
CLASS_OWS = CLASS.index

View File

@@ -0,0 +1,23 @@
--[[
| 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/
--]]
CLASS.name = "Suppressor Overwatch Soldier"
CLASS.faction = FACTION_OTA
CLASS.isDefault = false
function CLASS:OnSet(client)
local character = client:GetCharacter()
if (character) then
character:SetModel("models/combine_super_soldier.mdl") -- Placeholder
end
end
CLASS_SUP = CLASS.index