Files
wnsrc/lua/autorun/hlvr_pbrnpcs.lua
lifestorm 94063e4369 Upload
2024-08-04 22:55:00 +03:00

53 lines
1.6 KiB
Lua

--[[
| 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 Category = "Half-Life: Alyx - Combine Soldiers"
local NPC = {
Name = "Combine Heavy",
Class = "npc_combine_s",
KeyValues = { citizentype = 4 },
Model = "models/jq/hlvr/characters/combine/heavy/combine_heavy_hlvr_npc.mdl",
Health = "100",
Category = Category
}
list.Set( "NPC", "npc_hlvr_heavy_jq", NPC )
local Category = "Half-Life: Alyx - Combine Soldiers"
local NPC = {
Name = "Combine Grunt",
Class = "npc_combine_s",
KeyValues = { citizentype = 4 },
Model = "models/jq/hlvr/characters/combine/grunt/combine_grunt_hlvr_npc.mdl",
Health = "100",
Category = Category
}
list.Set( "NPC", "npc_hlvr_grunt_jq", NPC )
local Category = "Half-Life: Alyx - Combine Soldiers"
local NPC = {
Name = "Combine Suppressor",
Class = "npc_combine_s",
KeyValues = { citizentype = 1 },
Model = "models/jq/hlvr/characters/combine/suppressor/combine_suppressor_hlvr_npc.mdl",
Health = "100",
Category = Category
}
list.Set( "NPC", "npc_hlvr_suppressor_jq", NPC )
local Category = "Half-Life: Alyx - Combine Soldiers"
local NPC = {
Name = "Combine Captain",
Class = "npc_combine_s",
KeyValues = { citizentype = 4 },
Model = "models/jq/hlvr/characters/combine/combine_captain/combine_captain_hlvr_npc.mdl",
Health = "100",
Category = Category
}
list.Set( "NPC", "npc_hlvr_captain_jq", NPC )