mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 13:23:46 +03:00
53 lines
1.6 KiB
Lua
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 ) |